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-18 10:50:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a5e018df4d48def834889c4adf2e193cdfcf2ac8
a5e018df
1 parent
e0a6a66a
modify
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
src/views/allocationConfig/flightAllocConfig/mixins/index.js
src/views/allocationConfig/flightAllocConfig/mixins/index.js
View file @
a5e018d
...
...
@@ -222,9 +222,10 @@ export default {
return
;
}
let
noDateRouteLists
=
data
.
routeList
;
// 只负责展示航线优先级
// 航班航线基本信息(过滤ET86航线的)
let
noDateRouteList
=
data
.
routeList
.
filter
(
(
item
)
=>
item
.
etesRule
==
"N"
);
// 航班航线基本信息(过滤ET86航线的)
);
// 普通级别航班航线维度规则详情
const
noDateDataList
=
removeDuplicates
(
data
.
list
,
{
duplicate
:
"flightRoute"
,
// 去重字段
...
...
@@ -269,9 +270,10 @@ export default {
return
;
}
let
dateDataLists
=
data
.
routeList
;
// 只负责展示航线优先级
// 航班航线基本信息(过滤ET86航线的)
let
dateRouteList
=
data
.
routeList
.
filter
(
(
item
)
=>
item
.
etesRule
==
"N"
);
// 航班航线基本信息(过滤ET86航线的)
);
// 日期级别航班航线维度规则详情
const
dateDataList
=
removeDuplicates
(
data
.
list
,
{
duplicate
:
"flightRoute"
,
// 去重字段
...
...
Please
register
or
login
to post a comment