Browse Source

修改报错

cr 4 years ago
parent
commit
21d772ecf9
3 changed files with 9 additions and 16 deletions
  1. 3 0
      src/App.vue
  2. 6 4
      src/common/api/ajax.js
  3. 0 12
      src/pages/manage/index.vue

+ 3 - 0
src/App.vue

@@ -3,6 +3,9 @@
3 3
         onLaunch: async function (option) {
4 4
             const self = this
5 5
 
6
+        self.$store.commit("user/update", {
7
+            init: false,
8
+        });
6 9
             // 调试开关
7 10
             uni.setEnableDebug({
8 11
                 enableDebug: process.env.VUE_APP_ENV === 'develop',

+ 6 - 4
src/common/api/ajax.js

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

+ 0 - 12
src/pages/manage/index.vue

@@ -65,18 +65,6 @@ export default {
65 65
     },
66 66
 
67 67
     onLoad() {
68
-        //  uni.getLocation({
69
-        //         type: "wgs84",
70
-        //         success(res){
71
-        //             console.log('wgs84',res);
72
-        //         }
73
-        //  });
74
-        //  uni.getLocation({
75
-        //         type: "gcj02",
76
-        //         success(res){
77
-        //             console.log('gcj02',res);
78
-        //         }
79
-        //  });
80 68
     },
81 69
     async onShow() {
82 70
         if (!this.user.isSysAdmin) {