main
fanfan 3 months ago
parent 75f4e8ecb6
commit b6aef98210
  1. 4
      src/common/model/goods/MultiSpec.js
  2. 1
      src/views/goods/Index.vue
  3. 1
      src/views/market/settle/modules/details.vue

@ -220,7 +220,6 @@ export default class MultiSpec {
if (!oldSkuList.length || !newSkuList.length) {
return newSkuList
}
console.log(oldSkuList, newSkuList)
for (const index in newSkuList) {
// 查找符合的旧记录
let oldSkuItem = {}
@ -230,7 +229,7 @@ export default class MultiSpec {
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
((item.goods_props && item.goods_props.length > 0) ? item.goods_props.map((v) => v.value.name).join('_') : item.tempId)
)
// }
@ -262,7 +261,6 @@ export default class MultiSpec {
}
return newSkuList
}
// 生成sku表格字段名
buildSkuColumns (rowSpanArr) {
const specList = this.multiSpecData.specList

@ -236,7 +236,6 @@ const columns = [
width: '90px',
dataIndex: 'spec_type',
scopedSlots: { customRender: 'spec_type' },
sorter: true,
},
{
title: '商品价格',

@ -210,6 +210,7 @@ export default {
this.visible = true
Api.detail({ id: info })
.then((result) => {
this.record={}
this.record = result.data.detail
})
.finally(() => (this.isLoading = false))

Loading…
Cancel
Save