| | |
| | | } |
| | | //数据上传=查询任务状态 |
| | | export function dataUpload_selectMappers(params) { |
| | | return request.get('/dataUpload/selectMappers', { params: params }); |
| | | return service.get('/dataUpload/selectMappers', { params: params }); |
| | | } |
| | | //数据上传=查询所有表 |
| | | export function dataUpload_selectTabs(params) { |
| | |
| | | } |
| | | //数据上传=插入文件 |
| | | export function dataUpload_insertFiles(params) { |
| | | return request.post('/dataUpload/insertFiles', params); |
| | | return service.post('/dataUpload/insertFiles', params); |
| | | } |
| | | //数据上传=查询字段信息 |
| | | export function dataUpload_selectFields(params) { |
| | |
| | | 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) { |