集团会员站点删除加二次确认

This commit is contained in:
BOOL\25024
2024-02-23 15:59:20 +08:00
parent 0eea927b39
commit 64875f5366

View File

@@ -716,6 +716,9 @@ export default {
// 删除站点
handleDelete(row) {
console.log(row);
this.$modal.confirm('是否确认删除"' + row.stationName + '"').then(function () {
}).then(() => {
let remove = {
groupCode: this.$route.params.groupCode.split('&')[0],
stationId: row.stationId
@@ -725,6 +728,7 @@ export default {
this.$message.success("删除成功");
this.getStationList();
});
}).catch(() => { });
}
},
};