2022-09-07 08:10:28 +00:00
|
|
|
|
<template>
|
2022-09-07 13:00:03 +00:00
|
|
|
|
<view
|
|
|
|
|
|
class="bg-white login min-h-full flex flex-col items-center px-[40rpx] pt-[80rpx] box-border"
|
|
|
|
|
|
>
|
2022-09-07 08:10:28 +00:00
|
|
|
|
<view>
|
2022-09-08 11:09:53 +00:00
|
|
|
|
<u-image :src="appStore.config.website.logo" mode="widthFix" height="160" width="160" />
|
2022-09-07 08:10:28 +00:00
|
|
|
|
</view>
|
2022-09-08 11:09:53 +00:00
|
|
|
|
<view class="mt-4">{{ appStore.config.website.name }}</view>
|
2022-09-07 08:10:28 +00:00
|
|
|
|
<view class="w-full mt-[60rpx]">
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<u-form borderBottom>
|
|
|
|
|
|
<template v-if="scene == LoginTypeEnum.ACCOUNT">
|
|
|
|
|
|
<u-form-item borderBottom>
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-icon class="mr-2" :size="36" name="/static/images/icon/icon_user.png" />
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<u-input
|
|
|
|
|
|
class="flex-1"
|
|
|
|
|
|
v-model="formData.username"
|
|
|
|
|
|
:border="false"
|
|
|
|
|
|
placeholder="请输入账号/手机号码"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</u-form-item>
|
|
|
|
|
|
<u-form-item borderBottom>
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-icon
|
|
|
|
|
|
class="mr-2"
|
|
|
|
|
|
:size="36"
|
|
|
|
|
|
name="/static/images/icon/icon_password.png"
|
|
|
|
|
|
/>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<u-input
|
|
|
|
|
|
class="flex-1"
|
|
|
|
|
|
v-model="formData.password"
|
|
|
|
|
|
type="password"
|
|
|
|
|
|
placeholder="请输入密码"
|
|
|
|
|
|
:border="false"
|
|
|
|
|
|
/>
|
2022-09-09 01:50:39 +00:00
|
|
|
|
<navigator url="/pages/forget_pwd/forget_pwd" hover-class="none">
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="border-l border-solid border-0 border-light pl-3 text-muted leading-4 ml-3"
|
|
|
|
|
|
>
|
|
|
|
|
|
忘记密码?
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</navigator>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
</u-form-item>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template v-if="scene == LoginTypeEnum.MOBILE">
|
|
|
|
|
|
<u-form-item borderBottom>
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-icon
|
|
|
|
|
|
class="mr-2"
|
|
|
|
|
|
:size="36"
|
|
|
|
|
|
name="/static/images/icon/icon_mobile.png"
|
|
|
|
|
|
/>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<u-input
|
|
|
|
|
|
class="flex-1"
|
|
|
|
|
|
v-model="formData.mobile"
|
|
|
|
|
|
:border="false"
|
|
|
|
|
|
placeholder="请输入手机号码"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</u-form-item>
|
|
|
|
|
|
<u-form-item borderBottom>
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-icon class="mr-2" :size="36" name="/static/images/icon/icon_code.png" />
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<u-input
|
|
|
|
|
|
class="flex-1"
|
|
|
|
|
|
v-model="formData.code"
|
|
|
|
|
|
placeholder="请输入验证码"
|
|
|
|
|
|
:border="false"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<view
|
|
|
|
|
|
class="border-l border-solid border-0 border-light pl-3 text-muted leading-4 ml-3 w-[180rpx]"
|
|
|
|
|
|
@click="sendSms"
|
|
|
|
|
|
>
|
|
|
|
|
|
<u-verification-code
|
|
|
|
|
|
ref="uCodeRef"
|
|
|
|
|
|
:seconds="60"
|
|
|
|
|
|
@change="codeChange"
|
|
|
|
|
|
change-text="x秒"
|
|
|
|
|
|
/>
|
|
|
|
|
|
{{ codeTips }}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</u-form-item>
|
|
|
|
|
|
</template>
|
2022-09-07 08:10:28 +00:00
|
|
|
|
</u-form>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<view class="mt-[60rpx]">
|
|
|
|
|
|
<u-checkbox v-model="isCheckAgreement" shape="circle">
|
|
|
|
|
|
<view class="text-xs flex">
|
|
|
|
|
|
已阅读并同意
|
2022-09-09 07:59:18 +00:00
|
|
|
|
<navigator
|
|
|
|
|
|
@click.stop=""
|
|
|
|
|
|
class="text-primary"
|
|
|
|
|
|
hover-class="none"
|
|
|
|
|
|
url="/pages/agreement/agreement?type=service"
|
|
|
|
|
|
>
|
|
|
|
|
|
《服务协议》
|
|
|
|
|
|
</navigator>
|
|
|
|
|
|
和<navigator
|
|
|
|
|
|
@click.stop=""
|
|
|
|
|
|
class="text-primary"
|
|
|
|
|
|
hover-class="none"
|
|
|
|
|
|
url="/pages/agreement/agreement?type=privacy"
|
|
|
|
|
|
>
|
2022-09-09 01:50:39 +00:00
|
|
|
|
《隐私协议》
|
|
|
|
|
|
</navigator>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
</view>
|
|
|
|
|
|
</u-checkbox>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mt-[40rpx]">
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-button type="primary" shape="circle" @click="handleLogin(scene)">
|
2022-09-07 12:58:01 +00:00
|
|
|
|
登 录
|
|
|
|
|
|
</u-button>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
<view class="text-content flex justify-between mt-[40rpx]">
|
|
|
|
|
|
<view v-if="scene == LoginTypeEnum.MOBILE" @click="scene = LoginTypeEnum.ACCOUNT">
|
|
|
|
|
|
账号密码登录
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view v-if="scene == LoginTypeEnum.ACCOUNT" @click="scene = LoginTypeEnum.MOBILE">
|
|
|
|
|
|
短信验证码登录
|
|
|
|
|
|
</view>
|
2022-09-09 01:50:39 +00:00
|
|
|
|
<navigator url="/pages/register/register" hover-class="none">注册账号</navigator>
|
2022-09-07 12:58:01 +00:00
|
|
|
|
</view>
|
2022-09-09 01:50:39 +00:00
|
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<view class="mt-[80rpx]">
|
|
|
|
|
|
<u-divider>第三方登录</u-divider>
|
|
|
|
|
|
<div class="flex justify-center mt-[40rpx]">
|
|
|
|
|
|
<div class="flex flex-col items-center" @click="wxLogin">
|
2022-09-08 08:28:56 +00:00
|
|
|
|
<u-icon name="/static/images/icon/icon_wx.png" size="80" />
|
2022-09-07 12:58:01 +00:00
|
|
|
|
<div class="text-sm mt-[10px]">微信登录</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</view>
|
2022-09-09 01:50:39 +00:00
|
|
|
|
<!-- #endif -->
|
2022-09-07 08:10:28 +00:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2022-09-07 12:58:01 +00:00
|
|
|
|
import { login } from '@/api/account'
|
|
|
|
|
|
import { smsSend } from '@/api/app'
|
|
|
|
|
|
import { SMSEnum } from '@/enums/appEnums'
|
2022-09-08 08:28:56 +00:00
|
|
|
|
import { useLockFn } from '@/hooks/useLockFn'
|
2022-09-08 11:09:53 +00:00
|
|
|
|
import { useAppStore } from '@/stores/app'
|
2022-09-08 08:28:56 +00:00
|
|
|
|
import { useUserStore } from '@/stores/user'
|
2022-09-08 11:09:53 +00:00
|
|
|
|
import { reactive, ref, shallowRef } from 'vue'
|
2022-09-07 12:58:01 +00:00
|
|
|
|
enum LoginTypeEnum {
|
|
|
|
|
|
MOBILE = 'mobile',
|
|
|
|
|
|
ACCOUNT = 'account',
|
|
|
|
|
|
MNP = 'mnp'
|
|
|
|
|
|
}
|
|
|
|
|
|
const uCodeRef = shallowRef()
|
|
|
|
|
|
const scene = ref(LoginTypeEnum.ACCOUNT)
|
|
|
|
|
|
const codeTips = ref('')
|
|
|
|
|
|
const isCheckAgreement = ref(false)
|
2022-09-08 08:28:56 +00:00
|
|
|
|
|
|
|
|
|
|
const userStore = useUserStore()
|
2022-09-08 11:09:53 +00:00
|
|
|
|
const appStore = useAppStore()
|
2022-09-07 08:10:28 +00:00
|
|
|
|
const formData = reactive({
|
2022-09-07 12:58:01 +00:00
|
|
|
|
username: '',
|
|
|
|
|
|
password: '',
|
|
|
|
|
|
code: '',
|
2022-09-07 08:10:28 +00:00
|
|
|
|
mobile: ''
|
|
|
|
|
|
})
|
2022-09-07 12:58:01 +00:00
|
|
|
|
|
|
|
|
|
|
const codeChange = (text: string) => {
|
|
|
|
|
|
codeTips.value = text
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const sendSms = async () => {
|
|
|
|
|
|
if (!formData.mobile) return uni.$u.toast('请输入手机号码')
|
|
|
|
|
|
if (uCodeRef.value?.canGetCode) {
|
|
|
|
|
|
await smsSend({
|
|
|
|
|
|
scene: SMSEnum.LOGIN,
|
|
|
|
|
|
mobile: formData.mobile
|
|
|
|
|
|
})
|
|
|
|
|
|
uni.$u.toast('发送成功')
|
|
|
|
|
|
uCodeRef.value?.start()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2022-09-08 08:28:56 +00:00
|
|
|
|
|
|
|
|
|
|
const loginFun = async (scene: LoginTypeEnum, code?: string) => {
|
2022-09-07 12:58:01 +00:00
|
|
|
|
if (!isCheckAgreement.value) return uni.$u.toast('请勾选已阅读并同意《服务协议》和《隐私协议》')
|
|
|
|
|
|
if (scene == LoginTypeEnum.ACCOUNT) {
|
|
|
|
|
|
if (!formData.username) return uni.$u.toast('请输入账号/手机号码')
|
|
|
|
|
|
if (!formData.password) return uni.$u.toast('请输入密码')
|
|
|
|
|
|
}
|
|
|
|
|
|
if (scene == LoginTypeEnum.MOBILE) {
|
|
|
|
|
|
if (!formData.mobile) return uni.$u.toast('请输入手机号码')
|
|
|
|
|
|
if (!formData.code) return uni.$u.toast('请输入验证码')
|
|
|
|
|
|
}
|
2022-09-07 13:00:03 +00:00
|
|
|
|
const params = {
|
|
|
|
|
|
...formData,
|
|
|
|
|
|
scene
|
|
|
|
|
|
}
|
|
|
|
|
|
if (code) params.code = code
|
2022-09-08 08:28:56 +00:00
|
|
|
|
uni.showLoading({
|
|
|
|
|
|
title: '请稍后...'
|
|
|
|
|
|
})
|
|
|
|
|
|
try {
|
|
|
|
|
|
const data = await login(params)
|
|
|
|
|
|
userStore.login(data.token)
|
|
|
|
|
|
await userStore.getUser()
|
|
|
|
|
|
uni.$u.toast('登录成功')
|
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
|
uni.navigateBack()
|
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
|
uni.hideLoading()
|
|
|
|
|
|
throw new Error(error)
|
|
|
|
|
|
}
|
2022-09-07 12:58:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-08 08:28:56 +00:00
|
|
|
|
const { isLock, lockFn: handleLogin } = useLockFn(loginFun)
|
|
|
|
|
|
|
2022-09-07 12:58:01 +00:00
|
|
|
|
const wxLogin = async () => {
|
|
|
|
|
|
const data: any = await uni.login({
|
|
|
|
|
|
provider: 'weixin'
|
|
|
|
|
|
})
|
2022-09-08 08:28:56 +00:00
|
|
|
|
handleLogin(LoginTypeEnum.MNP, data.code)
|
2022-09-07 12:58:01 +00:00
|
|
|
|
}
|
2022-09-07 08:10:28 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
page {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|