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
a4101e71
authored
2022-11-16 15:07:20 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改
1 parent
e1a78b7e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
132 additions
and
68 deletions
src/api/bdcqz.js
src/views/workflow/components/fzxx.vue
src/views/workflow/components/zslq.vue
src/views/workflow/javascript/fzxxdata.js
src/views/workflow/workFrame.vue
src/api/bdcqz.js
View file @
a4101e7
...
...
@@ -41,6 +41,16 @@ export function getCertificateList (data) {
data
})
}
//获取未领取的证书信息
export
function
getUnclaimedBdcqz
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/bdcqz/getUnclaimedBdcqz'
,
method
:
'post'
,
params
:
data
})
}
// 发证
export
function
issueCertificate
(
data
)
{
return
request
({
...
...
src/views/workflow/components/fzxx.vue
View file @
a4101e7
...
...
@@ -52,7 +52,7 @@ export default {
},
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
columns
:
datas
.
columns
()
.
fzgrid
,
data
:
[],
}
}
...
...
src/views/workflow/components/zslq.vue
View file @
a4101e7
...
...
@@ -53,7 +53,7 @@
<
script
>
import
store
from
'@/store/index.js'
import
table
from
"@/utils/mixin/table"
;
import
{
get
CertificateList
,
issueCertificate
}
from
"@/api/fqsq
.js"
;
import
{
get
UnclaimedBdcqz
,
issueCertificate
}
from
"@/api/bdcqz
.js"
;
import
{
datas
}
from
"../javascript/fzxxdata"
;
export
default
{
mixins
:
[
table
],
...
...
@@ -86,27 +86,23 @@ export default {
},
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
columns
:
datas
.
columns
()
.
lzgrid
,
data
:
[],
},
}
},
props
:
[
"formData"
],
created
()
{
this
.
zslqList
=
store
.
getters
.
dictData
[
'A30'
]
this
.
zslqList
=
store
.
getters
.
dictData
[
'A30'
];
this
.
loadGrid
();
},
methods
:
{
fetchData
()
{
},
//列表初始化
tablelistFn
()
{
var
bsmSldy
=
this
.
$parent
.
_data
.
unitData
[
0
].
bsmSldy
getCertificateList
({
"bsmSldy"
:
bsmSldy
}).
then
(
res
=>
{
loadGrid
()
{
getUnclaimedBdcqz
({
bsmSlsq
:
this
.
formData
.
bsmSlsq
}).
then
(
res
=>
{
if
(
res
.
code
===
200
)
{
this
.
tableData
.
data
=
res
.
result
if
(
res
.
result
)
{
res
.
result
.
forEach
((
item
,
index
)
=>
{
this
.
ruleForm
.
bsmBdcqz
.
push
(
item
.
bsmBdcqz
)
})
}
this
.
tableData
.
data
=
res
.
result
;
}
})
},
...
...
src/views/workflow/javascript/fzxxdata.js
View file @
a4101e7
...
...
@@ -9,61 +9,119 @@ class data extends filter {
super
()
}
columns
()
{
return
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
},
{
prop
:
"qllxmc"
,
label
:
"权利类型"
},
{
prop
:
"ysxlh"
,
label
:
"印刷序列号"
},
{
prop
:
"bdcqzh"
,
label
:
"不动产权证号"
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
},
{
prop
:
"ywrmc"
,
label
:
"义务人"
,
render
:
(
h
,
scope
)
=>
{
if
(
scope
.
row
.
bdcqzh
==
""
)
{
return
<
div
>
{
scope
.
row
.
ywrmc
}
<
/div
>
}
else
{
return
<
div
>
{
scope
.
row
.
ywrmc
}
<
/div
>
}
return
{
//发证列表
fzgrid
:
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
},
{
prop
:
"bdcqzlx"
,
label
:
"不动产权证类型"
,
render
:
(
h
,
scope
)
=>
{
if
(
scope
.
row
.
bdcqzlx
==
"1"
)
{
return
(
<
div
>
不动产权证书
<
/div>
)
}
else
{
return
(
<
div
>
不动产登记证明
<
/div>
)
}
}
},
{
prop
:
"qllxmc"
,
label
:
"权利类型"
},
{
prop
:
"ysxlh"
,
label
:
"印刷序列号"
,
width
:
'100'
,
},
{
prop
:
"bdcqzh"
,
label
:
"不动产权证号"
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
},
{
prop
:
"ywr"
,
label
:
"义务人"
},
{
prop
:
"mj"
,
label
:
"面积(㎡)"
},
{
prop
:
"zl"
,
label
:
"坐落"
},
{
prop
:
"lzrxm"
,
label
:
"领取人"
},
{
label
:
'操作'
,
width
:
'200'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-delete"
onClick
=
{()
=>
{
vm
.
del
(
scope
.
row
)
}}
>
添加领取材料
<
/el-button
>
}
}
},
{
prop
:
"mj"
,
label
:
"面积(㎡)"
},
{
prop
:
"zl"
,
label
:
"坐落"
},
{
prop
:
"lzrxm"
,
label
:
"领取人"
},
{
label
:
'操作'
,
width
:
'200'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-delete"
onClick
=
{()
=>
{
vm
.
del
(
scope
.
row
)
}}
>
添加领取材料
<
/el-button
>
],
//领证证列表
lzgrid
:
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
},
{
prop
:
"bdcqzlx"
,
label
:
"不动产权证类型"
,
width
:
'120'
,
render
:
(
h
,
scope
)
=>
{
if
(
scope
.
row
.
bdcqzlx
==
"1"
)
{
return
(
<
div
>
不动产权证书
<
/div>
)
}
else
{
return
(
<
div
>
不动产登记证明
<
/div>
)
}
}
},
{
prop
:
"qllx"
,
label
:
"权利类型"
},
{
prop
:
"ysxlh"
,
label
:
"印刷序列号"
,
width
:
'100'
,
},
{
prop
:
"bdcqzh"
,
label
:
"不动产权证号"
},
{
prop
:
"qlr"
,
label
:
"权利人"
},
{
prop
:
"ywr"
,
label
:
"义务人"
},
{
prop
:
"mj"
,
label
:
"面积(㎡)"
,
width
:
'100'
,
},
{
prop
:
"zl"
,
label
:
"坐落"
}
}
]
]
}
}
...
...
src/views/workflow/workFrame.vue
View file @
a4101e7
...
...
@@ -320,13 +320,13 @@ export default {
case
"B7"
:
this
.
$popup
(
"证书领取"
,
"workflow/components/zslq"
,{
height
:
"700px"
,
formData
:
{},
formData
:
{
bsmSlsq
:
this
.
$route
.
query
.
bsmSlsq
},
btnShow
:
true
,
cancel
:
()
=>
{
console
.
log
(
"取消回调"
);
},
confirm
:
()
=>
{
console
.
log
(
"确认回调"
);
this
.
submitForm
(
);
},
})
break
;
...
...
Please
register
or
sign in
to post a comment