123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <!--pages/person/person.wxml-->
- <view class="container">
- <view class="index-header common-bg-color">
- <view class="title text-color-my">个人中心</view>
- <view class="user-login" wx:if="{{hasUserInfo}}">
- <view class="user-info" bindtap="gotoResume">
- <!-- <view class="user-name f18 c-202020" bindtap="gotoPersonInfo">{{userInfo.nickName}}</view> -->
- <!-- <view class="tel c-707070 fw300">{{userInfo.mobile}}</view> -->
- <!-- <button open-type="getPhoneNumber" catchgetphonenumber="getMobile" class="login-btn" wx:if="{{!userInfo.mobile}}" >获取手机号</button> -->
- <view class="nick-name text-color-my">{{userInfo.nickName}}</view>
- <view class="edit-text-view">
- <image class="edit-icon" src="/images/new/edit.png"></image>
- <view class="edit-text text-color-my">我的在线简历</view>
- </view>
- </view>
- <image class="head-img" src="{{userInfo.avatarUrl}}">
- </image>
- </view>
- <view wx:else class="user-login">
- <view class="login-info">
- <button bindtap="getUserProfile" class="login-btn text-color-my">请点击登录</button>
- <!-- <image class="next" src="../../images/new/right_arrow.png">
- </image> -->
- </view>
- <image class="head-img" src="../../images/new/head_img.png">
- </image>
- </view>
- <view class="opta-view">
- <view bindtap="gotoRecord" class="record-view" data-status="">
- <view class="opta-view-num text-color-my">{{deliveryNum}}</view>
- <view class="opta-view-text text-color-my">已投简历</view>
- </view>
- <view bindtap="gotoRecord" class="record-yes-view" data-status="2">
- <view class="opta-view-num text-color-my">{{interviewedNum}}</view>
- <view class="opta-view-text text-color-my">待面试</view>
- </view>
- <view bindtap="gotoCollection" class="collection-view">
- <view class="opta-view-num text-color-my">{{collectionNum}}</view>
- <view class="opta-view-text text-color-my">已收藏</view>
- </view>
- </view>
- </view>
- <image mode="widthFix" src="https://dy.shpr.top/recruit/group@2x.png"
- style="width:100%;"></image>
- <view style="display: flex; flex-flow: row nowrap;justify-content: center;">
- <view class="remind">
- <view class="remind-title">沪上阿姨提醒您</view>
- <view class="remind-text" wx:if="{{deliveryRecruitName}}">您投递的<span class="text-color-my"> {{deliveryRecruitName}} </span>职位 <span class="text-color-my"> 正在初筛中 </span>
- 如合适我们将在三个同昨日内与您电话沟通,请注意接听
- 如果您的简历没有通过初筛
- 可能是部分岗位要求不太符合,我们期待与您下一次的合作
- </view>
- <view class="remind-text" wx:if="{{!deliveryRecruitName}}">您还没有去投递简历呢</view>
- </view>
- </view>
- <!-- <view class="order" bindtap = "gotoResume">
- <image class="icons" src="../../images/icons/jianli.png">
- </image>
- <view class="order-text">我的简历
- </view>
-
- </view>
- <view class="assess" bindtap = "gotoRecord">
- <image class="icons" src="../../images/icons/jilu.png"></image>
- <view class="assess-text">投递记录
- </view>
-
- </view>
- <view class="assess" bindtap = "gotoCollection">
- <image class="icons" src="../../images/icons/shoucang.png"></image>
- <view class="assess-text">我的收藏
- </view>
-
- </view> -->
- </view>
|