Newer
Older
KaiFengPC / src / api / system / file.js
@鲁yixuan 鲁yixuan on 21 Aug 991 bytes updata
  1. import request from '@/utils/request';
  2.  
  3. // 搜索附件列表
  4. export function fileList(data) {
  5. return request({
  6. url: '/system/list',
  7. method: 'get',
  8. data: data,
  9. });
  10. }
  11. // 搜索附件分页
  12. export function filePage(query) {
  13. return request({
  14. url: '/system/page',
  15. method: 'get',
  16. params: query,
  17. });
  18. }
  19. // 搜索附件详细
  20. export function getFile(id) {
  21. return request({
  22. url: '/system/' + id,
  23. method: 'get',
  24. });
  25. }
  26.  
  27. // 新增附件
  28. export function addConfig(data) {
  29. return request({
  30. url: '/system/add',
  31. method: 'post',
  32. data: data,
  33. });
  34. }
  35. // 批量新增附件
  36. export function addBatchConfig(data) {
  37. return request({
  38. url: '/system/add',
  39. method: 'post',
  40. data: data,
  41. });
  42. }
  43. // 删除附件
  44. export function delConfig(ids) {
  45. return request({
  46. url: '/system/' + ids,
  47. method: 'delete',
  48. });
  49. }
  50.  
  51. export function getFileLIst(query) {
  52. return request({
  53. url: '/system/list',
  54. method: 'get',
  55. params: query,
  56. });
  57. }