123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <view class="register">
- <view class="register_head">
- <!-- <text>{{ isPassword ? '密码登录' : '手机快捷登录' }}</text> -->
- <!-- <text>{{ isPassword ? '如忘记密码可用已注册手机登录' : '未注册过的手机号将自动创建账号' }}</text> -->
- </view>
- <view class="register_ul">
- <view class="register_li flex">
- <view class="register_ipt"><input type="number" maxlength="11" v-model="from.mobile" placeholder="请输入手机号" placeholder-style="color:#999999" /></view>
- </view>
- <view class="register_li flex">
- <view class="register_ipt">
- <input type="password" v-model="from.password" maxlength="12" placeholder="请输入密码" v-if="isPassword" placeholder-style="color:#999999" />
- <input type="number" maxlength="6" v-model="from.captcha" placeholder="请输入验证码" v-else placeholder-style="color:#999999" />
- </view>
- <view class="code center" v-if="!isPassword" @click="getCode">{{ codeTxt }}</view>
- </view>
- </view>
- <view class="register_code" @click="isPassword = !isPassword" v-if="isPassword">验证码登录</view>
- <button class="register_btn" hover-class="hover-view" @click="submit">登录</button>
- <view class="register_footer center">
- <text @click="goPassword">{{ isPassword ? '忘记密码' : '密码登录' }}</text>
- <text></text>
- <text @click="goRegister">注册账号</text>
- </view>
- <view class="register_fast center" @click="wxLogin">
- <text>选择登录方式</text>
- <image src="/static/image/publice/weixin@3x.png" mode=""></image>
- </view>
- <view class="register_consent center">
- <image :src="isConsent ? '/static/image/publice/xuanzhong@2x.png' : '/static/image/publice/weixuanzhong1@2x.png'" mode="" @click="isConsent = !isConsent"></image>
- <text>登录即表明同意</text>
- <text class="blue" @click="goUser">《用户协议》</text>
- <text>和</text>
- <text class="blue" @click="goPrivacy">《隐私政策》</text>
- </view>
- </view>
- </template>
- <script>
- import $DB from '../../http/debounce.js';
- export default {
- data() {
- return {
- isPassword: false, //是否密码登录
- isConsent: true, //是否同意
- flag: true,
- codeTxt: '获取验证码',
- sending: true,
- second: 60,
- disabled: false,
- from: {
- mobile: '', //
- captcha: '', //
- sharecode: '',
- password: '',
- is_channel: ''
- }
- };
- },
- methods: {
- //微信登录
- wxLogin() {
- this.$api
- .getWechatLoginUrl({ redirect: '/h5/#/pages/login/bindPhone?sharecode=' + uni.getStorageSync('sharecode') + '&is_channel=' + uni.getStorageSync('is_channel') })
- .then(res => {
- if (res.code === 1) {
- location.href = res.data.url;
- // uni.setStorageSync('token',res.data.token)
- // uni.setStorageSync('is_notice',res.data.is_notice)
- // uni.removeStorageSync('is_channel')
- // uni.switchTab({url:'/pages/tabbar/index'})
- }
- });
- },
- //去隐私协议
- goPrivacy() {
- uni.navigateTo({ url: '/pagesA/pages/privacy' });
- },
- //去用户协议
- goUser() {
- uni.navigateTo({ url: '/pagesA/pages/user' });
- },
- //登录
- submit: $DB(function() {
- if (!this.from.mobile.match(/^(0|86|17951)?1[3456789]\d{9}$/)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- });
- return;
- }
- if (!this.from.captcha && !this.isPassword) return uni.showToast({ title: '请输入验证码', icon: 'none' });
- if (!this.isConsent) return uni.showToast({ title: '请阅读并同意用户和隐私协议', icon: 'none' });
- if (!this.flag) return;
- this.flag = false;
- this.from.is_channel = uni.getStorageSync('is_channel');
- this.$api[this.isPassword ? 'passwordLogin' : 'mobilelogin']({ ...this.from, msg: '登录中' })
- .then(res => {
- if (res.data.registerurl) {
- //存在跳转链接
- location.href = res.data.registerurl;
- return;
- }
- if (res.code === 1) {
- uni.setStorageSync('token', res.data.token);
- uni.setStorageSync('is_notice', res.data.is_notice);
- uni.removeStorageSync('is_channel');
- uni.switchTab({ url: '/pages/tabbar/index' });
- } else {
- this.flag = true;
- }
- })
- .catch(res => {
- this.flag = true;
- });
- }),
- //验证码登录
- codeLogin() {
- uni.navigateTo({ url: '/pages/login/phoneLogin' });
- },
- //注册账号
- goRegister() {
- uni.navigateTo({ url: '/pages/login/register' });
- },
- //忘记密码
- goPassword() {
- if (this.isPassword) {
- uni.navigateTo({ url: '/pages/login/forgetPassword' });
- } else {
- this.isPassword = true;
- }
- },
- //获取验证码
- getCode: $DB(function() {
- if (!this.sending) return;
- if (!this.from.mobile.match(/^(0|86|17951)?1[3456789]\d{9}$/)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none'
- });
- return;
- }
- this.$api.send({ mobile: this.from.mobile, msg: '发送中', event: 'login' }).then(res => {
- this.sending = false;
- this.disabled = true;
- if (res.code === 1) {
- this.timeDown();
- }
- uni.showToast({
- title: res.msg,
- icon: 'none'
- });
- });
- }),
- timeDown() {
- let result = setInterval(() => {
- --this.second;
- this.codeTxt = this.second + 'S';
- if (this.second < 0) {
- clearInterval(result);
- this.sending = true;
- this.disabled = false;
- this.second = 60;
- this.codeTxt = '获取验证码';
- }
- }, 1000);
- }
- },
- onLoad() {
- if (uni.getStorageSync('sharecode')) {
- this.from.sharecode = uni.getStorageSync('sharecode');
- }
- }
- };
- </script>
- <style>
- page {
- background: #ffffff;
- }
- </style>
- <style lang="scss">
- .register {
- min-height: 100vh;
- padding: 0 42rpx;
- position: relative;
- .register_head {
- display: flex;
- flex-direction: column;
- padding: 30rpx 0 40rpx 0;
- text {
- &:first-child {
- font-size: 40rpx;
- font-weight: bold;
- }
- &:last-child {
- color: #999999;
- font-size: 26rpx;
- margin-top: 20rpx;
- }
- }
- }
- .register_li {
- padding: 40rpx 0;
- border-bottom: 2rpx solid #dddddd;
- .register_ipt {
- flex: 1;
- input {
- width: 100%;
- font-size: 30rpx;
- }
- }
- .code {
- width: 150rpx;
- color: #4eabfc;
- font-size: 28rpx;
- }
- }
- }
- .register_btn {
- height: 80rpx;
- margin-top: 50rpx;
- background-image: linear-gradient(45deg, #89f7fe, #7c66ff);
- border-radius: 40rpx;
- }
- .register_code {
- color: #4eabfc;
- font-size: 28rpx;
- text-align: right;
- margin: 30rpx 0 0rpx 0;
- }
- .register_footer {
- margin: 50rpx 0 125rpx 0;
- text {
- color: #4eabfc;
- font-size: 26rpx;
- &:nth-child(2) {
- width: 1px;
- height: 25rpx;
- margin: 0 35rpx;
- background: #4eabfc;
- }
- }
- }
- .register_fast {
- margin-top: 125rpx;
- flex-direction: column;
- text {
- color: #999999;
- margin-bottom: 40rpx;
- }
- image {
- width: 472rpx;
- height: 72rpx;
- }
- }
- .register_consent {
- margin-top: 50px;
- /*
- width: 100%;
- position: absolute;
- left: 50%;
- bottom: 70rpx;
- transform: translateX(-50%);
- */
- image {
- width: 30rpx;
- height: 30rpx;
- flex-shrink: 0;
- margin-right: 10rpx;
- }
- .blue {
- color: #4eabfc;
- }
- }
- </style>
|