展品维保小程序前端代码接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
943 B

2 weeks ago
  1. // import request from "@/api/request";
  2. import http from "@/api/http";
  3. export default {
  4. async queryCareerList() {
  5. return http({
  6. url: '/config/queryCareerList',
  7. method: 'GET',
  8. noToken: true
  9. })
  10. },
  11. async queryConfigList() {
  12. return http({
  13. url: '/config/queryConfigList',
  14. method: 'GET',
  15. noToken: true
  16. })
  17. },
  18. async queryQualificationList() {
  19. return http({
  20. url: '/config/queryQualificationList',
  21. method: 'GET',
  22. noToken: true
  23. })
  24. },
  25. // 系统配置- 查询活动分类列表
  26. async queryCategoryActivityList() {
  27. return http({
  28. url: '/config/queryCategoryActivityList',
  29. method: 'GET',
  30. noToken: true
  31. })
  32. },
  33. // 系统配置- 查询商品分类列表
  34. async queryCategoryGoodsList() {
  35. return http({
  36. url: '/config/queryCategoryGoodsList',
  37. method: 'GET',
  38. noToken: true
  39. })
  40. },
  41. }