商品参数修改

master
mabo 2021-07-02 15:47:08 +08:00
parent 8ecc85a21c
commit 29630a8495
2 changed files with 21 additions and 21 deletions

View File

@ -153,7 +153,7 @@
<storeLayout id="main7" :storeDetail="storeDetail" :goodsDetail="goodsDetail" :res="recommendList" />
<!-- 宝贝详情 -->
<GoodsIntro id="main9" :res="goodsDetail" :goodsId="goodsDetail.goodsId" v-if="goodsDetail.id" />
<GoodsIntro id="main9" :res="goodsDetail" :goodsParams="goodsParams" :goodsId="goodsDetail.goodsId" v-if="goodsDetail.id" />
<!-- 宝贝推荐 -->
<GoodsRecommend id="main11" :res="likeGoodsList" />
@ -328,6 +328,7 @@ export default {
top: 0,
height: 50,
},
goodsParams: [], //
headerFlag: false, //
headerList: [
//
@ -499,15 +500,13 @@ export default {
return true;
}
},
selectSku (idObj) {
console.log(idObj)
selectSku (idObj) { // sku
this.init(idObj.skuId,idObj.goodsId)
},
/**
* 初始化信息
*/
async init(id, goodsId, distributionId) {
console.log(id, goodsId)
this.isGroup = false; //
this.productId = id; // skuId
//
@ -534,6 +533,7 @@ export default {
this.goodsDetail = response.data.result.data;
this.goodsSpec = response.data.result.specs;
this.PromotionList = response.data.result.promotionMap;
this.goodsParams = response.data.result.goodsParamsDTOList || []
//
this.PromotionList &&

View File

@ -18,20 +18,19 @@
<div class="goods-detail-box">
<div class="goods-detail-item goods-active">商品参数</div>
</div>
<u-divider>商品参数</u-divider>
<div class="param-list" v-if="!goodsDetail.goodsParamsList || goodsDetail.goodsParamsList.length == 0">
<!-- <u-divider>商品参数</u-divider> -->
<div class="param-list" v-if="goodsParams.length == 0">
<u-empty text="暂无商品参数" mode="list"></u-empty>
</div>
<div class="param-list" v-if="goodsDetail.goodsParamsList && goodsDetail.goodsParamsList.length != 0">
<div class="param-item" v-for="(param,index) in goodsDetail.goodsParamsList" :key="index">
<div class="param-left">
{{param.paramName}}
</div>
<div class="param-right">
{{param.paramValue}}</div>
<div class="params-group" v-for="(group,groupIndex) in goodsParams" :key="groupIndex">
<view style="font-weight: bold;margin-left: 10px;">{{group.groupName}}</view>
<div class="param-list">
<div class="param-item" v-for="(param,index) in group.goodsParamsItemDTOList" :key="index">
<div class="param-left">{{param.paramName}}</div>
<div class="param-right">{{param.paramValue}}</div>
</div>
</div>
</div>
</view>
</view>
</view>
@ -43,11 +42,12 @@ import { getGoodsMessage } from "@/api/goods";
export default {
data() {
return {
goodsDetail: "",
goodsDetail: ""
};
},
props: ["res", "goodsId"],
props: ["res", "goodsId", "goodsParams"],
async mounted() {
console.log(this.res)
let res = await getGoodsMessage(this.goodsId);
if (res.data.success) {
this.goodsDetail = res.data.result;