57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
export { LoginApi } from './login/index'
|
|
export {
|
|
productabsorbcontrast,
|
|
SelectProductListApi,
|
|
ColorListApi,
|
|
ColorDetailedApi,
|
|
ColorSamplingSaveApi,
|
|
TextureSaveApi,
|
|
FindColorListApi,
|
|
} from './product/index'
|
|
|
|
export { ShoppingCartUpdateApi, ShoppingCartDeleteApi, ShoppingCartListApi } from './shopping/index'
|
|
|
|
export {
|
|
DeliverNoticeOrderList,
|
|
DeliverNoticeOrder,
|
|
DeliveryNoticeOrderUpload,
|
|
DeliveryNoticeOrderAudit,
|
|
DeliveryNoticeOrderRejection,
|
|
EnumDeliveryNoticeTypeList,
|
|
EnumSaleorderStatus,
|
|
} from './delivery/index'
|
|
|
|
export {
|
|
EnumTakeGoodsOrderStatus,
|
|
EnumTakeGoodsOrderTypeList,
|
|
TakeGoodsOrderList,
|
|
TakeGoodsOrderRefuse,
|
|
TakeGoodsOrderAudit,
|
|
TakeGoodsOrder,
|
|
UserInvitationInfoRecord,
|
|
GenBarCodeOrQrCode,
|
|
} from './takeDelivery/index'
|
|
|
|
import { useRequest } from '@/use/useHttp'
|
|
/**
|
|
* 系列列表
|
|
* @returns
|
|
*/
|
|
export const kindListApi = () => {
|
|
return useRequest({
|
|
url: `/v1/mp/product/kind/list`,
|
|
method: 'get',
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 面料列表
|
|
* @returns
|
|
*/
|
|
export const ProductListApi = () => {
|
|
return useRequest({
|
|
url: `/v1/mp/product/list`,
|
|
method: 'get',
|
|
})
|
|
}
|