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
| <template>
| <view class="c-nav-bar">
| <AtNavBar
| :title="title"
| leftIconType="chevron-left"
| :onClickLeftIcon="evt=>goBack()"
| :rightFirstIconType="dropNav ? 'bullet-list' : ''"
| :onClickRgIconSt="evt=>dropMenu()"
| />
| <view
| class="c-nav-bar-drop"
| v-show="dropShow"
| >
| <view class="inner">
| <view class="arrow"></view>
| <view class="box">
| <view
| class="item"
| v-for="(nav,index) in dropNav"
| :key="index"
| @tap="evt=>goNav(nav)"
| >{{nav.title}}</view>
| </view>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| import Taro from '@tarojs/taro';
| import { AtNavBar } from 'taro-ui-vue';
| import './cNavBar.scss';
|
| export default {
| name: 'CNavBar',
| components: {
| AtNavBar,
| },
| props: {
| title: String,
| dropNav: Array,
| },
| data() {
| return {
| dropShow: false,
| };
| },
| methods: {
| goBack() {
| window.history.go(-1);
| },
| goNav(nav) {
| if (!nav.url) {
| return;
| }
| this.dropShow = false;
| let method = 'navigateTo';
| if (/navigate|redirect/.test(nav.method)) {
| method = nav.method + 'To';
| }
| Taro[method]({ url: nav.url });
| },
| dropMenu() {
| this.dropShow = !this.dropShow;
| },
| },
| mounted() {},
| };
| </script>
|
|