Browse Source

app 测试

cr 4 years ago
parent
commit
6cc0003163
4 changed files with 17 additions and 6 deletions
  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
 VUE_APP_ENV = develop
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
 VUE_APP_WEBSOCKET_BASE_URL = 
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
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18
 
18
 
19
 # 微信小程序appId
19
 # 微信小程序appId

+ 2 - 2
.env.develop

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7
 VUE_APP_ENV = production
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
 VUE_APP_WEBSOCKET_BASE_URL = 
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
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18
 
18
 
19
 # 微信小程序appId
19
 # 微信小程序appId

+ 2 - 2
.env.production

@@ -7,13 +7,13 @@ NODE_ENV = 'production'
7
 VUE_APP_ENV = production
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
 VUE_APP_WEBSOCKET_BASE_URL = 
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
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
17
 VUE_APP_IMAGE_RESOURCE_URL = https://oss.ixiaokejia.com
18
 
18
 
19
 # 微信小程序appId
19
 # 微信小程序appId

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

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