This commit is contained in:
史典卓
2024-12-05 16:32:02 +08:00
parent 0a9b0fe0ee
commit 15b4a87988
17 changed files with 746 additions and 11 deletions

View File

@@ -13,9 +13,9 @@ export type ListFormProps = {
onCancel: (flag?: boolean, formVals?: unknown) => void;
onSubmit: (values: API.Management.Manage) => Promise<void>;
open: boolean;
values: Partial<API.Management.Manage>;
jobGroupOptions: DictOptionType[];
statusOptions: DictValueEnumObj;
// values: Partial<API.Management.Manage>;
// jobGroupOptions: DictOptionType[];
// statusOptions: DictValueEnumObj;
};
const waitTime = (time: number = 100) => {

View File

@@ -60,6 +60,7 @@ function ManagementList() {
open={modalVisible}
onSubmit={(values) => {
console.log(values)
return Promise.resolve()
}}
onCancel={() => {
setModalVisible(false);