Commit daf16e39 by 吕明尚

优惠券领取记录表中,添加优惠券发放时间

parent dc0802d6
......@@ -225,7 +225,12 @@
</el-table-column>
<el-table-column label="使用时间" align="center" prop="useDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.useDate, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.useDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="优惠卷发放时间" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="使用状态" align="center" prop="useStatus" />-->
......
......@@ -200,16 +200,16 @@
<el-table-column label="优惠券金额" align="center" prop="couponPrice" width="100"/>
<el-table-column label="订单总价" align="center" prop="totalPrice" />
<el-table-column label="实际支付金额" align="center" prop="payPrice" width="110"/>
<el-table-column label="支付时间" align="center" prop="payTime" width="120">
<el-table-column label="支付时间" align="center" prop="payTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.payTime, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.payTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="订单时长" align="center" prop="timeLong" />
<el-table-column label="退款说明" align="center" prop="refundReason" />
<el-table-column label="退款时间" align="center" prop="refundReasonTime" width="120">
<el-table-column label="退款时间" align="center" prop="refundReasonTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.refundReasonTime, '{y}-{m}-{d}') }}</span>
<span>{{ parseTime(scope.row.refundReasonTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="退款金额" align="center" prop="refundPrice" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment