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
4fd3a224
authored
2022-08-30 16:01:39 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:家庭房产查询
1 parent
07fef6d8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
8 deletions
src/components/dialogBox/dialogBox.vue
src/views/sqcx/sqcxjl/components/editDialog.vue
src/components/dialogBox/dialogBox.vue
View file @
4fd3a22
...
...
@@ -92,7 +92,9 @@ export default {
}
},
submitForm
()
{
if
(
this
.
isButton
)
{
this
.
$emit
(
'submitForm'
);
}
},
closeDialog
()
{
this
.
key
++
...
...
src/views/sqcx/sqcxjl/components/editDialog.vue
View file @
4fd3a22
<
template
>
<dialogBox
title=
"家庭房产查询"
@
closeDialog=
"closeDialog"
@
submitForm=
"submitForm"
width=
"80%"
:isButton=
"false"
v-model=
"value"
>
<dialogBox
title=
"家庭房产查询"
@
closeDialog=
"closeDialog"
width=
"80%"
:isButton=
"false"
v-model=
"value"
>
<div
class=
"jtfccx-edit"
>
<div
class=
"jtfccx-edit-con"
>
<b
class=
"title"
>
申请信息
</b>
<lb-table
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
<el-form
:model=
"ruleForm"
label-width=
"100px"
>
<el-row>
...
...
@@ -23,10 +25,11 @@
</el-row>
</el-form>
<b
class=
"title"
>
权利人
</b>
<lb-table
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
<lb-table
:column=
"tableData.columns"
:data=
"tableData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
<div
class=
"submit-button"
>
<el-button
type=
"primary"
@
click=
"onSubmit
"
>
查询
</el-button>
<el-button
type=
"primary
"
>
查询
</el-button>
<el-button>
重置
</el-button>
</div>
<b
class=
"title"
>
查询结果
</b>
...
...
@@ -34,10 +37,13 @@
<lb-table
:column=
"searchData.columns"
:data=
"searchData.data"
:maxHeight=
"200"
heightNumSetting
:pagination=
"false"
>
</lb-table>
</div>
<div
class=
"submit-button"
style=
"padding-bottom:20px"
>
<el-button
type=
"primary"
@
click=
"onSubmit
"
>
打印(1)
</el-button>
<el-button
type=
"primary
"
>
打印(1)
</el-button>
<el-button
@
click=
"closeDialog"
>
关闭
</el-button>
</div>
</div>
</dialogBox>
</
template
>
...
...
@@ -205,7 +211,6 @@ export default {
closeDialog
()
{
this
.
$emit
(
'input'
,
false
)
},
submitForm
()
{
this
.
$emit
(
'input'
,
false
)
},
handleAdd
()
{
this
.
tableData
.
data
.
push
({})
},
...
...
@@ -226,7 +231,23 @@ export default {
border-bottom
:
1px
solid
$
borderColor
;
}
.submit-button
{
.jtfccx-edit
{
@include
flex;
flex-direction
:
column
;
overflow-y
:
hidden
;
max-height
:
87vh
;
.jtfccx-edit-con
{
flex
:
1
;
height
:
100%
;
overflow-y
:
scroll
;
}
.submit-button
{
text-align
:
center
;
height
:
52px
;
padding-top
:
10px
;
background-color
:
#fff
;
}
}
</
style
>
...
...
Please
register
or
sign in
to post a comment