jinhui.wang

提示语修改

......@@ -143,7 +143,7 @@ export default {
this.loading = false;
//code 200 迁转成功 202 重量已满需要确认 其余code直接输出msg
if (res.code === 200) {
this.msgSuccess('货物迁转成功')
this.msgSuccess(res.msg)
this.cleaerForm();
this.$emit("dialogBeforeClose", { close: false, reload: true });
} else if (res.code === 202) {
......@@ -156,7 +156,7 @@ export default {
this.formData.overweight = true; //确定继续overweight变为true再次请求接口
batchMoveCargoToOtherFlight(this.formData).then((res) => {
if (res.code === 200) {
this.msgSuccess('货物迁转成功')
this.msgSuccess(res.msg)
} else {
this.msgWarning(res.msg)
}
......