🔱: [client] sync upgrade with 12 commits [trident-sync]

refactor: 1.11.0
refactor: 1.11.0
refactor: 1.11.0
refactor: 1.11.0
refactor: ts化
refactor: ts化
feat: 全面TS化
perf: 全面ts化
refactor: 继续优化ts
perf: ts定义优化
fix: 修复wangeditor无法上传视频的bug
This commit is contained in:
GitHub Actions Bot
2023-03-16 19:24:01 +00:00
parent f344c58f26
commit 6ec697b010
375 changed files with 2210 additions and 3618 deletions
@@ -0,0 +1,111 @@
import * as api from "./api";
import { AddReq, CreateCrudOptionsProps, CreateCrudOptionsRet, DelReq, dict, EditReq, UserPageQuery, UserPageRes, ValueChangeContext } 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) => {
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: {
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"
}
}
}
}
}
};
}