This commit is contained in:
2025-09-06 14:41:47 +08:00
parent 10538985ce
commit b4dadc415d
2 changed files with 10 additions and 5 deletions

View File

@ -8,7 +8,7 @@ import { MonthPlanVO, MonthPlanForm, MonthPlanQuery } from '@/api/out/monthPlan/
* @returns {*}
*/
export const listMonthPlan = (query?: MonthPlanQuery): AxiosPromise<MonthPlanVO[]> => {
export const listMonthPlan = (query?: any) => {
return request({
url: '/out/monthPlan/list',
method: 'get',
@ -120,4 +120,4 @@ export const purchaseValueA = (query) => {
method: 'get',
params: query
});
};
};