335fa1e9 by renchao@pashanhoo.com

style;房屋分割

1 parent 3f9509c4
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-11-14 15:36:05
* @LastEditTime: 2023-11-14 16:03:46
-->
<template>
<div class="from-clues">
......@@ -69,6 +69,7 @@
</el-table-column>
<el-table-column
property="qllxmc"
width="130"
label="权利类型">
</el-table-column>
<el-table-column
......@@ -91,14 +92,17 @@
</el-table-column>
<el-table-column
property="qlrzjhm"
width="120"
label="证件号">
</el-table-column>
<el-table-column
property="qlxzmc"
width="100"
label="权利性质">
</el-table-column>
<el-table-column
property="qlytmc"
width="120"
label="用途">
</el-table-column>
<el-table-column
......@@ -107,10 +111,12 @@
</el-table-column>
<el-table-column
property="zl"
width="200"
label="坐落">
</el-table-column>
<el-table-column
label="操作"
fixed="right"
width="80">
<template slot-scope="scope">
<el-button type="text" icon="el-icon-edit-outline" @click="openBook(scope.row)">登记薄</el-button>
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-11-14 14:16:21
* @LastEditTime: 2023-11-14 16:04:10
*/
import filter from '@/utils/filter.js'
let vm = null
......@@ -47,7 +47,7 @@ class data extends filter {
{
prop: "qllxmc",
label: "权利类型",
minWidth: '130'
minWidth: 130
},
{
prop: "bdcdyh",
......@@ -82,7 +82,7 @@ class data extends filter {
},
{
label: "证件号",
witdth: '100',
witdth: 120,
render: (h, scope) => {
return (
<el-tooltip effect="dark" content={scope.row.qlrzjhm} placement="top" popper-class="tooltip-width ">
......@@ -94,10 +94,11 @@ class data extends filter {
{
prop: "qlxzmc",
label: "权利性质",
width: 100,
},
{
label: "用途",
width: '120',
width: 120,
render: (h, scope) => {
return (
<el-tooltip effect="dark" content={scope.row.qlytmc} placement="top" popper-class="tooltip-width ">
......@@ -112,7 +113,7 @@ class data extends filter {
},
{
label: "坐落",
minWidth: '150',
minWidth: 200,
render: (h, scope) => {
return (
<el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width ">
......