apiConfig.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import request from '@/utils/request'
  2. // 查询接口配置列表
  3. export function listApiConfig(query) {
  4. return request({
  5. url: '/v1/system/apiConfig/list',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. // 查询接口配置详细
  11. export function getApiConfig(id) {
  12. return request({
  13. url: '/v1/system/apiConfig/' + id,
  14. method: 'get'
  15. })
  16. }
  17. // 新增接口配置
  18. export function addApiConfig(data) {
  19. return request({
  20. url: '/v1/system/apiConfig',
  21. method: 'post',
  22. data: data
  23. })
  24. }
  25. // 修改接口配置
  26. export function updateApiConfig(data) {
  27. return request({
  28. url: '/v1/system/apiConfig',
  29. method: 'put',
  30. data: data
  31. })
  32. }
  33. // 删除接口配置
  34. export function delApiConfig(id) {
  35. return request({
  36. url: '/v1/system/apiConfig/' + id,
  37. method: 'delete'
  38. })
  39. }
  40. // 导出接口配置
  41. export function exportApiConfig(query) {
  42. return request({
  43. url: '/v1/system/apiConfig/export',
  44. method: 'get',
  45. params: query
  46. })
  47. }
  48. // 接口测试
  49. export function apiDebug(routePath, data) {
  50. return request({
  51. url: '/v1/api/common/' + routePath,
  52. method: 'post',
  53. data: data
  54. })
  55. }