suerprisePlus
2024-08-05 30e393df7b1d89c4172a7f4bec6e80e2dc00c373
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
import mapServer from '@/utils/mapServer/mapServer';
import kgServer from '@/utils/mapServer/kgServer';
 
//配网接口 => 查询所有
export function zhangzitou_selectAllLine(params) {
    return mapServer.get('/zhangzitou/selectAllLine', { params: params });
}
//图层管理 => 查询所有
export function layer_selectAll(params) {
    return mapServer.get('/layer/selectAll', { params: params });
}
//图层管理 => 新增图层
export function layer_insert(params) {
    return mapServer.post('/layer/insert', params);
}
//图层管理=> 删除图层
export function layer_delete(params) {
    return mapServer.get('/layer/delete', { params: params });
}
 
//图层管理=> 删除图层
export function layer_updates(params) {
    return mapServer.post('/layer/updates', params);
}
//图层管理=> 更新一条
export function layer_update(params) {
    return mapServer.post('/layer/update', params);
}
 
//配网接口 => 查询所有
export function zhangzitou_selectAll(params) {
    return mapServer.get('/zhangzitou/selectAll', { params: params });
}
//图谱查询接口
export function kg_getGraph(params) {
    return kgServer.post('/kg/getGraph', params);
}
//图谱查询接口
export function kg_queryGraphResult(params) {
    return kgServer.post('/kg/queryGraphResult', params);
}
 
//配网接口 => 数据统计
export function zhangzitou_selectInfos(params) {
    return mapServer.get('/zhangzitou/selectInfos', { params: params });
}
//配网接口 => 数据统计=>线路
export function zhangzitou_deleteZhangzitouEntitys(params) {
    return mapServer.get('/zhangzitou/deleteZhangzitouEntitys', { params: params });
}
 
//配网接口 => 站点新增
export function zhangzitou_insertZhangzitouEntity(params) {
    return mapServer.post('/zhangzitou/insertZhangzitouEntity', params);
}
//配网接口 => 修改站点
export function zhangzitou_updateZhangzitouEntity(params) {
    return mapServer.post('/zhangzitou/updateZhangzitouEntity', params);
}