Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
076291ea
authored
2022-10-18 17:04:23 +0800
by
蔡俊立
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
退回
1 parent
e08e9efc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
20 deletions
src/views/workflow/components/th.vue
src/views/workflow/workFrame.vue
src/views/ywbl/ywsq/components/fwsyq.vue
src/views/workflow/components/th.vue
View file @
076291e
...
...
@@ -4,12 +4,12 @@
<div
class=
"from-clues-header"
>
<el-form
ref=
"queryForm"
label-width=
"90px"
>
<ul
style=
"margin-bottom:15px"
>
<li
v-for=
"(item,index) in
list"
class=
"listDetail
"
>
<li
v-for=
"(item,index) in
dataList"
class=
"listDetail"
:key=
"index
"
>
<p
class=
"icon"
>
<i
class=
"el-icon-circle-check"
></i>
</p>
<p>
{{
item
.
titl
e
}}
</p>
<p
>
{{
item
.
valu
e
}}
</p>
<p>
{{
item
.
activityNam
e
}}
</p>
<p
v-for=
"(child,childIndex) in item.userInfos"
:key=
"childIndex"
>
{{
child
.
nam
e
}}
</p>
</li>
</ul>
<el-form-item
label=
"退回意见:"
>
...
...
@@ -24,27 +24,31 @@
import
{
getTaskBackNode
,
sendBackTask
}
from
"@/api/fqsq.js"
export
default
{
props
:
{
formData
:
{
type
:
Object
,
default
:
{}
}
},
data
()
{
return
{
list
:
[
{
title
:
"初审"
,
value
:
''
,
},
{
title
:
"复审"
,
value
:
''
,
},
{
title
:
"录入"
,
value
:
''
,
}
],
dataList
:
[],
outstepopinion
:
''
}
},
created
()
{
this
.
getBackNode
();
},
methods
:
{
childFn
()
{
console
.
log
(
1111
);
},
getBackNode
()
{
getTaskBackNode
(
this
.
formData
).
then
(
res
=>
{
if
(
res
.
code
==
200
){
this
.
dataList
=
res
.
result
}
})
}
}
}
</
script
>
...
...
src/views/workflow/workFrame.vue
View file @
076291e
...
...
@@ -285,7 +285,10 @@ export default {
editItem
:
"workflow/components/th"
,
height
:
"330px"
,
width
:
'30%'
,
formData
:
{},
formData
:
{
bsmSlsq
:
this
.
bsmSlsq
,
bestepid
:
this
.
bestepid
},
btnShow
:
true
,
cancel
:
()
=>
{
console
.
log
(
"取消回调"
);
...
...
src/views/ywbl/ywsq/components/fwsyq.vue
View file @
076291e
...
...
@@ -45,7 +45,7 @@ import Cookies from 'js-cookie'
import
{
datas
,
sendThis
}
from
"../javascript/fwsyq.js"
;
import
table
from
"@/utils/mixin/table"
;
import
jump
from
"@/views/ywbl/ywsq/components/mixin/jump"
;
import
{
select
Fwsyq
,
startBusinessFlow
,
choiceBdcdy
}
from
"@/api/ywbl.js"
;
import
{
select
ScBdcdy
,
startBusinessFlow
,
choiceBdcdy
}
from
"@/api/ywbl.js"
;
export
default
{
mixins
:
[
table
,
jump
],
props
:
{
...
...
@@ -79,7 +79,7 @@ export default {
},
fetchData
()
{
this
.
queryForm
.
sqywbm
=
this
.
djywbm
;
select
Fwsyq
({
...
this
.
queryForm
,
...
this
.
pageData
,
fwfl
:
this
.
activeName
}).
then
((
res
)
=>
{
select
ScBdcdy
({
...
this
.
queryForm
,
...
this
.
pageData
,
fwfl
:
this
.
activeName
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
...
...
Please
register
or
sign in
to post a comment