123456789101112131415161718192021222324252627282930313233 |
- Component({
- data: {
- selected: 0,
- color: "#000",
- selectedColor: "#B608D0",
- list: [
- {
- pagePath: "/pages/index/index",
- text: "资料"
- },
- {
- pagePath: "/pages/recommend/recommend",
- text: "推荐"
- },
- {
- pagePath: "/pages/mine/mine",
- text: "我的"
- }
- ]
- },
- attached() {
- },
- methods: {
- switchTab(e) {
- const data = e.currentTarget.dataset
- const url = data.path
- wx.switchTab({ url })
- this.setData({
- selected: data.index
- })
- }
- }
- })
|