411f1d5f by 田浩浩

修改登记簿相关样式问题

1 parent f4fc91a9
......@@ -9,7 +9,7 @@ import request from '@/utils/request'
// 根据条件进行列表查询
export function getDjbBysearch(data) {
return request({
url: '/zhcx/qlxx/getDjbBysearch',
url: '/zhcx/search/qlxx/getDjbBysearch',
method: 'post',
data: data
})
......
......@@ -42,7 +42,7 @@
</div>
<!-- 表格 -->
<div class="from-clues-content">
<lb-table :page-size="pageData.size" @sort-change="handleSort" :current-page.sync="pageData.current"
<lb-table :page-size="pageData.size" border @sort-change="handleSort" :current-page.sync="pageData.current"
:total="pageData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
:column="tableData.columns" :data="tableData.data">
</lb-table>
......
......@@ -24,6 +24,7 @@ class data extends filter {
},
{
label: "权属状态",
width: '80',
render: (h, scope) => {
let obj = {
"1": {
......@@ -43,21 +44,27 @@ class data extends filter {
let colorName = obj[scope.row.qszt]?.color || ''
return (
<div>
<span style={`color:${colorName}`}></span>
<span style={`color:${colorName}`}>&nbsp;</span>
<span >{textName}</span>
</div>
)
}
},
{
prop: "qllxmc",
label: "权利类型",
},
{
prop: "ywh",
label: "业务号",
width: '110',
},
{
prop: "qllxmc",
label: "权利类型",
},
{
prop: "djlxmc",
label: "登记类型",
width: '90',
},
{
prop: "bdcdyh",
label: "不动产单元号",
},
......@@ -74,14 +81,19 @@ class data extends filter {
label: "义务人",
},
{
prop: "zl",
label: "坐落",
prop: "mj",
label: "面积",
width: '80'
},
{
prop: "sjlx",
label: "数据类型"
prop: "ytmc",
label: "用途"
},
{
prop: "zl",
label: "坐落",
},
{
label: '操作',
width: '150',
align: 'center',
......