login.wxml 969 B

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