Files
venue_wx/pages/login/index.wxml

29 lines
945 B
Plaintext

<!--pages/login/index.wxml-->
<header isHistory="{{true}}" isGoHome="{{isGoHome}}"></header>
<view class='container' wx:if="{{!isLogin}}">
<view class="auth-box">
<image class="app-logo" src="../../images/45@3x.png"></image>
<view class="auth-tip">欢迎登录智慧云馆</view>
</view>
<view class='agreement'>
<checkbox-group bindchange="checkboxChange">
<checkbox value="agree" checked="{{isAgree}}" color="#ffda2e"/>
</checkbox-group>
<view class="agreement-text">
我已阅读并同意<text class="protocol" catchtap='pushAgreement'>《智慧云馆服务条款》及《隐私政策》</text>
</view>
</view>
<!-- 微信一键登录 -->
<button class='login-btn' bindtap="onWechatLogin">微信一键登录</button>
<!-- 暂不登录选项 -->
<view class='skip-btn' bindtap="skipLogin">暂不登录</view>
</view>
<view class='unclick-mask' wx:if="{{showUnclickMask}}"></view>