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-10-08 16:04:01 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fddbfa7db448cc5fb0d7b73eb111c79025247b5a
fddbfa7d
1 parent
62b9403a
bug修正
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/views/systemConfig/superAllocation/index.vue
src/views/systemConfig/superAllocation/index.vue
View file @
fddbfa7
...
...
@@ -135,14 +135,14 @@ export default {
del(val) {
getReleaseWeight({ id: val.id }).then(res => {
if (res.code === 200) {
this.$confirm(
"是否要删除记录!"
, "注意!", {
this.$confirm(
`是否要删除记录!预计释放舱位${res.data}`
, "注意!", {
confirmButtonText: "确定",
cancelButtonText: '取消',
type: "warning",
}).then(() => {
changeStatusById({ id: val.id, status: 2 }).then(res => {
if (res.code === 200) {
this.msgSuccess(`删除成功!
以
释放舱位${res.data}`)
this.msgSuccess(`删除成功!
已
释放舱位${res.data}`)
this.selection(1)
} else {
this.msgWarning(res.msg)
...
...
@@ -207,7 +207,7 @@ export default {
changeStatusById(val).then(res => {
if (res.code === 200) {
if (val.tip == '停用') {
this.msgSuccess(`${val.tip}成功!
以
释放${res.data}`)
this.msgSuccess(`${val.tip}成功!
已
释放${res.data}`)
} else {
this.msgSuccess(`${val.tip}成功!`)
}
...
...
Please
register
or
login
to post a comment