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
5b75cc29
Commit
5b75cc29
authored
Jan 19, 2025
by
xiaoyan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 关联单明细
parent
a12ddae7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
unPkgPage.vue
...views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
+29
-1
No files found.
src/views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
View file @
5b75cc29
...
...
@@ -47,7 +47,9 @@
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
align=
"center"
prop=
"sumNum"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
sumNum
}}
<span
v-if=
"scope.row.mixStatus === 1"
>
(
{{
$t
(
'
混箱
'
)
}}
)
</span>
<el-link
type=
"primary"
>
{{
scope
.
row
.
sumNum
}}
<span
v-if=
"scope.row.mixStatus === 1"
>
(
{{
$t
(
'
混箱
'
)
}}
)
</span>
</el-link>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('纸箱尺寸')"
align=
"center"
>
...
...
@@ -82,19 +84,30 @@
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.page"
:limit.sync=
"queryParams.rows"
@
pagination=
"getList"
/>
</el-row>
</el-row>
<warehouse-detail
:orderId=
"showWarehouseInItemId"
:orderItemId=
"showWarehouseInItemId"
v-if=
"showWarehouseInItemId"
@
close=
"showWarehouseInItemId=null"
/>
<realated-order
:orderItemId=
"showRelatedItemId"
v-if=
"showRelatedItemId"
@
close=
"showRelatedItemId=null"
></realated-order>
</div>
</template>
<
script
>
import
{
getUnPkgPage
,
createPkgOrder
,
createBatchPkgOrder
}
from
'
@/api/ecw/boxAir
'
import
{
formatDate
,
serviceMsg
}
from
'
../../utils
'
import
WarehouseDetail
from
"
../../../shippingSea/nodePage/tally/warehouseDetail
"
;
import
RealatedOrder
from
"
../../../shippingSea/nodePage/tally/realatedOrder.vue
"
;
import
{
getOrder
}
from
"
@/api/ecw/order
"
;
export
default
{
components
:
{
WarehouseDetail
,
RealatedOrder
,
},
props
:
{
pkgData
:
Object
,
shipmentObj
:
Object
,
},
data
()
{
return
{
showWarehouseInItemId
:
null
,
showRelatedItemId
:
null
,
pagList
:
[],
// 查询参数
queryParams
:
{
...
...
@@ -113,7 +126,11 @@ export default {
methods
:
{
getList
()
{
getUnPkgPage
(
this
.
queryParams
).
then
((
res
)
=>
{
let
list
=
[];
this
.
pagList
=
res
.
data
.
list
||
[]
res
.
data
.
forEach
((
item
)
=>
{
})
this
.
total
=
res
.
data
.
total
})
},
...
...
@@ -136,6 +153,17 @@ export default {
})
return
data
.
toString
()
},
// 显示入仓记录
showWarehouseLogs
(
row
)
{
getOrder
(
row
.
orderId
).
then
((
response
)
=>
{
this
.
order
=
response
.
data
;
this
.
showWarehouseInItemId
=
row
.
orderId
;
});
},
// 显示关联单
showRelatedOrder
(
row
)
{
this
.
showRelatedItemId
=
row
.
orderId
},
addPkg
(
row
)
{
let
data
=
{
pkgId
:
this
.
pkgData
.
id
,
...
...
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