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:09 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e89c7c95765dee131534ddc281434fe798546424
e89c7c95
1 parent
2cb2f2e3
modify
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
src/views/et86Config/et86RuleConfig/edit/index.vue
src/views/et86Config/et86RuleConfig/edit/index.vue
View file @
e89c7c9
...
...
@@ -817,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