19 lines
771 B
Plaintext
19 lines
771 B
Plaintext
<!--pages/login/index.wxml-->
|
|
<view>
|
|
<view class="flex flex-center flex-col">
|
|
<view class="bg"></view>
|
|
<view style="width: 80%;" >
|
|
<t-button theme="primary" wx:if="{{checked === false}}" bind:tap="read" block shape="round">一键登录</t-button>
|
|
<t-button theme="primary" wx:else open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" block shape="round">一键登录</t-button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="flex flex-center bottom" >
|
|
<t-radio bind:change="change" borderless checked="{{checked}}">
|
|
<view slot="label" class="font-12 grey">
|
|
我已经阅读并同意 <p class="primary">《植趣用户协议》</p> 和<p class="primary">《植趣隐私政策》</p>
|
|
</view>
|
|
</t-radio>
|
|
|
|
</view>
|
|
</view> |