|
|
@ -2,12 +2,16 @@ import { PlusOutlined } from '@ant-design/icons'; |
|
|
import { Button, message, Input, Drawer } from 'antd'; |
|
|
import { Button, message, Input, Drawer } from 'antd'; |
|
|
import React, { useState, useRef } from 'react'; |
|
|
import React, { useState, useRef } from 'react'; |
|
|
import { useIntl, FormattedMessage } from 'umi'; |
|
|
import { useIntl, FormattedMessage } from 'umi'; |
|
|
import { PageContainer, FooterToolbar } from '@ant-design/pro-layout'; |
|
|
import { |
|
|
import type { ProColumns, ActionType } from '@ant-design/pro-table'; |
|
|
PageContainer, |
|
|
import ProTable from '@ant-design/pro-table'; |
|
|
FooterToolbar, |
|
|
import { ModalForm, ProFormText, ProFormTextArea } from '@ant-design/pro-form'; |
|
|
ProDescriptions, |
|
|
import type { ProDescriptionsItemProps } from '@ant-design/pro-descriptions'; |
|
|
ProTable, |
|
|
import ProDescriptions from '@ant-design/pro-descriptions'; |
|
|
ModalForm, |
|
|
|
|
|
ProFormText, |
|
|
|
|
|
ProFormTextArea, |
|
|
|
|
|
} from '@ant-design/pro-components'; |
|
|
|
|
|
import type { ProColumns, ActionType, ProDescriptionsItemProps } from '@ant-design/pro-components'; |
|
|
import type { FormValueType } from './components/UpdateForm'; |
|
|
import type { FormValueType } from './components/UpdateForm'; |
|
|
import UpdateForm from './components/UpdateForm'; |
|
|
import UpdateForm from './components/UpdateForm'; |
|
|
import { rule, addRule, updateRule, removeRule } from '@/services/ant-design-pro/api'; |
|
|
import { rule, addRule, updateRule, removeRule } from '@/services/ant-design-pro/api'; |
|
|
|