5544c2bf by renchao@pashanhoo.com

style:申请查询记录

1 parent c2f2c209
...@@ -27,8 +27,15 @@ class data extends filter { ...@@ -27,8 +27,15 @@ class data extends filter {
27 } 27 }
28 }, 28 },
29 { 29 {
30 prop: 'bdcqzh', 30 width: '130',
31 label: '不动产权证号', 31 label: '不动产权证号',
32 render: (h, scope) => {
33 return (
34 <el-tooltip effect="dark" content={scope.row.bdcqzh} placement="top" popper-class="tooltip-width ">
35 <span class="ellipsis-table"> {scope.row.bdcqzh}</span>
36 </el-tooltip>
37 )
38 }
32 }, 39 },
33 { 40 {
34 prop: 'djsj', 41 prop: 'djsj',
...@@ -43,8 +50,15 @@ class data extends filter { ...@@ -43,8 +50,15 @@ class data extends filter {
43 label: '网签时间', 50 label: '网签时间',
44 }, 51 },
45 { 52 {
46 prop: 'bdcdyh', 53 width: '130',
47 label: '不动产单元号', 54 label: '不动产单元号',
55 render: (h, scope) => {
56 return (
57 <el-tooltip effect="dark" content={scope.row.bdcdyh} placement="top" popper-class="tooltip-width ">
58 <span class="ellipsis-table"> {scope.row.bdcdyh}</span>
59 </el-tooltip>
60 )
61 }
48 }, 62 },
49 { 63 {
50 prop: 'gyfs', 64 prop: 'gyfs',
......
...@@ -141,7 +141,6 @@ ...@@ -141,7 +141,6 @@
141 handleSort (name, sort) { 141 handleSort (name, sort) {
142 console.log(name, sort); 142 console.log(name, sort);
143 }, 143 },
144 // 查看
145 /** 144 /**
146 * @description: 查看 145 * @description: 查看
147 * @param {*} scope 146 * @param {*} scope
......