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
db931e1b
Commit
db931e1b
authored
Jan 14, 2024
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
出仓箱数增加标签扫码功能后,不允许修改
parent
c83613a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
checkout.vue
src/views/ecw/box/shippingAir/nodePage/checkout.vue
+9
-1
startCheckout.vue
...s/ecw/box/shippingAir/nodePage/checkout/startCheckout.vue
+7
-3
No files found.
src/views/ecw/box/shippingAir/nodePage/checkout.vue
View file @
db931e1b
...
...
@@ -81,7 +81,7 @@
<!-- 开始出仓 -->
<el-dialog
:title=
"$t('开始出仓')"
:visible.sync=
"dialogVisible"
fullscreen
:modal-append-to-body=
false
append-to-body
>
<startCheckout
v-bind=
"$attrs"
v-if=
"dialogVisible"
v-on=
"$listeners"
@
closeDialog1=
"closeDialog1"
/>
<startCheckout
v-bind=
"$attrs"
v-if=
"dialogVisible"
v-on=
"$listeners"
@
closeDialog1=
"closeDialog1"
@
reload=
"reload"
/>
</el-dialog>
<el-row
class=
"operate-button"
>
...
...
@@ -94,6 +94,7 @@
</
template
>
<
script
>
import
{
getbox
}
from
"
@/api/ecw/box
"
;
import
{
airCheckoutCreate
}
from
"
@/api/ecw/boxSea
"
;
import
startCheckout
from
"
./checkout/startCheckout.vue
"
;
import
userSelect
from
"
./common/userSelect.vue
"
;
...
...
@@ -158,6 +159,13 @@ export default {
}
});
},
reload
()
{
getbox
(
this
.
$attrs
.
shipmentObj
.
id
).
then
((
res
)
=>
{
this
.
$set
(
this
.
airCheckoutObj
,
'
planNum
'
,
res
.
data
.
planNum
)
this
.
$set
(
this
.
airCheckoutObj
,
'
realNum
'
,
res
.
data
.
realNum
)
console
.
log
(
res
)
})
},
/** 取消 */
cancel
(
type
)
{
this
.
$emit
(
"
closeDialog
"
,
type
);
...
...
src/views/ecw/box/shippingAir/nodePage/checkout/startCheckout.vue
View file @
db931e1b
...
...
@@ -5,7 +5,7 @@
<div><dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"shipmentObj.transportType"
/>
:
{{
importCityName
(
shipmentObj
.
startWarehouseId
)
}}
》
{{
importCityName
(
shipmentObj
.
destWarehouseId
)
}}
【
{{
getShipChannelName
(
shipmentObj
.
channelRespVO
.
channelId
)
}}
】
</div>
<div>
<template>
<el-input
v-model=
"qrCode"
:placeholder=
"$t('请输入二维码/条码编号
')"
clearable
></el-input>
<el-input
style=
"width: 270px;"
v-model=
"qrCode"
:placeholder=
"$t('请输入二维码/条码编号/合包箱号标签
')"
clearable
></el-input>
<el-button
type=
"primary"
@
click=
"handlerBatchCreate('single')"
>
{{
$t
(
'
确定
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"handlerClick('batchInput',$t('批量输入'))"
>
{{
$t
(
'
批量输入
'
)
}}
</el-button>
<el-button
type=
"primary"
@
click=
"handlerClick('correction',$t('出仓纠错'))"
>
{{
$t
(
'
出仓纠错
'
)
}}
</el-button>
...
...
@@ -102,7 +102,7 @@
</el-row>
<el-row
style=
"margin-top: 20px;"
>
<el-button
type=
"primary"
@
click=
"submitCheckout"
>
{{$t('确认出仓')}}
</el-button>
<el-button
@
click=
"
$emit('closeDialog1')
"
>
{{$t('取消')}}
</el-button>
<el-button
@
click=
"
closeReload
"
>
{{$t('取消')}}
</el-button>
</el-row>
...
...
@@ -543,9 +543,13 @@ export default {
submitCheckout
(){
confirmAirCheckout
({
shipmentId
:
this
.
shipmentObj
.
id
}).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
).
then
(()
=>
{
this
.
$emit
(
'
closeDialog1
'
)
this
.
closeReload
(
)
});
});
},
closeReload
(){
this
.
$emit
(
'
closeDialog1
'
)
this
.
$emit
(
'
reload
'
)
}
},
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