修改已办箱
Showing
2 changed files
with
16 additions
and
13 deletions
... | @@ -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,14 +42,11 @@ class data extends filter { | ... | @@ -42,14 +42,11 @@ 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': | 46 | return <div class='allow'>进行中</div> |
47 | return <div class='allow'>进行中</div> | 47 | }else{ |
48 | case '2': | 48 | return <div class='prohibit'>已结束</div> |
49 | return <div class='prohibit'>已结束</div> | 49 | } |
50 | case '3': | ||
51 | return <span>进行中</span> | ||
52 | } | ||
53 | } | 50 | } |
54 | }, | 51 | }, |
55 | { | 52 | { |
... | @@ -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) => { | ... | ... |
-
Please register or sign in to post a comment