mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-26 01:59:44 +08:00
集团会员站点删除加二次确认
This commit is contained in:
@@ -716,15 +716,19 @@ export default {
|
|||||||
// 删除站点
|
// 删除站点
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
console.log(row);
|
console.log(row);
|
||||||
let remove = {
|
this.$modal.confirm('是否确认删除"' + row.stationName + '"').then(function () {
|
||||||
groupCode: this.$route.params.groupCode.split('&')[0],
|
|
||||||
stationId: row.stationId
|
}).then(() => {
|
||||||
}
|
let remove = {
|
||||||
removeStationFromMemberGroup(remove).then(response => {
|
groupCode: this.$route.params.groupCode.split('&')[0],
|
||||||
console.log('删除站点', response);
|
stationId: row.stationId
|
||||||
this.$message.success("删除成功");
|
}
|
||||||
this.getStationList();
|
removeStationFromMemberGroup(remove).then(response => {
|
||||||
});
|
console.log('删除站点', response);
|
||||||
|
this.$message.success("删除成功");
|
||||||
|
this.getStationList();
|
||||||
|
});
|
||||||
|
}).catch(() => { });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user