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
32bcbf79
authored
2023-06-14 14:59:55 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
ff0f8828
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
src/components/LbTable/lb-table.vue
src/views/sqcx/jtfc/components/addjtfc.vue
src/views/sqcx/jtfc/components/addjtfcdata.js
src/components/LbTable/lb-table.vue
View file @
32bcbf7
...
...
@@ -75,7 +75,7 @@
},
heightNum
:
{
type
:
Number
,
default
:
355
,
default
:
0
,
},
maxHeight
:
{
type
:
Number
,
...
...
@@ -137,7 +137,7 @@
getHeight
()
{
if
(
!
this
.
heightNumSetting
)
{
let
_this
=
this
if
(
this
.
heightNum
)
{
if
(
this
.
heightNum
==
0
)
{
_this
.
$nextTick
(()
=>
{
if
(
document
.
querySelector
(
".tags-view-container"
))
{
window
.
addEventListener
(
'resize'
,
()
=>
{
...
...
src/views/sqcx/jtfc/components/addjtfc.vue
View file @
32bcbf7
...
...
@@ -21,12 +21,12 @@
</el-row>
</el-form>
<!-- 申请人 -->
<lb-table
:column=
"sqrColumns"
key=
"sqr1"
:data=
"form.sqrList"
:maxHeight=
"230
"
heightNumSetting
<lb-table
:column=
"sqrColumns"
:data=
"form.sqrList
"
heightNumSetting
:pagination=
"false"
>
</lb-table>
<!-- 权利人 -->
<b
class=
"title"
>
权利人
</b>
<lb-table
:column=
"qlrColumns"
key=
"ql2r"
:data=
"form.qlrList"
:maxHeight=
"230"
heightNumSetting
<lb-table
:column=
"qlrColumns"
:data=
"form.qlrList"
heightNumSetting
:heightNum=
"300"
:pagination=
"false"
>
</lb-table>
<div
v-show=
"isSearch"
>
...
...
@@ -37,7 +37,7 @@
</div>
</div>
<el-divider></el-divider>
<div
class=
"submit-button"
style=
"padding-bottom:50px"
>
<div
class=
"submit-button"
>
<el-button
v-show=
"isSearch == false"
@
click=
"resetClick"
>
重置
</el-button>
<el-button
type=
"primary"
v-show=
"isSearch == false"
@
click=
"queryChick"
>
查询
</el-button>
<el-button
type=
"primary"
v-show=
"isSearch && form.cxjgList.length > 0"
@
click=
"printResult"
>
...
...
src/views/sqcx/jtfc/components/addjtfcdata.js
View file @
32bcbf7
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-06-14 14:48:35
*/
import
filter
from
'@/utils/filter.js'
class
data
extends
filter
{
constructor
()
{
...
...
@@ -11,6 +16,7 @@ class data extends filter {
},
{
prop
:
'bdcqzh'
,
width
:
'110'
,
label
:
'不动产权证号'
,
},
{
...
...
@@ -27,6 +33,7 @@ class data extends filter {
},
{
prop
:
'bdcdyh'
,
width
:
'110'
,
label
:
'不动产单元号'
,
},
{
...
...
@@ -47,6 +54,7 @@ class data extends filter {
},
{
prop
:
'fwmj'
,
width
:
'120'
,
label
:
'建筑面积(㎡)'
,
},
{
...
...
Please
register
or
sign in
to post a comment