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
b03cccdd
authored
2020-10-21 11:25:49 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(mjft):面积分摊获取宗地bsm
1 parent
cfccfd14
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
25 deletions
src/store/index.js
src/views/panel/create/index.vue
src/views/systemZD/mjftb/index.vue
src/views/systemZD/zddcb/index.vue
src/store/index.js
View file @
b03cccd
...
...
@@ -8,21 +8,23 @@ import setTabs from './modules/setTabs'
Vue
.
use
(
Vuex
)
const
store
=
new
Vuex
.
Store
({
state
:
sessionStorage
.
getItem
(
'state'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'state'
)):
{
zdbsm
:
''
,
xzqList
:[],
djqList
:[],
djzqList
:[],
//创建自然幢时需要用到的临时存储信息
zrzbsm
:
''
,
xmmc
:
''
,
},
modules
:
{
user
,
setTabs
,
permission_routes
},
getters
state
:
sessionStorage
.
getItem
(
'state'
)
?
JSON
.
parse
(
sessionStorage
.
getItem
(
'state'
))
:
{
zdbsm
:
''
,
xzqList
:
[],
djqList
:
[],
djzqList
:
[],
//创建自然幢时需要用到的临时存储信息
zrzbsm
:
''
,
xmmc
:
''
,
zdmj
:
''
,
zdzl
:
''
},
modules
:
{
user
,
setTabs
,
permission_routes
},
getters
})
export
default
store
...
...
src/views/panel/create/index.vue
View file @
b03cccd
...
...
@@ -243,9 +243,6 @@ export default {
this
.
close
();
this
.
$store
.
zdbsm
=
res
.
result
.
zdbsm
;
this
.
$store
.
zrzbsm
=
res
.
result
.
bsm
;
debugger
console
.
log
(
"================================================="
)
console
.
log
(
this
.
$store
.
zdbsm
)
this
.
$store
.
xmmc
=
res
.
result
.
xmmc
;
this
.
$router
.
push
({
path
:
'/zrz'
,
query
:{
data
:
res
.
result
}
...
...
src/views/systemZD/mjftb/index.vue
View file @
b03cccd
...
...
@@ -174,15 +174,12 @@
},
watch
:
{
"$store.state.zdbsm"
:
function
(
bsm
)
{
alert
(
"面积分摊表 宗地标识码"
+
bsm
)
this
.
mjftData
.
zdbsm
=
bsm
},
"$store.state.zdmj"
:
function
(
zdmj
)
{
alert
(
"面积分摊表 宗地面积"
+
zdmj
)
this
.
mjftData
.
zdmj
=
zdmj
},
"$store.state.zdzl"
:
function
(
tdzl
)
{
alert
(
"面积分摊表 土地坐落"
+
tdzl
)
this
.
mjftData
.
tdzl
=
tdzl
},
}
...
...
src/views/systemZD/zddcb/index.vue
View file @
b03cccd
...
...
@@ -465,17 +465,15 @@
zl
()
{
return
this
.
formData
.
zl
},
zd
mj
()
{
mj
()
{
return
this
.
formData
.
zdmj
}
},
watch
:
{
zl
:
function
(
val
)
{
alert
(
"宗地坐落"
)
alert
(
val
)
this
.
$store
.
state
.
zdzl
=
val
},
zd
mj
:
function
(
val
)
{
mj
:
function
(
val
)
{
this
.
$store
.
state
.
zdmj
=
val
}
},
...
...
Please
register
or
sign in
to post a comment