|
@@ -78,6 +78,24 @@
|
|
|
{{ formatDuration(row.duration) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="看课开始时间" align="center" prop="duration">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="row.viewStartTime">{{row.viewStartTime}}</el-tag>
|
|
|
+ <el-tag type="danger" v-if="!row.viewStartTime">无</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="看课结束时间" align="center" prop="duration">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="row.viewEndTime">{{row.viewEndTime}}</el-tag>
|
|
|
+ <el-tag type="danger" v-if="!row.viewEndTime">无</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="领取红包时间" align="center" prop="duration">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ <el-tag v-if="row.lastJoinTime">{{ row.lastJoinTime }}</el-tag>
|
|
|
+ <el-tag type="danger" v-if="!row.lastJoinTime">无</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="红包金额" align="center" prop="redPacketMoney" v-if="isPrivate === 1"/>
|
|
|
<el-table-column label="排序" align="center" prop="courseSort" />
|
|
|
<el-table-column label="上传时间" align="center" prop="createTime" />
|
|
@@ -804,6 +822,7 @@ export default {
|
|
|
batchRedSave(){
|
|
|
batchUpdateRed(this.redData.list).then(response => {
|
|
|
this.redData.open = false;
|
|
|
+ this.getList();
|
|
|
})
|
|
|
},
|
|
|
}
|