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
22eeaff5
authored
2021-01-08 17:27:58 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
96510145
71390c9a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
8 deletions
src/components/hCxlz/hCxlz.vue
src/components/zdQueryData/zdQueryData.vue
src/views/dz/dzxx/index.vue
src/views/panel/change/fg/index.vue
src/components/hCxlz/hCxlz.vue
View file @
22eeaff
...
...
@@ -168,7 +168,7 @@
hzl
(
this
.
hcxlzData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
$router
.
push
({
path
:
'zrz'
,
path
:
'
/
zrz'
,
query
:
{
bsm
:
this
.
hcxlzData
.
zrzbsm
,
source
:
2
,
...
...
src/components/zdQueryData/zdQueryData.vue
View file @
22eeaff
...
...
@@ -117,6 +117,7 @@
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
cxlz
:
this
.
isCxlz
,
pageNo
:
1
,
pageSize
:
10
,
},
...
...
@@ -158,6 +159,7 @@
xmmc
:
""
,
zddm
:
""
,
zl
:
""
,
cxlz
:
this
.
isCxlz
,
pageNo
:
1
,
pageSize
:
10
};
...
...
src/views/dz/dzxx/index.vue
View file @
22eeaff
...
...
@@ -297,10 +297,6 @@
}
else
{
this
.
bsm
=
this
.
$route
.
query
.
bsm
;
this
.
form
.
dzbsm
=
this
.
$route
.
query
.
bsm
;
}
if
(
this
.
source
!==
1
){
this
.
bsm
=
this
.
$route
.
query
.
bsm
;
this
.
form
.
dzbsm
=
this
.
$route
.
query
.
bsm
;
this
.
getDzDetailByBsm
(
this
.
$route
.
query
.
bsm
)
}
},
...
...
@@ -536,6 +532,7 @@
type
:
"dz"
}
submit
(
data
).
then
((
res
)
=>
{
debugger
if
(
res
.
code
===
200
){
this
.
$message
.
success
(
"提交完成!"
);
this
.
getDzDetailByBsm
(
this
.
$route
.
query
.
bsm
)
...
...
@@ -595,6 +592,8 @@
watch
:{
dzbsm
:
function
(
val
)
{
debugger
console
.
log
(
val
,
'多幢BSM'
)
this
.
getDzDetailByBsm
(
val
)
},
...
...
src/views/panel/change/fg/index.vue
View file @
22eeaff
...
...
@@ -119,7 +119,7 @@
</el-select>
</td>
<td
class=
"xmmc"
>
<
input
type=
"text"
v-model=
"item.xmmc"
class=
"formInput"
/
>
<
el-input
v-model=
"item.xmmc"
></el-input
>
</td>
</tr>
<tr
:key=
"index+100"
>
...
...
@@ -635,8 +635,13 @@
saveDzFg
(
this
.
dzFghData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
getRightTree
(
res
.
result
,
'0,1,2'
);
Message
.
success
(
"保存成功"
)
//TO DO 多幢分割完成后的操作
this
.
$router
.
push
({
path
:
'/dz'
,
query
:
{
bsm
:
res
.
result
,
source
:
3
,
//分割标识
}
});
}
else
{
Message
.
error
(
"保存失败"
)
}
...
...
Please
register
or
sign in
to post a comment