diff --git a/src/views/inm/good_mio.vue b/src/views/inm/good_mio.vue
index d1043bda..8b682d74 100644
--- a/src/views/inm/good_mio.vue
+++ b/src/views/inm/good_mio.vue
@@ -123,16 +123,7 @@
v-auth="'mio.submit'"
v-if="scope.row.state == 20"
>
- 撤销
-
-
- 撤销
+ 撤回
{});
},
revert(row) {
- this.$confirm(`确定撤销该操作吗?`, "提示", {
+ this.$confirm(`确定撤回该操作吗?`, "提示", {
type: "warning",
})
.then(() => {
this.$API.inm.mio.revert
.req(row.id)
.then((res) => {
- this.$message.success("撤销成功");
+ this.$message.success("撤回成功");
this.$refs.table.refresh();
return res;
})
diff --git a/src/views/inm/halfgood_mio.vue b/src/views/inm/halfgood_mio.vue
index 973ecc15..5fcf7f7f 100644
--- a/src/views/inm/halfgood_mio.vue
+++ b/src/views/inm/halfgood_mio.vue
@@ -145,7 +145,7 @@
v-auth="'mio.submit'"
v-if="scope.row.state == 20"
>
- 撤销
+ 撤回
@@ -259,14 +259,14 @@ export default {
.catch(() => {});
},
revert(row) {
- this.$confirm(`确定撤销该操作吗?`, "提示", {
+ this.$confirm(`确定撤回该操作吗?`, "提示", {
type: "warning",
})
.then(() => {
this.$API.inm.mio.revert
.req(row.id)
.then((res) => {
- this.$message.success("撤销成功");
+ this.$message.success("撤回成功");
this.$refs.table.refresh();
return res;
})
diff --git a/src/views/inm/mainso_mio.vue b/src/views/inm/mainso_mio.vue
index 63ad6549..243f4aa3 100644
--- a/src/views/inm/mainso_mio.vue
+++ b/src/views/inm/mainso_mio.vue
@@ -154,7 +154,7 @@
v-auth="'mio.submit'"
v-if="scope.row.state == 20"
>
- 撤销
+ 撤回
@@ -275,14 +275,14 @@ export default {
.catch(() => {});
},
revert(row) {
- this.$confirm(`确定撤销该操作吗?`, "提示", {
+ this.$confirm(`确定撤回该操作吗?`, "提示", {
type: "warning",
})
.then(() => {
this.$API.inm.mio.revert
.req(row.id)
.then((res) => {
- this.$message.success("撤销成功");
+ this.$message.success("撤回成功");
this.$refs.table.refresh();
return res;
})
diff --git a/src/views/inm/mio.vue b/src/views/inm/mio.vue
index c5e67611..5edfb9ec 100644
--- a/src/views/inm/mio.vue
+++ b/src/views/inm/mio.vue
@@ -127,7 +127,7 @@
(scope.row.type == 'other_in' ||
scope.row.type == 'other_out')"
>
- 撤销
+ 撤回
{
this.$API.inm.mio.revert
.req(row.id)
.then((res) => {
- this.$message.success("撤销成功");
+ this.$message.success("撤回成功");
this.$refs.table.refresh();
return res;
})