Merge branch 'main' into bin

This commit is contained in:
Apcallover
2025-11-27 09:08:22 +08:00
20 changed files with 754 additions and 324 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>