noStaff.wxml 947 B

123456789101112131415161718
  1. <!--pages/welfareMall/staff/noStaff.wxml-->
  2. <page-wrap id="Page">
  3. <custom-page head-bg-image="https://dy.shpr.top/welfareGo/staffbg.png" bind:sizes="handlePageSizes">
  4. <topbar slot="head" title="" back-color="" title-color="" />
  5. <view slot="body" class="sign-scroll-body">
  6. <view class="noStaff-head flex-column" style="height: {{bodyImageHeight}}px;">
  7. <image wx:if="{{!isLogin}}" class="head-noStaff-logo" src="/images/welfareMall/staff-logo.png" />
  8. <!-- 获取用户头像 -->
  9. <open-data wx:if="{{isLogin}}" class="head-noStaff-logo" type="userAvatarUrl"></open-data>
  10. <view class="head-text">抱歉!您还不是沪上阿姨员工!</view>
  11. </view>
  12. <view class="noStaff-content flex-column">
  13. <view class="content-join" catchtap="toRecurit"></view>
  14. <view class="content-partnership" catchtap="toPartnership"></view>
  15. </view>
  16. </view>
  17. </custom-page>
  18. </page-wrap>