37 lines
1.6 KiB
Plaintext
37 lines
1.6 KiB
Plaintext
<block wx:if="{{isLogin}}">
|
|
<view wx:if="{{!isAuth}}" style="padding: 12px;padding-bottom: env(safe-area-inset-bottom);{{style ||''}}">
|
|
<slot></slot>
|
|
</view>
|
|
<no_auth_plugin wx:else />
|
|
</block>
|
|
<block wx:else>
|
|
<!-- <loading_plugin wx:if="{{loading}}" /> -->
|
|
<view style="padding: 0 16px;height: 90vh;justify-content: center;display: flex;flex-direction: column;">
|
|
<view style="display: flex;justify-content: center;">
|
|
<view style="width: 80px;height: 80px;overflow: hidden;border-radius: 80px;">
|
|
<image style="width: 100%;height: 100%;object-fit: cover;" src="{{avatarUrl}}" mode="cover"></image>
|
|
</view>
|
|
</view>
|
|
<view style="padding: 20px 0">
|
|
<view>本小程序仅供{{appletName}}用户使用</view>
|
|
<view>申请获取以下权限</view>
|
|
<view>获取您的公开信息(昵称,头像等)</view>
|
|
</view>
|
|
<t-button wx:if="{{isAgree}}" block open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber" theme="primary">
|
|
一键登录
|
|
</t-button>
|
|
<t-button wx:else block type="primary" bindtap="getPhoneNumberToast">
|
|
一键登录
|
|
</t-button>
|
|
|
|
<t-checkbox borderless style="padding: 0;margin: 1em 0;" value="{{isAgree}}" bind:change="changeAgreementCheck">
|
|
我已阅读并同意
|
|
</t-checkbox>
|
|
<!-- <t-divider /> -->
|
|
<t-link theme="primary" bindtap="navAgreement" data-type="user" style="margin-bottom: 8px;">
|
|
《{{appletName}}平台用户服务协议》</t-link>
|
|
<t-link theme="primary" bindtap="navAgreement" data-type="privacy" style="margin-bottom: 8px;">
|
|
《{{appletName}}隐私权政策》</t-link>
|
|
|
|
</view>
|
|
</block> |