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
c6fa2036
authored
2021-01-08 14:04:51 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
重新落宗选择宗地的数据展示宗地下自然幢数量
1 parent
d099a117
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
src/components/hCxlz/hCxlz.vue
src/components/zdQueryData/zdQueryData.vue
src/components/hCxlz/hCxlz.vue
View file @
c6fa203
...
...
@@ -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 @
c6fa203
...
...
@@ -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
}
...
...
Please
register
or
sign in
to post a comment