Commit bd277506 by fuqiang

【商家端】商品管理-商品详情

parent 6948d8d8
...@@ -189,7 +189,7 @@ ...@@ -189,7 +189,7 @@
titleValue() { titleValue() {
return (spec, row) => { return (spec, row) => {
for (let s of row.specs) { for (let s of row.specs) {
if (s.specId == spec.specId) { if (s.id == spec.specId) {
return s.specName return s.specName
} }
} }
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
if(skus && skus.length > 0) { if(skus && skus.length > 0) {
let specs = skus[0].specs.map(r => { let specs = skus[0].specs.map(r => {
return { return {
specId: r.specId, specId: r.id,
specName: r.name specName: r.name
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment