12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!--pages/detail/detail.wxml-->
- <!-- 订单详情,已送达页面 -->
- <!-- 配送地址 -->
- <view class="address-box">
- <text class="address">
- <text class="address01">哈尔滨师范大学第一公寓2门321</text>
- <text class="address02">姓名:吴迪(先生)</text>
- </text>
- </view>
- <!-- 麻辣烫图片 -->
- <view class="container04">
- <view class="container03">
- <image class="img01" src="https://qcloud.dpfile.com/pc/3CTRFdje6AmTRDHb_eqJ2bj2z7l8HY9CpntkZEpyOBObQ3QAyS5ZgqVDp-olAAnOjoJrvItByyS4HHaWdXyO_DrXIaWutJls2xCVbatkhjUNNiIYVnHvzugZCuBITtvjski7YaLlHpkrQUr5euoQrg.jpg" mode="" />
- <view class="child">
- <view class="child01">
- <text class="ctx01">老式麻辣烫</text>
- <text class="ctx02">¥9.9+20积分</text>
- </view>
- <view class="child01">
- <text>*2</text>
- <text class="ctx03">¥15.9</text>
- </view>
- </view>
- </view>
- <view class="text01">
- <text>包装费:</text>
- <text class="copper">¥0</text>
- </view>
- <view class="text02">
- <text>配送费:</text>
- <text class="copper">¥3</text>
- </view>
- </view>
- <view class="container01">
- <text class="text01">备注</text>
- <text class="text02">不要香菜,不要蒜</text>
- </view>
- <view class="container02">
- <view class="text01">
- <text> 订单编号:</text>
- <text>88888888888</text>
- </view>
- <view class="text01">
- <text> 交易时间:</text>
- <text>2023-4-36 13:18:34</text>
- </view>
- <view class="text01">
- <text> 积分抵扣:</text>
- <text>30积分</text>
- </view>
- <view class="text02">
- <text>实付金额:</text>
- <text class="copper">¥21.98</text>
- </view>
- </view>
- <view class="container01">
- <text class="text01">配送人</text>
- <text class="text02">冯春雨</text>
- </view>
- <view class="button001">
- <!-- <van-row> -->
- <van-col>
- <van-button class="button01" round size="normal" type="default" color="rgb(167,166,166)" is-link bind:click="showPopup">退款</van-button>
- </van-col>
- <van-col span="6">
- <van-button class="button01" round size="normal" type="warning" bindtap="jumpPage">重新打印</van-button>
- </van-col>
- <!-- </van-row> -->
- </view>
- <van-popup show="{{ show }}" bind:close="onClose">
- <van-panel>
- <view class="youno">确认退款?</view>
- <view slot="footer">
- <van-button size="small">确认</van-button>
- <van-button size="small">取消</van-button>
- </view>
- </van-panel>
- </van-popup>
|