login.wxml 1.0 KB

12345678910111213141516171819
  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">音乐数字AI</text>
  7. </view>
  8. <view class="login-section">
  9. <view class="btnSection">
  10. <button type="primary" disabled="{{ !isAgree }}" open-type="getUserInfo" bindgetuserinfo="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" bind:tap="onProtocol" data-type="register">《小程序服务协议》</text><text class="protocol" bind:tap="onProtocol" data-type="privacy">《隐私政策》</text>
  16. <!-- <text class="protocol">《平台交易规则》</text> -->
  17. </view>
  18. </view>
  19. </view>