当前位置:   article > 正文

SKU规格列表_skulist

skulist

商品详情添加,实现多销售属性的组合。比如添加衣服的商品详情,那么衣服的销售属性有颜色、尺寸。假如颜色有红色、白色,尺寸有S、M。那么就存在四种组合情况(红S、红M、白S、白M)

在这里插入图片描述
下面是vuejs中,实现这种组合方式的demo

<template>
  <div>
    规格列表
  </div>
</template>

<script>
  export default {
    data() {
      return {
        // 规格列表
        list: [],
        // 规格属性
        attribute: [
          ['红', '绿', '蓝'],
          ['S', 'M', 'L'],
          ['长款', '短款']
        ]
      }
    },
    methods: {
      createSkuList(skuArr = [], i, attribute) {// 生成规格列表
        for (let j = 0; j < attribute[i].length; j++) {
          if (i < attribute.length - 1) {
            skuArr[i] = attribute[i][j]
            this.createSkuList(skuArr, i + 1, attribute)
          } else {
            this.list.push([...skuArr, attribute[i][j]])
          }
        }
      }
    },
    created() {
      this.createSkuList([], 0, this.attribute)
      console.log(this.list)
    }
  }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
<template>
  <div>
    规格列表
  </div>
</template>

<script>
  export default {
    data() {
      return {
        // 规格列表
        list: [],
        // 规格属性
        attribute: [
          ['红', '绿', '蓝'],
          ['S', 'M', 'L'],
          ['长款', '短款']
        ]
      }
    },
    methods: {
      createList() {// 生成规格列表
        this.list = this.attribute.reduce((acc, cur, index) => {
          if (index > 0) {
            let saveArr = []
            acc.forEach(item => {
              cur.forEach(subItem => {
                saveArr.push(`${item}, ${subItem}`)
              })
            })
            acc = saveArr
          }
          return acc
        }, this.attribute[0])
      }
    },
    created() {
      this.createList()
      console.log(this.list)
    }
  }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/141059
推荐阅读
相关标签
  

闽ICP备14008679号