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
eb03ec43
authored
2021-01-15 17:22:46 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/renchao/CadastralSystem
2 parents
bf74f09a
7973a145
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
src/views/panel/change/fg/index.vue
src/views/panel/change/hb/index.vue
src/views/zrz/zrzxx/index.vue
src/views/panel/change/fg/index.vue
View file @
eb03ec4
...
...
@@ -642,7 +642,9 @@
Message
.
info
(
"请选择需要分割的多幢或者填写分割后多幢的基本信息!"
)
return
}
vm
.
loadingShow
(
'正在保存中'
);
saveDzFg
(
this
.
dzFghData
).
then
(
res
=>
{
vm
.
loadingHide
()
if
(
res
.
success
)
{
this
.
getRightTree
(
res
.
result
,
'0,1,2'
);
this
.
$router
.
push
({
...
...
@@ -655,6 +657,9 @@
}
else
{
Message
.
error
(
"保存失败"
)
}
}).
catch
((
error
)
=>
{
vm
.
loadingHide
();
console
.
log
(
error
);
})
},
saveH
()
{
...
...
src/views/panel/change/hb/index.vue
View file @
eb03ec4
...
...
@@ -306,7 +306,9 @@
oldzdbsms
:
oldBsm
}
console
.
log
(
data
,
'宗地合并数据'
)
vm
.
loadingShow
();
ZdHb
(
data
).
then
(
res
=>
{
vm
.
loadingHide
();
if
(
res
.
success
)
{
this
.
$message
.
success
(
"合并成功"
);
//更新目录树
...
...
@@ -322,6 +324,9 @@
}
else
{
this
.
$message
.
error
(
"合并失败"
)
}
}).
catch
((
error
)
=>
{
vm
.
loadingHide
();
console
.
log
(
error
);
})
},
dzHb
()
{
...
...
@@ -330,8 +335,9 @@
newdzxmmc
:
this
.
$refs
.
dzhb
.
dzhbhData
.
xmmc
,
zdbsm
:
this
.
$refs
.
dzhb
.
zdbsm
}
vm
.
loadingShow
();
DzHb
(
data
).
then
(
res
=>
{
vm
.
loadingHide
();
if
(
res
.
success
)
{
console
.
log
(
res
)
this
.
$message
.
success
(
"多幢合并成功"
)
...
...
@@ -343,7 +349,12 @@
bsm
:
res
.
result
}
})
}
else
{
this
.
$message
.
error
(
res
.
message
);
}
}).
catch
((
error
)
=>
{
vm
.
loadingHide
();
console
.
log
(
error
);
})
},
hHb
()
{
...
...
src/views/zrz/zrzxx/index.vue
View file @
eb03ec4
...
...
@@ -834,7 +834,7 @@
}
},
"form.zrzh"
:
function
(
val
)
{
if
(
val
!=
''
)
{
if
(
val
!=
''
&&
val
!=
null
)
{
this
.
$refs
.
zrzh
.
style
.
border
=
''
;
this
.
form
.
bdcdyh
=
val
+
"0000"
;
}
...
...
Please
register
or
sign in
to post a comment