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
d8e067ca
Commit
d8e067ca
authored
Sep 28, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调仓明细列表
parent
f655cc3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
6 deletions
+29
-6
batchSingleApplication.vue
src/views/ecw/order/batchSingleApplication.vue
+29
-6
No files found.
src/views/ecw/order/batchSingleApplication.vue
View file @
d8e067ca
...
@@ -88,10 +88,26 @@
...
@@ -88,10 +88,26 @@
:key=
"index"
></el-option>
:key=
"index"
></el-option>
</el-select></el-col>
</el-select></el-col>
</el-row>
</el-row>
<el-divider></el-divider>
<el-divider
contentPosition=
"left"
>
调仓明细
</el-divider>
<h1
class=
"title"
>
<el-card
class=
"box-card"
>
审批流程
<el-table
:data=
"warehouseList"
>
</h1>
<el-table-column
label=
"调仓编号"
prop=
"id"
></el-table-column>
<el-table-column
label=
"调出仓库"
prop=
"warehouseOutName"
></el-table-column>
<el-table-column
label=
"调入仓库"
prop=
"warehouseInName"
></el-table-column>
<el-table-column
label=
"申请人"
prop=
"creatorName"
></el-table-column>
<el-table-column
label=
"申请时间"
>
<
template
v-slot=
"{row}"
>
{{
parseTime
(
row
.
createTime
)
}}
</
template
>
</el-table-column>
<el-table-column
label=
"状态"
>
<
template
v-slot=
"{row}"
>
{{
STATUS
[
row
.
status
]
}}
</
template
>
</el-table-column>
</el-table>
</el-card>
<el-divider
contentPosition=
"left"
>
审批流程
</el-divider>
<div
style=
"padding: 20px"
>
<div
style=
"padding: 20px"
>
<work-flow
xmlkey=
"warehouse_transfer"
v-model=
"params.copyUserId"
/>
<work-flow
xmlkey=
"warehouse_transfer"
v-model=
"params.copyUserId"
/>
</div>
</div>
...
@@ -120,7 +136,7 @@ import {
...
@@ -120,7 +136,7 @@ import {
}
from
"
@/api/ecw/batchSingleApplication
"
;
}
from
"
@/api/ecw/batchSingleApplication
"
;
import
{
getProcessDefinitionBpmnXMLByKey
}
from
"
@/api/bpm/definition
"
;
import
{
getProcessDefinitionBpmnXMLByKey
}
from
"
@/api/bpm/definition
"
;
import
warehouseDetails
from
"
@/views/ecw/order/components/warehouseDetails
"
;
import
warehouseDetails
from
"
@/views/ecw/order/components/warehouseDetails
"
;
import
{
getOrderPage
}
from
"
@/api/ecw/order
"
;
import
{
get
AdjustInfo
,
get
OrderPage
}
from
"
@/api/ecw/order
"
;
import
workFlow
from
"
@/components/WorkFlow
"
;
import
workFlow
from
"
@/components/WorkFlow
"
;
import
Template
from
"
@/views/cms/template
"
;
import
Template
from
"
@/views/cms/template
"
;
import
{
arrryToKeyedObjectBy
}
from
"
@/utils
"
;
import
{
arrryToKeyedObjectBy
}
from
"
@/utils
"
;
...
@@ -142,11 +158,16 @@ export default {
...
@@ -142,11 +158,16 @@ export default {
},
},
created
()
{
created
()
{
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
getChannelList
().
then
(
res
=>
this
.
channelList
=
res
.
data
)
},
},
watch
:
{
watch
:
{
dialogVisible
(
val
)
{
dialogVisible
(
val
)
{
if
(
val
)
{
if
(
val
)
{
this
.
getOrderListFn
()
this
.
getOrderListFn
()
getAdjustInfo
({
orderId
:
this
.
orderList
,
lang
:
0
}).
then
(
r
=>
{
this
.
warehouseList
=
r
.
data
})
}
else
{
}
else
{
this
.
params
=
{
this
.
params
=
{
orderIds
:
undefined
,
orderIds
:
undefined
,
...
@@ -175,6 +196,7 @@ export default {
...
@@ -175,6 +196,7 @@ export default {
},
},
data
()
{
data
()
{
return
{
return
{
STATUS
:
{
1
:
'
申请中
'
,
2
:
'
通过
'
,
3
:
'
不通过
'
,
4
:
'
已取消
'
,
5
:
'
已出仓
'
,
6
:
'
已到仓
'
},
list
:
[],
list
:
[],
selectedUsers
:
[],
selectedUsers
:
[],
availableWarehouse
:
[],
availableWarehouse
:
[],
...
@@ -188,7 +210,8 @@ export default {
...
@@ -188,7 +210,8 @@ export default {
copyUserId
:
[],
copyUserId
:
[],
},
},
applyStatus
:{},
//调仓-查看状态,
applyStatus
:{},
//调仓-查看状态,
channelList
:[]
channelList
:[],
warehouseList
:[]
}
}
},
},
...
...
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