Commit 1f6943b2 by crushh

update: 文案

parent 7ff53db0
......@@ -70,7 +70,9 @@
<a :href="'/marketing/#/card/info/' + row.couponId" target="_blank"> {{ row.couponName }}</a>
</template>
</el-table-column>
<el-table-column show-overflow-tooltip width="80" prop="couponDenomination" label="卡券金额" />
<el-table-column show-overflow-tooltip width="120" prop="couponDenomination" label="卡券金额">
<template slot-scope="{ row }">{{ row.couponDenomination }}{{ couponTypeUnit[row.couponType] }} </template>
</el-table-column>
<el-table-column show-overflow-tooltip min-width="120" prop="couponCode" label="卡券代码" />
</el-table>
</div>
......@@ -91,6 +93,10 @@ const couponType = {
1: '折扣券',
2: '礼品券'
};
const couponTypeUnit = {
0: '元',
1: '折'
};
export default {
data() {
......@@ -113,7 +119,8 @@ export default {
detailLoading: false,
detailList: [],
destoryType,
couponType
couponType,
couponTypeUnit
};
},
mounted() {
......
<template>
<el-tabs v-model="activeName">
<el-tab-pane label="退记录" name="refund-list">
<el-tab-pane label="退记录" name="refund-list">
<refundList />
</el-tab-pane>
<el-tab-pane label="卡券积分回收明细" name="recycle-record-detail" v-if="isAolaiVal">
......
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