Files
certd/packages/ui/certd-client/src/components/plugins/lib/index.ts
2026-03-16 23:27:24 +08:00

37 lines
720 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;
record?: any;
fromType?: string; // sys、user
};
export async function doRequest(req: RequestHandleReq, opts: any = {}) {
const url = `/pi/handle/${req.type}`;
const { typeName, action, data, input, record, fromType } = req;
const res = await request({
url,
method: "post",
data: {
typeName,
action,
data,
input,
record,
fromType,
},
...opts,
});
return res;
}