You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
396 lines
14 KiB
396 lines
14 KiB
<template>
|
|
<div>
|
|
<div>
|
|
<div ref="lxHeader">
|
|
<lx-header icon="md-apps" :text="$route.meta.title" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
|
|
<div slot="content">
|
|
<div class="searchwrap" style="display: flex;align-items: center;">
|
|
<div>
|
|
<el-input v-model="select.name" placeholder="请输入课程名称"></el-input>
|
|
</div>
|
|
<div>
|
|
<el-date-picker unlink-panels @change="changeDateRange" v-model="select.dateRange" type="daterange" range-separator="至"
|
|
value-format="yyyy-MM-dd" format="yyyy-MM-dd" start-placeholder="开课日期" end-placeholder="结束日期">
|
|
</el-date-picker>
|
|
</div>
|
|
<div>
|
|
<el-select filterable v-model="select.type" placeholder="请选择课程体系" clearable>
|
|
<el-option v-for="item in courseTypesList" :key="item.id" :label="item.name" :value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</div>
|
|
<div>
|
|
<el-select v-model="select.is_chart" placeholder="课程是否统计" clearable style="width: 150px;">
|
|
<el-option label="否" :value="0"></el-option>
|
|
<el-option label="是" :value="1"></el-option>
|
|
</el-select>
|
|
</div>
|
|
<div>
|
|
<el-button type="primary" size="small" @click="select.page=1,getList()">查询</el-button>
|
|
<el-button type="primary" size="small" @click="resetSelect">重置</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</lx-header>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div v-if="statisticsTotal" class="statistics-row" style="margin: 15px 0; padding: 15px; background: #f5f7fa; border-radius: 4px; display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 50px;">
|
|
<div v-for="item in statisticsFields" :key="item.prop" class="stat-item" style="text-align: center;">
|
|
<div style="font-size: 14px; color: #909399; margin-bottom: 5px;">{{ item.label }}</div>
|
|
<div style="font-size: 18px; font-weight: bold; color: #409EFF;">{{ statisticsTotal[item.prop] || 0 }}</div>
|
|
</div>
|
|
</div>
|
|
<xy-table :list="list" :total="total" :showIndexFixed="'left'"
|
|
@pageIndexChange="pageIndexChange" @pageSizeChange="pageSizeChange" :table-item="table_item">
|
|
<template v-slot:dateRange>
|
|
<el-table-column align='center' label="开课日期" width="200" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div>
|
|
{{scope.row.start_date?scope.row.start_date+'至'+scope.row.end_date:''}}
|
|
</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:course_signs_count>
|
|
<el-table-column align='center' label="目前报名人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.course_signs_count && scope.row.course_signs_count>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,'')">
|
|
{{scope.row.course_signs_count}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,'')">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_wait_total>
|
|
<el-table-column align='center' label="待审核人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_wait_total && scope.row.sign_wait_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,0)">
|
|
{{scope.row.sign_wait_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,0)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_pass_total>
|
|
<el-table-column align='center' label="审核通过人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_pass_total && scope.row.sign_pass_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,1)">{{scope.row.sign_pass_total}}</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,1)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_fault_total>
|
|
<el-table-column align='center' label="审核不通过人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_fault_total && scope.row.sign_fault_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,2)">
|
|
{{scope.row.sign_fault_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,2)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_prepare_total>
|
|
<el-table-column align='center' label="面试候选人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_prepare_total && scope.row.sign_prepare_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,3)">
|
|
{{scope.row.sign_prepare_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,3)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_cancel_total>
|
|
<el-table-column align='center' label="已取消人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_cancel_total && scope.row.sign_cancel_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,4)">
|
|
{{scope.row.sign_cancel_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,4)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_give_up_total>
|
|
<el-table-column align='center' label="主动放弃人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_give_up_total && scope.row.sign_give_up_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,5)">
|
|
{{scope.row.sign_give_up_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,5)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template v-slot:sign_black_total>
|
|
<el-table-column align='center' label="黑名单人数" width="120" header-align="center">
|
|
<template slot-scope="scope">
|
|
<div v-if="scope.row.sign_black_total && scope.row.sign_black_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
@click="toApply(scope.row,6)">
|
|
{{scope.row.sign_black_total}}
|
|
</div>
|
|
<div v-else style="cursor: pointer;text-decoration:underline" @click="toApply(scope.row,6)">0</div>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
|
|
<template v-slot:btns>
|
|
<div></div>
|
|
</template>
|
|
</xy-table>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import myMixins from "@/mixin/selectMixin.js";
|
|
import {
|
|
index
|
|
} from "@/api/course/index.js"
|
|
import {
|
|
index as indexType
|
|
} from "@/api/course/courseType.js"
|
|
export default {
|
|
mixins: [myMixins],
|
|
components: {},
|
|
data() {
|
|
return {
|
|
dateRange: [],
|
|
courseTypesList:[],
|
|
select: {
|
|
name: '',
|
|
dateRange: '',
|
|
type: "",
|
|
is_chart: '',
|
|
page: 1,
|
|
page_size: 10,
|
|
},
|
|
list: [],
|
|
total: 0,
|
|
statisticsTotal: null,
|
|
statisticsFields: [
|
|
{
|
|
prop: 'course_signs_count',
|
|
label: '目前报名人数'
|
|
},
|
|
{
|
|
prop: 'sign_wait_total',
|
|
label: '待审核人数'
|
|
},
|
|
{
|
|
prop: 'sign_pass_total',
|
|
label: '审核通过人数'
|
|
},
|
|
{
|
|
prop: 'sign_fault_total',
|
|
label: '审核不通过人数'
|
|
},
|
|
{
|
|
prop: 'sign_prepare_total',
|
|
label: '面试候选人数'
|
|
},
|
|
{
|
|
prop: 'sign_cancel_total',
|
|
label: '已取消人数'
|
|
},
|
|
{
|
|
prop: 'sign_give_up_total',
|
|
label: '主动放弃人数'
|
|
},
|
|
{
|
|
prop: 'sign_black_total',
|
|
label: '黑名单人数'
|
|
}
|
|
],
|
|
table_item: [{
|
|
prop: 'name',
|
|
label: '课程名称',
|
|
align: 'left',
|
|
fixed:'left'
|
|
}, {
|
|
prop: 'dateRange',
|
|
label: '开课日期',
|
|
align: 'center',
|
|
width: 180,
|
|
}, {
|
|
prop: 'type_detail.name',
|
|
label: '课程体系',
|
|
align: 'center',
|
|
width: 180,
|
|
}, {
|
|
prop: 'total',
|
|
label: '拟开课人数',
|
|
align: 'center',
|
|
width: 120,
|
|
}, {
|
|
prop: 'course_signs_count',
|
|
label: '目前报名人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_wait_total',
|
|
label: '待审核人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_pass_total',
|
|
label: '审核通过人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_fault_total',
|
|
label: '审核不通过人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_prepare_total',
|
|
label: '面试候选人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_cancel_total',
|
|
label: '已取消人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_give_up_total',
|
|
label: '主动放弃人数',
|
|
align: 'center',
|
|
width: 120
|
|
},
|
|
{
|
|
prop: 'sign_black_total',
|
|
label: '黑名单人数',
|
|
align: 'center',
|
|
width: 120
|
|
}]
|
|
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
this.getTypes()
|
|
},
|
|
methods: {
|
|
pageIndexChange(e){
|
|
this.select.page = e
|
|
this.getList()
|
|
},
|
|
pageSizeChange(e){
|
|
this.select.page_size = e
|
|
this.select.page = 1
|
|
this.getList()
|
|
},
|
|
resetSelect(){
|
|
this.select.name = ''
|
|
this.select.type = ''
|
|
this.select.dateRange = ''
|
|
this.select.is_chart = ''
|
|
this.select.page=1
|
|
this.getList()
|
|
},
|
|
async getList() {
|
|
const filter = [{
|
|
key: 'name',
|
|
op: 'like',
|
|
value: this.select.name
|
|
}, {
|
|
key: 'type',
|
|
op: 'eq',
|
|
value: this.select.type
|
|
}, {
|
|
key: 'start_date',
|
|
op: 'range',
|
|
value: this.select.dateRange?this.select.dateRange.join(","):''
|
|
}]
|
|
|
|
// 只有当 is_chart 不为空时才添加该查询条件
|
|
if (this.select.is_chart !== '') {
|
|
filter.push({
|
|
key: 'is_chart',
|
|
op: 'eq',
|
|
value: this.select.is_chart
|
|
})
|
|
}
|
|
|
|
const res = await index({
|
|
page: this.select.page,
|
|
page_size: this.select.page_size,
|
|
show_relation: ['typeDetail'],
|
|
sort_name:'start_date',
|
|
sort_type:'DESC',
|
|
filter: filter
|
|
})
|
|
this.list = res.data
|
|
this.total = res.total
|
|
// 保存统计数据
|
|
if (res.statistics_total) {
|
|
this.statisticsTotal = res.statistics_total
|
|
} else {
|
|
this.statisticsTotal = null
|
|
}
|
|
},
|
|
getTypes() {
|
|
indexType({
|
|
page: 1,
|
|
page_size: 999,
|
|
sort_name:'id',
|
|
sort_type:'ASC',
|
|
}).then(res => {
|
|
// this.courseTypesList = res.data.filter(item => item.status === 1)
|
|
this.courseTypesList = res.data
|
|
})
|
|
},
|
|
changeDateRange(e) {
|
|
if (e) {
|
|
this.select.dateRange = e
|
|
} else {
|
|
this.select.dateRange = ''
|
|
}
|
|
},
|
|
toApply(row,status) {
|
|
this.$router.push({
|
|
path: '/course/apply_list',
|
|
query: {
|
|
status:status,
|
|
title: row.name,
|
|
id: row.id,
|
|
date: row.start_date?row.start_date + '至' + row.end_date:'',
|
|
leibie: row.type_detail.name
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.searchwrap {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&>div {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 10px;
|
|
|
|
span {
|
|
min-width: 70px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|