Files
coupon/pages/myshoucang/myorderdetail.wxml
2023-02-22 23:52:12 +08:00

68 lines
2.4 KiB
Plaintext

<view style=" height:340rpx;position: relative;background: #ffffff;margin-top:8rpx;">
<view style="height:66rpx;padding: 0 24rpx;">
<text class="time_msg"></text>
<text wx:if="{{detail.status==1&&type==2}}" class="status_msg">未核销</text>
<text wx:if="{{detail.status==2&&type==2}}" class="status_msg">已核销</text>
</view>
<view class="details_box">
<image src="{{detail.index_img}}" style="width:230rpx;height:230rpx;"></image>
<view style="margin-left: 31rpx;">
<view class="title">{{detail.goods_name}}</view>
<view class="detail_number">数量x{{detail.num}}</view>
<view class="money">实付款:<text
style="font-size: 30rpx;color: #FF4A4A;font-family: PingFang SC;font-weight: bold;">¥{{detail.total_money}}</text></view>
</view>
</view>
</view>
<view class="information">
<view class="contact_title" style="font-size: 30rpx;font-weight: bold;line-height: 36rpx;color: #333333;">
订单信息
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">订单合计</text>
<text class="information_title" style="color:#FF4A4A;">¥{{detail.total_money}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">商品数量</text>
<text class="information_title">{{detail.num}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">订单时间</text>
<text class="information_title">{{detail.time}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">订单编号</text>
<text class="information_title" style="width: 100%; margin-right: 0rpx;">{{detail.order_id}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">手机号码</text>
<text class="information_title">{{detail.phone}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">付款时间</text>
<text class="information_title">{{detail.pay_time}}</text>
</view>
</view>
<view class="contact" wx:if="{{detail.status==2}}">
<view style="margin-bottom: 30rpx;">
<text class="information_title">核销时间</text>
<text class="information_title">{{infro.jurisdiction_time}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">操作人</text>
<text class="information_title">{{infro.jurisdiction_name}}</text>
</view>
</view>