11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
import createAxios from '@/utils/request';
|
|
import type ICustomerLevel from '@/domain/iCustomerLevel.ts';
|
|
|
|
/** 客户等级下拉选项(门店表单 / 价格矩阵用) */
|
|
export async function getLevelOptions() {
|
|
return createAxios<ICustomerLevel[]>({
|
|
url: '/customer/level/options',
|
|
method: 'get',
|
|
});
|
|
}
|