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
69a283c9
authored
2023-08-15 09:48:34 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev' of
http://yun.pashanhoo.com:9090/bdc/bdcdj-web
into dev
2 parents
5d5f4448
b89123bd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
127 additions
and
13 deletions
src/utils/request.js
src/views/registerBook/qlxxFormData.js
src/views/registerBook/tdsyq.vue
src/views/ywbl/ywsq/guidePage.vue
src/utils/request.js
View file @
69a283c
...
...
@@ -54,7 +54,9 @@ service.interceptors.response.use(
*/
if
(
response
.
status
==
200
)
{
return
response
.
data
;
}
else
{
}
else
if
(
response
.
status
==
2002
){
Message
.
error
(
response
.
message
);
}
else
{
handleErrorData
(
response
.
data
);
}
return
response
;
...
...
src/views/registerBook/qlxxFormData.js
View file @
69a283c
...
...
@@ -24,6 +24,116 @@ class data extends filter {
label
:
"历史"
,
},
],
TDSYQ
:
[
{
prop
:
"qszt"
,
label
:
"权属状态"
,
},
{
prop
:
"sjlx"
,
label
:
"数据类型"
,
},
{
prop
:
"qllxmc"
,
label
:
"权利类型"
,
},
{
prop
:
"djlxmc"
,
label
:
"登记类型"
,
},
{
prop
:
"ssywh"
,
label
:
"上手业务号"
,
},
{
prop
:
"dah"
,
label
:
"档案号"
,
},
{
prop
:
"ywh"
,
label
:
"业务号"
,
},
{
prop
:
"bdcdyh"
,
label
:
"不动产单元号"
,
},
{
prop
:
"zl"
,
label
:
"坐落"
,
},
{
prop
:
"gyqk"
,
label
:
"共有情况"
,
},
{
prop
:
"qlrlx"
,
label
:
"权利人类型"
,
},
{
prop
:
"qlrmc"
,
label
:
"权利人"
,
},
{
prop
:
"qlrzjzl"
,
label
:
"证件种类"
,
},
{
prop
:
"qlrzjhm"
,
label
:
"证件号"
,
},
{
prop
:
"ytmc"
,
label
:
"土地用途"
,
},
{
prop
:
"mjdw"
,
label
:
"面积单位"
,
},
{
prop
:
"gdmj"
,
label
:
"耕地面积"
,
},
{
prop
:
"ldmj"
,
label
:
"林地面积"
,
},
{
prop
:
"cdmj"
,
label
:
"草地面积"
,
},
{
prop
:
"qtnydmj"
,
label
:
"其他农用地面积"
,
},
{
prop
:
"jsydmj"
,
label
:
"建设用地面积"
,
},
{
prop
:
"wlydmj"
,
label
:
"未利用地面积"
,
},
{
prop
:
"djyy"
,
label
:
"登记原因"
,
},
{
prop
:
"bdcqzh"
,
label
:
"不动产权证号"
,
},
{
prop
:
"djsj"
,
label
:
"登记时间"
,
},
{
prop
:
"dbr"
,
label
:
"登簿人"
,
},
{
prop
:
"fj"
,
label
:
"附记"
,
},
],
JSYDSYQ
:
[
{
prop
:
"qszt"
,
...
...
src/views/registerBook/tdsyq.vue
View file @
69a283c
...
...
@@ -78,7 +78,7 @@
//空列值个数
emptycolNum
:
datas
.
columns
().
emptycolNum
,
//列名称对象
columns
:
datas
.
columns
().
JSY
DSYQ
,
columns
:
datas
.
columns
().
T
DSYQ
,
};
},
created
()
{
...
...
src/views/ywbl/ywsq/guidePage.vue
View file @
69a283c
...
...
@@ -211,17 +211,19 @@
*/
getNextNode
(
bsmSqyw
)
{
getNextNode
(
bsmSqyw
).
then
(
res
=>
{
if
(
res
.
result
.
djqx
)
{
this
.
djqxList
=
res
.
result
.
djqx
;
this
.
djqxList
.
forEach
(
item
=>
{
this
.
$set
(
item
,
'selected'
,
false
);
});
}
if
(
res
.
result
.
djlx
)
{
this
.
djlxList
=
res
.
result
.
djlx
;
this
.
djlxList
.
forEach
(
item
=>
{
this
.
$set
(
item
,
'selected'
,
false
);
});
if
(
res
.
result
)
{
if
(
res
.
result
.
djqx
)
{
this
.
djqxList
=
res
.
result
.
djqx
;
this
.
djqxList
.
forEach
(
item
=>
{
this
.
$set
(
item
,
'selected'
,
false
);
});
}
if
(
res
.
result
.
djlx
)
{
this
.
djlxList
=
res
.
result
.
djlx
;
this
.
djlxList
.
forEach
(
item
=>
{
this
.
$set
(
item
,
'selected'
,
false
);
});
}
}
})
},
...
...
Please
register
or
sign in
to post a comment