|
@@ -1,90 +1,90 @@
|
|
|
import {
|
|
|
- AlipayCircleOutlined,
|
|
|
+ // AlipayCircleOutlined,
|
|
|
LockOutlined,
|
|
|
- MobileOutlined,
|
|
|
- TaobaoCircleOutlined,
|
|
|
- UserOutlined,
|
|
|
- WeiboCircleOutlined,
|
|
|
-} from '@ant-design/icons';
|
|
|
-import { Alert, Space, message, Tabs } from 'antd';
|
|
|
-import React, { useState } from 'react';
|
|
|
-import ProForm, { ProFormCaptcha, ProFormCheckbox, ProFormText } from '@ant-design/pro-form';
|
|
|
-import { useIntl, Link, history, FormattedMessage, SelectLang, useModel } from 'umi';
|
|
|
-import Footer from '@/components/Footer';
|
|
|
-import { login } from '@/services/ant-design-pro/api';
|
|
|
-import { getFakeCaptcha } from '@/services/ant-design-pro/login';
|
|
|
+ // MobileOutlined,
|
|
|
+ // TaobaoCircleOutlined,
|
|
|
+ UserOutlined
|
|
|
+ // WeiboCircleOutlined
|
|
|
+} from '@ant-design/icons'
|
|
|
+import { Alert, message, Tabs } from 'antd'
|
|
|
+import React, { useState } from 'react'
|
|
|
+import ProForm, { ProFormCheckbox, ProFormText } from '@ant-design/pro-form'
|
|
|
+import { useIntl, Link, history, FormattedMessage, SelectLang, useModel } from 'umi'
|
|
|
+import Footer from '@/components/Footer'
|
|
|
+import { login } from '@/services/user'
|
|
|
+// import { getFakeCaptcha } from '@/services/ant-design-pro/login'
|
|
|
|
|
|
-import styles from './index.less';
|
|
|
+import styles from './index.less'
|
|
|
|
|
|
const LoginMessage: React.FC<{
|
|
|
- content: string;
|
|
|
+ content: string
|
|
|
}> = ({ content }) => (
|
|
|
<Alert
|
|
|
style={{
|
|
|
- marginBottom: 24,
|
|
|
+ marginBottom: 24
|
|
|
}}
|
|
|
message={content}
|
|
|
type="error"
|
|
|
showIcon
|
|
|
/>
|
|
|
-);
|
|
|
+)
|
|
|
|
|
|
/** 此方法会跳转到 redirect 参数所在的位置 */
|
|
|
const goto = () => {
|
|
|
- if (!history) return;
|
|
|
+ if (!history) return
|
|
|
setTimeout(() => {
|
|
|
- const { query } = history.location;
|
|
|
- const { redirect } = query as { redirect: string };
|
|
|
- history.push(redirect || '/');
|
|
|
- }, 10);
|
|
|
-};
|
|
|
+ const { query } = history.location
|
|
|
+ const { redirect } = query as { redirect: string }
|
|
|
+ history.push(redirect || '/')
|
|
|
+ }, 10)
|
|
|
+}
|
|
|
|
|
|
const Login: React.FC = () => {
|
|
|
- const [submitting, setSubmitting] = useState(false);
|
|
|
- const [userLoginState, setUserLoginState] = useState<API.LoginResult>({});
|
|
|
- const [type, setType] = useState<string>('account');
|
|
|
- const { initialState, setInitialState } = useModel('@@initialState');
|
|
|
+ const [submitting, setSubmitting] = useState(false)
|
|
|
+ const [userLoginState, setUserLoginState] = useState<API.LoginResult>({})
|
|
|
+ const [type, setType] = useState<string>('account')
|
|
|
+ const { initialState, setInitialState } = useModel('@@initialState')
|
|
|
|
|
|
- const intl = useIntl();
|
|
|
+ const intl = useIntl()
|
|
|
|
|
|
const fetchUserInfo = async () => {
|
|
|
- const userInfo = await initialState?.fetchUserInfo?.();
|
|
|
+ const userInfo = await initialState?.fetchUserInfo?.()
|
|
|
if (userInfo) {
|
|
|
setInitialState({
|
|
|
...initialState,
|
|
|
- currentUser: userInfo,
|
|
|
- });
|
|
|
+ currentUser: userInfo
|
|
|
+ })
|
|
|
}
|
|
|
- };
|
|
|
+ }
|
|
|
|
|
|
const handleSubmit = async (values: API.LoginParams) => {
|
|
|
- setSubmitting(true);
|
|
|
+ setSubmitting(true)
|
|
|
try {
|
|
|
// 登录
|
|
|
- const msg = await login({ ...values, type });
|
|
|
+ const msg = await login({ ...values, type })
|
|
|
+
|
|
|
if (msg.status === 'ok') {
|
|
|
const defaultloginSuccessMessage = intl.formatMessage({
|
|
|
id: 'pages.login.success',
|
|
|
- defaultMessage: '登录成功!',
|
|
|
- });
|
|
|
- message.success(defaultloginSuccessMessage);
|
|
|
- await fetchUserInfo();
|
|
|
- goto();
|
|
|
- return;
|
|
|
+ defaultMessage: '登录成功'
|
|
|
+ })
|
|
|
+ message.success(defaultloginSuccessMessage)
|
|
|
+ await fetchUserInfo()
|
|
|
+ goto()
|
|
|
+ return
|
|
|
}
|
|
|
// 如果失败去设置用户错误信息
|
|
|
- setUserLoginState(msg);
|
|
|
+ setUserLoginState(msg)
|
|
|
} catch (error) {
|
|
|
- const defaultloginFailureMessage = intl.formatMessage({
|
|
|
- id: 'pages.login.failure',
|
|
|
- defaultMessage: '登录失败,请重试!',
|
|
|
- });
|
|
|
-
|
|
|
- message.error(defaultloginFailureMessage);
|
|
|
+ // const defaultloginFailureMessage = intl.formatMessage({
|
|
|
+ // id: 'pages.login.failure',
|
|
|
+ // defaultMessage: '登录失败,请重试!'
|
|
|
+ // })
|
|
|
+ // message.error(defaultloginFailureMessage)
|
|
|
}
|
|
|
- setSubmitting(false);
|
|
|
- };
|
|
|
- const { status, type: loginType } = userLoginState;
|
|
|
+ setSubmitting(false)
|
|
|
+ }
|
|
|
+ const { status, type: loginType } = userLoginState
|
|
|
|
|
|
return (
|
|
|
<div className={styles.container}>
|
|
@@ -92,7 +92,7 @@ const Login: React.FC = () => {
|
|
|
<div className={styles.content}>
|
|
|
<div className={styles.top}>
|
|
|
<div className={styles.header}>
|
|
|
- <Link to="/">
|
|
|
+ <Link to="/" className="flex justify-center">
|
|
|
<img alt="logo" className={styles.logo} src="/logo.svg" />
|
|
|
<span className={styles.title}>CLD.V2</span>
|
|
|
</Link>
|
|
@@ -105,34 +105,33 @@ const Login: React.FC = () => {
|
|
|
<div className={styles.main}>
|
|
|
<ProForm
|
|
|
initialValues={{
|
|
|
- autoLogin: true,
|
|
|
+ autoLogin: true
|
|
|
}}
|
|
|
submitter={{
|
|
|
searchConfig: {
|
|
|
submitText: intl.formatMessage({
|
|
|
id: 'pages.login.submit',
|
|
|
- defaultMessage: '登录',
|
|
|
- }),
|
|
|
+ defaultMessage: '登录'
|
|
|
+ })
|
|
|
},
|
|
|
render: (_, dom) => dom.pop(),
|
|
|
submitButtonProps: {
|
|
|
loading: submitting,
|
|
|
size: 'large',
|
|
|
style: {
|
|
|
- width: '100%',
|
|
|
- },
|
|
|
- },
|
|
|
- }}
|
|
|
- onFinish={async (values) => {
|
|
|
- handleSubmit(values as API.LoginParams);
|
|
|
+ width: '100%'
|
|
|
+ }
|
|
|
+ }
|
|
|
}}
|
|
|
- >
|
|
|
+ onFinish={async values => {
|
|
|
+ handleSubmit(values as API.LoginParams)
|
|
|
+ }}>
|
|
|
<Tabs activeKey={type} onChange={setType}>
|
|
|
<Tabs.TabPane
|
|
|
key="account"
|
|
|
tab={intl.formatMessage({
|
|
|
id: 'pages.login.accountLogin.tab',
|
|
|
- defaultMessage: '账户密码登录',
|
|
|
+ defaultMessage: '账户密码登录'
|
|
|
})}
|
|
|
/>
|
|
|
{/* <Tabs.TabPane
|
|
@@ -148,7 +147,7 @@ const Login: React.FC = () => {
|
|
|
<LoginMessage
|
|
|
content={intl.formatMessage({
|
|
|
id: 'pages.login.accountLogin.errorMessage',
|
|
|
- defaultMessage: '账户或密码错误(admin/ant.design)',
|
|
|
+ defaultMessage: '账户或密码错误(admin/ant.design)'
|
|
|
})}
|
|
|
/>
|
|
|
)}
|
|
@@ -158,11 +157,11 @@ const Login: React.FC = () => {
|
|
|
name="username"
|
|
|
fieldProps={{
|
|
|
size: 'large',
|
|
|
- prefix: <UserOutlined className={styles.prefixIcon} />,
|
|
|
+ prefix: <UserOutlined className={styles.prefixIcon} />
|
|
|
}}
|
|
|
placeholder={intl.formatMessage({
|
|
|
id: 'pages.login.username.placeholder',
|
|
|
- defaultMessage: '用户名: admin or user',
|
|
|
+ defaultMessage: '用户名: admin or user'
|
|
|
})}
|
|
|
rules={[
|
|
|
{
|
|
@@ -172,19 +171,19 @@ const Login: React.FC = () => {
|
|
|
id="pages.login.username.required"
|
|
|
defaultMessage="请输入用户名!"
|
|
|
/>
|
|
|
- ),
|
|
|
- },
|
|
|
+ )
|
|
|
+ }
|
|
|
]}
|
|
|
/>
|
|
|
<ProFormText.Password
|
|
|
name="password"
|
|
|
fieldProps={{
|
|
|
size: 'large',
|
|
|
- prefix: <LockOutlined className={styles.prefixIcon} />,
|
|
|
+ prefix: <LockOutlined className={styles.prefixIcon} />
|
|
|
}}
|
|
|
placeholder={intl.formatMessage({
|
|
|
id: 'pages.login.password.placeholder',
|
|
|
- defaultMessage: '密码: ant.design',
|
|
|
+ defaultMessage: '密码: ant.design'
|
|
|
})}
|
|
|
rules={[
|
|
|
{
|
|
@@ -194,25 +193,25 @@ const Login: React.FC = () => {
|
|
|
id="pages.login.password.required"
|
|
|
defaultMessage="请输入密码!"
|
|
|
/>
|
|
|
- ),
|
|
|
- },
|
|
|
+ )
|
|
|
+ }
|
|
|
]}
|
|
|
/>
|
|
|
</>
|
|
|
)}
|
|
|
-
|
|
|
+ {/*
|
|
|
{status === 'error' && loginType === 'mobile' && <LoginMessage content="验证码错误" />}
|
|
|
{type === 'mobile' && (
|
|
|
<>
|
|
|
<ProFormText
|
|
|
fieldProps={{
|
|
|
size: 'large',
|
|
|
- prefix: <MobileOutlined className={styles.prefixIcon} />,
|
|
|
+ prefix: <MobileOutlined className={styles.prefixIcon} />
|
|
|
}}
|
|
|
name="mobile"
|
|
|
placeholder={intl.formatMessage({
|
|
|
id: 'pages.login.phoneNumber.placeholder',
|
|
|
- defaultMessage: '手机号',
|
|
|
+ defaultMessage: '手机号'
|
|
|
})}
|
|
|
rules={[
|
|
|
{
|
|
@@ -222,7 +221,7 @@ const Login: React.FC = () => {
|
|
|
id="pages.login.phoneNumber.required"
|
|
|
defaultMessage="请输入手机号!"
|
|
|
/>
|
|
|
- ),
|
|
|
+ )
|
|
|
},
|
|
|
{
|
|
|
pattern: /^1\d{10}$/,
|
|
@@ -231,33 +230,33 @@ const Login: React.FC = () => {
|
|
|
id="pages.login.phoneNumber.invalid"
|
|
|
defaultMessage="手机号格式错误!"
|
|
|
/>
|
|
|
- ),
|
|
|
- },
|
|
|
+ )
|
|
|
+ }
|
|
|
]}
|
|
|
/>
|
|
|
<ProFormCaptcha
|
|
|
fieldProps={{
|
|
|
size: 'large',
|
|
|
- prefix: <LockOutlined className={styles.prefixIcon} />,
|
|
|
+ prefix: <LockOutlined className={styles.prefixIcon} />
|
|
|
}}
|
|
|
captchaProps={{
|
|
|
- size: 'large',
|
|
|
+ size: 'large'
|
|
|
}}
|
|
|
placeholder={intl.formatMessage({
|
|
|
id: 'pages.login.captcha.placeholder',
|
|
|
- defaultMessage: '请输入验证码',
|
|
|
+ defaultMessage: '请输入验证码'
|
|
|
})}
|
|
|
captchaTextRender={(timing, count) => {
|
|
|
if (timing) {
|
|
|
return `${count} ${intl.formatMessage({
|
|
|
id: 'pages.getCaptchaSecondText',
|
|
|
- defaultMessage: '获取验证码',
|
|
|
- })}`;
|
|
|
+ defaultMessage: '获取验证码'
|
|
|
+ })}`
|
|
|
}
|
|
|
return intl.formatMessage({
|
|
|
id: 'pages.login.phoneLogin.getVerificationCode',
|
|
|
- defaultMessage: '获取验证码',
|
|
|
- });
|
|
|
+ defaultMessage: '获取验证码'
|
|
|
+ })
|
|
|
}}
|
|
|
name="captcha"
|
|
|
rules={[
|
|
@@ -268,34 +267,32 @@ const Login: React.FC = () => {
|
|
|
id="pages.login.captcha.required"
|
|
|
defaultMessage="请输入验证码!"
|
|
|
/>
|
|
|
- ),
|
|
|
- },
|
|
|
+ )
|
|
|
+ }
|
|
|
]}
|
|
|
- onGetCaptcha={async (phone) => {
|
|
|
+ onGetCaptcha={async phone => {
|
|
|
const result = await getFakeCaptcha({
|
|
|
- phone,
|
|
|
- });
|
|
|
+ phone
|
|
|
+ })
|
|
|
if (result === false) {
|
|
|
- return;
|
|
|
+ return
|
|
|
}
|
|
|
- message.success('获取验证码成功!验证码为:1234');
|
|
|
+ message.success('获取验证码成功!验证码为:1234')
|
|
|
}}
|
|
|
/>
|
|
|
</>
|
|
|
- )}
|
|
|
+ )} */}
|
|
|
<div
|
|
|
style={{
|
|
|
- marginBottom: 24,
|
|
|
- }}
|
|
|
- >
|
|
|
+ marginBottom: 24
|
|
|
+ }}>
|
|
|
<ProFormCheckbox noStyle name="autoLogin">
|
|
|
<FormattedMessage id="pages.login.rememberMe" defaultMessage="自动登录" />
|
|
|
</ProFormCheckbox>
|
|
|
<a
|
|
|
style={{
|
|
|
- float: 'right',
|
|
|
- }}
|
|
|
- >
|
|
|
+ float: 'right'
|
|
|
+ }}>
|
|
|
<FormattedMessage id="pages.login.forgotPassword" defaultMessage="忘记密码" />
|
|
|
</a>
|
|
|
</div>
|
|
@@ -310,7 +307,7 @@ const Login: React.FC = () => {
|
|
|
</div>
|
|
|
<Footer />
|
|
|
</div>
|
|
|
- );
|
|
|
-};
|
|
|
+ )
|
|
|
+}
|
|
|
|
|
|
-export default Login;
|
|
|
+export default Login
|