orderproductinfo.wxml
910 Bytes
<!--src/components/order/orderproductinfo.wxml-->
<view class='component-order-root-view'>
<image class='component-order-product-image' src="{{productInfo.goodImg}}"></image>
<view class='component-order-right-view'>
<view class='component-order-top-right-name-price-view'>
<view class='component-order-top-view'>
<text class='component-order-product-price-view'>¥{{productInfo.goodPrice}}</text>
<text class='component-order-status-txt' >{{statuStr}}</text>
</view>
<text class='component-order-product-name-txt'>{{productInfo.productName}}</text>
</view>
<text class='component-order-size-color-txt' wx:if="{{isStore}}">{{productInfo.colorName}},{{productInfo.sizeName}},{{productInfo.skup}}</text>
<text class='component-order-size-color-txt' wx:else>{{productInfo.colorName}},{{productInfo.sizeName}}</text>
</view>
</view>