|
@@ -74,10 +74,12 @@ const http = {
|
74
|
74
|
'Authorization': 'Bearer ' + store.state.user.token,
|
75
|
75
|
// 'StoreId': store.state.common.curShop.id || ''
|
76
|
76
|
}
|
77
|
|
- if (store.state.user.user.storeId) {
|
78
|
|
- header.StoreId = store.state.user.user.storeId;
|
79
|
|
- } else {
|
80
|
|
- header.StoreId = store.state.common.manageShop.id;
|
|
77
|
+ if(store.state.user && store.state.user.user){
|
|
78
|
+ if (store.state.user.user.storeId) {
|
|
79
|
+ header.StoreId = store.state.user.user.storeId || '';
|
|
80
|
+ } else {
|
|
81
|
+ header.StoreId = store.state.common.manageShop.id || '';
|
|
82
|
+ }
|
81
|
83
|
}
|
82
|
84
|
let response = await uni.request({
|
83
|
85
|
url: url,
|