df1cbcf4 by 任超
2 parents 242cd2e2 5378796f
......@@ -187,9 +187,9 @@ export const asyncRoutes = [
name: 'busineInfo',
children: [
{
path: 'landOwnership',
component: () => import('@/views/business-info/land-ownership/index'),
name: 'landOwnership',
path: 'tdsyq',
component: () => import('@/views/business-info/tdsyq/index'),
name: 'tdsyq',
meta: { title: '土地所有权' }
},
{
......
......@@ -10,27 +10,27 @@ class data extends filter {
prop: "YWH",
width: 150
},
{
label: "抵押不动产类型",
render: (h, scope) => {
return (
<div>
<span>{ this.dicStatus(scope.row.DYBDCLX, 'A27')}</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.dicStatus(scope.row.DYBDCLX, 'A27')}</span>
// </div>
// )
// },
// },
// {
// label: "登记类型",
// width: 70,
// render: (h, scope) => {
// return (
// <div>
// <span>{this.djlxStatus(scope.row.DJLX)}</span>
// </div>
// )
// }
// },
{
label: "不动产单元号",
prop: "BDCDYH"
......
......@@ -123,7 +123,7 @@ export default {
this.loading = true
let { result: { list, total, pages: pageSize, pageNum: current }
} = await business.getQlfQlDyaqByCondition(this.form)
this.tableData.data = list
this.tableData.data = list;
this.pageData = {
pageSize,
current,
......
......@@ -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"
}
]
}
......
<template>
<div class="landOwnership from-clues">
<div class="tdsyq from-clues">
<div class="from-clues-header">
<el-form ref="form" :model="form" label-width="80px">
<el-row>
<el-col :span="5">
<el-form-item label="业务号">
<el-form-item label="业务号1">
<el-input v-model="form.YWH" placeholder="业务号"></el-input>
</el-form-item>
</el-col>
......@@ -63,7 +63,7 @@ export default {
treeSelect,
editDialog
},
name: "landOwnership",
name: "tdsyq",
mixins: [tableMixin],
data () {
return {
......@@ -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,
......