504b577b by 田浩浩

修改登记簿内容展示

1 parent 411f1d5f
......@@ -54,6 +54,16 @@ export function getDetail(qlbsm) {
method: 'get'
})
}
// 获取权利详细信息
export function getJsydsyqList(data) {
return request({
url: '/zhcx/djbcx/getJsydsyqList',
method: 'post',
data
})
}
// 进度查询列表
export function getJdcxBysearch (data) {
return request({
......
......@@ -12,6 +12,7 @@ class data extends filter {
{
prop: "ssywh",
label: "上手业务号",
width: "120"
},
{
prop: "dah",
......@@ -34,23 +35,23 @@ class data extends filter {
label: "权利人类型",
},
{
prop: "qlr",
prop: "qlrmc",
label: "权利人",
},
{
prop: "zjzl",
prop: "qlrzjzl",
label: "证件种类",
},
{
prop: "zjh",
prop: "qlrzjhm",
label: "证件号",
},
{
prop: "gyqk",
prop: "gyfs",
label: "共有情况",
},
{
prop: "syqmj",
prop: "mj",
label: "使用权面积(m²)",
},
{
......@@ -58,12 +59,12 @@ class data extends filter {
label: "权利性质",
},
{
prop: "tdyt",
prop: "ytmc",
label: "土地用途",
},
{
prop: "syqqssj",
label: "使用权起时间",
prop: "syqqzsj",
label: "使用权起时间",
},
// {
// prop: "syqjssj",
......@@ -74,8 +75,8 @@ class data extends filter {
// label: "土地使用期限",
// },
{
prop: "syqqzsj",
label: "使用权起止时间",
prop: "tdsyqx",
label: "土地使用期限",
},
{
prop: "qdjg",
......
......@@ -59,7 +59,7 @@
<script>
import { mapGetters } from "vuex";
import { datas } from "./djxxColumns";
import { getJsydsyqList } from "@/api/zhcx.js";
export default {
name: "djxxTable",
props: {
......@@ -90,9 +90,22 @@ export default {
this.columns = this.type[newVlue].columns;
this.title = this.type[newVlue].title;
this.checkList = ["临时", "现势", "历史"];
this.tableWidth = 810
let detail = this.djbxx.detail.qlxxs[newVlue];
this.tableWidth = 810;
let detail;
if (newVlue === "JSYDSYQ") {
getJsydsyqList({
bdcdyid: "2b33851f4edfd468ceef4d68c370bd41",
qllx: "A03",
qszt: ["1"]
}).then((res) => {
if (res.code === 200) {
detail = res.result;
}
});
} else {
detail = this.djbxx.detail.qlxxs[newVlue];
}
detail.forEach((item) => {
this.tableData.push(item);
if (item.qszt == "0") {
......