Browse Source

登录页面增加取消登录

gcz 4 years ago
parent
commit
9f90d9642e
1 changed files with 14 additions and 1 deletions
  1. 14 1
      pages/login/loginType.vue

+ 14 - 1
pages/login/loginType.vue

@@ -21,6 +21,9 @@
 					</view>
 					<view class="login-item-text">企业用户</view>
 				</view>
+				<view class="cancel-login-wrap">
+					<view class="cancel-login"  @click="cancelLogin">取消登录</view>
+				</view>				
 			</view>
 			<view class="getphone" v-if="hasLogin&&havePhone==false">
 				<button type="default" class="getPhoneNumber" open-type="getPhoneNumber" @getphonenumber="onGetPhoneNumber">绑定手机号</button>
@@ -195,6 +198,14 @@
 						url:serf.backUrl
 					})
 				}
+			},
+			cancelLogin(){
+				uni.switchTab({
+				    url: '/pages/usercenter/usercenter',
+					fail(err) {
+						// console.log(err)
+					}
+				});
 			}
 
 		}
@@ -204,7 +215,9 @@
 <style scoped>
 	/* @import url("./index.css"); */
 .login-out{position: fixed;left: 0;right: 0;bottom: 144rpx;}
-.login-wrap{display: flex;align-items: center;text-align: center;}
+.login-wrap{display: flex;align-items: center;text-align: center;flex-wrap: wrap;}
+.cancel-login-wrap{margin-top: 40rpx;width: 100%;}
+.cancel-login{position: fixed;left: 0;right: 0;bottom: 24rpx;color: #666;}
 .login-item{flex: 1;position: relative;}
 .login-item-icon{display: flex;margin: 0 auto 14rpx;align-items: center;justify-content: center;width: 151rpx;height: 151rpx;border-radius: 50%;background: linear-gradient(139deg, #43D394 0%, #18C197 100%);}
 .login-item-icon .iconfont{color: #fff;font-size: 64rpx;}