1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!--pages/login/login.wxml-->
- <view style="height: 100vh;background-color: #F5F6F8">
- <view wx:if="{{showLogin}}" style="display: flex;align-items: center;justify-content: center;height: 100vh;width: 100%;position: absolute;background-color: #F5F6F8;z-index: 9999;">
- <view style="display: flex;flex-direction: column;align-items: center;justify-content: center;padding-top: 80rpx;">
- <t-loading theme="circular" size="90rpx" layout="vertical"></t-loading>
- <view style="color: #000;padding-top: 18rpx;font-size: 32rpx;letter-spacing: 3rpx;">{{loadText}}</view>
- </view>
- </view>
- <view style="height: 280rpx;width: 100%;display:flex;align-items:center;justify-content:center;padding-top:130rpx">
- <view>
- <image src="{{imgUrl}}loginLogo.png" style="height: 140rpx;width: 140rpx"></image>
- </view>
- </view>
- <view style="margin-top:50rpx;height: 100rpx;width: 100%;display:flex;align-items:center;justify-content:center">
- <view style="width: 80%;display:flex;align-items:center;justify-content:center">
- <view style="height: 66rpx">
- <image src="{{agreementImg}}" bindtap="agreementSuccess" style="height: 40rpx;width: 40rpx"></image>
- </view>
- <!-- display:flex; -->
- <view style="width:95%; height: 66rpx;font-size:24rpx;color: #333333;align-items:center;justify-content:center">
- <view style="float:left">阅读并同意</view><view style="float:left;color:#ff7a14;text-decoration: underline" bind:tap="serviceAgreement">《服务协议及个人信息处理规则》</view>和 <view style="float:left;color:#ff7a14;text-decoration: underline" bind:tap="informationProcessing">《个人信息处理规则》</view>
- </view>
- </view>
- </view>
- <view style="margin-top: 10rpx">
- <button wx:if="{{!agree}}" type="primary" bindtap="protocolTips" style="width: 80%;display: flex;align-items:center;justify-content: center">
- <image style="height: 33rpx;width: 41rpx" src="{{imgUrl}}wx-login.png"></image>
- <text style="padding-left: 15rpx;font-size:27rpx">微信用户一键登录</text>
- </button>
- <button wx:if="{{agree}}" open-type="getPhoneNumber" type="primary" bindgetphonenumber="getPhoneNumber" style="width: 80%;display: flex;align-items:center;justify-content: center">
- <image style="height: 33rpx;width: 41rpx" src="{{imgUrl}}wx-login.png"></image>
- <text style="padding-left: 15rpx;font-size:27rpx">微信用户一键登录</text>
- </button>
- </view>
- </view>
|