国外MOSE官网
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.

26 lines
504 B

  1. import request from "@/api/request";
  2. export default {
  3. async queryCareerList() {
  4. return request({
  5. url: '/config/queryCareerList',
  6. method: 'GET',
  7. showLoading: true
  8. })
  9. },
  10. async queryConfigList() {
  11. return request({
  12. url: '/config/queryConfigList',
  13. method: 'GET',
  14. showLoading: true
  15. })
  16. },
  17. async queryQualificationList() {
  18. return request({
  19. url: '/config/queryQualificationList',
  20. method: 'GET',
  21. showLoading: true
  22. })
  23. },
  24. }