|
|
- import request from "@/api/request";
-
- export default {
- async queryCareerList() {
- return request({
- url: '/config/queryCareerList',
- method: 'GET',
- showLoading: true
- })
- },
-
- async queryConfigList() {
- return request({
- url: '/config/queryConfigList',
- method: 'GET',
- showLoading: true
- })
- },
-
- async queryQualificationList() {
- return request({
- url: '/config/queryQualificationList',
- method: 'GET',
- showLoading: true
- })
- },
- }
|