| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import { request } from './request'
- const baseUri = '/smartParkH5Server'
- const controller = '/wx/recruit'
- //列表
- export function list(data) {
- return request({
- url: baseUri + controller + '/getRecruitList',
- method: 'post',
- data: data
- })
- }
- //列表2
- export function getRecruitListOder(data) {
- return request({
- url: baseUri + controller + '/getRecruitListOder',
- method: 'post',
- data: data
- })
- }
- //添加招聘 and 修改
- export function operationRecruit(data) {
- return request({
- url: baseUri + controller + '/operationRecruit',
- method: 'post',
- data: data
- })
- }
- //详情
- export function recruitDetial(data) {
- return request({
- url: baseUri + controller + '/recruitDetial',
- method: 'post',
- data: data
- })
- }
- //上下架招聘
- export function operationState(data) {
- return request({
- url: baseUri + controller + '/operationState',
- method: 'post',
- data: data
- })
- }
|