mirror of https://github.com/certd/certd
71 lines
1.6 KiB
TypeScript
71 lines
1.6 KiB
TypeScript
import * as api from "./api";
|
|
import { AddReq, CreateCrudOptionsProps, CreateCrudOptionsRet, DelReq, dict, EditReq, UserPageQuery, UserPageRes } from "@fast-crud/fast-crud";
|
|
|
|
export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOptionsRet {
|
|
const pageRequest = async (query: UserPageQuery): Promise<UserPageRes> => {
|
|
return await api.GetList(query);
|
|
};
|
|
const editRequest = async ({ form, row }: EditReq) => {
|
|
if (form.id == null) {
|
|
form.id = row.id;
|
|
}
|
|
return await api.UpdateObj(form);
|
|
};
|
|
const delRequest = async ({ row }: DelReq) => {
|
|
return await api.DelObj(row.id);
|
|
};
|
|
|
|
const addRequest = async ({ form }: AddReq) => {
|
|
return await api.AddObj(form);
|
|
};
|
|
|
|
return {
|
|
crudOptions: {
|
|
settings: {
|
|
viewFormUseCellComponent: true
|
|
},
|
|
request: {
|
|
pageRequest,
|
|
addRequest,
|
|
editRequest,
|
|
delRequest
|
|
},
|
|
columns: {
|
|
id: {
|
|
title: "ID",
|
|
key: "id",
|
|
type: "number",
|
|
column: {
|
|
width: 50
|
|
},
|
|
form: {
|
|
show: false
|
|
}
|
|
},
|
|
text: {
|
|
title: "text",
|
|
type: "text"
|
|
},
|
|
readonly: {
|
|
title: "只读字段",
|
|
type: "text",
|
|
readonly: true
|
|
},
|
|
useCell: {
|
|
title: "查看使用cell组件",
|
|
type: "dict-select",
|
|
readonly: true,
|
|
dict: dict({
|
|
url: "/mock/dicts/OpenStatusEnum"
|
|
}),
|
|
viewForm: {
|
|
component: {
|
|
vModel: "modelValue"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|