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
85376b3e
Commit
85376b3e
authored
Sep 24, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
异常登记修复
parent
a1c850dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
arrival.vue
src/views/ecw/box/shippingAir/nodePage/arrival.vue
+16
-1
cusDeclaration.vue
src/views/ecw/box/shippingAir/nodePage/cusDeclaration.vue
+1
-1
No files found.
src/views/ecw/box/shippingAir/nodePage/arrival.vue
View file @
85376b3e
...
...
@@ -102,6 +102,11 @@ export default {
"
airArrivalInfo.actTime
"
(
val
)
{
this
.
compareDate
(
this
.
airArrivalInfo
.
estTime
,
val
);
},
// 确认到港时间
"
arrivalObj.apConfirmTime
"
(
val
)
{
this
.
compareDate
(
this
.
getExpectedTime
(),
val
);
},
},
methods
:
{
regCloseDialog
(
type
)
{
...
...
@@ -110,7 +115,7 @@ export default {
this
.
$emit
(
"
getBoxInfo
"
);
}
},
// 获取
预计到港
时间
// 获取
实际二程起飞
时间
getHeadTravelTime
()
{
const
{
shippingInfo
}
=
this
.
$attrs
.
shipmentObj
;
if
(
shippingInfo
)
{
...
...
@@ -120,6 +125,16 @@ export default {
}
return
null
;
},
// 获取预计到港时间
getExpectedTime
()
{
const
{
shippingInfo
}
=
this
.
$attrs
.
shipmentObj
;
if
(
shippingInfo
)
{
return
dayjs
(
shippingInfo
.
dtEstArrivalTime
).
format
(
"
YYYY-MM-DD HH:mm:ss
"
);
}
return
null
;
},
// 时间比较
compareDate
(
expectedTime
,
apConfirmTime
)
{
this
.
showMsg
=
false
;
...
...
src/views/ecw/box/shippingAir/nodePage/cusDeclaration.vue
View file @
85376b3e
...
...
@@ -138,7 +138,7 @@
<el-button
type=
"success"
v-if=
"!inReview && !inOverReview"
@
click=
"onSubmit(2)"
:disabled=
"isCheckDeal('submit')"
>
{{ $t('提交') }}
</el-button>
<el-button
@
click=
"cancel"
>
{{ $t('关闭') }}
</el-button>
<el-button
type=
"primary"
@
click=
"extraCost"
v-show=
"cusDeclarationObj.dcCustomsStatus === '2' || cusDeclarationObj.dcCustomsStatus === '3'"
>
{{ $t('额外费用') }}
</el-button>
<
!-- <el-button type="primary" @click="exceptionReg" :disabled="!isShowError">{{$t('异常登记')}}</el-button> --
>
<
el-button
type=
"primary"
@
click=
"exceptionReg"
:disabled=
"!isShowError"
>
{{$t('异常登记')}}
</el-button
>
</el-row>
<!-- 对话框 -->
...
...
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