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
61082672
authored
2020-10-20 20:02:58 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(jzd,jzx):界址点、线
1 parent
bec3376c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
6 deletions
src/api/common.js
src/views/systemZD/jzd/index.vue
src/views/systemZD/jzx/index.vue
src/api/common.js
View file @
6108267
import
request
from
'@/plugin/axios'
/**
* 查询所有行政区
*/
...
...
@@ -8,10 +9,11 @@ export function getAllList() {
method
:
'get'
,
})
}
/**
* 跟据行政区标识码查地籍区
*/
export
function
getListByXzqbsm
(
xzqbsm
)
{
export
function
getListByXzqbsm
(
xzqbsm
)
{
return
request
({
url
:
'system/djq/getListByXzqbsm'
,
method
:
'get'
,
...
...
@@ -20,10 +22,11 @@ export function getListByXzqbsm (xzqbsm) {
}
})
}
/**
* 跟据地籍区标识码查地籍子区
*/
export
function
getListByPbsm
(
pbsm
)
{
export
function
getListByPbsm
(
pbsm
)
{
return
request
({
url
:
'system/djq/getListByPbsm'
,
method
:
'get'
,
...
...
@@ -32,10 +35,11 @@ export function getListByPbsm (pbsm) {
}
})
}
/**
* 通过名称获取字典
*/
export
function
getDdicByMC
(
mc
)
{
export
function
getDdicByMC
(
mc
)
{
return
request
({
url
:
'system/dictionary/getDdicByMC'
,
method
:
'get'
,
...
...
@@ -43,4 +47,17 @@ export function getDdicByMC (mc) {
mc
}
})
}
\ No newline at end of file
}
/**
* 根据宗地BSM获取左侧目录树
*/
export
function
getTree
(
bsm
)
{
return
request
({
url
:
'system/xzq/getMenuTreeByZdbsm'
,
method
:
'get'
,
params
:
{
zdbsm
}
})
}
...
...
src/views/systemZD/jzd/index.vue
View file @
6108267
...
...
@@ -92,7 +92,7 @@
import
{
Message
}
from
'element-ui'
export
default
{
name
:
"
界址点
"
,
name
:
"
jzd
"
,
components
:
{},
props
:
{},
data
()
{
...
...
src/views/systemZD/jzx/index.vue
View file @
6108267
...
...
@@ -114,7 +114,7 @@
import
{
Message
}
from
'element-ui'
export
default
{
name
:
"
界址线
"
,
name
:
"
jzx
"
,
components
:
{},
props
:
{},
data
()
{
...
...
Please
register
or
sign in
to post a comment