From e1662996f8cebf533cc7b4cd39c381599d455adc Mon Sep 17 00:00:00 2001 From: tianq Date: Tue, 4 Apr 2023 17:15:45 +0800 Subject: [PATCH] del --- .../src/views/modules/customer/manage/CustomerList.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue b/epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue index f5eb8f1..1225e2f 100644 --- a/epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue +++ b/epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue @@ -185,10 +185,11 @@ export default { let params = { ids: ids }; - - this.$http.get(`oper/crm/customer/delete`, { params: params }).then(({ data: res }) => { + this.$http.post('oper/crm/customer/delete', params).then(({ data: res }) => { + console.log(res); if (res.code === 0) { - return this.$message.info(res.data); + this.$message.info(res.data); + this.$refs.table.loadData(); } else { return this.$message.error(res.internalMsg); }