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
82dc8e04
Commit
82dc8e04
authored
Jun 11, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
拆单审核
parent
e27cbcfd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
64 additions
and
20 deletions
+64
-20
splitOrder.vue
...views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
+3
-0
BoxSplitDetail.vue
src/views/ecw/order/components/BoxSplitDetail.vue
+25
-6
SplitDetail.vue
src/views/ecw/order/components/SplitDetail.vue
+33
-14
index.vue
src/views/ecw/order/splitApply/index.vue
+3
-0
No files found.
src/views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
View file @
82dc8e04
...
...
@@ -870,6 +870,9 @@ export default {
},
// 显示入库记录
showWarehouse
(
row
){
if
(
!
row
.
specsRecordVOList
){
return
this
.
$message
.
info
(
this
.
$t
(
'
暂无入仓记录
'
))
}
this
.
currentWarehouseRecord
=
row
.
specsRecordVOList
}
},
...
...
src/views/ecw/order/components/BoxSplitDetail.vue
View file @
82dc8e04
...
...
@@ -46,35 +46,48 @@
<dict-tag
:type=
"DICT_TYPE.ECW_IS_BRAND"
:value=
"row.brandType"
/>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('体积')"
>
<el-table-column
:label=
"$t('
入仓
体积')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
volume
}}
m³
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('重量')"
>
<el-table-column
:label=
"$t('收费体积')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
chargeVolume
}}
m³
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('入仓重量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
weight
}}
kg
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('收费重量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
chargeWeight
}}
kg
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
num
}}
</
template
>
<
template
slot-scope=
"{row}"
>
<el-button
type=
"text"
@
click=
"showWarehouseRecord(row)"
>
{{
row
.
num
}}
</el-button>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('数量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
quantity
}}
</
template
>
</el-table-column>
</el-table>
</template>
<warehouse-record
v-if=
"currentWarehouseRecord"
:list=
"currentWarehouseRecord"
append-to-body
></warehouse-record>
</div>
</template>
<
script
>
import
{
getOrder
}
from
'
@/api/ecw/order
'
import
{
getBoxApproval
}
from
'
@/api/ecw/box
'
import
{
getChannel
}
from
'
@/api/ecw/channel
'
import
WarehouseRecord
from
"
@/views/ecw/order/splitApply/components/WarehouseRecord
"
;
export
default
{
props
:{
components
:
{
WarehouseRecord
},
props
:{
id
:
[
String
,
Number
]
},
data
(){
return
{
detail
:
null
,
order
:
null
,
channel
:
null
channel
:
null
,
// 查看入仓记录的条目
currentWarehouseRecord
:
null
}
},
watch
:{
...
...
@@ -110,6 +123,12 @@ export default {
getChannel
(
this
.
order
.
channelId
).
then
(
res
=>
{
this
.
channel
=
res
.
data
})
},
showWarehouseRecord
(
row
){
if
(
!
row
.
specsRecordVOList
){
return
this
.
$message
.
info
(
this
.
$t
(
'
暂无入仓记录
'
))
}
this
.
currentWarehouseRecord
=
row
.
specsRecordVOList
}
}
}
...
...
@@ -122,4 +141,4 @@ export default {
font-weight
:
bold
;
}
}
</
style
>
\ No newline at end of file
</
style
>
src/views/ecw/order/components/SplitDetail.vue
View file @
82dc8e04
...
...
@@ -46,31 +46,42 @@
<dict-tag
v-else
:type=
"DICT_TYPE.ECW_IS_BRAND"
:value=
"row.feeType"
/>
</template>
</el-table-column>
<el-table-column
:label=
"$t('体积')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
volume
}}
m³
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('重量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
weight
}}
kg
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
num
}}
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('入仓体积')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
volume
}}
m³
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('收费体积')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
chargeVolume
}}
m³
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('入仓重量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
weight
}}
kg
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('收费重量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
chargeWeight
}}
kg
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('箱数')"
>
<
template
slot-scope=
"{row}"
>
<el-button
type=
"text"
@
click=
"showWarehouseRecord(row)"
>
{{
row
.
num
}}
</el-button>
</
template
>
</el-table-column>
<el-table-column
:label=
"$t('数量')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
quantity
}}
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
:label=
"$t('备注')"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
remark
}}
</
template
>
</el-table-column>
</el-table-column>
</el-table>
</template>
<warehouse-record
v-if=
"currentWarehouseRecord"
:list=
"currentWarehouseRecord"
append-to-body
></warehouse-record>
</div>
</template>
<
script
>
import
{
getApproval
,
getOrder
}
from
'
@/api/ecw/order
'
import
{
getChannel
}
from
'
@/api/ecw/channel
'
import
{
getSplitList
}
from
'
@/api/ecw/orderHandle
'
import
WarehouseRecord
from
"
@/views/ecw/order/splitApply/components/WarehouseRecord
"
;
export
default
{
props
:{
components
:
{
WarehouseRecord
},
props
:{
id
:
[
String
,
Number
]
},
data
(){
...
...
@@ -78,7 +89,9 @@ export default {
detail
:
null
,
order
:
null
,
channel
:
null
,
orderSplitBackVOList
:
[]
orderSplitBackVOList
:
[],
// 查看入仓记录的条目
currentWarehouseRecord
:
null
}
},
watch
:{
...
...
@@ -121,7 +134,13 @@ export default {
getChannel
(
this
.
order
.
channelId
).
then
(
res
=>
{
this
.
channel
=
res
.
data
})
},
showWarehouseRecord
(
row
){
if
(
!
row
.
specsRecordVOList
){
return
this
.
$message
.
info
(
this
.
$t
(
'
暂无入仓记录
'
))
}
this
.
currentWarehouseRecord
=
row
.
specsRecordVOList
}
}
}
</
script
>
...
...
@@ -133,4 +152,4 @@ export default {
font-weight
:
bold
;
}
}
</
style
>
\ No newline at end of file
</
style
>
src/views/ecw/order/splitApply/index.vue
View file @
82dc8e04
...
...
@@ -996,6 +996,9 @@ export default {
},
// 显示入库记录
showWarehouse
(
row
){
if
(
!
row
.
specsRecordVOList
){
return
this
.
$message
.
info
(
this
.
$t
(
'
暂无入仓记录
'
))
}
this
.
currentWarehouseRecord
=
row
.
specsRecordVOList
}
}
...
...
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