feat 对接外部数据投递功能

This commit is contained in:
2025-11-25 16:20:34 +08:00
parent fe6fe43636
commit 99a3fe41c5
5 changed files with 25 additions and 20 deletions

View File

@@ -46,10 +46,10 @@
<view class="card-companyName">{{ job.companyName }}</view>
<view class="card-tags">
<view class="tag">
<dict-Label dictType="education" :value="job.education"></dict-Label>
{{job.education == '不限' ? '学历不限' : job.education}}
</view>
<view class="tag">
<dict-Label dictType="experience" :value="job.experience"></dict-Label>
{{job.experience == '不限' ? '经验不限' : job.experience}}
</view>
<view class="tag">
{{ vacanciesTo(job.vacancies) }}
@@ -129,7 +129,7 @@ function parseDateTime(datetimeStr) {
}
function nextDetail(job) {
navTo(`/packageA/pages/post/post?jobId=${btoa(job.jobId)}`);
navTo(`/packageA/pages/post/post?jobId=${btoa(job.jobId)}&dataType=${job.dataType}`);
}
</script>