12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import request from "@/utils/request"
- // 获得招聘会列表
- export const getJobFairList = (params) => {
- return request({
- url: '/app-api/menduner/system/job-fair/list',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 获得招聘会-招聘会详情
- export const getJobFair = (id) => {
- return request({
- url: '/app-api/menduner/system/job-fair/get',
- method: 'GET',
- params: { id },
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 招聘会企业分页查询
- export const getJobFairEnterprisePage = (params) => {
- return request({
- url: '/app-api/menduner/system/job-fair/enterprise/page',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 根据企业id查询招聘会职位列表
- export const getJobFairEntJobPage = (params) => {
- return request({
- url: '/app-api/menduner/system/job-fair/detail/page',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 保存分享参数
- export const saveShareQuery = (data) => {
- return request({
- url: '/app-api/menduner/system/share/share',
- method: 'POST',
- data,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 根据id获取分享参数
- export const getShareQueryById = (params) => {
- return request({
- url: '/app-api/menduner/system/share/get',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
|