|
@@ -11,7 +11,7 @@
|
|
|
<div class="refund-item">
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
<el-col :span="6"><b>退款编号:</b> {{ refund.returnedNo }}</el-col>
|
|
|
- <el-col :span="6"><b>申请时间:</b> <template v-if="refund.returnTime">{{ refund.returnTime | parseTime('{y}-{m}-{d} {h}:{i}') }}</template></el-col>
|
|
|
+ <el-col :span="6"><b>申请时间:</b> <template v-if="refund.returnTime">{{ refund.returnTime | parseTime('{y}-{m}-{d} {h}:{i}:{s}') }}</template></el-col>
|
|
|
<el-col :span="6"><b>申请金额:</b> ¥{{ refund.refundFee | toThousandFloatFilter }}</el-col>
|
|
|
<el-col :span="6"><b>退款状态:</b>
|
|
|
<el-tag v-if="refund.status*1===1" type="warning" size="small">待审核</el-tag>
|
|
@@ -57,7 +57,7 @@
|
|
|
<template v-if="order">
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
<el-col :span="6"><b>订单编号(ID):</b> {{ order.orderNo + '(' + order.orderID + ')' }}</el-col>
|
|
|
- <el-col :span="6"><b>下单时间:</b> <template v-if="order.orderTime">{{ order.orderTime | parseTime('{y}-{m}-{d} {h}:{i}') }}</template></el-col>
|
|
|
+ <el-col :span="6"><b>下单时间:</b> <template v-if="order.orderTime">{{ order.orderTime | parseTime('{y}-{m}-{d} {h}:{i}:{s}') }}</template></el-col>
|
|
|
<el-col :span="6"><b>订单状态:</b>
|
|
|
<template v-if="['11','12','13','21','22','23','31','32','33'].indexOf(order.status)>=0">
|
|
|
<el-tag type="success" size="small">{{ '交易中('+statusObj[order.status]+')' }}</el-tag>
|
|
@@ -178,7 +178,7 @@
|
|
|
<h3>申请信息</h3>
|
|
|
<el-row :gutter="24" class="box-row">
|
|
|
<el-col :span="6"><b>申请人:</b> {{ refund.applicationUserName }}</el-col>
|
|
|
- <el-col :span="6"><b>申请时间:</b> <template v-if="refund.returnTime">{{ refund.returnTime | parseTime('{y}-{m}-{d} {h}:{i}') }}</template></el-col>
|
|
|
+ <el-col :span="6"><b>申请时间:</b> <template v-if="refund.returnTime">{{ refund.returnTime | parseTime('{y}-{m}-{d} {h}:{i}:{s}') }}</template></el-col>
|
|
|
<el-col :span="6"><b>退款备注:</b> {{ refund.remarks ? refund.remarks : '无' }}</el-col>
|
|
|
</el-row>
|
|
|
<el-row v-if="refund.image1 || refund.image2 || refund.image3 || refund.image4 || refund.image5 " :gutter="24" class="box-row">
|