123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- import request from '@/utils/request'
- // 查询数据采集列表
- export function listGATHER(query) {
- return request({
- url: '/gather/list',
- method: 'get',
- params: query
- })
- }
- // 查询数据采集所有列表
- export function listAllGATHER(query) {
- return request({
- url: '/gather/listAll',
- method: 'get',
- params: query
- })
- }
- // 查询数据采集详细
- export function getGATHER(id) {
- return request({
- url: '/gather/getInfo/' + id,
- method: 'get'
- })
- }
- // 新增数据采集
- export function addGATHER(data) {
- return request({
- url: '/gather/add',
- method: 'post',
- data: data
- })
- }
- // 修改数据采集
- export function updateGATHER(data) {
- return request({
- url: '/gather/edit',
- method: 'post',
- data: data
- })
- }
- // 删除数据采集
- export function delGATHER(id) {
- return request({
- url: '/gather/remove/' + id,
- method: 'get'
- })
- }
- // 获取可采集的数据
- export function getInfoByColl(id) {
- return request({
- url: '/gather/getInfoByColl/' + id,
- method: 'get'
- })
- }
- // 上报
- export function report(data) {
- return request({
- url: '/gather/report',
- method: 'post',
- data: data
- })
- }
- // 录入员审核
- export function setAudit(data) {
- return request({
- url: '/gather/audit',
- method: 'post',
- params: data,
-
- })
- }
- // 提交审核
- export function approve(data) {
- return request({
- url: '/gather/approve',
- method: 'post',
- params: data
- })
- }
- // 驳回审核
- export function bsqAudit(data) {
- return request({
- url: '/gather/bsqAudit',
- method: 'post',
- params: data
- })
- }
- // 下载导入模板
- export function download(id) {
- return request({
- url: '/gather/download/' + id,
- method: 'get',
- responseType: "blob",
- })
- }
- // 导入(历史数据)
- export function upload(data) {
- return request({
- url: '/gather/upload/',
- method: 'post',
- data:data
- })
- }
- // 导入
- export function uploadnew(data) {
- return request({
- url: '/gather/uploadnew',
- method: 'post',
- data:data
- })
- }
|