diff --git a/src/setting.js b/src/setting.js index 670a30d..10c3de9 100644 --- a/src/setting.js +++ b/src/setting.js @@ -13,10 +13,10 @@ if (isDev) { jumpPath = "http://192.168.31.254:8087/"; // 本地调试-需要启动本地判分点系统 // host = "http://39.108.250.202:9000"; - // host = "http://39.108.250.202:9000";//线上 + host = "http://39.108.250.202:9000";//线上 // host = 'http://192.168.31.151:9000'// 榕 // host = 'http://192.168.31.125:9000'// 坤 - host = 'http://192.168.31.137:9000'// 赓 + // host = 'http://192.168.31.137:9000'// 赓 } else if (isTest) { jumpPath = "http://39.108.250.202/judgmentPoint/"; host = "http://39.108.250.202:9000"; diff --git a/src/views/order/Order.vue b/src/views/order/Order.vue index e34c524..f32cbe1 100644 --- a/src/views/order/Order.vue +++ b/src/views/order/Order.vue @@ -81,12 +81,15 @@ @@ -180,7 +183,6 @@ export default { if (val.length > 5) { val = 5; } - }, getData() { let data = { @@ -253,18 +255,16 @@ export default { handleDelete(row) { this.$confirm("确定要删除吗?", "提示", { type: "warning" - }) - .then(() => { - var arr = []; - arr.push(row.orderId); - this.$post(this.api.orderDelete, { ids: arr }).then(res => { - this.$message.success("删除成功"); - this.getData(); - }).catch(res => { - }); - }) - .catch(() => { + }).then(() => { + var arr = []; + arr.push(row.orderId); + this.$post(this.api.orderDelete, { ids: arr }).then(res => { + this.$message.success("删除成功"); + this.getData(); + }).catch(res => { }); + }).catch(() => { + }); }, // 续签 handleRenew(row) { @@ -285,15 +285,14 @@ export default { // 批量删除 this.$confirm("确定要删除吗?", "提示", { type: "warning" - }) - .then(() => { - this.$post(this.api.orderDelete, { ids: this.multipleSelection }).then(res => { - this.multipleSelection = []; - this.$message.success("删除成功"); - this.getData(); - }).catch(err => { - }); + }).then(() => { + this.$post(this.api.orderDelete, { ids: this.multipleSelection }).then(res => { + this.multipleSelection = []; + this.$message.success("删除成功"); + this.getData(); }).catch(err => { + }); + }).catch(err => { }); } else { this.$message.error("请先选择订单 !");