| 123456789101112131415161718 |
- <!--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">小程序名称</text>
- </view>
- <view class="login-section">
- <view class="btnSection">
- <button type="primary" disabled="{{ !isAgree }}" open-type="getPhoneNumber" bindgetphonenumber="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">《小程序服务协议》</text><text class="protocol">《平台交易规则》</text><text class="protocol">《隐私政策》</text>
- </view>
- </view>
- </view>
|