c0c9db4f by “miaofang

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 6e9d4a04 ff9853ec
...@@ -235,10 +235,10 @@ ...@@ -235,10 +235,10 @@
235 if (res.code === 200) { 235 if (res.code === 200) {
236 let { total, records } = res.result; 236 let { total, records } = res.result;
237 records.forEach((item) => { 237 records.forEach((item) => {
238 item.qlrmc = item.qlrmc.join(","); 238 // item.qlrmc = item.qlrmc.join(",");
239 item.ywh = item.ywh.join(","); 239 // item.ywh = item.ywh.join(",");
240 item.zl = item.zl.join(","); 240 // item.zl = item.zl.join(",");
241 item.outstepdate = item.outstepdate[0]; 241 // item.outstepdate = item.outstepdate[0];
242 }); 242 });
243 this.tableData.total = total ? total : 0; 243 this.tableData.total = total ? total : 0;
244 this.tableData.data = records ? records : []; 244 this.tableData.data = records ? records : [];
...@@ -270,9 +270,10 @@ ...@@ -270,9 +270,10 @@
270 ); 270 );
271 window.open(href, `djbworkFrameview${item.bsmSlsq}`); 271 window.open(href, `djbworkFrameview${item.bsmSlsq}`);
272 } else { 272 } else {
273 let bestepid=item.bestepid==null?"":item.bestepid;
273 const { href } = this.$router.resolve( 274 const { href } = this.$router.resolve(
274 "/workFrameView?bsmSlsq=" + item.bsmSlsq + 275 "/workFrameView?bsmSlsq=" + item.bsmSlsq +
275 "&bestepid=" + item.bestepid 276 "&bestepid=" + bestepid
276 ); 277 );
277 window.open(href, `workFrameView${item.bsmSlsq}`) 278 window.open(href, `workFrameView${item.bsmSlsq}`)
278 } 279 }
......
...@@ -42,13 +42,10 @@ class data extends filter { ...@@ -42,13 +42,10 @@ class data extends filter {
42 if (scope.row.yygqzt == '1') { 42 if (scope.row.yygqzt == '1') {
43 return <div class='suspend'>异议挂起</div> 43 return <div class='suspend'>异议挂起</div>
44 } 44 }
45 switch (scope.row.lczt) { 45 if (scope.row.jssj == null) {
46 case '1':
47 return <div class='allow'>进行中</div> 46 return <div class='allow'>进行中</div>
48 case '2': 47 }else{
49 return <div class='prohibit'>已结束</div> 48 return <div class='prohibit'>已结束</div>
50 case '3':
51 return <span>进行中</span>
52 } 49 }
53 } 50 }
54 }, 51 },
...@@ -70,6 +67,11 @@ class data extends filter { ...@@ -70,6 +67,11 @@ class data extends filter {
70 width: '200' 67 width: '200'
71 }, 68 },
72 { 69 {
70 prop: "bdcdyh",
71 label: "不动产单元号",
72 minWidth: '150',
73 },
74 {
73 label: "权利人", 75 label: "权利人",
74 width: '120', 76 width: '120',
75 render: (h, scope) => { 77 render: (h, scope) => {
......