| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <view class='panel-container'>
- <view class="panel" bindtap="toAuth">
- <block wx:if="{{isLogin}}">
- <view>
- <image class='avatar' src='{{userInfo.avatarUrl}}'></image>
- </view>
- <view class='person-info'>
- <view class='name'>
- <text class="nickName" wx:if="{{approveStatus==3}}">{{userResume.realName?userResume.realName:userInfo.nickName}}</text>
- <text class="nickName" wx:if="{{approveStatus!=3}}">用户</text>
- <text class="auth" wx:if="{{approveStatus==3}}">已认证</text>
- <text class="unauth" wx:if="{{approveStatus!=3}}">未认证</text>
- </view>
- <view class="enter">{{phone?phone:userResume.phone}}</view>
- </view>
- </block>
- <block wx:else>
- <view class='login' bindtap='toLogin'>
- <view class="login_btn">登录/注册</view>
- <view class='login_more'>登录后可享受更多特权</view>
- </view>
- </block>
- <view class='qycode'>
- <image src='{{imgServerUrl}}/images/happyjob/rightjt.png'></image>
- </view>
- </view>
- </view>
- <view class='notrz' wx:if="{{approveStatus!=3 && isLogin}}">
- <image src='{{imgServerUrl}}/images/happyjob/renzheng.png'></image>
- <text class='rz'>您还没有进行实名认证,</text>
- <text class='ly'>认证一下呗,可以优先录用哦~</text>
- </view>
- <view class='inter'>
- <view class='mysc' bindtap='collection'>
- <image src='{{imgServerUrl}}/images/happyjob/shoucang.png'></image>
- <text class='sc'>我的收藏</text>
- </view>
- <view class='mysq' bindtap='apply'>
- <image src='{{imgServerUrl}}/images/happyjob/wdsq.png'></image>
- <text class='sq'>我的申请</text>
- </view>
- <view class='mstb' bindtap='interview'>
- <image src='{{imgServerUrl}}/images/happyjob/msyq.png'></image>
- <text class='interview'>面试邀请</text>
- </view>
- </view>
- <view class='col'>
- </view>
- <view class='jianli' bindtap='tojianli'>
- <view class='jltb'>
- <image src='{{imgServerUrl}}/images/happyjob/jianli.png'></image>
- <view class='wenzi'>
- <text class='wenzi1' wx:if="{{approveStatus==3}}">{{userResume.realName}}的简历</text>
- <text class='wenzi1' wx:if="{{approveStatus!=3}}">简历</text>
- <text class='wenzi2' wx:if="{{percent==100}}">100%完成度!点击可以继续改唷</text>
- <text class='wenzi2' wx:if="{{percent!=100}}">只要简历多写点,高薪工作早出现</text>
- </view>
- </view>
- <view class='percent'>
- <text class='full' wx:if="{{percent==100}}">{{percent}}%</text>
- <text class='unfull' wx:if="{{percent!=100}}">{{percent}}%</text>
- <view class='nows' wx:if="{{percent!=100}}">
- <image src='{{imgServerUrl}}/images/happyjob/edit.png'></image>
- <text class='unwz'>继续完善</text>
- </view>
- </view>
- </view>
- <view class='query' bindtap='toPayRoll'>
- <view class='querys'>
- <image class='moneytb' src='{{imgServerUrl}}/images/happyjob/xzcx.png'></image>
- <text class='queryxz'>薪资查询</text>
- </view>
- <image class='jiantou' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- <!-- <view class='query'>
- <view class='querys'>
- <image class='moneytb' src='{{imgServerUrl}}/images/happyjob/yjfk.png'></image>
- <text class='queryxz'>意见反馈</text>
- </view>
- <image class='jiantou' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- <view class='query'>
- <view class='querys'>
- <image class='moneytb' src='{{imgServerUrl}}/images/happyjob/swhz.png'></image>
- <text class='queryxz'>商务合作</text>
- </view>
- <image class='jiantou' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view> -->
- <view class='query' bindtap='setup'>
- <view class='querys'>
- <image class='moneytb' src='{{imgServerUrl}}/images/happyjob/shezhi.png'></image>
- <text class='queryxz'>设置</text>
- </view>
- <image class='jiantou' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
|