行业类型,工种,岗位名接口联调

This commit is contained in:
zxy
2024-02-18 14:50:57 +08:00
parent d14be12010
commit 1461d54104
3 changed files with 45 additions and 10 deletions

View File

@@ -44,9 +44,12 @@ export const getSkillList = (worktypesId) => {
}
/*获取企业工种*/
export const getWorkTypes = () => {
export const getWorkTypes = (type) => {
return request({
url: '/api/jobslink-api/tenant/worktypes/base/list',
method: 'get'
method: 'get',
params: {
type
}
})
}