mirror of
https://github.com/certd/certd.git
synced 2026-05-18 14:27:36 +08:00
74 lines
1.6 KiB
React
74 lines
1.6 KiB
React
|
|
import * as api from "./api";
|
||
|
|
import { dict } from "@fast-crud/fast-crud";
|
||
|
|
export default function ({ expose }) {
|
||
|
|
const pageRequest = async (query) => {
|
||
|
|
return await api.GetList(query);
|
||
|
|
};
|
||
|
|
const editRequest = async ({ form, row }) => {
|
||
|
|
form.id = row.id;
|
||
|
|
return await api.UpdateObj(form);
|
||
|
|
};
|
||
|
|
const delRequest = async ({ row }) => {
|
||
|
|
return await api.DelObj(row.id);
|
||
|
|
};
|
||
|
|
|
||
|
|
const addRequest = async ({ form }) => {
|
||
|
|
return await api.AddObj(form);
|
||
|
|
};
|
||
|
|
return {
|
||
|
|
crudOptions: {
|
||
|
|
request: {
|
||
|
|
pageRequest,
|
||
|
|
addRequest,
|
||
|
|
editRequest,
|
||
|
|
delRequest
|
||
|
|
},
|
||
|
|
columns: {
|
||
|
|
id: {
|
||
|
|
title: "ID",
|
||
|
|
key: "id",
|
||
|
|
type: "number",
|
||
|
|
column: {
|
||
|
|
width: 50
|
||
|
|
},
|
||
|
|
form: {
|
||
|
|
show: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
radio: {
|
||
|
|
title: "状态",
|
||
|
|
search: { show: true },
|
||
|
|
type: "dict-radio",
|
||
|
|
dict: dict({
|
||
|
|
url: "/mock/dicts/OpenStatusEnum?single"
|
||
|
|
})
|
||
|
|
},
|
||
|
|
button: {
|
||
|
|
title: "按钮样式",
|
||
|
|
search: { show: true },
|
||
|
|
type: "dict-radio",
|
||
|
|
dict: dict({
|
||
|
|
url: "/mock/dicts/OpenStatusEnum?single"
|
||
|
|
}),
|
||
|
|
form: {
|
||
|
|
component: {
|
||
|
|
optionName: "a-radio-button"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
bool: {
|
||
|
|
title: "布尔类型",
|
||
|
|
search: { show: true },
|
||
|
|
type: "dict-radio",
|
||
|
|
dict: dict({
|
||
|
|
data: [
|
||
|
|
{ value: true, label: "TRUE" },
|
||
|
|
{ value: false, label: "FALSE" }
|
||
|
|
]
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|