|
@@ -4,7 +4,9 @@ let count = 0; //接口完成数量
|
|
|
function loginMsg(res) {
|
|
|
wx.setStorageSync('account_list', res.account_list);
|
|
|
if (res.account_list.length == 1) {
|
|
|
- wx.setStorageSync('userMsg', res.account_list[0])
|
|
|
+ let item = res.account_list[0];
|
|
|
+ getApp().globalData.userrole = item.usertype == 1 ? '业务员' : '经销商';
|
|
|
+ wx.setStorageSync('userMsg', item)
|
|
|
query_userauth();
|
|
|
} else {
|
|
|
wx.redirectTo({
|