国际采购 销售代码生成

This commit is contained in:
‘huanghaiixia’
2026-02-03 17:59:05 +08:00
parent 230af004b9
commit 98564e7a5f
19 changed files with 3709 additions and 10 deletions

View File

@ -5,6 +5,7 @@ import { ErrorMessageMode } from '/#/axios';
enum Api {
// Page = '/approve/appro/page',
Page = '/magic-api/sales/lngApproPage',
PageFile = '/magic-api/sales/lngApproPage/modal',
List = '/approve/appro/list',
Info = '/approve/appro/info',
LngAppro = '/approve/appro',
@ -84,6 +85,17 @@ export async function getCompDept(userId: String, mode: ErrorMessageMode = 'moda
},
);
}
export async function getLngApproPageFile(params: LngApproPageParams, mode: ErrorMessageMode = 'modal') {
return defHttp.get<LngApproPageResult>(
{
url: Api.PageFile,
params,
},
{
errorMessageMode: mode,
},
);
}
/**
* @description: 查询LngAppro分页列表
*/