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
8575e9f2
authored
2020-12-15 10:25:36 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
新建自然幢流程完善
1 parent
dc0f5a29
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
src/components/lineTree/lineTree.vue
src/views/panel/create/index.vue
src/components/lineTree/lineTree.vue
View file @
8575e9f
...
...
@@ -254,6 +254,8 @@ export default {
this
.
$store
.
state
.
zdbsm
=
this
.
zdData
.
zdbsm
;
if
(
this
.
zdData
.
type
==
'dz'
){
this
.
$store
.
state
.
dzbsm
=
this
.
zdData
.
bsm
;
}
else
{
this
.
$store
.
state
.
dzbsm
=
''
;
}
},
//关闭添加定着物弹框
...
...
src/views/panel/create/index.vue
View file @
8575e9f
...
...
@@ -290,8 +290,9 @@ export default {
//todo 在新增时,如果是点击顶部新建里面的自然幢则不传zdbsm 如果是点击右键里面的添加定着物则传zdbsm
this
.
$refs
[
'ruleForm1'
].
validate
((
valid
)
=>
{
if
(
valid
)
{
this
.
ruleForm1
.
zdbsm
=
this
.
$store
.
state
.
zdbsm
!=
''
?
this
.
$store
.
state
.
zdbsm
:
''
;
this
.
ruleForm1
.
dzbsm
=
this
.
$store
.
state
.
dzbsm
!=
''
?
this
.
$store
.
state
.
dzbsm
:
''
;
this
.
ruleForm1
.
zdbsm
=
this
.
auth
?
this
.
$store
.
state
.
zdbsm
:
''
;
this
.
ruleForm1
.
dzbsm
=
this
.
auth
?
this
.
$store
.
state
.
dzbsm
:
''
;
insertZrzjbxx
(
this
.
ruleForm1
)
.
then
((
res
)
=>
{
if
(
res
.
code
==
"200"
)
{
...
...
Please
register
or
sign in
to post a comment