Commit 7ff53db0 by crushh

update: 导出

parent 9877aae0
......@@ -17,7 +17,18 @@
</template>
</el-table-column>
<el-table-column show-overflow-tooltip min-width="120" prop="memberCardNo" label="会员卡号" />
<el-table-column show-overflow-tooltip prop="refundOrderSerial" label="退款单号" />
<el-table-column prop="refundOrderSerial" label="退款单号">
<template slot-scope="{ row }">
<el-tooltip :content="row.refundOrderSerial">
<div class="ellipsis">{{ row.refundOrderSerial }}</div>
</el-tooltip>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip min-width="120" label="回收总金额">
<template slot-scope="{ row }">
{{ row.couponAmountManual + row.couponAmountAuto }}
</template>
</el-table-column>
<el-table-column show-overflow-tooltip min-width="120" prop="couponAutoDestroy" label="系统回收券数" />
<el-table-column show-overflow-tooltip min-width="120" prop="couponAmountAuto" label="系统回收金额"> </el-table-column>
<el-table-column show-overflow-tooltip min-width="120" prop="couponManualDestroy" label="手动回收券数"></el-table-column>
......@@ -138,11 +149,12 @@ export default {
exportExcel() {
this.dialogVisible = true;
this.excelUrl = ecmConsumeCouponExcel;
const { searchParam, beginTime, endTime } = this.listParams;
const { searchParams, beginTime, endTime, refundOrderSerial } = this.listParams;
this.params = {
searchParam,
searchParams,
beginTime,
endTime,
refundOrderSerial,
requestProject: 'marketing'
};
},
......
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