| 123456789101112131415161718192021222324 |
- <!--components/existProduct-list/existProduct-list.wxml-->
- <view class="prodsList">
- <view class="itemProd" wx:for="{{cartList}}" wx:key="id">
- <view class="goods-info">
- <image src="{{item.prodPicList[0].picUrl}}" mode="aspectFill"></image>
- <view class="info">
- <text>{{item.prodName}}</text>
- <text>{{item.prodAttrName || item.attrName}}</text>
- <text>¥{{item.price}}</text>
- </view>
- <view class="count">
- <text class="num">x{{item.quantity}}</text>
- </view>
- </view>
- <!-- 物流单号 -->
- <view class="logisticsNo" wx:if="{{item.orderDetailExprs.length > 0}}">
- <text>物流单号</text>
- <view>
- <text>{{item.orderDetailExprs[0].expressNo}}</text>
- <text data-no="{{item.orderDetailExprs[0].expressNo}}" catchtap="copy"> / 复制</text>
- </view>
- </view>
- </view>
- </view>
|