1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| <template>
| <div id="buy_nav" class="buy_nav">
| <van-nav-bar :title="title" @click-left="onClickLeft" class="font-36 border-none">
| <template #left>
| <slot name="left">
| <van-icon name="arrow-left" />
| </slot>
| </template>
| <template #title>
| <slot name="title"></slot>
| </template>
| <template #right>
| <slot name="right"></slot>
| </template>
| </van-nav-bar>
| </div>
| </template>
|
| <script>
| import { NavBar, Icon } from 'vant';
| export default {
| name: "OrderNav",
| props: {
| title: {
|
| },
| state: {
|
| },
| // 是否要路由返回
| back: {
| default: true,
| }
| },
| data() {
| return {
|
| }
| },
| methods: {
| // 返回
| onClickLeft() {
| if (this.back) {
| this.$router.back();
| } else {
| this.$emit('back')
| }
| }
| },
| components: {
| [NavBar.name]: NavBar,
| [Icon.name]: Icon,
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .buy_nav {
| // ::v-deep .van-nav-bar {
| // @include themify() {
| // background: themed("main_background") !important;
| // }
| // }
| ::v-deep .van-nav-bar {
| &:after {
| border: none;
| }
| }
|
| ::v-deep .van-icon {
| font-size: 40px;
|
| @include themify() {
| color: themed("c2c_color");
| }
| }
|
| ::v-deep .van-nav-bar__title {
| font-size: 37px;
| }
| }
| </style>
|
|