tianq 2 years ago
parent
commit
9650acfb2b
  1. 10
      epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue

10
epmet-oper-web/src/views/modules/customer/manage/CustomerList.vue

@ -182,13 +182,13 @@ export default {
} }
} }
let params = { // let params = {
ids: ids // ids
}; // };
this.$http.post('oper/crm/customer/delete', params).then(({ data: res }) => { this.$http.post('oper/crm/customer/delete', ids).then(({ data: res }) => {
console.log(res); console.log(res);
if (res.code === 0) { if (res.code === 0) {
this.$message.info(res.data); this.$message.info("操作成功");
this.$refs.table.loadData(); this.$refs.table.loadData();
} else { } else {
return this.$message.error(res.internalMsg); return this.$message.error(res.internalMsg);

Loading…
Cancel
Save