木邻有你前端代码仓库
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.

45 lines
897 B

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