import FormButtons from '@/components/form-buttons'; import SealInput from '@/components/seal-form/seal-input'; import { PasswordReg } from '@/config'; import { INPUT_WIDTH } from '@/constants'; import { updatePassword } from '@/pages/login/apis'; import { useIntl } from '@umijs/max'; import { Form, message } from 'antd'; import React from 'react'; interface ProfileProps { username?: string; new_password: string; current_password: string; } const Profile: React.FC = () => { const [form] = Form.useForm(); const intl = useIntl(); const handleOnFinish = async (values: any) => { try { await updatePassword({ new_password: values.new_password, current_password: values.current_password }); message.success(intl.formatMessage({ id: 'common.message.success' })); } catch (error) {} }; const handleOnFinishFailed = (errorInfo: any) => { console.log('handleOnFinishFailed', errorInfo); }; const handleCancel = () => { form.resetFields(); }; return (