2023-06-25 16:43:49 +08:00
|
|
|
import SpuSelect from './SpuSelect.vue'
|
|
|
|
import SpuAndSkuList from './SpuAndSkuList.vue'
|
2023-07-05 18:24:32 +08:00
|
|
|
import { PropertyAndValues } from '@/views/mall/product/spu/components'
|
2023-06-25 16:43:49 +08:00
|
|
|
|
|
|
|
type SpuProperty<T> = {
|
|
|
|
spuId: number
|
|
|
|
spuDetail: T
|
2023-07-05 18:24:32 +08:00
|
|
|
propertyList: PropertyAndValues[]
|
2023-06-25 16:43:49 +08:00
|
|
|
}
|
2023-07-02 21:46:04 +08:00
|
|
|
|
2023-06-25 16:43:49 +08:00
|
|
|
/**
|
|
|
|
* 提供商品活动商品选择通用组件
|
|
|
|
*/
|
|
|
|
export { SpuSelect, SpuAndSkuList, SpuProperty }
|