1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- Component({
-
- properties: {
- },
-
- data: {
- selected: 0,
- color: "#999999",
- selectedColor: "#32CA69",
- listTab: [{
- "pagePath": "/pages/my/index",
- "text": "我的",
- "iconPath": "/static/my.png",
- "selectedIconPath": "/static/my2.png"
- }, {
- "pagePath": "/pages/index/index",
- "text": "推荐",
- "iconPath": "/static/tj.png",
- "selectedIconPath": "/static/tj2.png"
- }, {
- "pagePath": "/pages/logs/logs",
- "text": "作品",
- "iconPath": "/static/zp.png",
- "selectedIconPath": "/static/zp2.png"
- }]
- },
-
- methods: {
- switchTab(e) {
- const data = e.currentTarget.dataset;
- const url = data.path;
- wx.switchTab({
- url
- });
- }
- }
- })
|