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.

35 lines
1.4 KiB

4 years ago
<!--pages/auth/auth.wxml-->
3 years ago
<view class="pages">
4 years ago
<mp-navigation-bar ext-class="set-bar" title="艾儿数据" back="{{false}}"></mp-navigation-bar>
4 years ago
<view class="main">
<view class="top">
<image class="log" src="../../assets/images/tabIcon/air.png"></image>
<view class="msg">
4 years ago
<view class="tag center">
<view class="tag-icon center {{agree?'tag-active':''}}" bindtap="setAgree">
<image class="tag-yes" src="../../assets/images/check.png"></image>
4 years ago
</view>
<view class="tag-text">
已阅读并同意
4 years ago
<text class="text" bindtap="disclaimer">《免责声明》</text>
4 years ago
</view>
</view>
</view>
<!-- 登录 -->
3 years ago
<button class="login" type='primary' wx:if="{{is_login}}" open-type="getUserInfo" bindtap="bindGetUserInfo">
4 years ago
<image class="wx-log" src="../../assets/images/wx.png"></image>
4 years ago
<text class="wx-text">微信用户一键登录</text>
</button>
<!-- 注册 -->
3 years ago
<button class="login" type='primary' wx:else open-type="getPhoneNumber" bindgetphonenumber="getphonenumberFun">
<image class="wx-log" src="../../assets/images/wx.png"></image>
<text class="wx-text">一键注册</text>
</button>
3 years ago
<text class="wx-text" style="margin-top: 30rpx;" bindtap="cancle">取消</text>
4 years ago
</view>
<!-- <view class="bottom">输入手机号码登录/注册</view> -->
4 years ago
</view>
3 years ago
</view>