根据登录的状态来展示tabbar的名称
type=1 =》 供应商 =》 合同 送货单 我的
type=2 =》 监理 =》 合同 抽检单 我的
在登录之后就拿到type的值
以及登陆之后跳转到合同页面
在合同页面可以书写逻辑
onShow(){
if (Number(uni.getStorageSync("type")) == 2) {
console.log('11')
// uni.setTabBarItem({
// index: 1,
// visible: false,
// })
// uni.setTabBarItem({
// index: 2,
// visible: true,
// })
uni.setTabBarItem({
index: 1,
// pagePath: "/pages/Samplingform/Samplingform",
iconPath: "static/img/icons/Samplingform.png",
selectedIconPath: "static/img/icons/selectForm.png",
text: "抽检单",
})
}else{
uni.setTabBarItem({
index: 1,
// pagePath: "/pages/Samplingform/Samplingform",
iconPath: "static/img/icons/goodsOut.png",
selectedIconPath: "static/img/icons/goods.png",
text: "送货单",
}
等于送货单以及抽检单都在同一个页面,那么就需要【动态设置当前页面的标题】
在抽检单以及送货单页面的onshow修改标题
onShow() {
if (this.enterpriseType == 3) {
uni.setNavigationBarTitle({
title: "抽检单管理"
})
}
}
一开始想通过visible来控制,但是没有效果,可能小程序不支持