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