12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!--pages/order_submit/order_submit.wxml-->
- <!-- <text>pages/order_submit/order_submit.wxml</text> -->
- <!-- 确认订单页面 有备注 有按钮 有地址 -->
- <!-- 收货地址 -->
- <view class="ad">
- <view class="ad-box">
-
- <van-cell title="收货地址" value="请点击选择地址" is-link bind:click="showPopup" />
- <van-icon name="location-o" class="dz"/>
- <van-popup show="{{ show }}" position="bottom" custom-style="height: 90%;" bind:close="onClose">
- <view class="tan">
- 请选择收货地址
- </view>
- <!-- <van-cell icon="location-o" title="哈尔滨师范大学第一公寓2门312室" size="large" label="吴迪(先生)182****2898" >
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <van-radio name="1">单选框 1</van-radio>
- </van-radio-group>
- </van-cell> -->
- <view class="a">
- <van-cell label="吴迪(先生)182****2898">
- <view slot="title">
- <van-radio-group value="{{ radio }}" bind:change="onChange" >
- <van-radio name="0" checked-color="#FF8700">
- <view class="van-cell-text" >哈尔滨师范大学第一公寓2门312室
- <van-tag type="danger" style="margin-left: 8px;">默认</van-tag>
- </view>
- <!-- <view class="van-cell-text">吴迪(先生)182****2898</view> -->
-
- </van-radio>
- </van-radio-group>
- </view>
- <view class="xiugai">
- <van-icon name="edit" color="#9E9E9E" size="20px"/>
- <text >编辑</text>
- </view>
- </van-cell>
- </view>
- <!-- 弹出窗内容--结束 -->
- </van-popup>
- </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>
|