12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import request from "@/utils/request"
- // 获取精选企业列表
- export const getHotEnterprise = (params) => {
- return request({
- url: '/app-api/menduner/system/job/advertised/get/hot/enterprise',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 更新员工信息
- export const updateStaffInfo = (data) => {
- return request({
- url: '/app-api/menduner/system/recruit/user/save',
- method: 'POST',
- data,
- custom: {
- showLoading: false,
- auth: true
- }
- })
- }
- // 获取企业基本信息
- export const getEnterpriseInfo = () => {
- return request({
- url: '/app-api/menduner/system/recruit/enterprise/get',
- method: 'GET',
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 更新企业基本信息
- export const updateEnterpriseInfo = (data) => {
- return request({
- url: '/app-api/menduner/system/recruit/enterprise/update',
- method: 'POST',
- data,
- custom: {
- showLoading: false,
- auth: true
- }
- })
- }
- // 更新企业LOGO
- export const updateEnterpriseLogo = (url) => {
- return request({
- url: `/app-api/menduner/system/recruit/enterprise/logo/update?logoUrl=${url}`,
- method: 'POST',
- custom: {
- showLoading: false,
- auth: true
- }
- })
- }
|