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
475c68b3
authored
2020-10-30 09:53:35 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
宗地基本信息提交
1 parent
6fd27b5e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
4 deletions
src/api/common.js
src/components/formMenu/qlr.vue
src/views/systemZD/zddcb/index.vue
src/api/common.js
View file @
475c68b
...
...
@@ -105,7 +105,7 @@ export function updateQsztByBsm(data){
export
function
submit
(
data
)
{
return
request
({
url
:
'/system/submit/submitInfo'
,
method
:
'
ge
t'
,
method
:
'
pos
t'
,
data
:
data
})
}
\ No newline at end of file
...
...
src/components/formMenu/qlr.vue
View file @
475c68b
...
...
@@ -6,7 +6,7 @@
<td
colspan=
"2"
>
共有方式
</td>
<td
colspan=
"8"
>
<el-row>
<el-col
:span=
"1
2
"
class=
"fl"
>
<el-col
:span=
"1
6
"
class=
"fl"
>
<el-radio-group
v-model=
"gyfs"
>
<el-radio
:label=
"item.bsm"
:key=
"item.bsm"
v-for=
"item in $store.state.gyfsList"
>
{{
item
.
mc
}}
</el-radio>
</el-radio-group>
...
...
@@ -582,6 +582,8 @@
}
.qlrTable
{
border-color
:
#E6E6E6
!important
;
position
:
relative
;
top
:
-1px
;
.el-input__inner
{
height
:
20px
;
margin
:
0
;
...
...
src/views/systemZD/zddcb/index.vue
View file @
475c68b
...
...
@@ -337,7 +337,8 @@
</table>
<div
style=
"min-height: 40px;text-align: center;margin-top: 10px"
>
<el-button
type=
"primary"
@
click=
"updateZDxx"
>
保存
</el-button>
<el-button
type=
"success"
@
click=
"updateZDxx"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"submitZDxx"
>
提交
</el-button>
</div>
</div>
</div>
...
...
@@ -346,6 +347,7 @@
<
script
>
import
Qlr
from
"../../../components/formMenu/qlr"
;
import
Qlxz
from
"../../../components/formMenu/qlxz"
;
import
{
submit
}
from
"../../../api/common"
import
{
getAllList
,
getDdicByMC
,
...
...
@@ -466,6 +468,19 @@ export default {
})
.
catch
((
error
)
=>
{});
},
//提交宗地基本信息
submitZDxx
(){
let
data
=
{
glbsm
:
this
.
$store
.
state
.
zdbsm
,
status
:
1
,
type
:
"zd"
}
submit
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
$message
.
success
(
"提交完成!"
)
}
})
},
getQlrxxData
()
{
console
.
log
(
this
.
$refs
.
qlrxxModule
.
getQlgyfsData
());
//权利共有方式数据
console
.
log
(
this
.
$refs
.
qlrxxModule
.
getQlrxxData
());
//权利人表格数据
...
...
@@ -556,7 +571,7 @@ export default {
padding
:
18px
;
height
:
auto
;
.formMenu
{
width
:
8
0%
;
width
:
10
0%
;
margin
:
0
auto
;
}
.zdjbxxTable
{
...
...
Please
register
or
sign in
to post a comment