12345678910111213141516171819 |
- <!--pages/login/login.wxml-->
- <view class="container">
- <navigation-bar title="登录" ></navigation-bar>
- <view class="appInfo">
- <image src="https://oss.dayaedu.com/gyt/basic/1690793313834.png"></image>
- <text class="appname">音乐数字AI</text>
- </view>
- <view class="login-section">
- <view class="btnSection">
- <button type="primary" disabled="{{ !isAgree }}" open-type="getUserInfo" bindgetuserinfo="getLogin">微信一键登录</button>
- </view>
- <view class="protocol-section">
- <image wx:if="{{isAgree}}" bind:tap="onAgree" src="./images/radio-active.png" class="radio"></image>
- <image wx:else bind:tap="onAgree" src="./images/radio-default.png" class="radio"></image>
- <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>
- <!-- <text class="protocol">《平台交易规则》</text> -->
- </view>
- </view>
- </view>
|