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 = {
ids: ids
};
this.$http.post('oper/crm/customer/delete', params).then(({ data: res }) => {
// let params = {
// ids
// };
this.$http.post('oper/crm/customer/delete', ids).then(({ data: res }) => {
console.log(res);
if (res.code === 0) {
this.$message.info(res.data);
this.$message.info("操作成功");
this.$refs.table.loadData();
} else {
return this.$message.error(res.internalMsg);

Loading…
Cancel
Save