Browse Source

接口提示

seimin 4 months ago
parent
commit
409b402578

+ 11 - 4
components/bigScreen/bigScreen.vue

@@ -349,10 +349,17 @@
349
           });
349
           });
350
           post("/transflow/scanBind", { type: drugsBagType, orderId, code }).then((ress) => {
350
           post("/transflow/scanBind", { type: drugsBagType, orderId, code }).then((ress) => {
351
             uni.hideLoading();
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
             } else {
363
             } else {
357
               uni.showToast({
364
               uni.showToast({
358
                 icon: "none",
365
                 icon: "none",

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

@@ -160,10 +160,17 @@
160
         });
160
         });
161
         post("/transflow/scanBind", { type: this.queryObj.drugsBagType, orderId: this.queryObj.orderId, code: ress1 }).then((ress) => {
161
         post("/transflow/scanBind", { type: this.queryObj.drugsBagType, orderId: this.queryObj.orderId, code: ress1 }).then((ress) => {
162
           uni.hideLoading();
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
           } else {
174
           } else {
168
             uni.showToast({
175
             uni.showToast({
169
               icon: "none",
176
               icon: "none",

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

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