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

Update README.md
This commit is contained in:
xiaojunnuo
2023-01-29 15:26:45 +08:00
parent 62e3945d30
commit d10e80bf83
567 changed files with 36438 additions and 2 deletions
@@ -0,0 +1,75 @@
import * as api from "./api";
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
},
columns: {
id: {
title: "ID",
key: "id",
type: "number",
column: {
width: 50
},
form: {
show: false
}
},
icon: {
title: "icon",
search: { show: true },
type: "text",
column: {
component: {
name: "fs-icon",
vModel: "icon",
style: "font-size:18px"
}
},
form: {
helper: {
render() {
return (
<a target={"_blank"} href={"https://iconify.design/icon-sets/ion/"}>
点击此处选择图标名称
</a>
);
}
}
}
},
svg: {
title: "svg",
search: { show: true },
type: "text",
column: {
component: {
name: "fs-icon",
vModel: "icon",
style: "font-size:18px"
}
}
}
}
}
};
}