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