|
|
// 配置相关接口
|
|
|
|
const api = {
|
|
// 查看配置信息
|
|
getConfig: {
|
|
url: '/employ/config/queryConfigList',
|
|
method: 'GET',
|
|
},
|
|
// 查看配置信息
|
|
queryConfig: {
|
|
url: '/employ/config/queryConfig',
|
|
method: 'GET',
|
|
},
|
|
//获取工种列表
|
|
commonQueryJobTypeList: {
|
|
url: '/employ/config/queryJobTypeList',
|
|
method: 'GET',
|
|
},
|
|
}
|
|
|
|
export default api
|