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
bb659e38
authored
2022-09-14 15:21:41 +0800
by
蔡俊立
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
待办箱 进度查询
1 parent
6b3cb24b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
8 deletions
src/views/ywbl/dbx/dbx.vue
src/views/ywbl/dbx/dbxdata.js
src/views/zhcx/jdcx/jdcx.vue
src/views/zhcx/jdcx/jdcxdata.js
src/views/ywbl/dbx/dbx.vue
View file @
bb659e3
...
...
@@ -107,6 +107,15 @@ export default {
searchTaskToDo
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
let
str
=
''
records
.
forEach
(
item
=>
{
if
(
item
.
qlrmc
.
length
!=
0
){
item
.
qlrmcStr
=
String
(
item
.
qlrmc
)
}
if
(
item
.
ywrmc
.
length
!=
0
){
item
.
ywrmcStr
=
String
(
item
.
ywrmc
)
}
})
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
}
...
...
src/views/ywbl/dbx/dbxdata.js
View file @
bb659e3
...
...
@@ -53,14 +53,24 @@ class data extends filter {
width
:
'220'
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
,
width
:
'70'
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
scope
.
row
.
qlrmcStr
}
<
/span
>
<
/div
>
)
}
},
{
prop
:
"ywrmc"
,
label
:
"义务人"
,
width
:
'70'
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
scope
.
row
.
ywrmcStr
}
<
/span
>
<
/div
>
)
}
},
{
prop
:
"zl"
,
...
...
@@ -79,10 +89,16 @@ class data extends filter {
width
:
'80'
},
{
prop
:
"zrsj"
,
label
:
"转入时间"
,
sortable
:
'custom'
,
width
:
'160'
width
:
'160'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
scope
.
row
.
zrsj
[
0
]}
<
/span
>
<
/div
>
)
}
},
{
label
:
'操作'
,
...
...
src/views/zhcx/jdcx/jdcx.vue
View file @
bb659e3
...
...
@@ -100,6 +100,12 @@ export default {
str
=
String
(
item
.
userNameList
)
item
.
blStatus
=
item
.
zbhj
+
'('
+
str
.
replace
(
/,/g
,
"+"
)
+
')'
}
if
(
item
.
qlrmc
.
length
!=
0
){
item
.
qlrmcStr
=
String
(
item
.
qlrmc
)
}
if
(
item
.
ywrmc
.
length
!=
0
){
item
.
ywrmcStr
=
String
(
item
.
ywrmc
)
}
})
this
.
pageData
.
total
=
total
;
this
.
tableData
.
data
=
records
...
...
src/views/zhcx/jdcx/jdcxdata.js
View file @
bb659e3
...
...
@@ -57,12 +57,24 @@ class data extends filter {
label
:
"申请业务名称"
,
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
scope
.
row
.
qlrmcStr
}
<
/span
>
<
/div
>
)
}
},
{
prop
:
"ywrmc"
,
label
:
"义务人"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
scope
.
row
.
ywrmcStr
}
<
/span
>
<
/div
>
)
}
},
{
prop
:
"zl"
,
...
...
Please
register
or
sign in
to post a comment