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
0ff630fc
Commit
0ff630fc
authored
Aug 24, 2022
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backup
parent
0faed767
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
4 deletions
+69
-4
order.js
src/api/ecw/order.js
+8
-0
detail.vue
src/views/bpm/processInstance/detail.vue
+1
-1
SplitDetail.vue
src/views/ecw/order/components/SplitDetail.vue
+60
-3
No files found.
src/api/ecw/order.js
View file @
0ff630fc
...
...
@@ -318,3 +318,11 @@ export function getOrderCourierNumber(params){
params
,
})
}
// 获取审核
export
function
getApproval
(
id
){
return
request
({
url
:
'
/order/approval/get?id=
'
+
id
,
method
:
'
get
'
})
}
\ No newline at end of file
src/views/bpm/processInstance/detail.vue
View file @
0ff630fc
...
...
@@ -239,7 +239,7 @@ export default {
component
:
"
shippingDetail
"
,
processId
:
this
.
processInstance
.
businessKey
,
},
split_
order
:
{
split_
detail
:
{
component
:
"
splitDetail
"
,
id
:
this
.
processInstance
.
businessKey
,
}
...
...
src/views/ecw/order/components/SplitDetail.vue
View file @
0ff630fc
<!--拆单审核中的申请信息部分-->
<
template
>
<div>
拆单审核详情
</div>
<div>
<el-descriptions
:column=
"4"
>
<el-descriptions-item
label=
"订单号"
>
kooriookami
</el-descriptions-item>
<el-descriptions-item
label=
"运输方式"
>
18100000000
</el-descriptions-item>
<el-descriptions-item
label=
"出货方式"
>
苏州市
</el-descriptions-item>
<el-descriptions-item
label=
"订单状态"
>
<el-tag
size=
"small"
>
学校
</el-tag>
</el-descriptions-item>
<el-descriptions-item
label=
"出货方式"
>
苏州市
</el-descriptions-item>
<el-descriptions-item
label=
"唛头"
>
苏州市
</el-descriptions-item>
<el-descriptions-item
label=
"目的仓"
>
苏州市
</el-descriptions-item>
</el-descriptions>
<template
v-for=
"item in detail.orderSplitBackVOList"
>
<div
class=
"title"
:key=
"item.orderNo"
>
{{
item
.
orderNo
}}
</div>
<el-table
:data=
"item.orderSplitItemBackVOList"
:key=
"'items-' + item.orderNo"
>
<el-table-column
label=
"序号"
>
<template
slot-scope=
"scope"
>
{{
scope
.
$index
+
1
}}
</
template
>
</el-table-column>
<el-table-column
label=
"中文品名"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
prodTitleZh
}}
</
template
>
</el-table-column>
<el-table-column
label=
"英文品名"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
prodTitleEn
}}
</
template
>
</el-table-column>
<el-table-column
label=
"品牌"
>
<
template
slot-scope=
"{row}"
>
<dict-tag
:type=
"DICT_TYPE.ECW_IS_BRAND"
:value=
"row.brandType"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"体积"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
volume
}}
m³
</
template
>
</el-table-column>
<el-table-column
label=
"重量"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
weight
}}
kg
</
template
>
</el-table-column>
<el-table-column
label=
"箱数"
>
<
template
slot-scope=
"{row}"
>
{{
row
.
num
}}
</
template
></el-table-column>
</el-table>
</template>
</div>
</template>
<
script
>
import
{
getApproval
}
from
'
@/api/ecw/order
'
export
default
{
props
:{
id
:
[
String
,
Number
]
},
data
(){
return
{
detail
:
null
}
},
watch
:{
id
(){
this
.
getData
()
}
},
created
(){
if
(
this
.
id
){
this
.
getData
()
}
},
methods
:{
getData
(){
getApproval
(
this
.
id
).
then
(
res
=>
{
this
.
detail
=
JSON
.
parse
(
res
.
data
.
details
)
})
}
}
}
</
script
>
\ No newline at end of file
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