|
@@ -138,7 +138,7 @@
|
|
|
"
|
|
|
alt="" />
|
|
|
<div class="product-info">
|
|
|
- <p>{{ item.product_name }}</p>
|
|
|
+ <p>{{ item.alias_name || item.product_name }}</p>
|
|
|
<p>{{ item.product_code }}</p>
|
|
|
</div>
|
|
|
</nuxt-link>
|
|
@@ -834,7 +834,7 @@ export default {
|
|
|
temp.goods.push({
|
|
|
...item,
|
|
|
img: colorImg || item.image || item.img,
|
|
|
- product_name: item.product_name || item.name,
|
|
|
+ product_name: item.alias_name || item.product_name || item.name,
|
|
|
})
|
|
|
if (!item.category_id) return
|
|
|
const id = parseInt(item.category_id)
|