Files
certd/packages/ui/certd-client/src/components/plugins/lib/index.ts
xiaojunnuo c9d18f6d8a chore: 1
2024-10-03 01:29:12 +08:00

33 lines
658 B
TypeScript

import { request } from "/@/api/service";
export type ComponentPropsType = {
type: string;
typeName: string;
action: string;
form: any;
value?: any;
};
export type RequestHandleReq<T = any> = {
type: string;
typeName: string;
action: string;
data?: any;
input: T;
};
export async function doRequest(req: RequestHandleReq, opts?: any = {}) {
const url = req.type === "access" ? "/pi/handle/access" : "/pi/handle/plugin";
const { typeName, action, data, input } = req;
const res = await request({
url,
method: "post",
data: {
typeName,
action,
data,
input
},
...opts
});
return res;
}