epmet 工作端 小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.6 KiB

import {getStaffbasicinfo} from "../../utils/api";
const app = getApp()
import {getOwnedRolesOfStaffId} from '../../utils/statisticsApi.js'
Component({
data: {
selected: 0,
color: "#999",
selectedColor: "#3A80E7",
"list": [
{
"pagePath": "/pages/index/index",
"text": "首页",
"iconPath": "/images/home/message.png",
"selectedIconPath": "/images/home/messageSelected.png",
show: true
},
{
"pagePath": "/pages/resiAndHouse/resiAndHouse",
"text": "人房",
"iconPath": "/images/home/resiAndHouse.png",
"selectedIconPath": "/images/home/resiAndHouseSelected.png",
show: true
},
{
"pagePath": "/pages/work2/work2",
"text": "工作",
"iconPath": "/images/home/work.png",
"selectedIconPath": "/images/home/workSelected.png",
show: true
},
{
"pagePath": "/pages/mine/mine",
"text": "我的",
"iconPath": "/images/home/mine.png",
"selectedIconPath": "/images/home/mineSelected.png",
show: true
}
],
},
attached() {
},
ready: function () {
},
methods: {
switchTab(e) {
console.log(e);
const data = e.currentTarget.dataset;
const url = data.path;
app.globalData.selected = data.index;
wx.switchTab({url})
}
}
})