project init

This commit is contained in:
limqhz
2022-11-10 17:13:00 +08:00
commit 4956ed2f1f
113 changed files with 3617 additions and 0 deletions

View 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);
},
}
})