2023-03-16 19:24:01 +00:00
|
|
|
import { CreateCrudOptionsProps, CreateCrudOptionsRet, uiContext } from "@fast-crud/fast-crud";
|
2023-01-29 15:26:45 +08:00
|
|
|
|
2023-03-16 19:24:01 +00:00
|
|
|
export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOptionsRet {
|
2023-01-29 15:26:45 +08:00
|
|
|
return {
|
|
|
|
|
crudOptions: {
|
|
|
|
|
mode: {
|
|
|
|
|
name: "local",
|
|
|
|
|
isMergeWhenUpdate: true,
|
|
|
|
|
isAppendWhenAdd: true
|
|
|
|
|
},
|
|
|
|
|
search: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
2023-03-16 19:24:01 +00:00
|
|
|
toolbar: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
2023-01-29 15:26:45 +08:00
|
|
|
pagination: {
|
|
|
|
|
show: false
|
|
|
|
|
},
|
|
|
|
|
columns: {
|
|
|
|
|
name: {
|
|
|
|
|
type: "text",
|
|
|
|
|
title: "联系人姓名"
|
|
|
|
|
},
|
|
|
|
|
mobile: {
|
|
|
|
|
type: "text",
|
|
|
|
|
title: "联系人手机号码"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|