修改功能
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2024-09-25 11:14:29
|
* @Date: 2024-09-25 11:14:29
|
||||||
* @LastEditors: shirlwang
|
* @LastEditors: shirlwang
|
||||||
* @LastEditTime: 2025-11-04 08:56:59
|
* @LastEditTime: 2025-12-23 17:40:11
|
||||||
*/
|
*/
|
||||||
import request from '@/utilsRc/request'
|
import request from '@/utilsRc/request'
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ export function listJobRecommend(query) {
|
|||||||
export function getWorkListReq(query) {
|
export function getWorkListReq(query) {
|
||||||
return request({
|
return request({
|
||||||
// url: '/personnel/personBaseInfo/postRecommend',
|
// url: '/personnel/personBaseInfo/postRecommend',
|
||||||
url: '/company/unitPostInfo/postElectedList',
|
url: '/manage/info/postElectedList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: query
|
params: query
|
||||||
})
|
})
|
||||||
@@ -43,7 +43,7 @@ export function addJobRecommend(data) {
|
|||||||
//岗位推荐保存和办结
|
//岗位推荐保存和办结
|
||||||
export function saveJobRecommend(data) {
|
export function saveJobRecommend(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/process/processJobRecommend/create',
|
url: '/process/processJobRecommend/createJob',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2024-09-25 11:14:29
|
* @Date: 2024-09-25 11:14:29
|
||||||
* @LastEditors: shirlwang
|
* @LastEditors: shirlwang
|
||||||
* @LastEditTime: 2025-11-04 08:56:59
|
* @LastEditTime: 2025-12-23 17:40:23
|
||||||
*/
|
*/
|
||||||
import request from '@/utilsRc/request'
|
import request from '@/utilsRc/request'
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@ export function listJobRecommend(query) {
|
|||||||
export function getWorkListReq(query) {
|
export function getWorkListReq(query) {
|
||||||
return request({
|
return request({
|
||||||
// url: '/personnel/personBaseInfo/postRecommend',
|
// url: '/personnel/personBaseInfo/postRecommend',
|
||||||
url: '/company/unitPostInfo/postElectedList',
|
url: '/manage/info/postElectedList',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: query
|
params: query
|
||||||
})
|
})
|
||||||
@@ -43,7 +43,7 @@ export function addJobRecommend(data) {
|
|||||||
//岗位推荐保存和办结
|
//岗位推荐保存和办结
|
||||||
export function saveJobRecommend(data) {
|
export function saveJobRecommend(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/process/processJobRecommend/create',
|
url: '/process/processJobRecommend/createJob',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -25,25 +25,25 @@
|
|||||||
:class="{active: activeJobList.indexOf(item.id)!=-1}">
|
:class="{active: activeJobList.indexOf(item.id)!=-1}">
|
||||||
<!-- 岗位名称和薪资 -->
|
<!-- 岗位名称和薪资 -->
|
||||||
<view class="job-header">
|
<view class="job-header">
|
||||||
<text class="job-title">{{item.postName}}</text>
|
<text class="job-title">{{item.jobTitle}}</text>
|
||||||
<text class="job-salary">{{formatSalary(item.minRecruitmentSalary, item.highRecruitmentSalary)}}</text>
|
<text class="job-salary">{{formatSalary(item.minSalary, item.maxSalary)}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 标签区域 -->
|
<!-- 标签区域 -->
|
||||||
<view class="tag-area">
|
<view class="tag-area">
|
||||||
<text class="tag">{{getDictLabel(item.minEducation, xue_li) || '学历不限'}}</text>
|
<text class="tag">{{item.minEducation || '学历不限'}}</text>
|
||||||
<text class="tag">{{item.profession || '专业不限'}}</text>
|
<!-- <text class="tag">{{item.profession || '专业不限'}}</text> -->
|
||||||
<text class="tag">全职</text>
|
<!-- <text class="tag">全职</text> -->
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 公司信息 -->
|
<!-- 公司信息 -->
|
||||||
<view class="company-info">
|
<view class="company-info">
|
||||||
<view class="company-detail">
|
<view class="company-detail">
|
||||||
<text class="company-name">{{item.unitName}}</text>
|
<text class="company-name">{{item.companyName}}</text>
|
||||||
<view class="location-line">
|
<view class="location-line">
|
||||||
<text class="location">
|
<text class="location">
|
||||||
<text class="location-icon">📍</text>
|
<text class="location-icon">📍</text>
|
||||||
{{item.workLocation || '暂无地址'}}
|
{{item.jobLocation || '暂无地址'}}
|
||||||
</text>
|
</text>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
@@ -115,7 +115,7 @@ export default {
|
|||||||
// this.workParams = workParams
|
// this.workParams = workParams
|
||||||
this.workParams = {
|
this.workParams = {
|
||||||
// ...workParams,
|
// ...workParams,
|
||||||
recruitWorkType: workParams.recruitWorkType,
|
jobCategory: workParams.recruitWorkType,
|
||||||
// longitude: workParams.longitude,
|
// longitude: workParams.longitude,
|
||||||
// latitude: workParams.latitude,
|
// latitude: workParams.latitude,
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user