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
b325d556
authored
2020-10-19 18:49:59 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
恢复新增宗地接口
1 parent
d2e7a54e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
14 deletions
src/api/zd.js
src/api/zd.js
View file @
b325d55
import
request
from
'@/plugin/axios'
import
request
from
"@/plugin/axios"
;
/**
* 保存面积分摊表
...
...
@@ -6,22 +6,31 @@ import request from '@/plugin/axios'
* @constructor
*/
export
function
savemjft
(
data
)
{
return
request
({
url
:
'/zd/qjGygyzdmjft/insertQjGygyzdmjft'
,
method
:
'post'
,
data
:
data
,
})
return
request
({
url
:
"/zd/qjGygyzdmjft/insertQjGygyzdmjft"
,
method
:
"post"
,
data
:
data
,
});
}
/**
* 新增宗地基本信息
*/
export
function
insertQjZdjbxx
(
data
)
{
return
request
({
url
:
"zd/qjZdjbxx/insertQjZdjbxx"
,
method
:
"post"
,
data
:
data
,
});
}
/**
* 查询界址点
*/
export
function
queryjzd
(
glBsm
)
{
return
request
({
url
:
'/zd/qjJzd/getQjJzdListByGlBsm'
,
method
:
'get'
,
params
:
{
glBsm
}
})
return
request
({
url
:
"/zd/qjJzd/getQjJzdListByGlBsm"
,
method
:
"get"
,
params
:
{
glBsm
,
},
});
}
...
...
Please
register
or
sign in
to post a comment