seimin месяцев назад: 4
Родитель
Сommit
409b402578

+ 11 - 4
components/bigScreen/bigScreen.vue

@@ -349,10 +349,17 @@
349 349
           });
350 350
           post("/transflow/scanBind", { type: drugsBagType, orderId, code }).then((ress) => {
351 351
             uni.hideLoading();
352
-            if (ress.state == 200 && ress.data.state != 501 && ress.data.state != 502) {
353
-              uni.navigateTo({
354
-                url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
355
-              });
352
+            if (ress.state == 200) {
353
+              if(ress.data.msg){
354
+                uni.showToast({
355
+                  icon: "none",
356
+                  title: ress.data.msg || "接口获取数据失败!",
357
+                });
358
+              }else{
359
+                uni.navigateTo({
360
+                  url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
361
+                });
362
+              }
356 363
             } else {
357 364
               uni.showToast({
358 365
                 icon: "none",

+ 11 - 4
pages/newDrug/continueScanning/continueScanning.vue

@@ -160,10 +160,17 @@
160 160
         });
161 161
         post("/transflow/scanBind", { type: this.queryObj.drugsBagType, orderId: this.queryObj.orderId, code: ress1 }).then((ress) => {
162 162
           uni.hideLoading();
163
-          if (ress.state == 200 && ress.data.state != 501 && ress.data.state != 502) {
164
-            uni.redirectTo({
165
-              url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}&scanOrHand=${type}&drugsBagId=${this.queryObj.drugsBagId}&orderStateValue=${this.queryObj.orderStateValue}`,
166
-            });
163
+          if (ress.state == 200) {
164
+            if(ress.data.msg){
165
+              uni.showToast({
166
+                icon: "none",
167
+                title: ress.data.msg || "接口获取数据失败!",
168
+              });
169
+            }else{
170
+              uni.redirectTo({
171
+                url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}&scanOrHand=${type}&drugsBagId=${this.queryObj.drugsBagId}&orderStateValue=${this.queryObj.orderStateValue}`,
172
+              });
173
+            }
167 174
           } else {
168 175
             uni.showToast({
169 176
               icon: "none",

+ 11 - 4
pages/newDrug/createOrder/createOrder.vue

@@ -172,7 +172,14 @@
172 172
               post(`/transflow/createOrTakeOrder`, postData).then((ress) => {
173 173
                 uni.hideLoading();
174 174
                 if (ress.state == 200) {
175
-                  this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
175
+                  if(ress.data.msg){
176
+                    uni.showToast({
177
+                      icon: "none",
178
+                      title: ress.data.msg || "接口获取数据失败!",
179
+                    });
180
+                  }else{
181
+                    this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
182
+                  }
176 183
                 } else {
177 184
                   uni.showToast({
178 185
                     icon: "none",
@@ -192,7 +199,7 @@
192 199
           title: "加载中",
193 200
           mask: true,
194 201
         });
195
-        
202
+
196 203
         post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: '4'}).then(res => {
197 204
           uni.hideLoading();
198 205
           if(res.state == 200){
@@ -278,7 +285,7 @@
278 285
       align-items: center;
279 286
       gap: 24rpx;
280 287
       font-weight: bold;
281
-      
288
+
282 289
       .column{
283 290
         width: 100%;
284 291
         height: 78rpx;
@@ -286,7 +293,7 @@
286 293
         align-items: center;
287 294
         justify-content: space-between;
288 295
         gap: 24rpx;
289
-        
296
+
290 297
         .btn {
291 298
           height: 100%;
292 299
           flex: 1;