cr 4 年 前
コミット
6cc0003163
共有4 個のファイルを変更した17 個の追加6 個の削除を含む
  1. 2 2
      .env
  2. 2 2
      .env.develop
  3. 2 2
      .env.production
  4. 11 0
      src/pages/manage/cashier/weighModal.vue

+ 2 - 2
.env

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = develop
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7 7
 VUE_APP_ENV = production
8 8
 
9 9
 # 接口请求基地址
10
-VUE_APP_API_BASE_URL = http://localhost:8076
10
+VUE_APP_API_BASE_URL = https://delivery.ixiaokejia.com
11 11
 
12 12
 # 接口请求基地址
13 13
 VUE_APP_WEBSOCKET_BASE_URL = 
14 14
 
15 15
 # 图片基地址
16
-VUE_APP_IMAGE_BASE_URL = http://localhost:8076
16
+VUE_APP_IMAGE_BASE_URL = https://delivery.ixiaokejia.com
17 17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18 18
 
19 19
 # 微信小程序appId

+ 11 - 0
src/pages/manage/cashier/weighModal.vue

@@ -31,6 +31,11 @@
31 31
                 </div>
32 32
                 <div class="btn" @click="addCart">加入列表</div>
33 33
             </div>
34
+            <div class="test">
35
+                dev----------
36
+                <div>open : {{test.open}}</div>
37
+                <div>getWeight : {{test.getWeight}}</div>
38
+            </div>
34 39
         </div>
35 40
     </div>
36 41
 </template>
@@ -55,6 +60,10 @@ export default {
55 60
                 weight: "0",
56 61
                 amt: "0",
57 62
             },
63
+            test:{
64
+                open:'',
65
+                getWeight:''
66
+            }
58 67
         };
59 68
     },
60 69
 
@@ -100,6 +109,7 @@ export default {
100 109
                 name: "unimp",
101 110
                 age: 1,
102 111
             });
112
+            this.test.open = JSON.stringify(ret);;
103 113
             setInterval(() => {
104 114
                 this.getWeight();
105 115
                 // this.getPrice();
@@ -112,6 +122,7 @@ export default {
112 122
                 name: "unimp",
113 123
                 age: 1,
114 124
             });
125
+            this.test.getWeight = JSON.stringify(ret);
115 126
             if (!ret) {
116 127
                 this.fn.showToast("获取weight错误");
117 128
             }