Merge branch 'dev'
Showing
20 changed files
with
235 additions
and
120 deletions
... | @@ -256,15 +256,7 @@ | ... | @@ -256,15 +256,7 @@ |
256 | * @author: renchao | 256 | * @author: renchao |
257 | */ | 257 | */ |
258 | deleClick (index, row) { | 258 | deleClick (index, row) { |
259 | this.$confirm("确定要删除吗, 是否继续?", "提示", { | ||
260 | confirmButtonText: "确定", | ||
261 | cancelButtonText: "取消", | ||
262 | type: "warning", | ||
263 | }) | ||
264 | .then(() => { | ||
265 | this.tableData.splice(index, 1); | 259 | this.tableData.splice(index, 1); |
266 | }) | ||
267 | .catch(() => { }); | ||
268 | }, | 260 | }, |
269 | 261 | ||
270 | // 身份证读取 | 262 | // 身份证读取 | ... | ... |
... | @@ -255,15 +255,7 @@ | ... | @@ -255,15 +255,7 @@ |
255 | * @author: renchao | 255 | * @author: renchao |
256 | */ | 256 | */ |
257 | deleClick (index, row) { | 257 | deleClick (index, row) { |
258 | this.$confirm("确定要删除吗, 是否继续?", "提示", { | ||
259 | confirmButtonText: "确定", | ||
260 | cancelButtonText: "取消", | ||
261 | type: "warning", | ||
262 | }) | ||
263 | .then(() => { | ||
264 | this.tableData.splice(index, 1); | 258 | this.tableData.splice(index, 1); |
265 | }) | ||
266 | .catch(() => { }); | ||
267 | }, | 259 | }, |
268 | 260 | ||
269 | // 身份证读取 | 261 | // 身份证读取 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-29 09:22:33 | 4 | * @LastEditTime: 2023-08-29 09:50:32 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | 7 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> |
... | @@ -185,15 +185,16 @@ | ... | @@ -185,15 +185,16 @@ |
185 | that.ruleForm.tmpcontent = document.getElementById("S1").value; | 185 | that.ruleForm.tmpcontent = document.getElementById("S1").value; |
186 | if (that.ruleForm.tmpno == 'zsdy') { | 186 | if (that.ruleForm.tmpno == 'zsdy') { |
187 | LODOP.ADD_PRINT_SETUP_BKIMG("<img border='0' src='http://192.168.2.38:9000/bdcdj/zhengshu_image/bdcqzs2.jpg'>"); | 187 | LODOP.ADD_PRINT_SETUP_BKIMG("<img border='0' src='http://192.168.2.38:9000/bdcdj/zhengshu_image/bdcqzs2.jpg'>"); |
188 | LODOP.SET_SHOW_MODE("BKIMG_PRINT", 1);//打印包含背景图 | ||
189 | LODOP.SET_PRINT_PAGESIZE(1, 0, 0, "B4", 1); | ||
190 | } else if (that.ruleForm.tmpno == 'zmdy') { | 188 | } else if (that.ruleForm.tmpno == 'zmdy') { |
191 | LODOP.ADD_PRINT_SETUP_BKIMG("<img border='0' src='http://192.168.2.38:9000/bdcdj/zhengshu_image/bdcdjzm.jpg'>"); | 189 | LODOP.ADD_PRINT_SETUP_BKIMG("<img border='0' src='http://192.168.2.38:9000/bdcdj/zhengshu_image/bdcdjzm.jpg'>"); |
192 | LODOP.SET_SHOW_MODE("BKIMG_PRINT", 1);//打印包含背景图 | ||
193 | } | 190 | } |
191 | LODOP.SET_SHOW_MODE("BKIMG_PRINT", 1);//打印包含背景图 | ||
194 | that.loadStatus = '2'; | 192 | that.loadStatus = '2'; |
195 | }, 1000); | 193 | }, 1000); |
196 | }; | 194 | }; |
195 | if (['zsdy', 'zmdy'].includes(that.ruleForm.tmpno)) { | ||
196 | LODOP.SET_PRINT_MODE("RESELECT_ORIENT", true); // 设置为横向打印 | ||
197 | } | ||
197 | LODOP.PRINT_DESIGN(); //打印设计或者打印维护需要放到最后 | 198 | LODOP.PRINT_DESIGN(); //打印设计或者打印维护需要放到最后 |
198 | } | 199 | } |
199 | } | 200 | } | ... | ... |
... | @@ -41,9 +41,9 @@ | ... | @@ -41,9 +41,9 @@ |
41 | <el-input v-model="ruleForm.dh" :disabled="!showButton" maxlength="11" oninput="value=value.replace(/[^\d]/g,'')"></el-input> | 41 | <el-input v-model="ruleForm.dh" :disabled="!showButton" maxlength="11" oninput="value=value.replace(/[^\d]/g,'')"></el-input> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
44 | <el-col :span="8"> | 44 | <el-col :span="8"> |
45 | <el-form-item label="份数" prop="qlbl"> | 45 | <el-form-item label="权利比例" prop="qlbl"> |
46 | <el-input v-model="ruleForm.qlbl" :disabled="!showButton" maxlength="8" oninput="value=value.replace(/[^\d]/g,'')"></el-input> | 46 | <el-input v-model="ruleForm.qlbl" :disabled="!showButton||this.ruleForm.gyfs==1"></el-input> |
47 | </el-form-item> | 47 | </el-form-item> |
48 | </el-col> | 48 | </el-col> |
49 | 49 | ||
... | @@ -67,16 +67,12 @@ | ... | @@ -67,16 +67,12 @@ |
67 | </el-row> | 67 | </el-row> |
68 | 68 | ||
69 | <el-row> | 69 | <el-row> |
70 | <el-col :span="16"> | 70 | <el-col :span="24"> |
71 | <el-form-item label="地址" prop="txdz"> | 71 | <el-form-item label="地址" prop="txdz"> |
72 | <el-input v-model="ruleForm.txdz" :disabled="!showButton"></el-input> | 72 | <el-input v-model="ruleForm.txdz" :disabled="!showButton"></el-input> |
73 | </el-form-item> | 73 | </el-form-item> |
74 | </el-col> | 74 | </el-col> |
75 | <el-col :span="8"> | 75 | |
76 | <el-form-item label="邮编" prop="yb"> | ||
77 | <el-input v-model="ruleForm.yb" :disabled="!showButton"></el-input> | ||
78 | </el-form-item> | ||
79 | </el-col> | ||
80 | </el-row> | 76 | </el-row> |
81 | 77 | ||
82 | <el-row> | 78 | <el-row> |
... | @@ -90,11 +86,12 @@ | ... | @@ -90,11 +86,12 @@ |
90 | <el-input v-model="ruleForm.dzyj" :disabled="!showButton"></el-input> | 86 | <el-input v-model="ruleForm.dzyj" :disabled="!showButton"></el-input> |
91 | </el-form-item> | 87 | </el-form-item> |
92 | </el-col> | 88 | </el-col> |
93 | <el-col :span="8"> | 89 | <el-col :span="8"> |
94 | <el-form-item label="权利比例" prop="qlbl"> | 90 | <el-form-item label="邮编" prop="yb"> |
95 | <el-input v-model="ruleForm.qlbl" :disabled="!showButton"></el-input> | 91 | <el-input v-model="ruleForm.yb" :disabled="!showButton"></el-input> |
96 | </el-form-item> | 92 | </el-form-item> |
97 | </el-col> | 93 | </el-col> |
94 | |||
98 | </el-row> | 95 | </el-row> |
99 | 96 | ||
100 | <el-row> | 97 | <el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-28 17:22:23 | 4 | * @LastEditTime: 2023-08-29 13:11:05 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -154,6 +154,7 @@ | ... | @@ -154,6 +154,7 @@ |
154 | drawTextOnImage () { | 154 | drawTextOnImage () { |
155 | function getByteLen (val) { | 155 | function getByteLen (val) { |
156 | var len = 0; | 156 | var len = 0; |
157 | if (!val) return len; | ||
157 | for (var i = 0; i < val.length; i++) { | 158 | for (var i = 0; i < val.length; i++) { |
158 | var length = val.charCodeAt(i); | 159 | var length = val.charCodeAt(i); |
159 | if (length >= 0 && length <= 128) { | 160 | if (length >= 0 && length <= 128) { |
... | @@ -382,6 +383,7 @@ | ... | @@ -382,6 +383,7 @@ |
382 | drawTextzmImage () { | 383 | drawTextzmImage () { |
383 | function getByteLen (val) { | 384 | function getByteLen (val) { |
384 | var len = 0; | 385 | var len = 0; |
386 | if (!val) return len; | ||
385 | for (var i = 0; i < val.length; i++) { | 387 | for (var i = 0; i < val.length; i++) { |
386 | var length = val.charCodeAt(i); | 388 | var length = val.charCodeAt(i); |
387 | if (length >= 0 && length <= 128) { | 389 | if (length >= 0 && length <= 128) { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-29 09:24:13 | 4 | * @LastEditTime: 2023-08-29 13:12:03 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> | 7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> |
... | @@ -124,6 +124,7 @@ | ... | @@ -124,6 +124,7 @@ |
124 | drawTextOnImage () { | 124 | drawTextOnImage () { |
125 | function getByteLen (val) { | 125 | function getByteLen (val) { |
126 | var len = 0; | 126 | var len = 0; |
127 | if (!val) return len; | ||
127 | for (var i = 0; i < val.length; i++) { | 128 | for (var i = 0; i < val.length; i++) { |
128 | var length = val.charCodeAt(i); | 129 | var length = val.charCodeAt(i); |
129 | if (length >= 0 && length <= 128) { | 130 | if (length >= 0 && length <= 128) { |
... | @@ -353,6 +354,7 @@ | ... | @@ -353,6 +354,7 @@ |
353 | drawTextzmImage () { | 354 | drawTextzmImage () { |
354 | function getByteLen (val) { | 355 | function getByteLen (val) { |
355 | var len = 0; | 356 | var len = 0; |
357 | if (!val) return len; | ||
356 | for (var i = 0; i < val.length; i++) { | 358 | for (var i = 0; i < val.length; i++) { |
357 | var length = val.charCodeAt(i); | 359 | var length = val.charCodeAt(i); |
358 | if (length >= 0 && length <= 128) { | 360 | if (length >= 0 && length <= 128) { | ... | ... |
... | @@ -145,7 +145,7 @@ | ... | @@ -145,7 +145,7 @@ |
145 | </template> | 145 | </template> |
146 | </el-table-column> | 146 | </el-table-column> |
147 | <el-table-column | 147 | <el-table-column |
148 | label="环节名称" | 148 | label="环节状态" |
149 | prop="name" | 149 | prop="name" |
150 | minWidth="100" | 150 | minWidth="100" |
151 | align="center" /> | 151 | align="center" /> |
... | @@ -440,6 +440,9 @@ | ... | @@ -440,6 +440,9 @@ |
440 | item.comments[item.comments.length - 1].message; | 440 | item.comments[item.comments.length - 1].message; |
441 | // 操作方式 | 441 | // 操作方式 |
442 | let controls = ""; | 442 | let controls = ""; |
443 | // 正在办理 | ||
444 | // 已完结 | ||
445 | // 已退回 | ||
443 | switch (type) { | 446 | switch (type) { |
444 | case "COMPLETE": | 447 | case "COMPLETE": |
445 | controls = "完成"; | 448 | controls = "完成"; | ... | ... |
... | @@ -124,12 +124,12 @@ | ... | @@ -124,12 +124,12 @@ |
124 | let that = this | 124 | let that = this |
125 | this.$nextTick(() => { | 125 | this.$nextTick(() => { |
126 | if (val.length == 0 || !val) { | 126 | if (val.length == 0 || !val) { |
127 | // that.tableDataList = _.cloneDeep([{ | 127 | that.tableDataList = _.cloneDeep([{ |
128 | // sqrmc: '', | 128 | sqrmc: '', |
129 | // dlrzjlx: '', | 129 | dlrzjlx: '', |
130 | // dlrzjh: '', | 130 | dlrzjh: '', |
131 | // fr: '' | 131 | fr: '' |
132 | // }]) | 132 | }]) |
133 | } else { | 133 | } else { |
134 | that.tableDataList = _.cloneDeep(val) | 134 | that.tableDataList = _.cloneDeep(val) |
135 | } | 135 | } |
... | @@ -205,14 +205,7 @@ | ... | @@ -205,14 +205,7 @@ |
205 | * @author: renchao | 205 | * @author: renchao |
206 | */ | 206 | */ |
207 | deleClick (index, row) { | 207 | deleClick (index, row) { |
208 | this.$confirm('确定要删除吗, 是否继续?', '提示', { | ||
209 | confirmButtonText: '确定', | ||
210 | cancelButtonText: '取消', | ||
211 | type: 'warning' | ||
212 | }).then(() => { | ||
213 | this.tableData.splice(index, 1) | 208 | this.tableData.splice(index, 1) |
214 | }).catch(() => { | ||
215 | }); | ||
216 | }, | 209 | }, |
217 | 210 | ||
218 | /** | 211 | /** |
... | @@ -250,9 +243,12 @@ | ... | @@ -250,9 +243,12 @@ |
250 | * @author: renchao | 243 | * @author: renchao |
251 | */ | 244 | */ |
252 | editClick (index, row) { | 245 | editClick (index, row) { |
246 | this.details = row | ||
247 | this.details.gyfs=this.gyfs | ||
253 | this.dataIndex = index | 248 | this.dataIndex = index |
254 | this.dialog = true | 249 | this.dialog = true |
255 | this.details = row | 250 | |
251 | |||
256 | this.isaddupdate = false | 252 | this.isaddupdate = false |
257 | }, | 253 | }, |
258 | /** | 254 | /** |
... | @@ -262,8 +258,10 @@ | ... | @@ -262,8 +258,10 @@ |
262 | * @author: renchao | 258 | * @author: renchao |
263 | */ | 259 | */ |
264 | queryViewClick (index, row) { | 260 | queryViewClick (index, row) { |
265 | this.dialog = true | 261 | // this.details.gyfs=this.gyfs |
266 | this.details = row | 262 | this.details = row |
263 | this.dialog = true | ||
264 | |||
267 | } | 265 | } |
268 | } | 266 | } |
269 | } | 267 | } | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-24 15:38:52 | 4 | * @LastEditTime: 2023-08-29 10:03:25 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="szxx"> | 7 | <div class="szxx"> |
... | @@ -136,9 +136,9 @@ | ... | @@ -136,9 +136,9 @@ |
136 | store.dispatch('user/reWorkFresh', false) | 136 | store.dispatch('user/reWorkFresh', false) |
137 | if (type == 1) { | 137 | if (type == 1) { |
138 | //证书预览 | 138 | //证书预览 |
139 | this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "70%", true); | 139 | this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "76%", true); |
140 | } else { | 140 | } else { |
141 | this.$popupDialog("证书证明打印", "workflow/components/dialog/zsdy", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "75%", true); | 141 | this.$popupDialog("证书证明打印", "workflow/components/dialog/zsdy", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "76%", true); |
142 | } | 142 | } |
143 | }, | 143 | }, |
144 | //再次打印 | 144 | //再次打印 |
... | @@ -298,6 +298,10 @@ | ... | @@ -298,6 +298,10 @@ |
298 | .szxx_header { | 298 | .szxx_header { |
299 | color: #303133; | 299 | color: #303133; |
300 | } | 300 | } |
301 | // 证书背景色 | ||
302 | /deep/.el-card__header { | ||
303 | background-color: #e2dfe0; | ||
304 | } | ||
301 | } | 305 | } |
302 | .bg-red { | 306 | .bg-red { |
303 | .szxx_header { | 307 | .szxx_header { | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-25 10:00:18 | 4 | * @LastEditTime: 2023-08-29 12:55:07 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -40,10 +40,15 @@ class data extends filter { | ... | @@ -40,10 +40,15 @@ class data extends filter { |
40 | } | 40 | } |
41 | }, | 41 | }, |
42 | { | 42 | { |
43 | prop: "qllx", | 43 | label: "权利类型", |
44 | label: "权利类型", | ||
45 | width: '100', | 44 | width: '100', |
46 | showOverflowTooltip: true | 45 | render: (h, scope) => { |
46 | return ( | ||
47 | <el-tooltip effect="dark" content={scope.row.qllx} placement="top" popper-class="tooltip-width "> | ||
48 | <span class="ellipsis-table"> {scope.row.qllx}</span> | ||
49 | </el-tooltip> | ||
50 | ) | ||
51 | } | ||
47 | }, | 52 | }, |
48 | { | 53 | { |
49 | prop: "ysxlh", | 54 | prop: "ysxlh", |
... | @@ -64,16 +69,26 @@ class data extends filter { | ... | @@ -64,16 +69,26 @@ class data extends filter { |
64 | label: "义务人" | 69 | label: "义务人" |
65 | }, | 70 | }, |
66 | { | 71 | { |
67 | prop: "mj", | ||
68 | label: "面积(㎡)", | 72 | label: "面积(㎡)", |
69 | width: '100', | 73 | width: '100', |
70 | showOverflowTooltip: true | 74 | render: (h, scope) => { |
75 | return ( | ||
76 | <el-tooltip effect="dark" content={scope.row.mj} placement="top" popper-class="tooltip-width "> | ||
77 | <span class="ellipsis-table"> {scope.row.mj}</span> | ||
78 | </el-tooltip> | ||
79 | ) | ||
80 | } | ||
71 | }, | 81 | }, |
72 | { | 82 | { |
73 | prop: "zl", | ||
74 | label: "坐落", | 83 | label: "坐落", |
75 | width: '100', | 84 | minWidth: '150', |
76 | showOverflowTooltip: true | 85 | render: (h, scope) => { |
86 | return ( | ||
87 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
88 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
89 | </el-tooltip> | ||
90 | ) | ||
91 | } | ||
77 | }, | 92 | }, |
78 | { | 93 | { |
79 | prop: "fzsj", | 94 | prop: "fzsj", |
... | @@ -130,10 +145,15 @@ class data extends filter { | ... | @@ -130,10 +145,15 @@ class data extends filter { |
130 | label: "义务人" | 145 | label: "义务人" |
131 | }, | 146 | }, |
132 | { | 147 | { |
133 | prop: "mj", | ||
134 | label: "面积(㎡)", | 148 | label: "面积(㎡)", |
135 | width: '100', | 149 | width: '100', |
136 | showOverflowTooltip: true | 150 | render: (h, scope) => { |
151 | return ( | ||
152 | <el-tooltip effect="dark" content={scope.row.mj} placement="top" popper-class="tooltip-width "> | ||
153 | <span class="ellipsis-table"> {scope.row.mj}</span> | ||
154 | </el-tooltip> | ||
155 | ) | ||
156 | } | ||
137 | }, | 157 | }, |
138 | { | 158 | { |
139 | prop: "zl", | 159 | prop: "zl", | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-25 09:06:19 | 4 | * @LastEditTime: 2023-08-29 13:04:29 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -57,10 +57,15 @@ class data extends filter { | ... | @@ -57,10 +57,15 @@ class data extends filter { |
57 | width: '112' | 57 | width: '112' |
58 | }, | 58 | }, |
59 | { | 59 | { |
60 | prop: "cznr", | ||
61 | label: "操作内容", | 60 | label: "操作内容", |
62 | width: '500', | 61 | width: '500', |
63 | showOverflowTooltip: true | 62 | render: (h, scope) => { |
63 | return ( | ||
64 | <el-tooltip effect="dark" content={scope.row.cznr} placement="top" popper-class="tooltip-width "> | ||
65 | <span class="ellipsis-table"> {scope.row.cznr}</span> | ||
66 | </el-tooltip> | ||
67 | ) | ||
68 | } | ||
64 | }, | 69 | }, |
65 | { | 70 | { |
66 | label: '操作', | 71 | label: '操作', | ... | ... |
1 | import { log } from "bpmn-js-token-simulation" | ||
2 | 1 | ||
3 | /* | 2 | /* |
4 | * @Description: | 3 | * @Description: |
... | @@ -13,7 +12,6 @@ export default { | ... | @@ -13,7 +12,6 @@ export default { |
13 | watch: { | 12 | watch: { |
14 | 'ruleForm.sldy.gyfs': { | 13 | 'ruleForm.sldy.gyfs': { |
15 | handler: function (val, oldVal) { | 14 | handler: function (val, oldVal) { |
16 | console.log("单独所有",val,oldVal); | ||
17 | if (val == '0' && this.ruleForm.qlrList.length > 1 && oldVal) { | 15 | if (val == '0' && this.ruleForm.qlrList.length > 1 && oldVal) { |
18 | this.ruleForm.sldy.gyfs = oldVal | 16 | this.ruleForm.sldy.gyfs = oldVal |
19 | this.$message({ | 17 | this.$message({ | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-23 14:51:40 | 4 | * @LastEditTime: 2023-08-29 13:04:44 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -46,10 +46,15 @@ class data extends filter { | ... | @@ -46,10 +46,15 @@ class data extends filter { |
46 | } | 46 | } |
47 | }, | 47 | }, |
48 | { | 48 | { |
49 | prop: "bdcqzh", | ||
50 | label: "不动产证明号", | 49 | label: "不动产证明号", |
51 | width: '150', | 50 | width: '150', |
52 | showOverflowTooltip: true | 51 | render: (h, scope) => { |
52 | return ( | ||
53 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width"> | ||
54 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
55 | </el-tooltip> | ||
56 | ) | ||
57 | } | ||
53 | }, | 58 | }, |
54 | { | 59 | { |
55 | prop: "bdcdyh", | 60 | prop: "bdcdyh", | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-14 11:21:48 | 4 | * @LastEditTime: 2023-08-29 13:05:13 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -50,20 +50,30 @@ class data extends filter { | ... | @@ -50,20 +50,30 @@ class data extends filter { |
50 | label: "土地证号", | 50 | label: "土地证号", |
51 | }, | 51 | }, |
52 | { | 52 | { |
53 | prop: "qllxmc", | ||
54 | showOverflowTooltip: true, | ||
55 | width: '100', | 53 | width: '100', |
56 | label: "权利类型", | 54 | label: "权利类型", |
55 | render: (h, scope) => { | ||
56 | return ( | ||
57 | <el-tooltip effect="dark" content={scope.row.qllxmc} placement="top" popper-class="tooltip-width"> | ||
58 | <span class="ellipsis-table"> {scope.row.qllxmc}</span> | ||
59 | </el-tooltip> | ||
60 | ) | ||
61 | } | ||
57 | }, | 62 | }, |
58 | { | 63 | { |
59 | prop: "xmmc", | 64 | prop: "xmmc", |
60 | label: "项目名称", | 65 | label: "项目名称", |
61 | }, | 66 | }, |
62 | { | 67 | { |
63 | prop: "zrzh", | ||
64 | label: "自然幢号", | 68 | label: "自然幢号", |
65 | width: '90', | 69 | width: '90', |
66 | showOverflowTooltip: true, | 70 | render: (h, scope) => { |
71 | return ( | ||
72 | <el-tooltip effect="dark" content={scope.row.zrzh} placement="top" popper-class="tooltip-width"> | ||
73 | <span class="ellipsis-table"> {scope.row.zrzh}</span> | ||
74 | </el-tooltip> | ||
75 | ) | ||
76 | } | ||
67 | }, | 77 | }, |
68 | { | 78 | { |
69 | prop: "jzwmc", | 79 | prop: "jzwmc", |
... | @@ -112,10 +122,16 @@ class data extends filter { | ... | @@ -112,10 +122,16 @@ class data extends filter { |
112 | width: '70', | 122 | width: '70', |
113 | }, | 123 | }, |
114 | { | 124 | { |
115 | prop: "zl", | ||
116 | label: "自然幢坐落", | 125 | label: "自然幢坐落", |
117 | minWidth: '120', | 126 | minWidth: '120', |
118 | showOverflowTooltip: true | 127 | render: (h, scope) => { |
128 | return ( | ||
129 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
130 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
131 | </el-tooltip> | ||
132 | ) | ||
133 | } | ||
134 | |||
119 | }, | 135 | }, |
120 | { | 136 | { |
121 | label: '操作', | 137 | label: '操作', | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-23 14:56:57 | 4 | * @LastEditTime: 2023-08-29 13:06:12 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -45,22 +45,37 @@ class data extends filter { | ... | @@ -45,22 +45,37 @@ class data extends filter { |
45 | } | 45 | } |
46 | }, | 46 | }, |
47 | { | 47 | { |
48 | prop: "qllxmc", | ||
49 | label: "权利类型", | 48 | label: "权利类型", |
50 | width: '120', | 49 | width: '120', |
51 | showOverflowTooltip: true | 50 | render: (h, scope) => { |
51 | return ( | ||
52 | <el-tooltip effect="dark" content={scope.row.qllxmc} placement="top" popper-class="tooltip-width"> | ||
53 | <span class="ellipsis-table"> {scope.row.qllxmc}</span> | ||
54 | </el-tooltip> | ||
55 | ) | ||
56 | } | ||
52 | }, | 57 | }, |
53 | { | 58 | { |
54 | prop: "bdcdyh", | ||
55 | label: "不动产单元号", | 59 | label: "不动产单元号", |
56 | width: '150', | 60 | width: '150', |
57 | showOverflowTooltip: true | 61 | render: (h, scope) => { |
62 | return ( | ||
63 | <el-tooltip effect="dark" content={scope.row.bdcdyh} placement="top" popper-class="tooltip-width"> | ||
64 | <span class="ellipsis-table"> {scope.row.bdcdyh}</span> | ||
65 | </el-tooltip> | ||
66 | ) | ||
67 | } | ||
58 | }, | 68 | }, |
59 | { | 69 | { |
60 | prop: "bdcqzh", | ||
61 | label: "不动产权证号", | 70 | label: "不动产权证号", |
62 | width: '150', | 71 | width: '150', |
63 | showOverflowTooltip: true | 72 | render: (h, scope) => { |
73 | return ( | ||
74 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width"> | ||
75 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
76 | </el-tooltip> | ||
77 | ) | ||
78 | } | ||
64 | }, | 79 | }, |
65 | { | 80 | { |
66 | prop: "gyqk", | 81 | prop: "gyqk", |
... | @@ -97,10 +112,15 @@ class data extends filter { | ... | @@ -97,10 +112,15 @@ class data extends filter { |
97 | label: "用途", | 112 | label: "用途", |
98 | }, | 113 | }, |
99 | { | 114 | { |
100 | prop: "zl", | ||
101 | label: "坐落", | 115 | label: "坐落", |
102 | width: '130', | 116 | minWidth: '150', |
103 | showOverflowTooltip: true | 117 | render: (h, scope) => { |
118 | return ( | ||
119 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
120 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
121 | </el-tooltip> | ||
122 | ) | ||
123 | } | ||
104 | }, | 124 | }, |
105 | { | 125 | { |
106 | label: '操作', | 126 | label: '操作', | ... | ... |
... | @@ -78,16 +78,26 @@ class data extends filter { | ... | @@ -78,16 +78,26 @@ class data extends filter { |
78 | width: '90', | 78 | width: '90', |
79 | }, | 79 | }, |
80 | { | 80 | { |
81 | prop: "bdcdyh", | ||
82 | label: "不动产单元号", | 81 | label: "不动产单元号", |
83 | width: '150', | 82 | width: '150', |
84 | showOverflowTooltip: true | 83 | render: (h, scope) => { |
84 | return ( | ||
85 | <el-tooltip effect="dark" content={scope.row.bdcdyh} placement="top" popper-class="tooltip-width "> | ||
86 | <span class="ellipsis-table"> {scope.row.bdcdyh}</span> | ||
87 | </el-tooltip> | ||
88 | ) | ||
89 | } | ||
85 | }, | 90 | }, |
86 | { | 91 | { |
87 | prop: "bdcqzh", | ||
88 | label: "不动产权证号", | 92 | label: "不动产权证号", |
89 | width: '150', | 93 | width: '150', |
90 | showOverflowTooltip: true | 94 | render: (h, scope) => { |
95 | return ( | ||
96 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
97 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
98 | </el-tooltip> | ||
99 | ) | ||
100 | } | ||
91 | }, | 101 | }, |
92 | { | 102 | { |
93 | prop: "qlrmc", | 103 | prop: "qlrmc", |
... | @@ -108,10 +118,15 @@ class data extends filter { | ... | @@ -108,10 +118,15 @@ class data extends filter { |
108 | minWidth: '130' | 118 | minWidth: '130' |
109 | }, | 119 | }, |
110 | { | 120 | { |
111 | prop: "zl", | ||
112 | label: "坐落", | 121 | label: "坐落", |
113 | width: '150', | 122 | minWidth: '150', |
114 | showOverflowTooltip: true | 123 | render: (h, scope) => { |
124 | return ( | ||
125 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
126 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
127 | </el-tooltip> | ||
128 | ) | ||
129 | } | ||
115 | }, | 130 | }, |
116 | { | 131 | { |
117 | label: '操作', | 132 | label: '操作', | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-24 11:00:16 | 4 | * @LastEditTime: 2023-08-29 13:08:08 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -54,20 +54,30 @@ class data extends filter { | ... | @@ -54,20 +54,30 @@ class data extends filter { |
54 | minWidth: '130' | 54 | minWidth: '130' |
55 | }, | 55 | }, |
56 | { | 56 | { |
57 | prop: "bdcqzh", | ||
58 | label: "不动产权证号", | 57 | label: "不动产权证号", |
59 | width: '150', | 58 | width: '150', |
60 | showOverflowTooltip: true | 59 | render: (h, scope) => { |
60 | return ( | ||
61 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
62 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
63 | </el-tooltip> | ||
64 | ) | ||
65 | } | ||
61 | }, | 66 | }, |
62 | { | 67 | { |
63 | prop: "gyqk", | 68 | prop: "gyqk", |
64 | label: "共有情况", | 69 | label: "共有情况", |
65 | }, | 70 | }, |
66 | { | 71 | { |
67 | prop: "qlrmc", | ||
68 | label: "权利人", | 72 | label: "权利人", |
69 | width: '120', | 73 | width: '120', |
70 | showOverflowTooltip: true | 74 | render: (h, scope) => { |
75 | return ( | ||
76 | <el-tooltip effect="dark" content={scope.row.qlrmc} placement="top" popper-class="tooltip-width "> | ||
77 | <span class="ellipsis-table"> {scope.row.qlrmc}</span> | ||
78 | </el-tooltip> | ||
79 | ) | ||
80 | } | ||
71 | }, | 81 | }, |
72 | { | 82 | { |
73 | prop: "qlrzjhm", | 83 | prop: "qlrzjhm", |
... | @@ -78,20 +88,30 @@ class data extends filter { | ... | @@ -78,20 +88,30 @@ class data extends filter { |
78 | label: "权利性质", | 88 | label: "权利性质", |
79 | }, | 89 | }, |
80 | { | 90 | { |
81 | prop: "qlytmc", | ||
82 | label: "用途", | 91 | label: "用途", |
83 | width: '120', | 92 | width: '120', |
84 | showOverflowTooltip: true | 93 | render: (h, scope) => { |
94 | return ( | ||
95 | <el-tooltip effect="dark" content={scope.row.qlytmc} placement="top" popper-class="tooltip-width "> | ||
96 | <span class="ellipsis-table"> {scope.row.qlytmc}</span> | ||
97 | </el-tooltip> | ||
98 | ) | ||
99 | } | ||
85 | }, | 100 | }, |
86 | { | 101 | { |
87 | prop: "qlmjmc", | 102 | prop: "qlmjmc", |
88 | label: "面积", | 103 | label: "面积", |
89 | }, | 104 | }, |
90 | { | 105 | { |
91 | prop: "zl", | ||
92 | label: "坐落", | 106 | label: "坐落", |
93 | width: '130', | 107 | minWidth: '150', |
94 | showOverflowTooltip: true | 108 | render: (h, scope) => { |
109 | return ( | ||
110 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
111 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
112 | </el-tooltip> | ||
113 | ) | ||
114 | } | ||
95 | }, | 115 | }, |
96 | { | 116 | { |
97 | label: '操作', | 117 | label: '操作', | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-10 15:35:50 | 4 | * @LastEditTime: 2023-08-29 13:09:15 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -54,10 +54,15 @@ class data extends filter { | ... | @@ -54,10 +54,15 @@ class data extends filter { |
54 | minWidth: '150' | 54 | minWidth: '150' |
55 | }, | 55 | }, |
56 | { | 56 | { |
57 | prop: "bdcqzh", | ||
58 | label: "不动产权证号", | 57 | label: "不动产权证号", |
59 | showOverflowTooltip: true, | 58 | width: '150', |
60 | width: '150' | 59 | render: (h, scope) => { |
60 | return ( | ||
61 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
62 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
63 | </el-tooltip> | ||
64 | ) | ||
65 | } | ||
61 | }, | 66 | }, |
62 | { | 67 | { |
63 | prop: "gyqk", | 68 | prop: "gyqk", | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-23 14:49:24 | 4 | * @LastEditTime: 2023-08-29 13:09:45 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -44,16 +44,26 @@ class data extends filter { | ... | @@ -44,16 +44,26 @@ class data extends filter { |
44 | label: "权利类型", | 44 | label: "权利类型", |
45 | }, | 45 | }, |
46 | { | 46 | { |
47 | prop: "bdcdyh", | ||
48 | label: "不动产单元号", | 47 | label: "不动产单元号", |
49 | width: '150', | 48 | width: '150', |
50 | showOverflowTooltip: true | 49 | render: (h, scope) => { |
50 | return ( | ||
51 | <el-tooltip effect="dark" content={scope.row.bdcdyh} placement="top" popper-class="tooltip-width "> | ||
52 | <span class="ellipsis-table"> {scope.row.bdcdyh}</span> | ||
53 | </el-tooltip> | ||
54 | ) | ||
55 | } | ||
51 | }, | 56 | }, |
52 | { | 57 | { |
53 | prop: "bdcqzh", | ||
54 | label: "不动产权证号", | 58 | label: "不动产权证号", |
55 | width: '150', | 59 | width: '150', |
56 | showOverflowTooltip: true | 60 | render: (h, scope) => { |
61 | return ( | ||
62 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
63 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
64 | </el-tooltip> | ||
65 | ) | ||
66 | } | ||
57 | }, | 67 | }, |
58 | { | 68 | { |
59 | prop: "qlrmc", | 69 | prop: "qlrmc", | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: 土地所有权对象处理 | 2 | * @Description: 土地所有权对象处理 |
3 | * @Autor: ssq | 3 | * @Autor: ssq |
4 | * @LastEditTime: 2023-07-14 17:00:11 | 4 | * @LastEditTime: 2023-08-29 13:10:12 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -49,16 +49,26 @@ class data extends filter { | ... | @@ -49,16 +49,26 @@ class data extends filter { |
49 | label: "权利类型", | 49 | label: "权利类型", |
50 | }, | 50 | }, |
51 | { | 51 | { |
52 | prop: "bdcdyh", | ||
53 | label: "不动产单元号", | 52 | label: "不动产单元号", |
54 | width: '150', | 53 | width: '150', |
55 | showOverflowTooltip: true | 54 | render: (h, scope) => { |
55 | return ( | ||
56 | <el-tooltip effect="dark" content={scope.row.bdcdyh} placement="top" popper-class="tooltip-width "> | ||
57 | <span class="ellipsis-table"> {scope.row.bdcdyh}</span> | ||
58 | </el-tooltip> | ||
59 | ) | ||
60 | } | ||
56 | }, | 61 | }, |
57 | { | 62 | { |
58 | prop: "bdcqzh", | ||
59 | label: "不动产权证号", | 63 | label: "不动产权证号", |
60 | width: '150', | 64 | width: '150', |
61 | showOverflowTooltip: true | 65 | render: (h, scope) => { |
66 | return ( | ||
67 | <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width "> | ||
68 | <span class="ellipsis-table"> {scope.row.bdcqzh}</span> | ||
69 | </el-tooltip> | ||
70 | ) | ||
71 | } | ||
62 | }, | 72 | }, |
63 | { | 73 | { |
64 | prop: "gyqk", | 74 | prop: "gyqk", | ... | ... |
-
Please register or sign in to post a comment