Showing
2 changed files
with
4 additions
and
8 deletions
| ... | @@ -760,10 +760,4 @@ export default { | ... | @@ -760,10 +760,4 @@ export default { |
| 760 | 7:航班航线信息列表和航班航线配置信息列表在做完航班航线配置信息列表去重之后和航班航线列表做数据整合之后, | 760 | 7:航班航线信息列表和航班航线配置信息列表在做完航班航线配置信息列表去重之后和航班航线列表做数据整合之后, |
| 761 | 还要对所有关于显示的数据做处理,比如页面上所有关于checkbox的勾选框radio单选框; | 761 | 还要对所有关于显示的数据做处理,比如页面上所有关于checkbox的勾选框radio单选框; |
| 762 | 8: 在保存提交的时候对所有关于页面checkbox的勾选框做数据处理 | 762 | 8: 在保存提交的时候对所有关于页面checkbox的勾选框做数据处理 |
| 763 | - | ||
| 764 | -*/ | ||
| 765 | -/* | ||
| 766 | - 航线排序; | ||
| 767 | - 航线展示ET86 | ||
| 768 | - | ||
| 769 | */ | 763 | */ | ... | ... |
| ... | @@ -179,7 +179,7 @@ export default { | ... | @@ -179,7 +179,7 @@ export default { |
| 179 | this.$message.error("导出失败"); | 179 | this.$message.error("导出失败"); |
| 180 | }); | 180 | }); |
| 181 | }, | 181 | }, |
| 182 | - // 删除 | 182 | + // 多选删除 |
| 183 | deleteData(row) { | 183 | deleteData(row) { |
| 184 | if (this.multipleSelection.length) { | 184 | if (this.multipleSelection.length) { |
| 185 | this.$confirm("是否确认删除?", "提示", { | 185 | this.$confirm("是否确认删除?", "提示", { |
| ... | @@ -189,6 +189,7 @@ export default { | ... | @@ -189,6 +189,7 @@ export default { |
| 189 | center: true, | 189 | center: true, |
| 190 | }) | 190 | }) |
| 191 | .then(() => { | 191 | .then(() => { |
| 192 | + // 调用删除黑名单接口 | ||
| 192 | this.toDelShipmentDescList(this.multipleSelection); | 193 | this.toDelShipmentDescList(this.multipleSelection); |
| 193 | }) | 194 | }) |
| 194 | .catch(() => {}); | 195 | .catch(() => {}); |
| ... | @@ -225,7 +226,7 @@ export default { | ... | @@ -225,7 +226,7 @@ export default { |
| 225 | tableSelectionChange(val) { | 226 | tableSelectionChange(val) { |
| 226 | this.multipleSelection = val; | 227 | this.multipleSelection = val; |
| 227 | }, | 228 | }, |
| 228 | - // 删除 | 229 | + // 删除行 |
| 229 | deleteRow({ row }) { | 230 | deleteRow({ row }) { |
| 230 | this.$confirm("是否确认删除?", "提示", { | 231 | this.$confirm("是否确认删除?", "提示", { |
| 231 | confirmButtonText: "确定", | 232 | confirmButtonText: "确定", |
| ... | @@ -234,6 +235,7 @@ export default { | ... | @@ -234,6 +235,7 @@ export default { |
| 234 | center: true, | 235 | center: true, |
| 235 | }) | 236 | }) |
| 236 | .then(() => { | 237 | .then(() => { |
| 238 | + // 调用删除黑名单接口 | ||
| 237 | this.toDelShipmentDescList([row]); | 239 | this.toDelShipmentDescList([row]); |
| 238 | }) | 240 | }) |
| 239 | .catch(() => {}); | 241 | .catch(() => {}); | ... | ... |
-
Please register or login to post a comment