Files

11 lines
292 B
TypeScript

import createAxios from '@/utils/request';
import type IStore from '@/domain/iStore.ts';
/** 门店下拉选项(订单/账单/通知等筛选用) */
export async function getStoreOptions() {
return createAxios<IStore[]>({
url: '/customer/store/options',
method: 'get',
});
}