da175b8e by jiaozeping@pashanhoo.com

1

1 parent b51a69d2
...@@ -7,37 +7,37 @@ class data extends filter { ...@@ -7,37 +7,37 @@ class data extends filter {
7 return [ 7 return [
8 { 8 {
9 label: "业务号", 9 label: "业务号",
10 prop: "YWH", 10 prop: "ywh",
11 width: 150 11 width: 150
12 }, 12 },
13 { 13 // {
14 label: "权利类型", 14 // label: "权利类型",
15 render: (h, scope) => { 15 // render: (h, scope) => {
16 return ( 16 // return (
17 <div> 17 // <div>
18 <span>{ this.qllxStatus(scope.row.QLLX)}</span> 18 // <span>{ this.qllxStatus(scope.row.QLLX)}</span>
19 </div> 19 // </div>
20 ) 20 // )
21 }, 21 // },
22 }, 22 // },
23 { 23 // {
24 label: "登记类型", 24 // label: "登记类型",
25 width: 70, 25 // width: 70,
26 render: (h, scope) => { 26 // render: (h, scope) => {
27 return ( 27 // return (
28 <div> 28 // <div>
29 <span>{this.djlxStatus(scope.row.DJLX)}</span> 29 // <span>{this.djlxStatus(scope.row.DJLX)}</span>
30 </div> 30 // </div>
31 ) 31 // )
32 } 32 // }
33 }, 33 // },
34 { 34 {
35 label: "不动产单元号", 35 label: "不动产单元号",
36 prop: "BDCDYH" 36 prop: "bdcdyh"
37 }, 37 },
38 { 38 {
39 label: "不动产权证号", 39 label: "不动产权证号",
40 prop: "BDCQZH" 40 prop: "bdcqzh"
41 }, 41 },
42 { 42 {
43 label: "登记时间", 43 label: "登记时间",
...@@ -46,7 +46,7 @@ class data extends filter { ...@@ -46,7 +46,7 @@ class data extends filter {
46 }, 46 },
47 { 47 {
48 label: "登记机构", 48 label: "登记机构",
49 prop: "DJJG" 49 prop: "djjg"
50 } 50 }
51 ] 51 ]
52 } 52 }
......
...@@ -159,7 +159,8 @@ export default { ...@@ -159,7 +159,8 @@ export default {
159 try { 159 try {
160 this.form = Object.assign(this.form, this.formData) 160 this.form = Object.assign(this.form, this.formData)
161 let { result: { list, total, pages: pageSize, pageNum: current } 161 let { result: { list, total, pages: pageSize, pageNum: current }
162 } = await business.getQlfQlHysyqByConditon(this.form) 162 } = await business.getQlfQlTdsyqListByCondition(this.form)
163 debugger;
163 this.tableData.data = list 164 this.tableData.data = list
164 this.pageData = { 165 this.pageData = {
165 pageSize, 166 pageSize,
......