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
71418b61
Commit
71418b61
authored
Dec 01, 2022
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
parents
c6e2b092
948f447a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
boxSea.js
src/api/ecw/boxSea.js
+16
-0
cusDeclaration.vue
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
+15
-1
No files found.
src/api/ecw/boxSea.js
View file @
71418b61
...
@@ -870,6 +870,22 @@ export function extraCostList(params) {
...
@@ -870,6 +870,22 @@ export function extraCostList(params) {
});
});
}
}
/**
* 获得额外报关费用列表
*
* @export
* @param {*} data
* @return {*}
*/
export
function
customsOrderList
(
data
)
{
return
request
({
url
:
"
/shipment/box/customsOrderList
"
,
method
:
"
post
"
,
headers
:
{
"
Content-Type
"
:
"
application/x-www-form-urlencoded
"
},
data
:
jsonToFormData
(
data
),
});
}
/***************************** 报关费用 end **********************************/
/***************************** 报关费用 end **********************************/
/***************************** 理货 start **********************************/
/***************************** 理货 start **********************************/
...
...
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
View file @
71418b61
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
:label=
"$t('正常报关订单')"
>
<el-form-item
:label=
"$t('正常报关订单')"
>
<div
v-for=
"item in
shipmentObj.
normalOrderList"
:key=
"item.orderId"
>
<div
v-for=
"item in normalOrderList"
:key=
"item.orderId"
>
<a
href=
"javascript:void(0)"
@
click=
"jumpOrderDetail(item)"
>
{{ item.orderNo }}
</a>
<a
href=
"javascript:void(0)"
@
click=
"jumpOrderDetail(item)"
>
{{ item.orderNo }}
</a>
</div>
</div>
</el-form-item>
</el-form-item>
...
@@ -164,6 +164,7 @@ import {
...
@@ -164,6 +164,7 @@ import {
approvalCancel
,
approvalCancel
,
resetById
,
resetById
,
resetByShipmentId
,
resetByShipmentId
,
customsOrderList
,
}
from
"
@/api/ecw/boxSea
"
;
}
from
"
@/api/ecw/boxSea
"
;
import
{
import
{
formatNumberString
,
formatNumberString
,
...
@@ -229,6 +230,7 @@ export default {
...
@@ -229,6 +230,7 @@ export default {
this
.
DICT_TYPE
.
BOX_INSPECTION_TIME_CUSTOMS
this
.
DICT_TYPE
.
BOX_INSPECTION_TIME_CUSTOMS
)[
0
].
value
,
)[
0
].
value
,
isDownload
:
false
,
isDownload
:
false
,
normalOrderList
:
[],
};
};
},
},
created
()
{
created
()
{
...
@@ -258,8 +260,17 @@ export default {
...
@@ -258,8 +260,17 @@ export default {
]);
]);
this
.
cusDeclarationObj
=
oldData
;
this
.
cusDeclarationObj
=
oldData
;
// this.getCustomsOrderList(oldData.dcCustomsType);
},
},
methods
:
{
methods
:
{
getCustomsOrderList
(
dcCustomsType
)
{
customsOrderList
({
shipmentId
:
this
.
shipmentObj
.
id
,
customsTypes
:
dcCustomsType
===
"
3
"
?
"
2,3
"
:
dcCustomsType
,
}).
then
((
res
)
=>
{
this
.
normalOrderList
=
res
.
data
??
[];
});
},
regCloseDialog
(
type
)
{
regCloseDialog
(
type
)
{
this
.
regDialogVisible
=
false
;
this
.
regDialogVisible
=
false
;
if
(
type
===
"
error
"
)
{
if
(
type
===
"
error
"
)
{
...
@@ -534,6 +545,9 @@ export default {
...
@@ -534,6 +545,9 @@ export default {
},
},
},
},
watch
:
{
watch
:
{
"
cusDeclarationObj.dcCustomsType
"
(
val
)
{
this
.
getCustomsOrderList
(
val
);
},
"
cusDeclarationObj.documentInfo
"
(
val
)
{
"
cusDeclarationObj.documentInfo
"
(
val
)
{
this
.
isDownload
=
false
;
this
.
isDownload
=
false
;
if
(
val
.
includes
(
"
2
"
))
{
if
(
val
.
includes
(
"
2
"
))
{
...
...
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