Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -143,7 +143,7 @@ export default { | ... | @@ -143,7 +143,7 @@ export default { |
| 143 | this.loading = false; | 143 | this.loading = false; |
| 144 | //code 200 迁转成功 202 重量已满需要确认 其余code直接输出msg | 144 | //code 200 迁转成功 202 重量已满需要确认 其余code直接输出msg |
| 145 | if (res.code === 200) { | 145 | if (res.code === 200) { |
| 146 | - this.msgSuccess('货物迁转成功') | 146 | + this.msgSuccess(res.msg) |
| 147 | this.cleaerForm(); | 147 | this.cleaerForm(); |
| 148 | this.$emit("dialogBeforeClose", { close: false, reload: true }); | 148 | this.$emit("dialogBeforeClose", { close: false, reload: true }); |
| 149 | } else if (res.code === 202) { | 149 | } else if (res.code === 202) { |
| ... | @@ -156,7 +156,7 @@ export default { | ... | @@ -156,7 +156,7 @@ export default { |
| 156 | this.formData.overweight = true; //确定继续overweight变为true再次请求接口 | 156 | this.formData.overweight = true; //确定继续overweight变为true再次请求接口 |
| 157 | batchMoveCargoToOtherFlight(this.formData).then((res) => { | 157 | batchMoveCargoToOtherFlight(this.formData).then((res) => { |
| 158 | if (res.code === 200) { | 158 | if (res.code === 200) { |
| 159 | - this.msgSuccess('货物迁转成功') | 159 | + this.msgSuccess(res.msg) |
| 160 | } else { | 160 | } else { |
| 161 | this.msgWarning(res.msg) | 161 | this.msgWarning(res.msg) |
| 162 | } | 162 | } | ... | ... |
-
Please register or login to post a comment