|
@ -81,8 +81,8 @@ |
|
|
<el-table-column fixed="left" prop="jwcode" label="精网号" width="110px" /> |
|
|
<el-table-column fixed="left" prop="jwcode" label="精网号" width="110px" /> |
|
|
<el-table-column prop="market" label="所属地区" width="100px" /> |
|
|
<el-table-column prop="market" label="所属地区" width="100px" /> |
|
|
<el-table-column prop="activity" label="活动名称" width="100px" show-overflow-tooltip /> |
|
|
<el-table-column prop="activity" label="活动名称" width="100px" show-overflow-tooltip /> |
|
|
<el-table-column prop="permanentGold" label="充值金额" sortable="custom" width="110px"> |
|
|
|
|
|
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template> |
|
|
|
|
|
|
|
|
<el-table-column prop="sumGold" label="充值金额" sortable="custom" width="110px"> |
|
|
|
|
|
<template #default="scope">{{ scope.row.sumGold / 100 }}</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
<el-table-column prop="permanentGold" label="永久金币" width="110px" sortable="custom"> |
|
|
<el-table-column prop="permanentGold" label="永久金币" width="110px" sortable="custom"> |
|
|
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template> |
|
|
<template #default="scope">{{ scope.row.permanentGold / 100 }}</template> |
|
@ -94,7 +94,6 @@ |
|
|
|
|
|
|
|
|
<el-table-column prop="payModel" label="支付方式" width="110px" /> |
|
|
<el-table-column prop="payModel" label="支付方式" width="110px" /> |
|
|
<el-table-column prop="voucher" label="支付凭证" width="110px"> |
|
|
<el-table-column prop="voucher" label="支付凭证" width="110px"> |
|
|
<!-- 支付凭证列,支持点击放大预览 --> |
|
|
|
|
|
<template #default="scope"> |
|
|
<template #default="scope"> |
|
|
<div v-if="scope.row.voucher" style="cursor: pointer;" @click="previewImage(scope.row.voucher)"> |
|
|
<div v-if="scope.row.voucher" style="cursor: pointer;" @click="previewImage(scope.row.voucher)"> |
|
|
<img :src="scope.row.voucher" alt="支付凭证" style="width: 80px; height: auto;"> |
|
|
<img :src="scope.row.voucher" alt="支付凭证" style="width: 80px; height: auto;"> |
|
|