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

97 lines
3.9 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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="{{refund_infro.status==0}}" class="status_msg">待退款</text>
<text wx:if="{{refund_infro.status==1}}" class="status_msg">退款成功</text>
<text wx:if="{{refund_infro.status==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;">¥{{order.total_money}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">商品数量</text>
<text class="information_title">{{order.num}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">订单时间</text>
<text class="information_title">{{order.time}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">订单编号</text>
<text class="information_title" style="width: 100%; margin-right: 0rpx;">{{order.order_id}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">手机号码</text>
<text class="information_title">{{order.phone}}</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">付款时间</text>
<text class="information_title">{{order.time}}</text>
</view>
</view>
<view wx:if="{{type==3}}" class="informationtwo">
<view class="contact_title" style="font-size: 30rpx;font-weight: bold;line-height: 36rpx;color: #333333;">
退款信息
</view>
<view style="margin-bottom: 30rpx; border-bottom: 1rpx solid #eee;">
<text class="information_title">退款原因:</text>
<text class="information_title">{{refund_infro.refund_reason}}</text>
</view>
<view style="margin-bottom: 0rpx;">
<text class="information_title">退款金额:</text>
<text class="information_title" style="color:#FF4A4A;">¥{{refund_infro.refund_money}}</text>
</view>
<view style="margin-bottom: 30rpx; border-bottom: 1rpx solid #eee;">
<text class="information_title" style="font-size: 20rpx;">不可修改最多¥99</text>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">退款说明:</text>
<text class="information_title">选填</text>
</view>
<view class="peisong-way" style="margin-bottom: 30rpx;">
<input style="font-size: 26rpx;padding-left: 19rpx;padding-top: 19rpxx;" model:value="{{refund_remark}}" bindinput="passwordInput" placeholder="填写补充说明,有利于您的售后哦~"/>
</view>
<view style="margin-bottom: 30rpx;">
<text class="information_title">上传凭证</text>
</view>
<view class="row-box">
<van-uploader file-list="{{fileListtwo}}"max-count="3" deletable="{{ true }}" bind:after-read="afterReadtwo" bind:delete="deletetwo"/>
</view>
</view>
<view wx:if="{{type==3&&refund_infro.status==0}}" class="addperson" bindtap="addperson" style="margin-top: 77rpx;">
<view class="text" style="background-color:#ffffff;color: #FF4C00;border: 1px solid #FF4C00;"bindtap="jujue">拒绝退款</view>
<view class="text" style="background-color: #FF4C00;"bindtap="tongyi">同意退款</view>
</view>