project init
This commit is contained in:
57
pages/foot-tab/foot-tab.js
Normal file
57
pages/foot-tab/foot-tab.js
Normal file
@@ -0,0 +1,57 @@
|
||||
// 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);
|
||||
},
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user