|
@@ -62,6 +62,11 @@
|
|
|
<div>¥{{ $numberFormat(scope.row.discount) }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="门店承担比例" prop="channelSharedRate">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ {{row.channelSharedRate}}%
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="有效期限" min-width="85">
|
|
|
<template slot-scope="scope">
|
|
|
<div>领取后{{ scope.row.dueDays }}天有效</div>
|
|
@@ -152,7 +157,8 @@ export default {
|
|
|
updatedTime: item.updatedTime,
|
|
|
type: item.type,
|
|
|
discount: item.discount,
|
|
|
- dueDays: item.dueDays
|
|
|
+ dueDays: item.dueDays,
|
|
|
+ channelSharedRate: item.channelSharedRate
|
|
|
};
|
|
|
});
|
|
|
},
|