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
47d26c56
Commit
47d26c56
authored
Oct 09, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化多次到港清关时间展示
parent
7b2bf271
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
4 deletions
+32
-4
arrival.vue
src/views/ecw/box/shippingAir/nodePage/arrival.vue
+17
-4
cusClearance.vue
src/views/ecw/box/shippingAir/nodePage/cusClearance.vue
+15
-0
No files found.
src/views/ecw/box/shippingAir/nodePage/arrival.vue
View file @
47d26c56
...
@@ -165,10 +165,23 @@ export default {
...
@@ -165,10 +165,23 @@ export default {
this
.
compareDate
(
this
.
airArrivalInfo
.
estTime
,
val
);
this
.
compareDate
(
this
.
airArrivalInfo
.
estTime
,
val
);
},
},
// 确认到港时间
"
airArrivalInfo.arriveType
"
(
val
)
{
"
arrivalObj.apConfirmTime
"
(
val
)
{
if
(
val
==
1
){
this
.
compareDate
(
this
.
getExpectedTime
(),
val
);
this
.
$set
(
this
.
airArrivalInfo
,
'
actSecondTime
'
,
null
)
},
this
.
$set
(
this
.
airArrivalInfo
,
'
estTime
'
,
null
)
this
.
$set
(
this
.
airArrivalInfo
,
'
actTime
'
,
null
)
}
else
{
let
oldData
=
{
...
this
.
$attrs
.
shipmentObj
[
this
.
$attrs
.
currNode
.
voName
]
};
oldData
=
formatDateStr
(
oldData
,
[
"
actSecondTime
"
,
"
estTime
"
,
"
actTime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
this
.
$set
(
this
.
airArrivalInfo
,
'
actSecondTime
'
,
oldData
.
actSecondTime
)
this
.
$set
(
this
.
airArrivalInfo
,
'
estTime
'
,
oldData
.
estTime
)
this
.
$set
(
this
.
airArrivalInfo
,
'
actTime
'
,
oldData
.
actTime
)
}
}
},
},
methods
:
{
methods
:
{
filterOrder
(
val
){
filterOrder
(
val
){
...
...
src/views/ecw/box/shippingAir/nodePage/cusClearance.vue
View file @
47d26c56
...
@@ -109,6 +109,21 @@ export default {
...
@@ -109,6 +109,21 @@ export default {
// 清关时间
// 清关时间
'
cusClearanceObj.clClearTime
'
(
val
)
{
'
cusClearanceObj.clClearTime
'
(
val
)
{
this
.
compareDate
(
this
.
cusClearanceObj
.
clEstTime
,
val
)
this
.
compareDate
(
this
.
cusClearanceObj
.
clEstTime
,
val
)
},
'
cusClearanceObj.clearanceType
'
(
val
)
{
if
(
val
==
1
){
this
.
$set
(
this
.
cusClearanceObj
,
'
clEstTime
'
,
null
)
this
.
$set
(
this
.
cusClearanceObj
,
'
clClearTime
'
,
null
)
}
else
{
let
oldData
=
{
...
this
.
$attrs
.
shipmentObj
[
this
.
$attrs
.
currNode
.
voName
]
};
oldData
=
formatDateStr
(
oldData
,
[
"
clEstTime
"
,
"
clClearTime
"
],
"
YYYY-MM-DD HH:mm:ss
"
);
this
.
$set
(
this
.
cusClearanceObj
,
'
clClearTime
'
,
oldData
.
clClearTime
)
this
.
$set
(
this
.
cusClearanceObj
,
'
clEstTime
'
,
oldData
.
clEstTime
)
}
}
}
},
},
computed
:
{
computed
:
{
...
...
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