5489bd25 by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 41d71873 91b5014d
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-26 15:45:06 4 * @LastEditTime: 2023-10-11 13:56:35
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -203,7 +203,6 @@ ...@@ -203,7 +203,6 @@
203 * @author: renchao 203 * @author: renchao
204 */ 204 */
205 deleClick (index, row) { 205 deleClick (index, row) {
206 debugger
207 this.tableDataList.splice(index, 1) 206 this.tableDataList.splice(index, 1)
208 this.$emit('upDateQlrxxList', this.tableDataList) 207 this.$emit('upDateQlrxxList', this.tableDataList)
209 }, 208 },
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-29 12:55:07 4 * @LastEditTime: 2023-10-11 10:59: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
...@@ -29,7 +29,7 @@ class data extends filter { ...@@ -29,7 +29,7 @@ class data extends filter {
29 { 29 {
30 prop: "bdcqzlx", 30 prop: "bdcqzlx",
31 label: "不动产权证类型", 31 label: "不动产权证类型",
32 width: '130', 32 width: '120',
33 render: (h, scope) => { 33 render: (h, scope) => {
34 return ( 34 return (
35 <div> 35 <div>
...@@ -40,7 +40,7 @@ class data extends filter { ...@@ -40,7 +40,7 @@ class data extends filter {
40 } 40 }
41 }, 41 },
42 { 42 {
43 label: "权利类型", 43 label: "权利类型",
44 width: '100', 44 width: '100',
45 render: (h, scope) => { 45 render: (h, scope) => {
46 return ( 46 return (
...@@ -58,11 +58,18 @@ class data extends filter { ...@@ -58,11 +58,18 @@ class data extends filter {
58 { 58 {
59 prop: "bdcqzh", 59 prop: "bdcqzh",
60 label: "不动产权证号", 60 label: "不动产权证号",
61 width: '200', 61 width: '190',
62 }, 62 },
63 { 63 {
64 prop: "qlr", 64 label: "权利人",
65 label: "权利人" 65 minWidth: '120',
66 render: (h, scope) => {
67 return (
68 <el-tooltip effect="dark" content={scope.row.qlr} placement="top" popper-class="tooltip-width ">
69 <span class="ellipsis-table"> {scope.row.qlr}</span>
70 </el-tooltip>
71 )
72 }
66 }, 73 },
67 { 74 {
68 prop: "ywr", 75 prop: "ywr",
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-02 10:02:57 4 * @LastEditTime: 2023-10-11 14:58:09
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
8 <!-- 表单部分 国有建设用地使用权 --> 8 <!-- 表单部分 国有建设用地使用权 -->
9 <div class="from-clues-header"> 9 <div class="from-clues-header">
10 <el-form :model="queryForm" ref="queryForm" label-width="120px"> 10 <el-form :model="queryForm" ref="queryForm" label-width="100px">
11 <el-row> 11 <el-row>
12 <el-col :span="10"> 12 <el-col :span="8">
13 <el-form-item label="不动产单元号"> 13 <el-form-item label="不动产单元号">
14 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width300px"> 14 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100">
15 </el-input> 15 </el-input>
16 </el-form-item> 16 </el-form-item>
17 </el-col> 17 </el-col>
18 <el-col :span="10"> 18 <el-col :span="8">
19 <el-form-item label="坐落"> 19 <el-form-item label="坐落" label-width="60px">
20 <el-input placeholder="请输入坐落" v-model.trim="queryForm.zl" clearable class="width300px"> 20 <el-input placeholder="请输入坐落" v-model.trim="queryForm.zl" clearable class="width100">
21 </el-input> 21 </el-input>
22 </el-form-item> 22 </el-form-item>
23 </el-col> 23 </el-col>
24 <el-col :span="4" class="btnColRight"> 24 <el-col :span="8" class="btnColRight">
25 <el-form-item> 25 <el-form-item>
26 <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> -->
27 <el-button type="primary" @click="handleSearch">查询</el-button> 26 <el-button type="primary" @click="handleSearch">查询</el-button>
28 </el-form-item> 27 </el-form-item>
29 </el-col> 28 </el-col>
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-10-10 14:20:14 4 * @LastEditTime: 2023-10-11 11:29:42
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -69,12 +69,26 @@ class data extends filter { ...@@ -69,12 +69,26 @@ class data extends filter {
69 label: "共有方式", 69 label: "共有方式",
70 }, 70 },
71 { 71 {
72 prop: "qlrmc",
73 label: "使用权人", 72 label: "使用权人",
73 width: '105',
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 }
74 }, 81 },
75 { 82 {
76 prop: "qlrzjhm",
77 label: "证件号", 83 label: "证件号",
84 width: '105',
85 render: (h, scope) => {
86 return (
87 <el-tooltip effect="dark" content={scope.row.qlrzjhm} placement="top" popper-class="tooltip-width ">
88 <span class="ellipsis-table"> {scope.row.qlrzjhm}</span>
89 </el-tooltip>
90 )
91 }
78 }, 92 },
79 { 93 {
80 prop: "qlxzmc", 94 prop: "qlxzmc",
......