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
| Component({
| data: {
| selected: 1,
| color: "#8E9397",
| selectedColor: "#16b5cb",
| list: [
| {
| pagePath: "/station/list/index",
| text: "列表",
| iconPath: "/images/tabbar/minitorUnActive.png",
| selectedIconPath: "/images/tabbar/minitorActive.png"
| },
| {
| pagePath: "/workDesktop/index/index",
| text: "工作",
| iconPath: "/images/tabbar/workDesktopUnActive.png",
| selectedIconPath: "/images/tabbar/workDesktopActive.png"
| },
| {
| pagePath: "/map/index",
| text: "地图",
| iconPath: "/images/tabbar/mapUnActive.png",
| selectedIconPath: "/images/tabbar/mapActive.png"
| },
| {
| pagePath: "/mine/index/index",
| text: "我的",
| iconPath: "/images/tabbar/mineUnActive.png",
| selectedIconPath: "/images/tabbar/mineActive.png"
| }
| ]
| },
| attached() {
| },
| methods: {
| switchTab(e) {
| console.log(e,37)
| const data = e.currentTarget.dataset
| const url = data.path
| this.setData({
| selected: data.index
| })
| console.log(this.data.selected,43)
| wx.switchTab({url})
| }
| }
| })
|
|