Browse Source

修改退款记录表格内图标大小

zq-0828-newMenu
zq 1 week ago
parent
commit
80b695817e
  1. 4
      src/views/agent/recharge.vue

4
src/views/agent/recharge.vue

@ -117,7 +117,7 @@
</el-table-column> </el-table-column>
<el-table-column prop="tid" label="退款方式" min-width="200"> <el-table-column prop="tid" label="退款方式" min-width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="tid2refunds[scope.row.tid]"><img :src="require('@/assets/pay/pay_'+tid2refunds[scope.row.tid].pay_type+'.svg')" alt=""></span> <span v-if="tid2refunds[scope.row.tid]"><img style="width: 20px;height: 20px;" :src="require('@/assets/pay/pay_'+tid2refunds[scope.row.tid].pay_type+'.svg')" alt=""></span>
<span v-else>---</span> <span v-else>---</span>
</template> </template>
</el-table-column> </el-table-column>
@ -130,7 +130,7 @@
<el-table-column prop="tid" label="退款理由" min-width="200"> <el-table-column prop="tid" label="退款理由" min-width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<GuipToolTip v-if="tid2refunds[scope.row.tid]" :content="tid2refunds[scope.row.tid].refund_reason"> <GuipToolTip v-if="tid2refunds[scope.row.tid]" :content="tid2refunds[scope.row.tid].refund_reason">
<img src="@/assets/site/refund_reason.png" alt=""> <img style="width: 20px;" src="@/assets/site/refund_reason.png" alt="">
</GuipToolTip> </GuipToolTip>
<span v-else>---</span> <span v-else>---</span>
</template> </template>

Loading…
Cancel
Save