|
@@ -88,8 +88,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="退款方式" align="center" prop="returnedWay" min-width="130">
|
|
|
<template slot-scope="{ row }">
|
|
|
- <template v-if="row.returnedWay * 1 === 4">未支付无退款</template>
|
|
|
- <template v-else-if="row.returnedWay * 1 === 1">
|
|
|
+ <template>
|
|
|
<p v-if="row.refundBalanceFee * 1 !== 0">
|
|
|
余额账户:¥{{ row.refundBalanceFee | toThousandFloatFilter }}
|
|
|
</p>
|
|
@@ -100,17 +99,6 @@
|
|
|
线下转账:¥{{ row.refundOfflineFee | toThousandFloatFilter }}
|
|
|
</p>
|
|
|
</template>
|
|
|
- <template v-else>----</template>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="申请人"
|
|
|
- align="center"
|
|
|
- prop="applicationUserName"
|
|
|
- width="100"
|
|
|
- >
|
|
|
- <template slot-scope="{ row }">
|
|
|
- <span>{{ row.applicationUserName ? row.applicationUserName : "--" }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" label="申请时间" prop="returnTime">
|