Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-11-17 17:18:38 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ee1df6b3a0d3006ea70e80c1cf709fe1df00e228
ee1df6b3
1 parent
e68165f6
提示语修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/basicInformation/queryCargo/info.vue
src/views/basicInformation/queryCargo/info.vue
View file @
ee1df6b
...
...
@@ -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)
}
...
...
Please
register
or
login
to post a comment