Files
2026-07-23 20:41:25 +08:00

11 lines
272 B
TypeScript

import createAxios from '@/utils/request';
import type ISupplier from '@/domain/iSupplier.ts';
/** 供应商下拉选项 */
export async function getSupplierOptions() {
return createAxios<ISupplier[]>({
url: '/customer/supplier/options',
method: 'get',
});
}