first version

This commit is contained in:
liu
2026-07-23 20:41:25 +08:00
parent 00a0938a1b
commit 10cff754a4
211 changed files with 11577 additions and 842 deletions
+10
View File
@@ -0,0 +1,10 @@
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',
});
}