style:登记簿补录列表字段对接
Showing
1 changed file
with
19 additions
and
5 deletions
... | @@ -100,20 +100,34 @@ class data extends filter { | ... | @@ -100,20 +100,34 @@ class data extends filter { |
100 | } | 100 | } |
101 | }, | 101 | }, |
102 | { | 102 | { |
103 | prop: "qlrmc", | ||
104 | label: "权利人", | 103 | label: "权利人", |
104 | minWidth: '100', | ||
105 | render: (h, scope) => { | ||
106 | return ( | ||
107 | <el-tooltip effect="dark" content={scope.row.qlrmc} placement="top" popper-class="tooltip-width "> | ||
108 | <span class="ellipsis-table"> {scope.row.qlrmc}</span> | ||
109 | </el-tooltip> | ||
110 | ) | ||
111 | } | ||
105 | }, | 112 | }, |
106 | { | 113 | { |
107 | prop: "ywrmc", | ||
108 | label: "义务人", | 114 | label: "义务人", |
115 | minWidth: '100', | ||
116 | render: (h, scope) => { | ||
117 | return ( | ||
118 | <el-tooltip effect="dark" content={scope.row.ywrmc} placement="top" popper-class="tooltip-width "> | ||
119 | <span class="ellipsis-table"> {scope.row.ywrmc}</span> | ||
120 | </el-tooltip> | ||
121 | ) | ||
122 | } | ||
109 | }, | 123 | }, |
110 | { | 124 | { |
111 | prop: "mj", | 125 | prop: "qlmjmc", |
112 | label: "面积", | 126 | label: "面积", |
113 | width: '80' | 127 | width: '100' |
114 | }, | 128 | }, |
115 | { | 129 | { |
116 | prop: "ytmc", | 130 | prop: "qlytmc", |
117 | label: "用途", | 131 | label: "用途", |
118 | minWidth: '130' | 132 | minWidth: '130' |
119 | }, | 133 | }, | ... | ... |
-
Please register or sign in to post a comment