504b577b by 田浩浩

修改登记簿内容展示

1 parent 411f1d5f
...@@ -54,6 +54,16 @@ export function getDetail(qlbsm) { ...@@ -54,6 +54,16 @@ export function getDetail(qlbsm) {
54 method: 'get' 54 method: 'get'
55 }) 55 })
56 } 56 }
57
58 // 获取权利详细信息
59 export function getJsydsyqList(data) {
60 return request({
61 url: '/zhcx/djbcx/getJsydsyqList',
62 method: 'post',
63 data
64 })
65 }
66
57 // 进度查询列表 67 // 进度查询列表
58 export function getJdcxBysearch (data) { 68 export function getJdcxBysearch (data) {
59 return request({ 69 return request({
......
...@@ -12,6 +12,7 @@ class data extends filter { ...@@ -12,6 +12,7 @@ class data extends filter {
12 { 12 {
13 prop: "ssywh", 13 prop: "ssywh",
14 label: "上手业务号", 14 label: "上手业务号",
15 width: "120"
15 }, 16 },
16 { 17 {
17 prop: "dah", 18 prop: "dah",
...@@ -34,23 +35,23 @@ class data extends filter { ...@@ -34,23 +35,23 @@ class data extends filter {
34 label: "权利人类型", 35 label: "权利人类型",
35 }, 36 },
36 { 37 {
37 prop: "qlr", 38 prop: "qlrmc",
38 label: "权利人", 39 label: "权利人",
39 }, 40 },
40 { 41 {
41 prop: "zjzl", 42 prop: "qlrzjzl",
42 label: "证件种类", 43 label: "证件种类",
43 }, 44 },
44 { 45 {
45 prop: "zjh", 46 prop: "qlrzjhm",
46 label: "证件号", 47 label: "证件号",
47 }, 48 },
48 { 49 {
49 prop: "gyqk", 50 prop: "gyfs",
50 label: "共有情况", 51 label: "共有情况",
51 }, 52 },
52 { 53 {
53 prop: "syqmj", 54 prop: "mj",
54 label: "使用权面积(m²)", 55 label: "使用权面积(m²)",
55 }, 56 },
56 { 57 {
...@@ -58,12 +59,12 @@ class data extends filter { ...@@ -58,12 +59,12 @@ class data extends filter {
58 label: "权利性质", 59 label: "权利性质",
59 }, 60 },
60 { 61 {
61 prop: "tdyt", 62 prop: "ytmc",
62 label: "土地用途", 63 label: "土地用途",
63 }, 64 },
64 { 65 {
65 prop: "syqqssj", 66 prop: "syqqzsj",
66 label: "使用权起时间", 67 label: "使用权起时间",
67 }, 68 },
68 // { 69 // {
69 // prop: "syqjssj", 70 // prop: "syqjssj",
...@@ -74,8 +75,8 @@ class data extends filter { ...@@ -74,8 +75,8 @@ class data extends filter {
74 // label: "土地使用期限", 75 // label: "土地使用期限",
75 // }, 76 // },
76 { 77 {
77 prop: "syqqzsj", 78 prop: "tdsyqx",
78 label: "使用权起止时间", 79 label: "土地使用期限",
79 }, 80 },
80 { 81 {
81 prop: "qdjg", 82 prop: "qdjg",
......
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
59 <script> 59 <script>
60 import { mapGetters } from "vuex"; 60 import { mapGetters } from "vuex";
61 import { datas } from "./djxxColumns"; 61 import { datas } from "./djxxColumns";
62 62 import { getJsydsyqList } from "@/api/zhcx.js";
63 export default { 63 export default {
64 name: "djxxTable", 64 name: "djxxTable",
65 props: { 65 props: {
...@@ -90,9 +90,22 @@ export default { ...@@ -90,9 +90,22 @@ export default {
90 this.columns = this.type[newVlue].columns; 90 this.columns = this.type[newVlue].columns;
91 this.title = this.type[newVlue].title; 91 this.title = this.type[newVlue].title;
92 this.checkList = ["临时", "现势", "历史"]; 92 this.checkList = ["临时", "现势", "历史"];
93 this.tableWidth = 810 93 this.tableWidth = 810;
94 94 let detail;
95 let detail = this.djbxx.detail.qlxxs[newVlue]; 95 if (newVlue === "JSYDSYQ") {
96 getJsydsyqList({
97 bdcdyid: "2b33851f4edfd468ceef4d68c370bd41",
98 qllx: "A03",
99 qszt: ["1"]
100 }).then((res) => {
101
102 if (res.code === 200) {
103 detail = res.result;
104 }
105 });
106 } else {
107 detail = this.djbxx.detail.qlxxs[newVlue];
108 }
96 detail.forEach((item) => { 109 detail.forEach((item) => {
97 this.tableData.push(item); 110 this.tableData.push(item);
98 if (item.qszt == "0") { 111 if (item.qszt == "0") {
......