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:01:54 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
73931eaecd08b6a08c3d3fdf0021fff4b3aff33d
73931eae
1 parent
0e433e1a
modify
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
src/views/allocationConfig/flightAllocConfig/mixins/index.js
src/views/allocationConfig/flightAllocConfig/mixins/index.js
View file @
73931ea
...
...
@@ -17,9 +17,11 @@ export default {
computed
:
{
// 获取路由参数
getRouter
()
{
if
(
this
.
$route
.
query
.
name
==
"add"
||
this
.
$route
.
query
.
name
==
"edit"
)
{
if
(
this
.
$route
.
query
.
name
==
"add"
)
{
return
"保存"
;
}
else
{
}
else
if
(
this
.
$route
.
query
.
name
==
"edit"
)
{
return
"修改"
;
}
else
{
return
false
;
}
},
...
...
@@ -191,17 +193,20 @@ export default {
this
.
cargoType
=
data
.
cargoType
;
// 申报类别
this
.
cargoStatus
=
data
.
cargoStatus
;
// 货物类型
this
.
puporpux
=
data
.
puporpux
;
// 取件扫描号
// Service Code
this
.
serviceCode
=
this
.
dicSort
(
data
.
serviceCode
.
sort
((
a
,
b
)
=>
a
.
chineseName
.
localeCompare
(
b
.
chineseName
)
)
);
// Service Code
);
// Handling Code
this
.
handlingCode
=
this
.
dicSort
(
this
.
sorttodo
(
data
.
handlingCode
,
"BLANK"
)
);
// Handling Code
);
// Sub Category
this
.
subCategory
=
this
.
dicSort
(
this
.
sorttodo
(
data
.
subCategory
,
"Blank"
)
);
// Sub Category
);
})
.
catch
(()
=>
{});
},
...
...
@@ -774,7 +779,7 @@ export default {
但是有一点就是White Tail只查询一条航班航线配置信息,根据从航班信息维护White Tail类型查看维度,
做路由跳转传参带过来的航线首先在日期级别航线配置信息中遍历查询有没有该航班航线的配置信息,如果有,
那么则不需要再走一次非日期级别的航班航线配置信息查询,如果没有那么则再走一次非日期航班航线配置信息查询。
但是航线优先级显示的航线还是取日期级别航班航线列表中的航线。
但是航线优先级显示的航线还是取日期级别航班航线列表中的航线。
最后航班航线配置信息依照航班航线列表排序即可;
7:航班航线信息列表和航班航线配置信息列表在做完航班航线配置信息列表去重之后和航班航线列表做数据整合之后,
还要对所有关于显示的数据做处理,比如页面上所有关于checkbox的勾选框radio单选框;
8: 在保存提交的时候对所有关于页面checkbox的勾选框做数据处理;
...
...
Please
register
or
login
to post a comment