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
504b577b
authored
2022-09-19 15:41:42 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改登记簿内容展示
1 parent
411f1d5f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
14 deletions
src/api/zhcx.js
src/views/zhcx/djbcx/components/djxxColumns.js
src/views/zhcx/djbcx/components/djxxTable.vue
src/api/zhcx.js
View file @
504b577
...
...
@@ -54,6 +54,16 @@ export function getDetail(qlbsm) {
method
:
'get'
})
}
// 获取权利详细信息
export
function
getJsydsyqList
(
data
)
{
return
request
({
url
:
'/zhcx/djbcx/getJsydsyqList'
,
method
:
'post'
,
data
})
}
// 进度查询列表
export
function
getJdcxBysearch
(
data
)
{
return
request
({
...
...
src/views/zhcx/djbcx/components/djxxColumns.js
View file @
504b577
...
...
@@ -12,6 +12,7 @@ class data extends filter {
{
prop
:
"ssywh"
,
label
:
"上手业务号"
,
width
:
"120"
},
{
prop
:
"dah"
,
...
...
@@ -34,23 +35,23 @@ class data extends filter {
label
:
"权利人类型"
,
},
{
prop
:
"qlr"
,
prop
:
"qlr
mc
"
,
label
:
"权利人"
,
},
{
prop
:
"zjzl"
,
prop
:
"
qlr
zjzl"
,
label
:
"证件种类"
,
},
{
prop
:
"
zjh
"
,
prop
:
"
qlrzjhm
"
,
label
:
"证件号"
,
},
{
prop
:
"gy
qk
"
,
prop
:
"gy
fs
"
,
label
:
"共有情况"
,
},
{
prop
:
"
syq
mj"
,
prop
:
"mj"
,
label
:
"使用权面积(m²)"
,
},
{
...
...
@@ -58,12 +59,12 @@ class data extends filter {
label
:
"权利性质"
,
},
{
prop
:
"
tdyt
"
,
prop
:
"
ytmc
"
,
label
:
"土地用途"
,
},
{
prop
:
"syqq
s
sj"
,
label
:
"使用权起
始
时间"
,
prop
:
"syqq
z
sj"
,
label
:
"使用权起
止
时间"
,
},
// {
// prop: "syqjssj",
...
...
@@ -74,8 +75,8 @@ class data extends filter {
// label: "土地使用期限",
// },
{
prop
:
"
syqqzsj
"
,
label
:
"
使用权起止时间
"
,
prop
:
"
tdsyqx
"
,
label
:
"
土地使用期限
"
,
},
{
prop
:
"qdjg"
,
...
...
src/views/zhcx/djbcx/components/djxxTable.vue
View file @
504b577
...
...
@@ -59,7 +59,7 @@
<
script
>
import
{
mapGetters
}
from
"vuex"
;
import
{
datas
}
from
"./djxxColumns"
;
import
{
getJsydsyqList
}
from
"@/api/zhcx.js"
;
export
default
{
name
:
"djxxTable"
,
props
:
{
...
...
@@ -90,9 +90,22 @@ export default {
this
.
columns
=
this
.
type
[
newVlue
].
columns
;
this
.
title
=
this
.
type
[
newVlue
].
title
;
this
.
checkList
=
[
"临时"
,
"现势"
,
"历史"
];
this
.
tableWidth
=
810
let
detail
=
this
.
djbxx
.
detail
.
qlxxs
[
newVlue
];
this
.
tableWidth
=
810
;
let
detail
;
if
(
newVlue
===
"JSYDSYQ"
)
{
getJsydsyqList
({
bdcdyid
:
"2b33851f4edfd468ceef4d68c370bd41"
,
qllx
:
"A03"
,
qszt
:
[
"1"
]
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
detail
=
res
.
result
;
}
});
}
else
{
detail
=
this
.
djbxx
.
detail
.
qlxxs
[
newVlue
];
}
detail
.
forEach
((
item
)
=>
{
this
.
tableData
.
push
(
item
);
if
(
item
.
qszt
==
"0"
)
{
...
...
Please
register
or
sign in
to post a comment