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
eae4b97e
authored
2022-08-30 19:54:26 +0800
by
liangyifan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
退回
1 parent
a9ca24e0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
4 deletions
src/views/ywbl/fqsq/components/th.vue
src/views/ywbl/fqsq/fqsq.vue
src/views/ywbl/fqsq/components/th.vue
0 → 100644
View file @
eae4b97
<
template
>
<dialogBox
title=
"转出"
@
submitForm=
"submitForm"
:saveloding=
"saveloding"
saveButton=
"确认转出"
width=
"45%"
height=
'30%'
@
closeDialog=
"closeDialog"
v-model=
"value"
>
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<lb-table
:column=
"columns"
border
:key=
"key"
:heightNum=
"390"
:pagination=
"false"
heightNumSetting
:data=
"tableData"
>
</lb-table>
<el-form
:model=
"queryForm"
ref=
"queryForm"
label-width=
"120px"
>
<el-form-item
label=
"退回意见:"
>
<el-input
type=
"textarea"
v-model=
"queryForm.shyj"
></el-input>
</el-form-item>
</el-form>
</div>
</div>
</dialogBox>
</
template
>
<
script
>
import
{
completeTask
}
from
"@/api/fqsq.js"
export
default
{
components
:
{
},
props
:
{
value
:
{
type
:
Boolean
,
default
:
false
},
queryForm
:{
type
:
Object
,
default
:
false
}
},
data
()
{
return
{
saveloding
:
false
,
columns
:[
{
label
:
''
,
align
:
'center'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
radio
-
group
>
<
el
-
radio
label
=
"3"
>
备选项
<
/el-radio></
el
-
radio
-
group
>
}
},
{
prop
:
"thhjmc"
,
label
:
"退回环节名称"
,
},
{
prop
:
"blr"
,
label
:
"办理人"
,
},
],
tableData
:[],
radio
:
3
}
},
methods
:
{
submitForm
()
{
},
closeDialog
()
{
this
.
$emit
(
"input"
,
false
);
},
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
</
style
>
src/views/ywbl/fqsq/fqsq.vue
View file @
eae4b97
...
...
@@ -47,21 +47,22 @@
</div>
</el-tab-pane>
</el-tabs></div>
</div>
<zc
v-model=
"zcDialog"
:queryForm=
'queryForm'
/>
<thDialog
v-model=
"thflag"
/>
</div>
</
template
>
<
script
>
import
{
leftMenu
}
from
"@/api/fqsq.js"
import
zc
from
"./components/zc.vue"
import
thDialog
from
"./components/th.vue"
export
default
{
/**注册组件*/
components
:
{
zc
},
components
:
{
zc
,
thDialog
},
data
()
{
return
{
zcDialog
:
false
,
thflag
:
false
,
queryForm
:{
shyj
:
""
,
bsmSlsq
:
""
,
...
...
@@ -192,7 +193,7 @@ export default {
this
.
tabList
=
[...
this
.
tabList1
]
}
}
else
if
(
item
.
icon
==
'fqsq8'
){
this
.
thflag
=
true
}
else
if
(
item
.
icon
==
'fqsq9'
){
this
.
zcDialog
=
true
...
...
Please
register
or
sign in
to post a comment