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
76a3cd95
authored
2020-12-14 11:18:26 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
宗地分割判断幢信息是否全部选择
1 parent
c9707e48
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
15 deletions
src/components/queryData/queryData.vue
src/components/zdQueryData/zdQueryData.vue
src/views/Home.vue
src/views/panel/change/fg/index.vue
src/components/queryData/queryData.vue
View file @
76a3cd9
...
...
@@ -5,6 +5,7 @@
:visible
.
sync=
"isVisible"
width=
"70%"
@
close=
"close"
:modal-append-to-body=
"false"
center
>
<div
class=
"search"
>
<!--
<el-button
type=
"primary"
@
click=
"search"
>
查询
</el-button>
...
...
src/components/zdQueryData/zdQueryData.vue
View file @
76a3cd9
...
...
@@ -5,6 +5,7 @@
:visible
.
sync=
"isVisible"
width=
"70%"
@
close=
"close"
:modal-append-to-body=
"false"
center
>
<div
class=
"search"
>
<el-row>
...
...
src/views/Home.vue
View file @
76a3cd9
...
...
@@ -439,7 +439,7 @@ export default {
width
:
100%
;
height
:
100vh
;
position
:
relative
;
min-width
:
1
50
0px
;
min-width
:
1
68
0px
;
overflow-x
:
auto
;
.calcWidth{
width
:
calc
(
100%
-
300px
);
...
...
src/views/panel/change/fg/index.vue
View file @
76a3cd9
...
...
@@ -724,20 +724,24 @@
}
},
saveZd
()
{
zdfg
(
this
.
zdFghData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$store
.
state
.
zdbsms
=
res
.
result
;
this
.
$router
.
push
({
path
:
'/zd'
,
query
:
{
bsm
:
res
.
result
[
0
],
source
:
3
,
//分割标识
}
});
}
else
{
Message
.
error
(
"保存失败"
)
}
})
if
(
this
.
tempBsmList
.
length
==
(
this
.
zdZxx
.
dzList
.
length
+
this
.
zdZxx
.
zrzList
.
length
)){
zdfg
(
this
.
zdFghData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$store
.
state
.
zdbsms
=
res
.
result
;
this
.
$router
.
push
({
path
:
'/zd'
,
query
:
{
bsm
:
res
.
result
[
0
],
source
:
3
,
//分割标识
}
});
}
else
{
Message
.
error
(
"保存失败"
)
}
})
}
else
{
this
.
$message
.
warning
(
"幢信息未选择完成,无法保存"
)
}
},
saveDz
()
{
...
...
Please
register
or
sign in
to post a comment