| import React, { useEffect } from 'react'; |
| import { Form, Modal } from 'antd'; |
| import { useIntl } from '@umijs/max'; |
| import { ProForm, ProFormSelect } from '@ant-design/pro-components'; |
| |
| /* * |
| * |
| * @author whiteshader@163.com |
| * @datetime 2023/02/06 |
| * |
| * */ |
| |
| export type FormValueType = any & Partial<API.System.Dept>; |
| |
| export type AuthRoleFormProps = { |
| onCancel: (flag?: boolean, formVals?: FormValueType) => void; |
| onSubmit: (values: FormValueType) => Promise<void>; |
| open: boolean; |
| roleIds: number[]; |
| roles: string[]; |
| }; |
| |
| const AuthRoleForm: React.FC<AuthRoleFormProps> = (props) => { |
| const [form] = Form.useForm(); |
| |
| useEffect(() => { |
| form.resetFields(); |
| form.setFieldValue( 'roleIds', props.roleIds); |
| }); |
| |
| const intl = useIntl(); |
| const handleOk = () => { |
| form.submit(); |
| }; |
| const handleCancel = () => { |
| props.onCancel(); |
| }; |
| const handleFinish = async (values: Record<string, any>) => { |
| props.onSubmit(values as FormValueType); |
| }; |
| |
| return ( |
| <Modal |
| width={640} |
| title={intl.formatMessage({ |
| id: 'system.user.auth.role', |
| defaultMessage: '分配角色', |
| })} |
| open={props.open} |
| destroyOnClose |
| forceRender |
| onOk={handleOk} |
| onCancel={handleCancel} |
| > |
| <ProForm |
| form={form} |
| grid={true} |
| layout="horizontal" |
| onFinish={handleFinish} |
| initialValues={{ |
| login_password: '', |
| confirm_password: '', |
| }} |
| > |
| <ProFormSelect |
| name="roleIds" |
| mode="multiple" |
| label={intl.formatMessage({ |
| id: 'system.user.role', |
| defaultMessage: '角色', |
| })} |
| options={props.roles} |
| placeholder="请选择角色" |
| rules={[{ required: true, message: '请选择角色!' }]} |
| /> |
| </ProForm> |
| </Modal> |
| ); |
| }; |
| |
| export default AuthRoleForm; |