index.vue 3.6 KB
Newer Older
芊里 已提交
1
<template>
L
12  
linju 已提交
2
	<view class="wrap">
L
213  
linju 已提交
3
		<view class="wrap-content">
芊里 已提交
4
			<view class="content">
L
linju 已提交
5
				<!-- 顶部文字 -->
芊里 已提交
6
				<text class="content-top-title">登陆后即可展示自己</text>
芊里 已提交
7
				<login-ikonw class="login-iknow" :link="link" text="登录即表示同意用户协议和隐私政策"></login-ikonw>
L
linju 已提交
8
				<!-- 登录框 (选择手机号所属国家和地区需要另行实现) -->
芊里 已提交
9 10 11 12
				<uni-forms ref="form" :value="formData" :rules="rules">
					<uni-forms-item name="phone">
						<uni-easyinput type="number" class="phone-input-box" :inputBorder="false"
							v-model="formData.phone" maxlength="11" placeholder="请输入手机号">
L
123  
linju 已提交
13
							<template slot="left">
芊里 已提交
14 15 16 17
								<!-- 当前仅支持中国大陆手机号 -->
								<!-- <picker mode="selector" :range="phoneArea" @change="selectPhoneArea"> -->
									<text class="phone-area" @click="selectPhoneArea">{{currenPhoneArea}}</text>
								<!-- </picker> -->
芊里 已提交
18 19 20 21 22
							</template>
						</uni-easyinput>
					</uni-forms-item>
					<button class="send-btn-box" :disabled="!canGetShortMsg" :type="canGetShortMsg?'primary':'default'"
						@click="sendShortMsg">获取短信验证码</button>
L
123  
linju 已提交
23 24 25
				</uni-forms>

				<!-- tip -->
芊里 已提交
26
				<text class="tip-text">未注册的手机号验证通过后将自动注册</text>
L
linju 已提交
27 28

				<!-- 其他登录方式 -->
芊里 已提交
29 30
				<view class="auth-box">
					<text class="login-text" hover-class="hover" @click="toPwdLogin">密码登录</text>
芊里 已提交
31
					<!-- <text class="login-text" hover-class="hover" @click="openLoginList">其他登录方式</text> -->
L
linju 已提交
32 33
				</view>
			</view>
芊里 已提交
34
		</view>
L
linju 已提交
35
		<!-- 登录按钮弹窗 -->
芊里 已提交
36
		<login-action-sheet ref="loginActionSheet"></login-action-sheet>
L
123  
linju 已提交
37
		<uni-quick-login ref="uniQuickLogin"></uni-quick-login>
芊里 已提交
38 39 40
	</view>
</template>

L
21  
linju 已提交
41 42
<script>
const univerify_first = true
L
123  
linju 已提交
43
	import mixin from '../../common/loginPage.mixin.js';
L
12  
linju 已提交
44
	var currentPage;
L
123  
linju 已提交
45
	export default {
芊里 已提交
46
		mixins:[mixin],
芊里 已提交
47
		data() {
芊里 已提交
48
			return {
芊里 已提交
49
				phoneArea: ['+86'],
L
21  
linju 已提交
50 51
				currenPhoneArea: '+86',
				
L
linju 已提交
52
			}
芊里 已提交
53
		},
芊里 已提交
54
		onLoad() {
L
21  
linju 已提交
55 56 57 58 59 60 61 62
			//#ifdef APP-PLUS
			if(univerify_first){
				let pages = getCurrentPages();
				currentPage = pages[pages.length - 1];
				currentPage.$getAppWebview().setStyle({
					top:"1000px"
				})
			}
芊里 已提交
63
			//#endif
L
12  
linju 已提交
64 65
		},
		onReady() {
芊里 已提交
66
			//#ifdef APP-PLUS
L
21  
linju 已提交
67 68 69 70 71 72 73 74
			if(univerify_first){
				this.$refs.uniQuickLogin.login('univerify')
				setTimeout(() => {
					currentPage.$getAppWebview().setStyle({
						top:"0"
					})
				}, 1500);
			}
芊里 已提交
75
			//#endif
芊里 已提交
76
		},
L
linju 已提交
77 78
		computed: {
			canGetShortMsg() {
79
				return this.isPhone;
芊里 已提交
80 81
			}
		},
L
linju 已提交
82
		methods: {
L
123  
linju 已提交
83 84 85 86
			selectPhoneArea(event) {
				uni.showToast({
					title: '当前仅支持中国大陆手机号',
					icon: 'none'
芊里 已提交
87 88
				});
				// this.currenPhoneArea = this.phoneArea[event.detail.value];
L
linju 已提交
89 90 91 92
			},
			sendShortMsg() {
				/**
				 * 发送验证吗
93
				 */
L
123  
linju 已提交
94
				uni.showLoading();
L
123  
linju 已提交
95 96 97 98 99 100 101
				uni.navigateTo({
					url: './phone-code?phoneNumber=' + this.formData.phone + '&phoneArea=' +
						this.currenPhoneArea,
					success: res => {},
					fail: () => {},
					complete: () => {}
				});
L
linju 已提交
102 103 104
			},
			/**
			 * 去密码登录页
芊里 已提交
105
			 */
L
linju 已提交
106 107 108 109 110 111 112
			toPwdLogin() {
				uni.navigateTo({
					url: './pwd-login'
				})
			},
			openLoginList() {
				this.$refs.loginActionSheet.open();
L
12  
linju 已提交
113 114 115
			},
			back() {
				uni.navigateBack()
芊里 已提交
116 117 118 119 120
			}
		}
	}
</script>

芊里 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
<style>
	@import url("../../common/loginPage.css");

	.content-top-title {
		text-align: center;
	}

	.login-iknow {
		justify-content: center;
	}

	.phone-area {
		/* #ifdef APP-NVUE */
		border-right-width: 1rpx;
		border-right-color: #d7d9d8;
		/* #endif */
		/* #ifndef APP-NVUE */
		border-right: 1rpx solid #d7d9d8;
		/* #endif */
芊里 已提交
140
	}
L
123  
linju 已提交
141
</style>