productCell.wxml
586 Bytes
<view class="productContainer">
<view class="productImageContainer">
<image class="productImage" src="{{productInfo.goodImg}}"></image>
</view>
<view class="productRightContainer">
<text class="productPrice">¥{{productInfo.goodPrice}}</text>
<text class="productName">{{productInfo.productName}}</text>
<text class="productColor" wx:if="{{isStore}}">{{productInfo.colorName + ',' + productInfo.sizeName + ',' +productInfo.skup}}</text>
<text class="productColor" wx:else>{{productInfo.colorName + ',' + productInfo.sizeName}}</text>
</view>
</view>