Files
JoyD/Claw/client/wechat_app/components/auth-prompt/auth-prompt.wxml

19 lines
880 B
Plaintext
Raw Normal View History

2026-04-21 13:46:20 +08:00
<view class="auth-prompt" wx:if="{{show}}">
<view class="auth-prompt-overlay" bindtap="handleCancel"></view>
<view class="auth-prompt-content">
<view class="auth-prompt-icon">
<image src="{{authConfig[authType].icon}}" mode="aspectFit"></image>
</view>
<view class="auth-prompt-title">{{authConfig[authType].title}}</view>
<view class="auth-prompt-desc">{{authConfig[authType].desc}}</view>
<view class="auth-prompt-buttons">
<button class="auth-prompt-cancel" bindtap="handleCancel">取消</button>
<button class="auth-prompt-confirm" bindtap="handleAuth">{{authConfig[authType].buttonText}}</button>
</view>
<view class="auth-prompt-tip">
<text>如果授权失败,请在</text>
<text class="auth-prompt-settings" bindtap="openSettings">设置</text>
<text>中开启权限</text>
</view>
</view>
</view>