Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Elements-SY
2023-10-12 12:06:36 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
297f94c27fc6d4df1cc3109e453f4c9a856d2c26
297f94c2
1 parent
38b55370
modify
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
src/views/allocationConfig/flightAllocConfig/mixins/index.js
src/views/et86Config/et86ShipmentDesc/index.vue
src/views/allocationConfig/flightAllocConfig/mixins/index.js
View file @
297f94c
...
...
@@ -760,10 +760,4 @@ export default {
7:航班航线信息列表和航班航线配置信息列表在做完航班航线配置信息列表去重之后和航班航线列表做数据整合之后,
还要对所有关于显示的数据做处理,比如页面上所有关于checkbox的勾选框radio单选框;
8: 在保存提交的时候对所有关于页面checkbox的勾选框做数据处理
*/
/*
航线排序;
航线展示ET86
*/
...
...
src/views/et86Config/et86ShipmentDesc/index.vue
View file @
297f94c
...
...
@@ -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(() => {});
...
...
Please
register
or
login
to post a comment