fix: 初始化

This commit is contained in:
jiaojinfeng
2023-05-30 19:27:03 +08:00
commit 28db653900
4436 changed files with 500218 additions and 0 deletions

View File

@ -0,0 +1,29 @@
// import request from '@/utils/request';
import { useHttp } from '@crami/http';
export interface ExpRule {
companyId: string;
connect: string;
filter: [
{
andOrFlag: string;
field: string;
operation: string;
value: string;
},
];
lang: string;
objectType: string;
page: number;
pageNo: number;
pageSize: number;
data: any;
}
export async function ExpDataAPI(data: ExpRule) {
return await useHttp({
url: '/exportservice/export/exportGridData',
method: 'post',
data,
});
}