da175b8e by jiaozeping@pashanhoo.com

1

1 parent b51a69d2
......@@ -7,37 +7,37 @@ class data extends filter {
return [
{
label: "业务号",
prop: "YWH",
prop: "ywh",
width: 150
},
{
label: "权利类型",
render: (h, scope) => {
return (
<div>
<span>{ this.qllxStatus(scope.row.QLLX)}</span>
</div>
)
},
},
{
label: "登记类型",
width: 70,
render: (h, scope) => {
return (
<div>
<span>{this.djlxStatus(scope.row.DJLX)}</span>
</div>
)
}
},
// {
// label: "权利类型",
// render: (h, scope) => {
// return (
// <div>
// <span>{ this.qllxStatus(scope.row.QLLX)}</span>
// </div>
// )
// },
// },
// {
// label: "登记类型",
// width: 70,
// render: (h, scope) => {
// return (
// <div>
// <span>{this.djlxStatus(scope.row.DJLX)}</span>
// </div>
// )
// }
// },
{
label: "不动产单元号",
prop: "BDCDYH"
prop: "bdcdyh"
},
{
label: "不动产权证号",
prop: "BDCQZH"
prop: "bdcqzh"
},
{
label: "登记时间",
......@@ -46,7 +46,7 @@ class data extends filter {
},
{
label: "登记机构",
prop: "DJJG"
prop: "djjg"
}
]
}
......
......@@ -159,7 +159,8 @@ export default {
try {
this.form = Object.assign(this.form, this.formData)
let { result: { list, total, pages: pageSize, pageNum: current }
} = await business.getQlfQlHysyqByConditon(this.form)
} = await business.getQlfQlTdsyqListByCondition(this.form)
debugger;
this.tableData.data = list
this.pageData = {
pageSize,
......