123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--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 class="tips">掌新南岸用户登录</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>
- <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: 40rpx">
- <!-- <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 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>
|