Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
24fbf75b
authored
2023-02-03 16:47:58 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
报文详情字段校对
1 parent
e11ceccc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
22 deletions
src/components/EditDialog/index.vue
src/components/EditDialog/index.vue
View file @
24fbf75
...
...
@@ -15,69 +15,69 @@
<el-row>
<el-col
:span=
"5"
>
<span>
业务报文ID:
</span>
<div>
{{
dataReport
.
bizMsgi
d
}}
</div>
<div>
{{
dataReport
.
BizMsgI
d
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
接入报文ID:
</span>
<div>
{{
dataReport
.
asid
}}
</div>
<div>
{{
dataReport
.
ASID
}}
</div>
</el-col>
<el-col
:span=
"5"
>
<span>
行政区划编码:
</span>
<div>
{{
dataReport
.
areac
ode
}}
</div>
<div>
{{
dataReport
.
AreaC
ode
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
上次不动产单元号:
</span>
<div>
{{
dataReport
.
preestaten
um
}}
</div>
<div>
{{
dataReport
.
PreEstateN
um
}}
</div>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"5"
>
<span>
业务编码:
</span>
<div>
{{
dataReport
.
rect
ype
}}
</div>
<div>
{{
dataReport
.
RecT
ype
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
权利类型:
</span>
<div>
{{
dataReport
.
rightt
ype
}}
</div>
<div>
{{
dataReport
.
RightT
ype
}}
</div>
</el-col>
<el-col
:span=
"5"
>
<span>
登记类型:
</span>
<div>
{{
dataReport
.
regt
ype
}}
</div>
<div>
{{
dataReport
.
RegT
ype
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
不动产权证书数量:
</span>
<div>
{{
dataReport
.
certc
ount
}}
</div>
<div>
{{
dataReport
.
CertC
ount
}}
</div>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"5"
>
<span>
创建时间:
</span>
<div>
{{
dataReport
.
create
d
ate
}}
</div>
<div>
{{
dataReport
.
create
D
ate
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
业务流水号:
</span>
<div>
{{
dataReport
.
recflowid
}}
</div>
<div>
{{
dataReport
.
RecFlowID
}}
</div>
</el-col>
<el-col
:span=
"5"
>
<span>
登记机构:
</span>
<div>
{{
dataReport
.
regorgid
}}
</div>
<div>
{{
dataReport
.
RegOrgID
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
证明数量:
</span>
<div>
{{
dataReport
.
proofc
ount
}}
</div>
<div>
{{
dataReport
.
ProofC
ount
}}
</div>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"5"
>
<span>
宗地/宗海代码:
</span>
<div>
{{
dataReport
.
parcelid
}}
</div>
<div>
{{
dataReport
.
ParcelID
}}
</div>
</el-col>
<el-col
:span=
"7"
>
<span>
不动产单元号:
</span>
<div>
{{
dataReport
.
estaten
um
}}
</div>
<div>
{{
dataReport
.
EstateN
um
}}
</div>
</el-col>
<el-col
:span=
"10"
>
<span>
上次不动产权证号/不动产登记证明:
</span>
<div>
{{
dataReport
.
precertid
}}
</div>
<div>
{{
dataReport
.
PreCertID
}}
</div>
</el-col>
</el-row>
<!--
<el-row>
...
...
@@ -193,18 +193,17 @@ export default {
this
.
editItem
=
this
.
loadView
(
this
.
activeName
);
}
});
//不动产数据查询上报详情
getReportDetail
({
bsmReport
:
item
.
bsmSjsb
||
item
.
bsmReport
}).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
dataReport
=
res
.
result
;
}
})
// 获取xml
if
(
this
.
visiableXml
)
{
getXml
(
item
.
bizMsgid
).
then
((
res
)
=>
{
this
.
resultInfo
=
res
.
message
})
}
else
{
//不动产数据查询上报详情
getReportDetail
({
bsmReport
:
item
.
bsmSjsb
}).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
dataReport
=
res
.
result
;
}
})
}
},
changeList
(
val
)
{
...
...
Please
register
or
sign in
to post a comment