1
Showing
3 changed files
with
13 additions
and
5 deletions
... | @@ -75,7 +75,7 @@ | ... | @@ -75,7 +75,7 @@ |
75 | }, | 75 | }, |
76 | heightNum: { | 76 | heightNum: { |
77 | type: Number, | 77 | type: Number, |
78 | default: 355, | 78 | default: 0, |
79 | }, | 79 | }, |
80 | maxHeight: { | 80 | maxHeight: { |
81 | type: Number, | 81 | type: Number, |
... | @@ -137,7 +137,7 @@ | ... | @@ -137,7 +137,7 @@ |
137 | getHeight () { | 137 | getHeight () { |
138 | if (!this.heightNumSetting) { | 138 | if (!this.heightNumSetting) { |
139 | let _this = this | 139 | let _this = this |
140 | if (this.heightNum) { | 140 | if (this.heightNum == 0) { |
141 | _this.$nextTick(() => { | 141 | _this.$nextTick(() => { |
142 | if (document.querySelector(".tags-view-container")) { | 142 | if (document.querySelector(".tags-view-container")) { |
143 | window.addEventListener('resize', () => { | 143 | window.addEventListener('resize', () => { | ... | ... |
... | @@ -21,12 +21,12 @@ | ... | @@ -21,12 +21,12 @@ |
21 | </el-row> | 21 | </el-row> |
22 | </el-form> | 22 | </el-form> |
23 | <!-- 申请人 --> | 23 | <!-- 申请人 --> |
24 | <lb-table :column="sqrColumns" key="sqr1" :data="form.sqrList" :maxHeight="230" heightNumSetting | 24 | <lb-table :column="sqrColumns" :data="form.sqrList" heightNumSetting |
25 | :pagination="false"> | 25 | :pagination="false"> |
26 | </lb-table> | 26 | </lb-table> |
27 | <!-- 权利人 --> | 27 | <!-- 权利人 --> |
28 | <b class="title">权利人</b> | 28 | <b class="title">权利人</b> |
29 | <lb-table :column="qlrColumns" key="ql2r" :data="form.qlrList" :maxHeight="230" heightNumSetting | 29 | <lb-table :column="qlrColumns" :data="form.qlrList" heightNumSetting :heightNum="300" |
30 | :pagination="false"> | 30 | :pagination="false"> |
31 | </lb-table> | 31 | </lb-table> |
32 | <div v-show="isSearch"> | 32 | <div v-show="isSearch"> |
... | @@ -37,7 +37,7 @@ | ... | @@ -37,7 +37,7 @@ |
37 | </div> | 37 | </div> |
38 | </div> | 38 | </div> |
39 | <el-divider></el-divider> | 39 | <el-divider></el-divider> |
40 | <div class="submit-button" style="padding-bottom:50px"> | 40 | <div class="submit-button"> |
41 | <el-button v-show="isSearch == false" @click="resetClick">重置</el-button> | 41 | <el-button v-show="isSearch == false" @click="resetClick">重置</el-button> |
42 | <el-button type="primary" v-show="isSearch == false" @click="queryChick">查询</el-button> | 42 | <el-button type="primary" v-show="isSearch == false" @click="queryChick">查询</el-button> |
43 | <el-button type="primary" v-show="isSearch && form.cxjgList.length > 0" @click="printResult"> | 43 | <el-button type="primary" v-show="isSearch && form.cxjgList.length > 0" @click="printResult"> | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-06-14 14:48:35 | ||
5 | */ | ||
1 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
2 | class data extends filter { | 7 | class data extends filter { |
3 | constructor() { | 8 | constructor() { |
... | @@ -11,6 +16,7 @@ class data extends filter { | ... | @@ -11,6 +16,7 @@ class data extends filter { |
11 | }, | 16 | }, |
12 | { | 17 | { |
13 | prop: 'bdcqzh', | 18 | prop: 'bdcqzh', |
19 | width: '110', | ||
14 | label: '不动产权证号', | 20 | label: '不动产权证号', |
15 | }, | 21 | }, |
16 | { | 22 | { |
... | @@ -27,6 +33,7 @@ class data extends filter { | ... | @@ -27,6 +33,7 @@ class data extends filter { |
27 | }, | 33 | }, |
28 | { | 34 | { |
29 | prop: 'bdcdyh', | 35 | prop: 'bdcdyh', |
36 | width: '110', | ||
30 | label: '不动产单元号', | 37 | label: '不动产单元号', |
31 | }, | 38 | }, |
32 | { | 39 | { |
... | @@ -47,6 +54,7 @@ class data extends filter { | ... | @@ -47,6 +54,7 @@ class data extends filter { |
47 | }, | 54 | }, |
48 | { | 55 | { |
49 | prop: 'fwmj', | 56 | prop: 'fwmj', |
57 | width: '120', | ||
50 | label: '建筑面积(㎡)', | 58 | label: '建筑面积(㎡)', |
51 | }, | 59 | }, |
52 | { | 60 | { | ... | ... |
-
Please register or sign in to post a comment