ShopWind多商户商城系统移动端产品详情页展现效果丰富,不仅展示产品的图片、标题、价格、规格、商品详情等参数,还展示优惠券、积分抵扣、产品优惠、参数等信息。
各参数带右向箭头的项,可以点击查看详情,现点击“参数”项的时候弹窗空白,显示内容异常。
修复方案:
1、打开shopwind移动端/pages/goods/index.vue文件, 查找代码<my-popup-attributes
<!--产品参数弹窗-->
<uni-popup v-if="attributes" ref="attributes" type="bottom" class="relative" style="z-index: 100;">
<my-popup-attributes :item="attributes"></my-popup-attributes>
</uni-popup>
修改为:
<!--产品参数弹窗-->
<uni-popup v-if="attributes" ref="attributes" type="bottom" class="relative" style="z-index: 100;">
<my-popup-attributes :list="attributes"></my-popup-attributes>
</uni-popup>
2、下载更新文件,shopwind移动端/components/my-popup-attributes/my-popup-attributes.vue