style:集体土地所有权 || 转移登记(农民集体之间互换土地的)业务申请
Showing
1 changed file
with
17 additions
and
3 deletions
1 | /* | 1 | /* |
2 | * @Description: 土地所有权对象处理 | 2 | * @Description: 土地所有权对象处理 |
3 | * @Autor: ssq | 3 | * @Autor: ssq |
4 | * @LastEditTime: 2023-08-29 13:10:12 | 4 | * @LastEditTime: 2023-10-31 08:47:38 |
5 | */ | 5 | */ |
6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
7 | let vm = null | 7 | let vm = null |
... | @@ -75,12 +75,26 @@ class data extends filter { | ... | @@ -75,12 +75,26 @@ class data extends filter { |
75 | label: "共有方式", | 75 | label: "共有方式", |
76 | }, | 76 | }, |
77 | { | 77 | { |
78 | prop: "qlrmc", | ||
79 | label: "使用权人", | 78 | label: "使用权人", |
79 | width: 100, | ||
80 | render: (h, scope) => { | ||
81 | return ( | ||
82 | <el-tooltip effect="dark" content={scope.row.qlrmc} placement="top" popper-class="tooltip-width "> | ||
83 | <span class="ellipsis-table"> {scope.row.qlrmc}</span> | ||
84 | </el-tooltip> | ||
85 | ) | ||
86 | } | ||
80 | }, | 87 | }, |
81 | { | 88 | { |
82 | prop: "qlrzjhm", | ||
83 | label: "证件号", | 89 | label: "证件号", |
90 | width: 100, | ||
91 | render: (h, scope) => { | ||
92 | return ( | ||
93 | <el-tooltip effect="dark" content={scope.row.qlrzjhm} placement="top" popper-class="tooltip-width "> | ||
94 | <span class="ellipsis-table"> {scope.row.qlrzjhm}</span> | ||
95 | </el-tooltip> | ||
96 | ) | ||
97 | } | ||
84 | }, | 98 | }, |
85 | { | 99 | { |
86 | prop: "qlxzmc", | 100 | prop: "qlxzmc", | ... | ... |
-
Please register or sign in to post a comment