<scroll-view scroll-y class=“orders-list-order” style=‘height:{{right_scrollheight}}px’ >
<view wx:for=“{{orders}}” class=‘order-item-right’>
<image src=‘{{item.P_ICON}}’ class=‘order-item-imag’></image>
<view class=‘order-item-text-right’ >
<view class=‘order-item-right-name’>{{item.P_NAME}}</view>
<view style=‘display:flex;margin-top: 30px;width:100%;justify-content:space-between’>
<view class=‘order-item-right-price’>¥{{item.P_PRICE}}</view>
<icon type=‘success’ size=‘20’ style=‘margin-right:10px;’ wx:if=‘{{shoppingId.indexOf(item.id)==-1}}’ bindtap=‘rightitemclick’ data-position=‘{{index}}’></icon>
<view style=‘margin-right:10px;display:flex’ wx:else>
<icon type=‘success’ size=‘20’ data-position=‘{{index}}’></icon>
<view style=‘padding-left:5px;padding-right:5px;font-size:small’>1</view>
<icon type=‘success’ size=‘20’ bindtap=‘rightitemclick’ data-position=‘{{index}}’></icon>
</view>
</view>
</view>
</view>
</scroll-view>