国外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.
 
 
 
 

27 lines
504 B

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
})
},
}