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