You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
714 B

<block>
<view class="container" wx:if="{{show === 'auth'}}">
<view class="page-title">
<view>腾讯云物联网开发平台</view>
<view>小程序 Demo</view>
</view>
<image
src="https://main.qcloudimg.com/raw/5c1b129f7e134621e6ae981c9b00243e/home-loading-bg.png"
class="login-auth-bg"
/>
<view class="login-auth-notice">
使用前需要您授权登录
</view>
<button
class="btn btn-primary login-auth-btn"
bindtap="onLoginButtonTap"
>
授权登录
</button>
</view>
<mp-loading type="dot-gray" wx:elif="{{show === 'loading'}}"></mp-loading>
<block wx:elif="{{show === 'page'}}">
<slot></slot>
</block>
</block>