mirror of
https://github.com/certd/certd.git
synced 2026-05-18 06:17:31 +08:00
110 lines
2.7 KiB
React
110 lines
2.7 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
|
||
|
|
},
|
||
|
|
table: { size: "small" },
|
||
|
|
columns: {
|
||
|
|
id: {
|
||
|
|
title: "ID",
|
||
|
|
key: "id",
|
||
|
|
type: "number",
|
||
|
|
column: {
|
||
|
|
width: 50
|
||
|
|
},
|
||
|
|
form: {
|
||
|
|
show: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
user: {
|
||
|
|
title: "用户信息",
|
||
|
|
children: {
|
||
|
|
name: {
|
||
|
|
title: "姓名",
|
||
|
|
type: "text"
|
||
|
|
},
|
||
|
|
age: {
|
||
|
|
title: "年龄",
|
||
|
|
type: "number"
|
||
|
|
},
|
||
|
|
switch: {
|
||
|
|
title: "开关",
|
||
|
|
type: "dict-switch",
|
||
|
|
dict: dict({
|
||
|
|
data: [
|
||
|
|
{ value: true, label: "开启" },
|
||
|
|
{ value: false, label: "关闭" }
|
||
|
|
]
|
||
|
|
}),
|
||
|
|
column: {
|
||
|
|
component: {
|
||
|
|
name: "fs-dict-switch",
|
||
|
|
vModel: "checked"
|
||
|
|
},
|
||
|
|
valueChange(context) {
|
||
|
|
console.log("column value changed:", context);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
address: {
|
||
|
|
title: "地址",
|
||
|
|
children: {
|
||
|
|
area: {
|
||
|
|
title: "地区",
|
||
|
|
children: {
|
||
|
|
province: {
|
||
|
|
title: "省",
|
||
|
|
search: { show: true },
|
||
|
|
type: "dict-select",
|
||
|
|
dict: dict({
|
||
|
|
data: [
|
||
|
|
{ value: "广东省", label: "广东省" },
|
||
|
|
{ value: "浙江省", label: "浙江省" }
|
||
|
|
]
|
||
|
|
})
|
||
|
|
},
|
||
|
|
city: {
|
||
|
|
title: "市",
|
||
|
|
search: { show: true },
|
||
|
|
type: "text"
|
||
|
|
},
|
||
|
|
county: {
|
||
|
|
title: "区",
|
||
|
|
search: { show: true },
|
||
|
|
type: "text"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
street: {
|
||
|
|
title: "街道",
|
||
|
|
type: "text"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|