|
|
@ -1,25 +1,25 @@
|
|
|
|
<!--pages/orderlist/orderlist.wxml-->
|
|
|
|
<!--pages/orderlist/orderlist.wxml-->
|
|
|
|
<view>
|
|
|
|
<view>
|
|
|
|
<scroll-view class="scrol_view_style" scroll-x="{{false}}" scroll-y="{{true}}">
|
|
|
|
<scroll-view class="scrol_view_style" scroll-x="{{false}}" scroll-y="{{true}}">
|
|
|
|
<view style="height: 10rpx;"></view>
|
|
|
|
|
|
|
|
<view wx:for-items="{{orderlist}}" class="list_item_style" wx:key="{{ index }}">
|
|
|
|
<view wx:for-items="{{orderlist}}" class="list_item_style" wx:key="{{ index }}">
|
|
|
|
<view class="carts_box">
|
|
|
|
<view class="carts_box">
|
|
|
|
<image src="{{item.url}}" class="good_main_image" style="border-radius: 20px;"></image>
|
|
|
|
<image src="{{item.url}}" class="good_main_image" style="border-radius: 20px;"></image>
|
|
|
|
<view class="cart_content_right">
|
|
|
|
<view class="cart_content_right">
|
|
|
|
<text class="item_good_title">{{item.food_name}}</text>
|
|
|
|
<text class="item_good_title" style="font-size: larger;color:#596ede;">{{item.food_name}}*{{item.num}}</text>
|
|
|
|
<view class="price_back_view">
|
|
|
|
<view class="price_back_view">
|
|
|
|
<text class="right_list_item_price">总计:¥{{item.price}}</text>
|
|
|
|
<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>
|
|
|
|
<text>时间:{{item.time}}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="cart_content_bottom">
|
|
|
|
<view class="cart_content_bottom">
|
|
|
|
<view class='btn_wrap'>
|
|
|
|
|
|
|
|
<!-- <image src="/images/reduce.png" class = "reduce_image_style" id = "{{index}}" bindtap = "reduceButtonClick"></image> -->
|
|
|
|
|
|
|
|
<input type='text' value="*{{item.num}}" />
|
|
|
|
|
|
|
|
<!-- <image src="/images/add.png" class = "add_image_style" id = "{{index}}" bindtap = "addButtonClick"></image> -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<view class="delete" bindtap="deleteGoods" id="{{index}}">删除</view>
|
|
|
|
<view class="delete" bindtap="deleteGoods" id="{{index}}">删除</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="divLine"></view>
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|