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
235b39d4
authored
2021-01-08 11:30:21 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(cxlz):户重新落宗添加自然幢数量
1 parent
a6f55c3c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
10 deletions
src/components/zdQueryData/zdQueryData.vue
src/components/zdQueryData/zdQueryData.vue
View file @
235b39d
...
...
@@ -56,14 +56,15 @@
<div
class=
"table-bode"
>
<table
border=
"1"
>
<tr>
<td>
序号
</td>
<td>
操作
</td>
<td>
宗地代码
</td>
<td>
不动产单元号
</td>
<td>
项目名称
</td>
<td>
不动产权证号
</td>
<td>
权利人
</td>
<td>
坐落
</td>
<th>
序号
</th>
<th>
操作
</th>
<th>
宗地代码
</th>
<th>
不动产单元号
</th>
<th>
项目名称
</th>
<th>
不动产权证号
</th>
<th>
权利人
</th>
<th>
坐落
</th>
<th>
自然幢数量
</th>
</tr>
<tr
v-if=
"Data.length===0"
>
<td
colspan=
"8"
>
...
...
@@ -81,6 +82,7 @@
<td>
{{
item
.
bdcqzh
}}
</td>
<td>
{{
item
.
qlrmc
}}
</td>
<td>
{{
item
.
zl
}}
</td>
<td>
{{
item
.
zrzCount
}}
</td>
</tr>
</table>
</div>
...
...
@@ -167,7 +169,11 @@
this
.
getData
(
this
.
queryData
)
},
addData
:
function
(
val
)
{
this
.
$emit
(
"getData"
,
val
)
if
(
val
.
zrzCount
<
1
)
{
this
.
$message
.
warning
(
"当前宗地下没有自然幢,请重新选择"
)
return
}
this
.
$emit
(
"getData"
,
val
);
},
isClose
(
flag
){
...
...
@@ -208,7 +214,9 @@
background-color
:
#F5F7FA
;
}
}
th
{
height
:
36px
;
}
td
{
text-align
:
center
;
height
:
36px
;
...
...
Please
register
or
sign in
to post a comment