login.wxml 1.1 KB

1234567891011121314151617181920
  1. <!--pages/login/login.wxml-->
  2. <view class="container">
  3. <view class="appBg"></view>
  4. <navigation-bar title="" ></navigation-bar>
  5. <view class="appInfo">
  6. <image class="appImg" src="https://oss.dayaedu.com/ktyq/1738896831535.png"></image>
  7. <image class="appname" src="https://oss.dayaedu.com/ktyq/1738896882332.png"></image>
  8. </view>
  9. <view class="login-section">
  10. <view class="btnSection">
  11. <button hover-class="none" type="primary" disabled="{{ !isAgree }}" open-type="getUserInfo" bindgetuserinfo="getLogin">微信一键登录</button>
  12. </view>
  13. <view class="protocol-section">
  14. <image wx:if="{{isAgree}}" bind:tap="onAgree" src="./images/radio-active.png" class="radio"></image>
  15. <image wx:else bind:tap="onAgree" src="./images/radio-default.png" class="radio"></image>
  16. <text bind:tap="onAgree">我已阅读并同意</text><text class="protocol" bind:tap="onProtocol" data-type="register">《小程序服务协议》</text>&<text class="protocol" bind:tap="onProtocol" data-type="privacy">《隐私政策》</text>
  17. <!-- <text class="protocol">《平台交易规则》</text> -->
  18. </view>
  19. </view>
  20. </view>