Elements-SY

modify

......@@ -760,10 +760,4 @@ export default {
7:航班航线信息列表和航班航线配置信息列表在做完航班航线配置信息列表去重之后和航班航线列表做数据整合之后,
还要对所有关于显示的数据做处理,比如页面上所有关于checkbox的勾选框radio单选框;
8: 在保存提交的时候对所有关于页面checkbox的勾选框做数据处理
*/
/*
航线排序;
航线展示ET86
*/
......
......@@ -179,7 +179,7 @@ export default {
this.$message.error("导出失败");
});
},
// 删除
// 多选删除
deleteData(row) {
if (this.multipleSelection.length) {
this.$confirm("是否确认删除?", "提示", {
......@@ -189,6 +189,7 @@ export default {
center: true,
})
.then(() => {
// 调用删除黑名单接口
this.toDelShipmentDescList(this.multipleSelection);
})
.catch(() => {});
......@@ -225,7 +226,7 @@ export default {
tableSelectionChange(val) {
this.multipleSelection = val;
},
// 删除
// 删除
deleteRow({ row }) {
this.$confirm("是否确认删除?", "提示", {
confirmButtonText: "确定",
......@@ -234,6 +235,7 @@ export default {
center: true,
})
.then(() => {
// 调用删除黑名单接口
this.toDelShipmentDescList([row]);
})
.catch(() => {});
......