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
2b72185f
authored
2020-10-30 08:58:05 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
自然幢提交按钮保存联调
1 parent
3c677d31
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
src/api/zrz.js
src/views/systemZRZ/zrzxx/index.vue
src/api/zrz.js
View file @
2b72185
...
...
@@ -46,4 +46,16 @@ export function getZrzDetailByBsm (data) {
id
:
data
}
})
}
\ No newline at end of file
}
/**
* 保存自然幢信息
*/
export
function
submit
(
data
)
{
return
request
({
url
:
'/system/submit/submitInfo'
,
method
:
'get'
,
data
:
data
})
}
...
...
src/views/systemZRZ/zrzxx/index.vue
View file @
2b72185
...
...
@@ -270,7 +270,7 @@
<
script
>
import
Qlr
from
"../../../components/formMenu/qlr"
;
import
Qlxz
from
"../../../components/formMenu/qlxz"
;
import
{
getBdcdyh
,
saveZrzInfo
,
getZrzDetailByBsm
}
from
"../../../api/zrz"
import
{
getBdcdyh
,
saveZrzInfo
,
getZrzDetailByBsm
,
submit
}
from
"../../../api/zrz"
import
{
getQjZdjbxxDetailById
}
from
"../../../api/zd"
export
default
{
name
:
'zrz'
,
...
...
@@ -412,6 +412,16 @@
}
},
onSubmit
(){
let
data
=
{
glbsm
:
this
.
bsm
,
status
:
1
,
type
:
"zrz"
}
submit
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
$message
.
success
(
"提交完成!"
)
}
})
},
generatorCode
(){
getBdcdyh
(
this
.
form
.
zddm
,
"zrz"
)
...
...
Please
register
or
sign in
to post a comment