Browse Source

Merge branch 'dev' into id1370

privacy
刘嘉炜 1 year ago
parent
commit
04fd9d88fa
  1. 11
      src/pages/index/index.vue
  2. 7
      src/pages/login/login.vue

11
src/pages/index/index.vue

@ -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

7
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 || '操作失败!');

Loading…
Cancel
Save