58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
// pages/component/foot-tab.js
|
|
let aIconList = ['check-rectangle','star','notification','circle'];
|
|
let cure = 1
|
|
Component({
|
|
/**
|
|
* 组件的属性列表
|
|
*/
|
|
properties: {
|
|
clickValue: {
|
|
type: Array,
|
|
value: aIconList
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 组件的初始数据
|
|
*/
|
|
data: {
|
|
clickValue: cure,
|
|
message: {dot: true}
|
|
},
|
|
|
|
/**
|
|
* 组件的方法列表
|
|
*/
|
|
methods: {
|
|
setIconData(cur){
|
|
cure = cur;
|
|
this.setData({
|
|
clickValue: cur
|
|
})
|
|
if (cur == 1){
|
|
wx.redirectTo({
|
|
url: '../index/index'
|
|
})
|
|
}
|
|
if (cur == 2){
|
|
wx.redirectTo({
|
|
url: '../today/index'
|
|
})
|
|
}
|
|
if (cur == 3){
|
|
wx.redirectTo({
|
|
url: '../message/index'
|
|
})
|
|
}
|
|
if (cur == 4){
|
|
wx.redirectTo({
|
|
url: '../myself/index'
|
|
})
|
|
}
|
|
},
|
|
onChange(event) {
|
|
this.setIconData(event.detail.value);
|
|
},
|
|
}
|
|
})
|