Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
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
88f248f0
authored
2021-01-08 15:34:53 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
046250b0
11e812e3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
10 deletions
src/components/hCxlz/hCxlz.vue
src/components/zdQueryData/zdQueryData.vue
src/views/panel/change/fg/index.vue
src/views/panel/create/index.vue
src/views/zd/index.vue
src/components/hCxlz/hCxlz.vue
View file @
88f248f
...
...
@@ -64,7 +64,7 @@
<el-button
type=
"primary"
@
click=
"save"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"close"
>
取消
</el-button>
</div>
<zd-query-data
:centerDialogVisible=
"xzzdVisible"
@
close=
"xzzdClose"
@
getData=
"getZdxx"
<zd-query-data
:
isCxlz =
true
:
centerDialogVisible=
"xzzdVisible"
@
close=
"xzzdClose"
@
getData=
"getZdxx"
:isZdClose=
"true"
></zd-query-data>
</el-dialog>
</
template
>
...
...
src/components/zdQueryData/zdQueryData.vue
View file @
88f248f
...
...
@@ -64,10 +64,10 @@
<th>
不动产权证号
</th>
<th>
权利人
</th>
<th>
坐落
</th>
<th>
自然幢数量
</th>
<th
v-if=
"isCxlz"
>
自然幢数量
</th>
</tr>
<tr
v-if=
"Data.length===0"
>
<td
colspan=
"
8"
>
<td
:colspan=
"isCxlz ? 9:
8"
>
<span
class=
"noData"
>
暂无数据
</span>
</td>
</tr>
...
...
@@ -82,7 +82,7 @@
<td>
{{
item
.
bdcqzh
}}
</td>
<td>
{{
item
.
qlrmc
}}
</td>
<td>
{{
item
.
zl
}}
</td>
<td>
{{
item
.
zrzCount
}}
</td>
<td
v-if=
"isCxlz"
>
{{
item
.
zrzCount
}}
</td>
</tr>
</table>
</div>
...
...
@@ -134,6 +134,10 @@
isZdClose
:
{
type
:
Boolean
,
default
:
false
},
isCxlz
:{
type
:
Boolean
,
default
:
false
}
},
mounted
()
{
...
...
@@ -169,7 +173,7 @@
this
.
getData
(
this
.
queryData
)
},
addData
:
function
(
val
)
{
if
(
val
.
zrzCount
<
1
)
{
if
(
this
.
isCxlz
&&
val
.
zrzCount
<
1
)
{
this
.
$message
.
warning
(
"当前宗地下没有自然幢,请重新选择"
)
return
}
...
...
src/views/panel/change/fg/index.vue
View file @
88f248f
...
...
@@ -15,7 +15,7 @@
<li><span
class=
"label"
>
不动产单元号:
</span><span
class=
"value"
>
{{
zdFgqData
.
bdcdyh
}}
</span></li>
<li><span
class=
"label"
>
项目名称:
</span><span
class=
"value"
>
{{
zdFgqData
.
xmmc
}}
</span></li>
<li><span
class=
"label"
>
不动产权证号:
</span><span
class=
"value"
>
{{
zdFgqData
.
bdcqzh
}}
</span></li>
<li><span
class=
"label"
>
权利人:
</span><span
class=
"value"
>
{{
zdFgqData
.
qlr
}}
</span></li>
<li><span
class=
"label"
>
权利人:
</span><span
class=
"value"
>
{{
zdFgqData
.
qlr
mc
}}
</span></li>
<li><span
class=
"label"
>
坐落:
</span><span
class=
"value"
>
{{
zdFgqData
.
zl
}}
</span></li>
</ul>
<div
class=
"zdmap"
>
...
...
src/views/panel/create/index.vue
View file @
88f248f
...
...
@@ -133,7 +133,7 @@
<el-button
type=
"primary"
class=
"w98 cancel"
@
click=
"close"
>
取消
</el-button>
</div>
</el-tab-pane>
<el-tab-pane
class=
"eltabspane"
label=
"构筑物"
name=
"gzw"
>
<el-tab-pane
class=
"eltabspane"
v-if=
"!createZrz"
label=
"构筑物"
name=
"gzw"
>
<el-form
:inline=
"true"
:rules=
"rules4"
:model=
"ruleForm4"
ref=
"ruleForm4"
class=
"demo-form-inline"
>
<el-form-item
label=
"项目名称"
class=
"w100"
prop=
"xmmc"
>
<el-input
...
...
src/views/zd/index.vue
View file @
88f248f
...
...
@@ -47,7 +47,7 @@ export default {
methods
:
{
loadingStatus
()
{
console
.
log
(
"是否禁用"
)
let
bsm
=
this
.
$
store
.
state
.
zd
bsm
;
let
bsm
=
this
.
$
route
.
query
.
bsm
;
queryStatus
(
bsm
).
then
(
res
=>
{
if
(
res
.
success
)
{
let
qszt
=
res
.
result
.
qszt
;
...
...
@@ -89,8 +89,16 @@ export default {
},
created
()
{},
mounted
()
{},
computed
:
{},
watch
:
{},
computed
:
{
zdbsm
()
{
return
this
.
$route
.
query
.
bsm
;
},
},
watch
:
{
zdbsm
:
function
(
val
)
{
this
.
loadingStatus
();
},
},
};
</
script
>
<
style
scoped
lang=
"less"
>
...
...
Please
register
or
sign in
to post a comment