Commit 7c47432d authored by 李明环(东信)'s avatar 李明环(东信)

推荐岗位问题修改

parent 84da4618
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<view class="text-wrap"> <view class="text-wrap">
<view class="name"> <view class="name">
{{ data.name || "名字" }} {{ data.name || "名字" }}
<text>{{data.positionName?`岗位:${data.positionName}`:''}}</text> <text>{{ data.positionName ? `岗位:${data.positionName}` : "" }}</text>
</view> </view>
<view class="other"> <view class="other">
{{ data.workAge }} {{ educationLevelText }} {{ data.minSalary + "~" + data.maxSalary }} {{ data.workAge }} {{ educationLevelText }} {{ data.minSalary + "~" + data.maxSalary }}
......
...@@ -214,6 +214,7 @@ const getResumeRecommendList = () => { ...@@ -214,6 +214,7 @@ const getResumeRecommendList = () => {
if (activeTab.value === "求职推荐") { if (activeTab.value === "求职推荐") {
return getRecommendedResumeListApi(getResumeRecommendListParams.value).then(res => { return getRecommendedResumeListApi(getResumeRecommendListParams.value).then(res => {
xma.hideLoading(); xma.hideLoading();
res.data = res.data.filter(v => !v.applied);
refresherEnabled.value = false; refresherEnabled.value = false;
if (!res.data) { if (!res.data) {
res.data = []; res.data = [];
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<!-- <view class="data">{{ data.positionName }}{{ data.salary }}</view> --> <!-- <view class="data">{{ data.positionName }}{{ data.salary }}</view> -->
<!-- 需要选择岗位 --> <!-- 需要选择岗位 -->
<template v-if="jobIdTemp"> <template v-if="jobIdTemp">
<view class="data">{{ data.positionName }}{{data.negotiableSalary? '面议':data.salary }}</view> <view class="data">{{ data.positionName }}{{ data.negotiableSalary ? "面议" : data.salary }}</view>
</template> </template>
<template v-else> <template v-else>
<wd-picker <wd-picker
...@@ -176,9 +176,11 @@ const submit = () => { ...@@ -176,9 +176,11 @@ const submit = () => {
title: "邀请成功", title: "邀请成功",
icon: "none" icon: "none"
}); });
uni.switchTab({ setTimeout(() => {
url: "/pages/recommend/index" uni.switchTab({
}); url: "/pages/recommend/index"
});
}, 1000);
} }
}); });
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment