123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!--pages/order_address/order_address.wxml-->
- <!-- <text>pages/order_address/order_address.wxml</text><!--pages/order_submit/order_submit.wxml-->
- <!-- <text>pages/order_submit/order_submit.wxml</text> -->
- <!-- 确认订单页面 有备注 有按钮 有地址 -->
- <!-- 收货地址 -->
- <view class="ad">
- <view class="ad-box">
- <image src="../image/dizhi.png" mode="" />
- <text class="ad-text01">哈尔滨师范大学第一公寓2门312室</text>
- <text class="message">
- 吴迪(先生)182****2898
- </text>
- </view>
- </view>
- <!-- 商品信息 -->
- <view class="food">
- <text class="food-text">二楼麻辣烫、麻辣香锅、麻辣拌饭</text>
- </view>
- <view class="store-box">
- <image src="../image/商品.png" mode="" />
- <view class="store-message">
- <text class="store-title">麻辣烫微辣微麻</text>
- <text class="store-price01">¥10.98+40积分</text>
- <text class="store-price02">¥28.80</text>
- <view>
- <text class="store-numb">*2</text>
- </view>
- </view>
- </view>
- <view class="others-box">
- <text class="other01">包装费</text>
- <text class="other02">¥0</text>
- </view>
- <view class="others-box">
- <text class="other01">付款费</text>
- <text class="other02">¥3</text>
- </view>
- <view class="others-boxs">
- <text class="others01">已优惠</text>
- <text class="others02">¥10</text>
- <text class="others01">累计</text>
- <text class="others02">¥21.8</text>
- </view>
- <!-- 备注 -->
- <view>
- <van-cell-group inset>
- <van-field v-model="message" rows="2" autosize label="备注:" type="textarea" maxlength="15" placeholder="请输入备注" show-word-limit />
- </van-cell-group>
- </view>
- <!-- 提交订单按钮 -->
- <view class="btn">
- <view class="btn-box">
- <text class="btn-text01">累计:</text>
- <text class="btn-text02">¥10.98</text>
- <van-button class="order-btn" type="warning" round >提交订单</van-button>
- </view>
- </view>
|