Files
FreeERP.Applet/miniprogram/pages/components/page-plugin/page-plugin.wxml

43 lines
1.8 KiB
Plaintext
Raw Normal View History

2025-11-28 16:49:36 +08:00
<block wx:if="{{isLogin}}">
2026-01-21 17:05:30 +08:00
<view wx:if="{{isAuth}}"
style="padding: 24rpx;padding-bottom: {{ hasTabBar == '1' ? 'calc(var(--td-tab-bar-height,80rpx) + env(safe-area-inset-bottom) + 32rpx)' :'env(safe-area-inset-bottom)'}};{{customStyle ||''}}">
2025-11-28 16:49:36 +08:00
<slot></slot>
</view>
2026-01-08 17:13:44 +08:00
<no-auth-plugin wx:else />
2025-11-28 16:49:36 +08:00
</block>
<block wx:else>
<t-loading wx:if="{{loading}}" theme="spinner" fullscreen text="加载中..." layout="vertical" />
2026-01-21 17:05:30 +08:00
<view wx:else
style="padding: 0 32rpx;height: 90vh;justify-content: center;display: flex;flex-direction: column;">
2025-11-28 16:49:36 +08:00
<view style="display: flex;justify-content: center;">
2026-01-21 17:05:30 +08:00
<view style="width: 160rpx;height: 160rpx;overflow: hidden;border-radius: 160rpx;">
<image style="width: 100%;height: 100%;object-fit: cover;" src="{{avatarUrl}}"
mode="cover" />
2025-11-28 16:49:36 +08:00
</view>
</view>
2026-01-21 17:05:30 +08:00
<view style="padding: 40rpx 0">
2025-11-28 16:49:36 +08:00
<view>本小程序仅供{{appletName}}用户使用</view>
<view>申请获取以下权限</view>
<view>获取您的公开信息(昵称,头像等)</view>
</view>
2026-01-21 17:05:30 +08:00
<t-button wx:if="{{isAgree}}" block open-type="getPhoneNumber"
bindgetphonenumber="getPhoneNumber" theme="primary">
2025-11-28 16:49:36 +08:00
一键登录
</t-button>
<t-button wx:else block type="primary" bindtap="getPhoneNumberToast">
一键登录
</t-button>
2026-01-21 17:05:30 +08:00
<t-checkbox borderless style="padding: 0;margin: 1em 0;" value="{{isAgree}}"
bind:change="changeAgreementCheck">
2025-11-28 16:49:36 +08:00
我已阅读并同意
</t-checkbox>
2026-01-21 17:05:30 +08:00
<t-link theme="primary" bindtap="navAgreement" data-type="user" style="margin-bottom: 16rpx;">
《{{appletName}}平台用户服务协议》
</t-link>
2026-01-21 17:05:30 +08:00
<t-link theme="primary" bindtap="navAgreement" data-type="privacy"
style="margin-bottom: 16rpx;">
《{{appletName}}隐私权政策》
</t-link>
2025-11-28 16:49:36 +08:00
</view>
2026-01-21 17:05:30 +08:00
</block>