商品管理: 完成商品属性排列组合算法生成对应表数据

(cherry picked from commit ab1120b0ff)
This commit is contained in:
puhui999 2023-04-30 17:06:30 +08:00 committed by shizhong
parent 84ed1f7df3
commit d37540de1d

View File

@ -5,16 +5,19 @@
<UploadImg v-model="row.picUrl" height="80px" width="100%" />
</template>
</el-table-column>
<template v-if="formData.specType">
<template v-if="formData.specType && !isBatch">
<!-- 根据商品属性动态添加 -->
<el-table-column
v-for="(item, index) in tableHeaderList"
:key="index"
:label="item.label"
:prop="item.prop"
align="center"
min-width="120"
/>
>
<template #default="{ row }">
{{ row.properties[index].value }}
</template>
</el-table-column>
</template>
<el-table-column align="center" label="商品条码" min-width="120">
<template #default="{ row }">
@ -143,17 +146,77 @@ watch(
immediate: true
}
)
/** 生成表数据 */
const generateTableData = (data: any[]) => {
//
const propertiesItemList = []
for (const item of data) {
const objList = []
for (const v of item.values) {
const obj = { propertyId: 0, valueId: 0, value: '' }
obj.propertyId = item.id
obj.valueId = v.id
obj.value = v.name
objList.push(obj)
}
propertiesItemList.push(objList)
}
build(propertiesItemList).forEach((item) => {
const row = {
properties: [],
price: 0,
marketPrice: 0,
costPrice: 0,
barCode: '',
picUrl: '',
stock: 0,
weight: 0,
volume: 0
}
if (Array.isArray(item)) {
row.properties = item
} else {
row.properties.push(item)
}
formData.value.skus.push(row)
})
}
/** 构建所有排列组合 */
const build = (list: any[]) => {
if (list.length === 0) {
return []
} else if (list.length === 1) {
return list[0]
} else {
const result = []
const rest = build(list.slice(1))
for (let i = 0; i < list[0].length; i++) {
for (let j = 0; j < rest.length; j++) {
//
if (Array.isArray(rest[j])) {
result.push([list[0][i], ...rest[j]])
} else {
result.push([list[0][i], rest[j]])
}
}
}
return result
}
}
/** 监听属性列表生成相关参数和表头 */
watch(
() => props.attributeList,
(data) => {
//
if (!formData.value.specType) return
// 使
if (props.isBatch) return
//
if (JSON.stringify(data) === '[]') return
//
tableHeaderList.value = []
//
formData.value!.skus = []
SkuData.value = []
//
data.forEach((item, index) => {
// nameindex
@ -166,30 +229,4 @@ watch(
immediate: true
}
)
/** 生成表数据 */
const generateTableData = (data: any[]) => {
// const row = {
// price: 0,
// marketPrice: 0,
// costPrice: 0,
// barCode: '',
// picUrl: '',
// stock: 0,
// weight: 0,
// volume: 0
// }
//
const newDataList: any[] = []
for (const index in data) {
newDataList.push(data[index].values)
}
console.log(newDataList)
}
// const buildRow = (list: any[]) => {
// for (const index in data) {
// for (const index1 of data[index].values) {
// row[`name${index1}`] = data[index].values[index1]
// }
// }
// }
</script>