Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
8152c5b5
authored
2024-03-05 15:30:23 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改已办箱
1 parent
cbff7629
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
10 deletions
src/views/ywbl/ybx/ybx.vue
src/views/ywbl/ybx/ybxdata.js
src/views/ywbl/ybx/ybx.vue
View file @
8152c5b
...
...
@@ -235,10 +235,10 @@
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
records
.
forEach
((
item
)
=>
{
item
.
qlrmc
=
item
.
qlrmc
.
join
(
","
);
item
.
ywh
=
item
.
ywh
.
join
(
","
);
item
.
zl
=
item
.
zl
.
join
(
","
);
item
.
outstepdate
=
item
.
outstepdate
[
0
];
//
item.qlrmc = item.qlrmc.join(",");
//
item.ywh = item.ywh.join(",");
//
item.zl = item.zl.join(",");
//
item.outstepdate = item.outstepdate[0];
});
this
.
tableData
.
total
=
total
?
total
:
0
;
this
.
tableData
.
data
=
records
?
records
:
[];
...
...
@@ -270,9 +270,10 @@
);
window
.
open
(
href
,
`djbworkFrameview
${
item
.
bsmSlsq
}
`
);
}
else
{
let
bestepid
=
item
.
bestepid
==
null
?
""
:
item
.
bestepid
;
const
{
href
}
=
this
.
$router
.
resolve
(
"/workFrameView?bsmSlsq="
+
item
.
bsmSlsq
+
"&bestepid="
+
item
.
bestepid
"&bestepid="
+
bestepid
);
window
.
open
(
href
,
`workFrameView
${
item
.
bsmSlsq
}
`
)
}
...
...
src/views/ywbl/ybx/ybxdata.js
View file @
8152c5b
...
...
@@ -42,13 +42,10 @@ class data extends filter {
if
(
scope
.
row
.
yygqzt
==
'1'
)
{
return
<
div
class
=
'suspend'
>
异议挂起
<
/div
>
}
switch
(
scope
.
row
.
lczt
)
{
case
'1'
:
if
(
scope
.
row
.
jssj
==
null
)
{
return
<
div
class
=
'allow'
>
进行中
<
/div
>
case
'2'
:
}
else
{
return
<
div
class
=
'prohibit'
>
已结束
<
/div
>
case
'3'
:
return
<
span
>
进行中
<
/span
>
}
}
},
...
...
@@ -70,6 +67,11 @@ class data extends filter {
width
:
'200'
},
{
prop
:
"bdcdyh"
,
label
:
"不动产单元号"
,
minWidth
:
'150'
,
},
{
label
:
"权利人"
,
width
:
'120'
,
render
:
(
h
,
scope
)
=>
{
...
...
Please
register
or
sign in
to post a comment