|
@@ -8,14 +8,31 @@
|
|
|
:schema="allSchemas.formSchema"
|
|
|
>
|
|
|
<!-- 先选择 -->
|
|
|
- <template #spuIds>
|
|
|
+ <template #spuId>
|
|
|
<el-button @click="spuSelectRef.open()">选择商品</el-button>
|
|
|
<SpuAndSkuList
|
|
|
ref="spuAndSkuListRef"
|
|
|
:rule-config="ruleConfig"
|
|
|
:spu-list="spuList"
|
|
|
:spu-property-list-p="spuPropertyList"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <el-table-column align="center" label="秒杀库存" min-width="168">
|
|
|
+ <template #default="{ row: sku }">
|
|
|
+ <el-input-number v-model="sku.productConfig.stock" :min="0" class="w-100%" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column align="center" label="秒杀价格(元)" min-width="168">
|
|
|
+ <template #default="{ row: sku }">
|
|
|
+ <el-input-number
|
|
|
+ v-model="sku.productConfig.seckillPrice"
|
|
|
+ :min="0"
|
|
|
+ :precision="2"
|
|
|
+ :step="0.1"
|
|
|
+ class="w-100%"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </SpuAndSkuList>
|
|
|
</template>
|
|
|
</Form>
|
|
|
<template #footer>
|
|
@@ -23,15 +40,17 @@
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
</template>
|
|
|
</Dialog>
|
|
|
- <SpuSelect ref="spuSelectRef" @confirm="selectSpu" />
|
|
|
+ <SpuSelect ref="spuSelectRef" :isSelectSku="true" @confirm="selectSpu" />
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
import { SpuAndSkuList, SpuProperty, SpuSelect } from '../../components'
|
|
|
import { allSchemas, rules } from './seckillActivity.data'
|
|
|
|
|
|
import * as SeckillActivityApi from '@/api/mall/promotion/seckill/seckillActivity'
|
|
|
+import { SeckillProductVO } from '@/api/mall/promotion/seckill/seckillActivity'
|
|
|
import * as ProductSpuApi from '@/api/mall/product/spu'
|
|
|
import { getPropertyList, RuleConfig } from '@/views/mall/product/spu/components'
|
|
|
+import { convertToInteger } from '@/utils'
|
|
|
|
|
|
defineOptions({ name: 'PromotionSeckillActivityForm' })
|
|
|
|
|
@@ -43,6 +62,9 @@ const dialogTitle = ref('') // 弹窗的标题
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
+
|
|
|
+// ================= 商品选择相关 =================
|
|
|
+
|
|
|
const spuSelectRef = ref() // 商品和属性选择 Ref
|
|
|
const spuAndSkuListRef = ref() // sku 秒杀配置组件Ref
|
|
|
const ruleConfig: RuleConfig[] = [
|
|
@@ -57,6 +79,46 @@ const ruleConfig: RuleConfig[] = [
|
|
|
message: '商品秒杀价格必须大于 0.01 !!!'
|
|
|
}
|
|
|
]
|
|
|
+const spuList = ref<SeckillActivityApi.SpuExtension[]>([]) // 选择的 spu
|
|
|
+const spuPropertyList = ref<SpuProperty<SeckillActivityApi.SpuExtension>[]>([])
|
|
|
+const selectSpu = (spuId: number, skuIds: number[]) => {
|
|
|
+ formRef.value.setValues({ spuId })
|
|
|
+ getSpuDetails(spuId, skuIds)
|
|
|
+}
|
|
|
+/**
|
|
|
+ * 获取 SPU 详情
|
|
|
+ * @param spuIds
|
|
|
+ */
|
|
|
+const getSpuDetails = async (spuId: number, skuIds: number[]) => {
|
|
|
+ const spuProperties: SpuProperty<SeckillActivityApi.SpuExtension>[] = []
|
|
|
+ const res = (await ProductSpuApi.getSpuDetailList([spuId])) as SeckillActivityApi.SpuExtension[]
|
|
|
+ if (res.length == 0) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ spuList.value = []
|
|
|
+ // 因为只能选择一个
|
|
|
+ const spu = res[0]
|
|
|
+ const selectSkus = spu?.skus?.filter((sku) => skuIds.includes(sku.id!))
|
|
|
+ selectSkus?.forEach((sku) => {
|
|
|
+ const config: SeckillActivityApi.SeckillProductVO = {
|
|
|
+ skuId: sku.id!,
|
|
|
+ stock: 0,
|
|
|
+ seckillPrice: 0
|
|
|
+ }
|
|
|
+ sku.productConfig = config
|
|
|
+ })
|
|
|
+ spu.skus = selectSkus as SeckillActivityApi.SkuExtension[]
|
|
|
+ spuProperties.push({
|
|
|
+ spuId: spu.id!,
|
|
|
+ spuDetail: spu,
|
|
|
+ propertyList: getPropertyList(spu)
|
|
|
+ })
|
|
|
+ spuList.value.push(...res)
|
|
|
+ spuPropertyList.value = spuProperties
|
|
|
+}
|
|
|
+
|
|
|
+// ================= end =================
|
|
|
+
|
|
|
/** 打开弹窗 */
|
|
|
const open = async (type: string, id?: number) => {
|
|
|
dialogVisible.value = true
|
|
@@ -76,38 +138,6 @@ const open = async (type: string, id?: number) => {
|
|
|
}
|
|
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
|
|
|
|
-const spuList = ref<SeckillActivityApi.SpuExtension[]>([]) // 选择的 spu
|
|
|
-const spuPropertyList = ref<SpuProperty<SeckillActivityApi.SpuExtension>[]>([])
|
|
|
-const selectSpu = (spuIds: number[]) => {
|
|
|
- formRef.value.setValues({ spuIds })
|
|
|
- getSpuDetails(spuIds)
|
|
|
-}
|
|
|
-/**
|
|
|
- * 获取 SPU 详情
|
|
|
- * TODO 获取 SPU 详情,放到各自活动表单来做,让 SpuAndSkuList 职责单一点
|
|
|
- * @param spuIds
|
|
|
- */
|
|
|
-const getSpuDetails = async (spuIds: number[]) => {
|
|
|
- const spuProperties: SpuProperty<SeckillActivityApi.SpuExtension>[] = []
|
|
|
- const res = (await ProductSpuApi.getSpuDetailList(spuIds)) as SeckillActivityApi.SpuExtension[]
|
|
|
- spuList.value = []
|
|
|
- res?.forEach((spu) => {
|
|
|
- // 初始化每个 sku 秒杀配置
|
|
|
- spu.skus?.forEach((sku) => {
|
|
|
- const config: SeckillActivityApi.SeckillProductVO = {
|
|
|
- spuId: spu.id!,
|
|
|
- skuId: sku.id!,
|
|
|
- stock: 0,
|
|
|
- seckillPrice: 0
|
|
|
- }
|
|
|
- sku.productConfig = config
|
|
|
- })
|
|
|
- spuProperties.push({ spuId: spu.id!, spuDetail: spu, propertyList: getPropertyList(spu) })
|
|
|
- })
|
|
|
- spuList.value.push(...res)
|
|
|
- spuPropertyList.value = spuProperties
|
|
|
-}
|
|
|
-
|
|
|
/** 重置表单 */
|
|
|
const resetForm = async () => {
|
|
|
spuList.value = []
|
|
@@ -126,7 +156,12 @@ const submitForm = async () => {
|
|
|
formLoading.value = true
|
|
|
try {
|
|
|
const data = formRef.value.formModel as SeckillActivityApi.SeckillActivityVO
|
|
|
- data.spuIds = spuList.value.map((spu) => spu.id!)
|
|
|
+ const products = spuAndSkuListRef.value.getSkuConfigs('productConfig')
|
|
|
+ products.forEach((item: SeckillProductVO) => {
|
|
|
+ // 秒杀价格元转分
|
|
|
+ item.seckillPrice = convertToInteger(item.seckillPrice)
|
|
|
+ })
|
|
|
+ // 获取秒杀商品配置
|
|
|
data.products = spuAndSkuListRef.value.getSkuConfigs('productConfig')
|
|
|
if (formType.value === 'create') {
|
|
|
await SeckillActivityApi.createSeckillActivity(data)
|