GATHER.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import request from '@/utils/request'
  2. // 查询数据采集列表
  3. export function listGATHER(query) {
  4. return request({
  5. url: '/gather/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询数据采集所有列表
  11. export function listAllGATHER(query) {
  12. return request({
  13. url: '/gather/listAll',
  14. method: 'get',
  15. params: query
  16. })
  17. }
  18. // 查询数据采集详细
  19. export function getGATHER(id) {
  20. return request({
  21. url: '/gather/getInfo/' + id,
  22. method: 'get'
  23. })
  24. }
  25. // 新增数据采集
  26. export function addGATHER(data) {
  27. return request({
  28. url: '/gather/add',
  29. method: 'post',
  30. data: data
  31. })
  32. }
  33. // 修改数据采集
  34. export function updateGATHER(data) {
  35. return request({
  36. url: '/gather/edit',
  37. method: 'post',
  38. data: data
  39. })
  40. }
  41. // 删除数据采集
  42. export function delGATHER(id) {
  43. return request({
  44. url: '/gather/remove/' + id,
  45. method: 'get'
  46. })
  47. }
  48. // 获取可采集的数据
  49. export function getInfoByColl(id) {
  50. return request({
  51. url: '/gather/getInfoByColl/' + id,
  52. method: 'get'
  53. })
  54. }
  55. // 上报
  56. export function report(data) {
  57. return request({
  58. url: '/gather/report',
  59. method: 'post',
  60. data: data
  61. })
  62. }
  63. // 录入员审核
  64. export function setAudit(data) {
  65. return request({
  66. url: '/gather/audit',
  67. method: 'post',
  68. params: data,
  69. })
  70. }
  71. // 提交审核
  72. export function approve(data) {
  73. return request({
  74. url: '/gather/approve',
  75. method: 'post',
  76. params: data
  77. })
  78. }
  79. // 驳回审核
  80. export function bsqAudit(data) {
  81. return request({
  82. url: '/gather/bsqAudit',
  83. method: 'post',
  84. params: data
  85. })
  86. }
  87. // 下载导入模板
  88. export function download(id) {
  89. return request({
  90. url: '/gather/download/' + id,
  91. method: 'get',
  92. responseType: "blob",
  93. })
  94. }
  95. // 导入(历史数据)
  96. export function upload(data) {
  97. return request({
  98. url: '/gather/upload/',
  99. method: 'post',
  100. data:data
  101. })
  102. }
  103. // 导入
  104. export function uploadnew(data) {
  105. return request({
  106. url: '/gather/uploadnew',
  107. method: 'post',
  108. data:data
  109. })
  110. }