diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index 9124c16..22486f3 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -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】 diff --git a/src/pages/login/login.vue b/src/pages/login/login.vue index 17202c3..4524a43 100644 --- a/src/pages/login/login.vue +++ b/src/pages/login/login.vue @@ -103,10 +103,11 @@ export default { let _data = res.data || {}; if(_data.code == 0){ util.showNone(_data.message || '操作成功!'); - - uni.setStorageSync('token',_data.data); + // 20230829 新增平台角色判断跳过首页检查绑定接口 + // 修改接口返回数据 + uni.setStorageSync('token',_data?.data?.token || ''); setTimeout(_=>{ - util.routeTo(`/pages/index/index`, 'rL'); + util.routeTo(`/pages/index/index?role=${_data?.data?.role}`, 'rL'); }, 1200); }else{ util.showNone(_data.message || '操作失败!');