You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!--pages/orderlist/orderlist.wxml-->
|
|
|
|
<view>
|
|
|
|
<scroll-view class="scrol_view_style" scroll-x="{{false}}" scroll-y="{{true}}">
|
|
|
|
|
|
|
|
<view wx:for-items="{{orderlist}}" class="list_item_style" wx:key="{{ index }}">
|
|
|
|
<view class="carts_box">
|
|
|
|
<image src="{{item.url}}" class="good_main_image" style="border-radius: 20px;"></image>
|
|
|
|
<view class="cart_content_right">
|
|
|
|
<text class="item_good_title" style="font-size: larger;color:#596ede;">{{item.food_name}}*{{item.num}}</text>
|
|
|
|
<view class="price_back_view">
|
|
|
|
<text class="right_list_item_price">总计:¥{{item.price}}\n</text>
|
|
|
|
<text>地址:{{item.address}}-{{item.detailedAddress}}\n</text>
|
|
|
|
<text>收货人:{{item.name}}\n</text>
|
|
|
|
<text>电话:{{item.phone}}\n</text>
|
|
|
|
<text>时间:{{item.time}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="cart_content_bottom">
|
|
|
|
<view class="delete" bindtap="deleteGoods" id="{{index}}">删除</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="divLine"></view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</scroll-view>
|
|
|
|
</view>
|