Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
bdbf3751
Commit
bdbf3751
authored
Nov 12, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
1477478d
451040b0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
13 deletions
+18
-13
index.vue
src/components/RoutersSelector/index.vue
+2
-0
booking.vue
src/views/ecw/box/shippingAir/nodePage/booking.vue
+2
-2
preinstall.vue
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
+9
-6
twoWayTakeoff.vue
src/views/ecw/box/shippingAir/nodePage/twoWayTakeoff.vue
+3
-3
utils.js
src/views/ecw/box/shippingAir/utils.js
+2
-2
No files found.
src/components/RoutersSelector/index.vue
View file @
bdbf3751
...
...
@@ -311,6 +311,8 @@ export default {
}
}) */
if
(
selected
){
// 先判断是否已勾选
if
(
this
.
getSelectedIndex
(
router
)
>
-
1
)
return
this
.
selectedRoutes
.
push
({
lineId
:
router
.
id
,
channelId
:
router
.
channel
.
channelId
,
...
...
src/views/ecw/box/shippingAir/nodePage/booking.vue
View file @
bdbf3751
...
...
@@ -10,8 +10,8 @@
<el-form-item
:label=
"$t('目的港')"
>
<dockSelect
v-model=
"bookingObj.destPortId"
:placeholder=
"$t('请选择目的港')"
portType=
"1"
:allDocks=
"this.$attrs.allDocks"
/>
</el-form-item>
<el-form-item
:label=
"$t('
Shipper
')"
>
<supplierSelect
v-model=
"bookingObj.shipperId"
:companyType=
"'5'"
:placeholder=
"$t('请选择
Shipper
')"
:allSupplier=
"this.$attrs.allSupplier"
/>
<el-form-item
:label=
"$t('
订舱代理
')"
>
<supplierSelect
v-model=
"bookingObj.shipperId"
:companyType=
"'5'"
:placeholder=
"$t('请选择
订舱代理
')"
:allSupplier=
"this.$attrs.allSupplier"
/>
</el-form-item>
<el-form-item
:label=
"$t('航空公司')"
>
<supplierSelect
v-model=
"bookingObj.airlineCompanyId"
:companyType=
"'7'"
:placeholder=
"$t('请选择航空公司')"
:allSupplier=
"this.$attrs.allSupplier"
/>
...
...
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
View file @
bdbf3751
...
...
@@ -54,7 +54,7 @@
<el-form-item
:label=
"$t('特性')"
prop=
"attrId"
>
<el-select
v-model=
"queryParams.attrId"
:placeholder=
"$t('特性')"
>
<el-option
v-for=
"item in attrIdList"
:label=
"item.label"
:value=
"item.value
*1
"
:key=
"item.value"
></el-option>
<el-option
v-for=
"item in attrIdList"
:label=
"item.label"
:value=
"item.value"
:key=
"item.value"
></el-option>
</el-select>
</el-form-item>
...
...
@@ -171,8 +171,11 @@
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('箱数')
"
align
=
"
center
"
prop
=
"
warehouseInInfoVO.cartonsNum
"
>
<
template
slot
-
scope
=
"
scope
"
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
<
/template
>
<
el
-
button
v
-
if
=
"
scope.row.mixStatus == 1
"
type
=
"
text
"
@
click
=
"
seeBox(scope.row.orderId,scope.row.orderItemId)
"
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
{{
$t
(
'
(混箱)
'
)
}}
<
/el-button
>
<
template
v
-
else
>
{{
scope
.
row
.
warehouseInInfoVO
.
cartonsNum
}}
<
/template
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('体积') + '/' + $t('重量') + '/' + $t('重货比')
"
align
=
"
center
"
width
=
"
140
"
prop
=
"
volumeWeight
"
>
<
template
slot
-
scope
=
"
scope
"
>
...
...
@@ -528,8 +531,8 @@ export default {
/** 特性 */
attrIdList
()
{
let
data
=
[]
if
(
this
.
queryParams
.
shippingC
hannelId
){
let
attrs
=
this
.
channelList
.
find
(
item
=>
this
.
queryParams
.
shippingC
hannelId
==
item
.
channelId
)
if
(
this
.
queryParams
.
c
hannelId
){
let
attrs
=
this
.
channelList
.
find
(
item
=>
this
.
queryParams
.
c
hannelId
==
item
.
channelId
)
if
(
attrs
){
let
attrId
=
attrs
.
attrId
.
split
(
'
,
'
)
attrId
.
forEach
((
item
,
index
)
=>
{
...
...
@@ -551,7 +554,7 @@ export default {
this
.
handleQuery
(
"
pre
"
);
this
.
smartInstall
=
0
;
// 查询渠道
getChannelList
().
then
((
res
)
=>
(
this
.
channelList
=
res
.
data
));
getChannelList
().
then
((
res
)
=>
(
this
.
channelList
=
res
.
data
));
}
,
methods
:
{
formatDate
,
...
...
src/views/ecw/box/shippingAir/nodePage/twoWayTakeoff.vue
View file @
bdbf3751
...
...
@@ -4,8 +4,8 @@
<el-form-item
:label=
"$t('预计起飞时间')"
>
{{
getTakeOffTime
()
}}
</el-form-item>
<el-form-item
:label=
"$t('预计到港时间')"
prop=
"est
_t
ime"
>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"twoWayTakeoffObj.est
_t
ime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
<el-form-item
:label=
"$t('预计到港时间')"
prop=
"est
T
ime"
>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"twoWayTakeoffObj.est
T
ime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
</el-form-item>
<el-form-item
:label=
"$t('实际起飞时间')"
prop=
"dtRealFlyTime"
>
<el-date-picker
type=
"datetime"
:placeholder=
"$t('请选择日期')"
v-model=
"twoWayTakeoffObj.dtRealFlyTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
></el-date-picker>
...
...
@@ -65,7 +65,7 @@ export default {
let
oldData
=
{
...
this
.
$attrs
.
shipmentObj
[
voName
]
};
oldData
=
formatDateStr
(
oldData
,
[
"
dtRealFlyTime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
oldData
=
formatDateStr
(
oldData
,
[
"
dtRealHeadTime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
oldData
=
formatDateStr
(
oldData
,
[
"
est
_t
ime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
oldData
=
formatDateStr
(
oldData
,
[
"
est
T
ime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
this
.
twoWayTakeoffObj
=
oldData
;
if
(
this
.
$attrs
.
shipmentObj
[
'
bookAirInfo
'
].
voyage
&&
this
.
$attrs
.
shipmentObj
[
'
bookAirInfo
'
].
voyage
==
2
){
this
.
dtRealHeadTimeFlag
=
true
...
...
src/views/ecw/box/shippingAir/utils.js
View file @
bdbf3751
...
...
@@ -903,7 +903,7 @@ function getColmnMapping() {
type
:
"
supplier
"
,
},
{
title
:
i18n
.
$t
(
"
Shipper
"
),
title
:
i18n
.
$t
(
"
订舱代理
"
),
key
:
"
shipperId
"
,
type
:
"
supplier
"
,
},
...
...
@@ -1058,7 +1058,7 @@ function getColmnMapping() {
boxAirFlyInfo
:
[
{
title
:
i18n
.
$t
(
"
预计到港时间
"
),
key
:
"
dtRealFly
Time
"
,
key
:
"
est
Time
"
,
type
:
"
datetime
"
,
},
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment