| | |
| | | export function dataCount_downloadReport(params) { |
| | | return request.get('/dataCount/downloadReport', { params: params }); |
| | | } |
| | | //图层管理=> 获取所有图层列表 |
| | | export function layer_selectAll(params) { |
| | | return request.get('/layer/selectAll', { params: params }); |
| | | } |
| | | //图层管理=> 更新一条 |
| | | export function layer_update(params) { |
| | | return request.post('/layer/update', params); |
| | | } |
| | | //图层管理=> 更新多条 |
| | | export function layer_updates(params) { |
| | | return request.post('/layer/updates', params); |
| | | } |
| | | |
| | | |
| | | |
| | | //图层管理=> 插入一条 |
| | | export function layer_insert(params) { |
| | | return request.post('/layer/insert', params); |
| | | } |
| | | //图层管理=> 删除一条 |
| | | export function layer_delete(params) { |
| | | return request.get('/layer/delete', { params: params }); |
| | | } |
| | | |
| | | //请求站场点内容 |
| | | export function querySitePoint(size, index, name) { |