客户评价

This commit is contained in:
‘huanghaiixia’
2025-12-18 17:58:17 +08:00
parent 55bfa5a22d
commit a1151e18a3
9 changed files with 382 additions and 100 deletions

View File

@ -15,7 +15,17 @@ enum Api {
DataLog = '/sales/gradeSystem/datalog',
}
export async function getLngGradeSystemPageList(params: LngGradeSystemPageParams, mode: ErrorMessageMode = 'modal') {
return defHttp.get<LngGradeSystemPageResult>(
{
url: Api.List,
params,
},
{
errorMessageMode: mode,
},
);
}
/**
* @description: 查询LngGradeSystem分页列表
*/