This commit is contained in:
zxy
2024-02-19 15:55:06 +08:00
7 changed files with 115 additions and 27 deletions

View File

@@ -1,5 +1,5 @@
<template>
<select-template ref="select" title="请选择行业" slo="请选择行业,帮你定制个性化推荐任务信息" :list="skillLevel" @submit="goAdd"></select-template>
<select-template ref="select" title="请选择行业" slo="" :list="skillLevel" @submit="goAdd"></select-template>
</template>
<script>

View File

@@ -9,7 +9,7 @@
<view class="jobcontent" @click="goAddind">
<view class="jobinfo">
<view class="jobAddress">
从事的行业
所属的行业
</view>
<view v-if="tradeName" class="jobText">{{ tradeName }}</view>
<view v-else class="jobText nochoose">请选择</view>
@@ -20,7 +20,7 @@
<view class="jobcontent" @click="skill">
<view class="jobinfo">
<view class="jobAddress">
我具备的技能
我具备的工种
</view>
<view v-if="worktypesName" class="jobText">{{ worktypesName }}</view>
<view v-else class="jobText nochoose">请选择</view>
@@ -31,7 +31,7 @@
<view class="jobcontent" @click="skillLevel">
<view class="jobinfo">
<view class="jobAddress">
的技能水平
从事的岗位
</view>
<view v-if="skillsName" class="jobText">{{ skillsName }}</view>
<view v-else class="jobText nochoose">请选择</view>

View File

@@ -19,7 +19,7 @@
<view class="title_text">
我的职业技能
</view>
<image v-if="mySkills.length < 2" src="../../../static/img/add.gray.svg" mode="" @click="goAdd"></image>
<image v-if="mySkills.length < 5" src="../../../static/img/add.gray.svg" mode="" @click="goAdd"></image>
</view>
<view class="listBody">
@@ -29,7 +29,7 @@
:button="buttonList">
<view class="list">
<view class="list_text">
{{ item.trade }}·{{ item.worktypes }}·{{ item.skills }}
{{ item.trade }}{{ item.worktypes }}{{ item.skills }}
</view>
</view>
</m-slide-list>
@@ -37,11 +37,11 @@
<view class="jobcontent" @click="goSetCity">
<view class="jobinfo">
<view
v-bind:class="['jobAddress', { 'input-error':!myResume.city.id && !myResume.city.workplace && isShowBorder }]">
v-bind:class="['jobAddress', { 'input-error': (!myResume.city.id || !myResume.city.workplace) && isShowBorder }]">
您想工作的地点
</view>
<view v-bind:class="['jobText']">
{{ myResume.city !== "{}" ? myResume.city.id ? getCity(myResume.city.id) : myResume.city.workplace : '请选择'
{{ myResume.city == {} ? myResume.city.id ? getCity(myResume.city.id) : myResume.city.workplace : '请选择'
}}
</view>
</view>
@@ -53,7 +53,7 @@
您的学历
</view>
<view v-bind:class="['jobText']">
{{ myResume.education !== "{}" ? myResume.education.label : '请选择' }}
{{ myResume.education == {} ? myResume.education.label : '请选择' }}
</view>
</view>
<image src="../../../static/img/right.svg" mode=""></image>
@@ -306,7 +306,7 @@ export default {
// 电话号码格式正确
console.log(phone, "电话号码格式正确");
setResume({
id: this.id, education: education.label, workplace:city.workplace?city.workplace: city.parentLabel + '-' + city.label, telephone: phone, wage
id: this.id, education: education.label, workplace: city.parentLabel + '-' + city.label, telephone: phone, wage
}).then(res => {
this.isShowButton = false;
this.getResume()
@@ -440,7 +440,7 @@ export default {
}
page {
background-color: #f6f6f6;
background-color: #FFFFFF;
}
.head {

View File

@@ -71,9 +71,9 @@
this.activeId = id
},
mounted() {
uni.createSelectorQuery().in(this).select('.select-template-head').boundingClientRect().exec((node) => {
this.height = node[0].height + 'px'
});
// uni.createSelectorQuery().in(this).select('.select-template-head').boundingClientRect().exec((node) => {
// this.height = node[0].height + 'px'
// });
},
computed: {
searchResultList() {