微信小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

login.wxml 1.0 KiB

1234567891011121314151617181920
  1. <import src="/templates/global/global"/>
  2. <template is="toast" data="{{...toastData}}"></template>
  3. <view class="container" style="background: url('../../../image/login/container_bg.jpg') center center no-repeat; background-size: 100% auto;">
  4. <view class="header" >
  5. <view class="principal">农村事项审批与记账</view>
  6. <view class="instructions">报账简单,操作便捷</view>
  7. </view>
  8. <view class="quick-login" style="bottom:{{isIPhoneX?'8vh':'5vh'}}">
  9. <button class="key-login" type='primary' open-type='getPhoneNumber' bindgetphonenumber="getPhoneNumber">微信一键登录</button >
  10. <view class="authorization" style="margin-top:{{isIPhoneX?'5vh':'3vh'}}">
  11. <checkbox-group bindchange="checkboxChange">
  12. <label>
  13. <checkbox value="privacy" checked="{{privacyCheck}}" class="changeSize" />
  14. <text>我已阅读并同意用户协议和隐私政策</text>
  15. </label>
  16. </checkbox-group>
  17. </view>
  18. </view>
  19. </view>