|
|
@ -143,7 +143,7 @@ |
|
|
|
id: 10, |
|
|
|
name: '进场人数异常', |
|
|
|
path: '/subpackage/blacklist/pages/abnormal_list/abnormal_list', |
|
|
|
serverKey: 1014 // 后端对应权限编号 1014 |
|
|
|
serverKey: 1015 // 后端对应权限编号 1015 |
|
|
|
}, |
|
|
|
]; |
|
|
|
|
|
|
@ -172,11 +172,11 @@ |
|
|
|
loginStatus: false, |
|
|
|
} |
|
|
|
}, |
|
|
|
async onLoad() { |
|
|
|
// #ifndef H5 |
|
|
|
async onLoad(options) { |
|
|
|
try{ |
|
|
|
util.showLoad(); |
|
|
|
await this.checkUserAuthor(); |
|
|
|
// 20230829 新增平台账户不绑定,不检验,每次进来走重新登陆绑定流程 |
|
|
|
if(options.role !== 'ADMIN-PLATFORM')await this.checkUserAuthor(); |
|
|
|
util.hideLoad(); |
|
|
|
this.loginStatus = app.isLogin(); |
|
|
|
if(!!app.isLogin())this.getIndexInfo(); |
|
|
@ -187,13 +187,10 @@ |
|
|
|
console.log('onLoad err',err); |
|
|
|
this.loginStatus = app.isLogin(); |
|
|
|
} |
|
|
|
// #endif |
|
|
|
}, |
|
|
|
onShow(){ |
|
|
|
// #ifndef H5 |
|
|
|
let { indexData } = this; |
|
|
|
if(JSON.stringify(indexData)!='{}'&&!!app.isLogin())this.getIndexInfo(); |
|
|
|
// #endif |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
// 账号有开启了权限的才显示菜单,否则不显示【ID1000840】 |
|
|
|