|
@@ -40,6 +40,14 @@
|
|
|
<div v-else>{{ row.title }}</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="奖品类型">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.prizeType == 'goods'">商品</div>
|
|
|
+ <div v-if="scope.row.prizeType == 'coupon'">券</div>
|
|
|
+ <div v-if="scope.row.prizeType == 'coupon_pkg'">券包</div>
|
|
|
+ <div v-if="scope.row.prizeType == 'coin'">盲豆</div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="商品价格">
|
|
|
<template slot-scope="scope">
|
|
|
<div v-if="scope.row.prizeType == 'goods'">¥{{ $numberFormat(scope.row.value) }}</div>
|
|
@@ -52,14 +60,6 @@
|
|
|
<span v-else>--</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="奖品类型">
|
|
|
- <template slot-scope="scope">
|
|
|
- <div v-if="scope.row.prizeType == 'goods'">商品</div>
|
|
|
- <div v-if="scope.row.prizeType == 'coupon'">券</div>
|
|
|
- <div v-if="scope.row.prizeType == 'coupon_pkg'">券包</div>
|
|
|
- <div v-if="scope.row.prizeType == 'coin'">盲豆</div>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="奖品数量" prop="quantity" v-if="ticketType != 'offline'" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|