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-20 19:38:33 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c12079fee9cbbbbc2ac25c3a34b2610c1d021c39
c12079fe
1 parent
eb740f25
modfy
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
src/views/allocationConfig/flightAllocConfig/mixins/index.js
src/views/allocationConfig/flightAllocConfig/mixins/index.js
View file @
c12079f
...
...
@@ -226,6 +226,18 @@ export default {
let
noDateRouteList
=
data
.
routeList
.
filter
(
(
item
)
=>
item
.
etesRule
==
"N"
);
// 航班信息维护从非日期级别拿数据时要删掉id 和 historyId
if
(
this
.
$route
.
query
.
flightKindName
==
"Purple Tail"
||
this
.
$route
.
query
.
flightKindName
==
"White Tail"
||
this
.
$route
.
query
.
querySpecifyData
==
"1"
)
{
data
.
list
.
map
((
item
)
=>
{
delete
item
.
id
;
delete
item
.
historyId
;
return
item
;
});
}
// 普通级别航班航线维度规则详情
const
noDateDataList
=
removeDuplicates
(
data
.
list
,
{
duplicate
:
"flightRoute"
,
// 去重字段
...
...
Please
register
or
login
to post a comment