优化sku列表组合

master
wangdong 5 months ago
parent ecca6ac340
commit b8a4eeb200
  1. 6
      src/common/model/goods/MultiSpec.js

@ -227,7 +227,11 @@ export default class MultiSpec {
// if (oldSkuList.length === newSkuList.length) { // if (oldSkuList.length === newSkuList.length) {
// oldSkuItem = _.cloneDeep(oldSkuList[index]) // oldSkuItem = _.cloneDeep(oldSkuList[index])
// } else { // } else {
oldSkuItem = oldSkuList.find(item => newSkuList[index].tempId === item.goods_props.map(v => v.value.name).join('_')) oldSkuItem = oldSkuList.find(
(item) =>
newSkuList[index].tempId ===
(item.goods_props && item.goods_props.length > 0) ? item.goods_props.map((v) => v.value.name).join('_') : item.tempId
)
// } // }
const item = newSkuList[index] const item = newSkuList[index]

Loading…
Cancel
Save