Browse Source

fix: 修复页面显示问题及条件渲染逻辑

- 将工龄输入框的placeholder从"年龄"改为"工龄"
- 企业认证状态为1时使用正确的公司图标
- 添加hanHaiMember和companyInfo的条件渲染判断
master
前端-胡立永 3 weeks ago
parent
commit
b884b75601
3 changed files with 6 additions and 5 deletions
  1. +1
    -1
      pages/index/center.vue
  2. +1
    -1
      pages_order/work/addResume.vue
  3. +4
    -3
      pages_order/work/workDetail.vue

+ 1
- 1
pages/index/center.vue View File

@ -38,7 +38,7 @@
mode="aspectFit"></image>
<!-- 企业认证图标 -->
<image v-if="UserExtensionInfo.companyAuthenticationStatus == '1'"
:src="configList.config_person_icon"
:src="configList.config_company_icon"
class="auth-icon"
mode="aspectFit"></image>
<view>


+ 1
- 1
pages_order/work/addResume.vue View File

@ -62,7 +62,7 @@
<view class="label">
您的工龄
</view>
<input placeholder="请输入龄"
<input placeholder="请输入龄"
type="number"
v-model="form.workTime" />
</view>


+ 4
- 3
pages_order/work/workDetail.vue View File

@ -30,7 +30,7 @@
该职位发布{{ $dayjs(detail.createTime).format('YYYY-MM-DD') }}
</view>
<view class="userHead">
<view class="userHead" v-if="hanHaiMember">
<userHead :image="hanHaiMember.headImage" :tips="personInfo.phone" :name="personInfo.name"
:phoneCall="personInfo.phone" />
</view>
@ -65,7 +65,6 @@
</view>
<view v-else @click="addJobCollection" style="color: #f40;">
<uv-icon size="30rpx" color="666" name="star-fill"></uv-icon>
已收藏
@ -86,7 +85,9 @@
</view>
<view class="boss-box" @click="$utils.navigateTo('/pages_order/work/bossDetail?id=' + hanHaiMember.id)">
<view class="boss-box"
v-if="companyInfo"
@click="$utils.navigateTo('/pages_order/work/bossDetail?id=' + hanHaiMember.id)">
<view class="image">
<image :src="companyInfo.logo" mode=""></image>
</view>


Loading…
Cancel
Save