mirror of https://github.com/certd/certd
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
import * as api from "./api";
|
|
import { AddReq, CreateCrudOptionsProps, CreateCrudOptionsRet, DelReq, dict, EditReq, UserPageQuery, UserPageRes } from "@fast-crud/fast-crud";
|
|
import { useI18n } from "vue-i18n";
|
|
|
|
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);
|
|
};
|
|
|
|
const { t } = useI18n();
|
|
|
|
return {
|
|
crudOptions: {
|
|
request: {
|
|
pageRequest,
|
|
addRequest,
|
|
editRequest,
|
|
delRequest
|
|
},
|
|
columns: {
|
|
id: {
|
|
title: "ID",
|
|
key: "id",
|
|
type: "number",
|
|
column: {
|
|
width: 50
|
|
},
|
|
form: {
|
|
show: false
|
|
}
|
|
},
|
|
name: {
|
|
title: t("app.crud.i18n.name"),
|
|
type: "text",
|
|
search: { show: true }
|
|
},
|
|
city: {
|
|
title: t("app.crud.i18n.city"),
|
|
type: "dict-select",
|
|
search: { show: true },
|
|
dict: dict({
|
|
value: "id",
|
|
label: "text",
|
|
data: [
|
|
{ id: "sz", text: "深圳", color: "success" },
|
|
{ id: "gz", text: "广州", color: "blue" },
|
|
{ id: "bj", text: "北京" },
|
|
{ id: "wh", text: "武汉" },
|
|
{ id: "sh", text: "上海" }
|
|
]
|
|
})
|
|
},
|
|
radio: {
|
|
title: t("app.crud.i18n.status"),
|
|
search: { show: true },
|
|
type: "dict-radio",
|
|
dict: dict({
|
|
url: "/mock/dicts/OpenStatusEnum?single"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|