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-23 19:05:49 +0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
0c0ded073539fb32972f4e9e128ea8d6ec8fd196
0c0ded07
2 parents
b2d80a8c
e89c7c95
Merge branch 'et86-black' into uat
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
0c0ded0
...
...
@@ -767,13 +767,17 @@ export default {
} else {
item.permitOverweight = "Y";
}
// 航线列表
if (item.hasOwnProperty("routeList")) {
delete item.routeList;
}
// // 作为是否为新增
// if (item.hasOwnProperty("statusMark")) {
// delete item.id;
// }
//
// 航线列表
if (item.hasOwnProperty("
routeLis
t")) {
delete item.
routeLis
t;
//
编辑
if (item.hasOwnProperty("
edi
t")) {
delete item.
edi
t;
}
// 排序字段
item.priority = ++i;
...
...
@@ -813,6 +817,12 @@ export default {
fltRuleDto: this.queryForm,
};
let queryParmas = JSON.parse(JSON.stringify(parmas));
// 申报类别排序
if (queryParmas.fltRuleDto.declarationCategory.length > 1) {
let sortCategory = this.queryForm.declarationCategory.split(";");
sortCategory.sort((a, b) => a.localeCompare(b));
queryParmas.fltRuleDto.declarationCategory = sortCategory.join(";");
}
// 筛选重复的航班
let repeat = tableData.filter(
(item) =>
...
...
Please
register
or
login
to post a comment