|
@@ -42,7 +42,6 @@
|
|
|
<el-form-item>
|
|
|
<el-button @click="search" type="danger">搜索</el-button>
|
|
|
<el-button @click="onReSet" type="primary">重置</el-button>
|
|
|
-
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<!-- <div class="newBand" @click="onExport">导出</div> -->
|
|
@@ -68,6 +67,22 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="lastClassDate" label="结束日期">
|
|
|
+ <template slot="header"
|
|
|
+ slot-scope="scope">
|
|
|
+ <p style="position: relative; "> 结束日期 <el-tooltip placement="top"
|
|
|
+ popper-class="mTooltip">
|
|
|
+ <div slot="content">
|
|
|
+ 免费网管课最后一节课截止日期
|
|
|
+ </div>
|
|
|
+ <!-- <img :src="imageIcon"
|
|
|
+ class="micon el-tooltip"
|
|
|
+ style="width:8px height:8px"
|
|
|
+ alt /> -->
|
|
|
+ <i class="el-icon-question"
|
|
|
+ style="font-size: 18px; color: #F56C6C"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<p>{{scope.row.lastClassDate | formatTimer}}</p>
|
|
@@ -75,6 +90,22 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="firstBuyTime" label="购买日期">
|
|
|
+ <template slot="header"
|
|
|
+ slot-scope="scope">
|
|
|
+ <p style="position: relative; "> 购买日期 <el-tooltip placement="top"
|
|
|
+ popper-class="mTooltip">
|
|
|
+ <div slot="content">
|
|
|
+ 付费网管课第一次购买时间
|
|
|
+ </div>
|
|
|
+ <!-- <img :src="imageIcon"
|
|
|
+ class="micon el-tooltip"
|
|
|
+ style="width:8px height:8px"
|
|
|
+ alt /> -->
|
|
|
+ <i class="el-icon-question"
|
|
|
+ style="font-size: 18px; color: #F56C6C"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<p>{{scope.row.firstBuyTime | formatTimer}}</p>
|
|
@@ -82,6 +113,22 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center" prop="intervalDay" label="时间差">
|
|
|
+ <template slot="header"
|
|
|
+ slot-scope="scope">
|
|
|
+ <p style="position: relative; "> 时间差 <el-tooltip placement="top"
|
|
|
+ popper-class="mTooltip">
|
|
|
+ <div slot="content">
|
|
|
+ 付费网管课结束后与购买日期的时间差
|
|
|
+ </div>
|
|
|
+ <!-- <img :src="imageIcon"
|
|
|
+ class="micon el-tooltip"
|
|
|
+ style="width:8px height:8px"
|
|
|
+ alt /> -->
|
|
|
+ <i class="el-icon-question"
|
|
|
+ style="font-size: 18px; color: #F56C6C"></i>
|
|
|
+ </el-tooltip>
|
|
|
+ </p>
|
|
|
+ </template>
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<p>{{scope.row.intervalDay + '天'}}</p>
|