|
@@ -7,16 +7,105 @@
|
|
<div class="m-core">
|
|
<div class="m-core">
|
|
<el-form :inline="true" :model="searchForm">
|
|
<el-form :inline="true" :model="searchForm">
|
|
<el-form-item>
|
|
<el-form-item>
|
|
- <el-input v-model.trim="searchForm.search" @keyup.enter.native="search" placeholder></el-input>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ v-model.trim="searchForm.search"
|
|
|
|
+ @keyup.enter.native="search"
|
|
|
|
+ placeholder="学生姓名 编号"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item prop="organId">
|
|
|
|
+ <el-select
|
|
|
|
+ class="multiple"
|
|
|
|
+ v-model.trim="searchForm.organId"
|
|
|
|
+ filterable
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="请选择分部"
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="(item,index) in organList"
|
|
|
|
+ :key="index"
|
|
|
|
+ :label="item.name"
|
|
|
|
+ :value="item.id"
|
|
|
|
+ ></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select placeholder="老师姓名" v-model="searchForm.teacherId" clearable filterable>
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="(item,index) in teacherList"
|
|
|
|
+ :label="item.realName"
|
|
|
|
+ :value="item.id"
|
|
|
|
+ :key="index"
|
|
|
|
+ ></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select placeholder="参与运营指标" v-model="searchForm.operatingTag" clearable>
|
|
|
|
+ <el-option label="是" value="1"></el-option>
|
|
|
|
+ <el-option label="否" value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select placeholder="有线上vip课" v-model="searchForm.hasVip" clearable>
|
|
|
|
+ <el-option label="是" value="1"></el-option>
|
|
|
|
+ <el-option label="否" value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select placeholder="参与免费网管课" v-model="searchForm.hasFreePractice" clearable>
|
|
|
|
+ <el-option label="是" value="1"></el-option>
|
|
|
|
+ <el-option label="否" value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-select placeholder="有付费网管课" v-model="searchForm.hasBuyPractice" clearable>
|
|
|
|
+ <el-option label="是" value="1"></el-option>
|
|
|
|
+ <el-option label="否" value="0"></el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button type="danger" @click="search">搜索</el-button>
|
|
|
|
+ <el-button @click="onReSet" type="primary">重置</el-button>
|
|
|
|
+ <!-- export/isSettlementCourseSalarys -->
|
|
|
|
+ <el-button
|
|
|
|
+ @click="onExport"
|
|
|
|
+ type="primary"
|
|
|
|
+ v-permission="'export/operatingStudents'"
|
|
|
|
+ style=" background: #14928a; border:1px solid #14928a;"
|
|
|
|
+ >导出</el-button>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
|
|
+
|
|
<div class="tableWrap">
|
|
<div class="tableWrap">
|
|
<el-table
|
|
<el-table
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}"
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}"
|
|
:data="tableList"
|
|
:data="tableList"
|
|
>
|
|
>
|
|
- <el-table-column align="center" prop="studentId" label="分部"></el-table-column>
|
|
|
|
|
|
+ <el-table-column align="center" prop="studentId" label="学员编号"></el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="studentName" label="学员姓名"></el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="organName" label="所属分部"></el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="teacherName" label="指导老师"></el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="operatingTag" label="参与运营指标">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div>{{scope.row.operatingTag?'是':'否'}}</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="vipTimes" label="有线上vip课">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div>{{scope.row.vipTimes?'是':'否'}}</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="freePracticeTimes" label="参与免费网管课">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div>{{scope.row.freePracticeTimes?'是':'否'}}</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column align="center" prop="buyPracticeTimes" label="有付费网管课">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <div>{{scope.row.buyPracticeTimes?'是':'否'}}</div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
<pagination
|
|
<pagination
|
|
:total="rules.total"
|
|
:total="rules.total"
|
|
@@ -36,13 +125,19 @@ import { getToken } from "@/utils/auth";
|
|
import pagination from "@/components/Pagination/index";
|
|
import pagination from "@/components/Pagination/index";
|
|
import load from "@/utils/loading";
|
|
import load from "@/utils/loading";
|
|
import { getTeacher, getEmployeeOrgan } from "@/api/buildTeam";
|
|
import { getTeacher, getEmployeeOrgan } from "@/api/buildTeam";
|
|
-
|
|
|
|
|
|
+import { getOperatingStudents } from "@/api/operateManager";
|
|
export default {
|
|
export default {
|
|
components: { pagination },
|
|
components: { pagination },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
searchForm: {
|
|
searchForm: {
|
|
- search: null
|
|
|
|
|
|
+ search: null,
|
|
|
|
+ organId: null,
|
|
|
|
+ teacherId: null,
|
|
|
|
+ hasBuyPractice: null,
|
|
|
|
+ hasFreePractice: null,
|
|
|
|
+ hasVip: null,
|
|
|
|
+ operatingTag: null
|
|
},
|
|
},
|
|
teacherList: [],
|
|
teacherList: [],
|
|
tableList: [],
|
|
tableList: [],
|
|
@@ -58,14 +153,16 @@ export default {
|
|
},
|
|
},
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
created() {},
|
|
created() {},
|
|
- //生命周期 - 挂载完成(可以访问DOM元素)
|
|
|
|
|
|
+ activated() {
|
|
|
|
+ this.init();
|
|
|
|
+ },
|
|
mounted() {
|
|
mounted() {
|
|
- getTeacher().then(res => {
|
|
|
|
|
|
+ getTeacher().then(res => {
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
this.teacherList = res.data;
|
|
this.teacherList = res.data;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- getEmployeeOrgan().then(res => {
|
|
|
|
|
|
+ getEmployeeOrgan().then(res => {
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
this.organList = res.data;
|
|
this.organList = res.data;
|
|
}
|
|
}
|
|
@@ -74,8 +171,112 @@ export default {
|
|
this.init();
|
|
this.init();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- init() {},
|
|
|
|
- getList() {}
|
|
|
|
|
|
+ init() {
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ getList() {
|
|
|
|
+ let obj = this.getDate();
|
|
|
|
+ getOperatingStudents(obj).then(res => {
|
|
|
|
+ if (res.code == 200) {
|
|
|
|
+ this.tableList = res.data.rows;
|
|
|
|
+ this.rules.total = res.data.total;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ search() {
|
|
|
|
+ this.rules.page = 1;
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ onReSet() {
|
|
|
|
+ this.searchForm = {
|
|
|
|
+ search: null,
|
|
|
|
+ organId: null,
|
|
|
|
+ teacherId: null,
|
|
|
|
+ hasBuyPractice: null,
|
|
|
|
+ hasFreePractice: null,
|
|
|
|
+ hasVip: null,
|
|
|
|
+ operatingTag: null
|
|
|
|
+ };
|
|
|
|
+ this.search();
|
|
|
|
+ },
|
|
|
|
+ onExport() {
|
|
|
|
+ let url = "/api-web/export/operatingStudents";
|
|
|
|
+ let obj = this.getDate();
|
|
|
|
+ const options = {
|
|
|
|
+ method: "get",
|
|
|
|
+ headers: {
|
|
|
|
+ Authorization: getToken()
|
|
|
|
+ },
|
|
|
|
+ url,
|
|
|
|
+ params: obj,
|
|
|
|
+ responseType: "blob"
|
|
|
|
+ };
|
|
|
|
+
|
|
|
|
+ this.$confirm("您确定导出列表?", "提示", {
|
|
|
|
+ confirmButtonText: "确定",
|
|
|
|
+ cancelButtonText: "取消",
|
|
|
|
+ type: "warning"
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ load.startLoading();
|
|
|
|
+ axios(options)
|
|
|
|
+ .then(res => {
|
|
|
|
+ let blob = new Blob([res.data], {
|
|
|
|
+ // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8',
|
|
|
|
+ type: "application/vnd.ms-excel;charset=utf-8"
|
|
|
|
+ // word文档为application/msword,pdf文档为application/pdf,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8
|
|
|
|
+ });
|
|
|
|
+ let text = new Response(blob).text();
|
|
|
|
+ text.then(res => {
|
|
|
|
+ // 判断是否报错
|
|
|
|
+ if (res.indexOf("code") != -1) {
|
|
|
|
+ let json = JSON.parse(res);
|
|
|
|
+ this.$message.error(json.msg);
|
|
|
|
+ } else {
|
|
|
|
+ let objectUrl = URL.createObjectURL(blob);
|
|
|
|
+ let link = document.createElement("a");
|
|
|
|
+ let nowTime = new Date();
|
|
|
|
+ let ymd =
|
|
|
|
+ nowTime.getFullYear() +
|
|
|
|
+ "" +
|
|
|
|
+ (nowTime.getMonth() + 1) +
|
|
|
|
+ "" +
|
|
|
|
+ nowTime.getDate() +
|
|
|
|
+ "" +
|
|
|
|
+ nowTime.getHours() +
|
|
|
|
+ "" +
|
|
|
|
+ nowTime.getMinutes();
|
|
|
|
+ let fname = ymd + "学员列表(运营)";
|
|
|
|
+ link.href = objectUrl;
|
|
|
|
+ link.setAttribute("download", fname);
|
|
|
|
+ document.body.appendChild(link);
|
|
|
|
+ link.click();
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ load.endLoading();
|
|
|
|
+ })
|
|
|
|
+ .catch(error => {
|
|
|
|
+ this.$message.error("导出数据失败,请连接管理员");
|
|
|
|
+ load.endLoading();
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+ .catch(() => {});
|
|
|
|
+ },
|
|
|
|
+ getDate() {
|
|
|
|
+ let obj = {
|
|
|
|
+ search: this.searchForm.search || null,
|
|
|
|
+ organId: this.searchForm.organId || null,
|
|
|
|
+ teacherId: this.searchForm.teacherId || null,
|
|
|
|
+ hasBuyPractice: this.searchForm.hasBuyPractice || null,
|
|
|
|
+ hasFreePractice: this.searchForm.hasFreePractice || null,
|
|
|
|
+ hasVip: this.searchForm.hasVip || null,
|
|
|
|
+ operatingTag: this.searchForm.operatingTag || null,
|
|
|
|
+ page: this.rules.page,
|
|
|
|
+ rows: this.rules.limit
|
|
|
|
+ };
|
|
|
|
+ return obj;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|