Commit 04b5ca43 authored by 李驰骋's avatar 李驰骋

ERP同步提示添加

parent fdcce4e4
...@@ -437,6 +437,7 @@ export default { ...@@ -437,6 +437,7 @@ export default {
}, },
handleSyncData() { handleSyncData() {
syncData().then((response) => { syncData().then((response) => {
this.$modal.msgSuccess(response.msg);
this.getList() this.getList()
}); });
}, },
......
...@@ -402,6 +402,7 @@ export default { ...@@ -402,6 +402,7 @@ export default {
}, },
handleSyncData() { handleSyncData() {
syncData().then((response) => { syncData().then((response) => {
this.$modal.msgSuccess(response.msg);
this.getList() this.getList()
}); });
}, },
......
...@@ -458,6 +458,7 @@ export default { ...@@ -458,6 +458,7 @@ export default {
methods: { methods: {
handleSyncData() { handleSyncData() {
syncData().then((response) => { syncData().then((response) => {
this.$modal.msgSuccess(response.msg);
this.getList() this.getList()
}); });
}, },
......
...@@ -701,6 +701,7 @@ export default { ...@@ -701,6 +701,7 @@ export default {
methods: { methods: {
handleSyncData() { handleSyncData() {
syncData().then((response) => { syncData().then((response) => {
this.$modal.msgSuccess(response.msg);
this.getList() this.getList()
}); });
}, },
......
...@@ -236,6 +236,7 @@ export default { ...@@ -236,6 +236,7 @@ export default {
methods: { methods: {
handleSyncData() { handleSyncData() {
syncData().then((response) => { syncData().then((response) => {
this.$modal.msgSuccess(response.msg);
this.getList() this.getList()
}); });
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment