panel.js
1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import request from '@/plugin/axios'
/**
* 查询所有行政区
*/
export function getAllList() {
return request({
url: 'system/xzq/getAllList',
method: 'get',
})
}
/**
* 跟据行政区标识码查地籍区
*/
export function getListByXzqbsm (xzqbsm) {
return request({
url: 'system/djq/getListByXzqbsm',
method: 'get',
params: {
xzqbsm
}
})
}
/**
* 跟据地籍区标识码查地籍子区
*/
export function getListByPbsm (pbsm) {
return request({
url: 'system/djq/getListByPbsm',
method: 'get',
params: {
pbsm
}
})
}
/**
* 新增宗地基本信息
*/
export function insertQjZdjbxx (data) {
return request({
url: 'zd/qjZdjbxx/insertQjZdjbxx',
method: 'post',
data: data,
})
}
/**
* 新增自然幢基本信息
*/
export function insertZrzjbxx (data) {
return request({
url: 'fw/qjZrz/insert',
method: 'post',
data: data,
})
}
/**
* 通过名称获取字典
*/
export function getDdicByMC (mc) {
return request({
url: 'system/dictionary/getDdicByMC',
method: 'get',
params: {
mc
}
})
}