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.

224 lines
6.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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 v-if="path==2">
<div>
<el-input v-model="select.course_name" placeholder="请输入课程名称"></el-input>
</div>
</div>
<div v-else>
<div>
<el-input v-model="select.name" placeholder="请输入姓名"></el-input>
</div>
<div>
<el-input v-model="select.company_name" placeholder="请输入公司名称"></el-input>
</div>
<div>
<el-select v-model="select.company_position" placeholder="请选择职务" clearable>
<el-option v-for="item in company_position_list" :key="item.id" :label="item.value"
:value="item.id">
</el-option>
</el-select>
</div>
<div>
<el-select v-model="select.company_type" placeholder="请选择企业性质" clearable>
<el-option v-for="item in company_type_list" :key="item.id" :label="item.value" :value="item.id">
</el-option>
</el-select>
</div>
<div>
<el-select v-model="select.company_area" placeholder="请选择所属区域" clearable>
<el-option v-for="item in company_area_list" :key="item.id" :label="item.value" :value="item.id">
</el-option>
</el-select>
</div>
<div>
<el-select v-model="select.company_industry" placeholder="请选择所属行业" clearable>
<el-option v-for="item in company_industry_list" :key="item.id" :label="item.value"
:value="item.id">
</el-option>
</el-select>
</div>
</div>
<div>
<el-button type="primary" size="small" @click="getList">查询</el-button>
<el-button v-if="path==2" type="primary" size="small">导出</el-button>
</div>
</div>
</div>
</lx-header>
</div>
</div>
<div>
<div v-if="path==2" style="margin-bottom:10px">统计本年度学员共计800人累计学员1500人。</div>
<xy-table :list="list" :total="total" :table-item="table_item">
<template v-slot:btns>
<el-table-column align='center' label="操作" fixed="right" width="80" header-align="center">
<template slot-scope="scope">
<el-button type="primary" size="small" @click="showDetail('show',scope.row.id)">查看</el-button>
</template>
</el-table-column>
</template>
</xy-table>
</div>
<student-detail ref="studentDetail"></student-detail>
</div>
</template>
<script>
import studentDetail from './components/detail.vue';
import myMixins from "@/mixin/selectMixin.js";
import {
indexStudy
} from '@/api/student/index.js'
export default {
mixins: [myMixins],
components: {
studentDetail
},
data() {
return {
path: '',
select: {
name: '',
course_name: '',
company_name: '',
company_position: '',
company_area: '',
company_type: '',
company_industry: '',
page: 1,
page_size: 10,
},
company_position_list: [],
company_type_list: [],
company_industry_list: [],
company_area_list: [],
list: [],
total: 0,
table_item: [{
prop: 'name',
label: '姓名',
align: 'center',
width: 120
}, {
prop: 'company_name',
label: '公司',
align: 'left',
}, {
prop: 'company_position',
label: '职务',
align: 'center',
width: 120,
}, {
prop: 'mobile',
label: '联系电话',
align: 'center',
width: 120,
}, {
prop: 'company_type',
label: '企业性质',
align: 'center',
width: 180,
}, {
prop: 'company_industry',
label: '所属行业',
align: 'center',
width: 120,
}, {
prop: 'company_area',
label: '所属区域',
align: 'center',
width: 120,
}]
}
},
created() {
const _path = this.$route.path.split("_")
console.log("_path", this.$route, _path)
this.path = _path[1]
if (this.path == 2) {
this.table_item.unshift({
prop: 'subject',
label: '课程名称',
align: 'left',
width: 200,
})
}
this.getList()
},
methods: {
async getList() {
const res = await indexStudy({
page: this.select.page,
page_size: this.select.page_size,
filter: [{
key: 'course_name',
op: 'like',
value: this.select.course_name
}, {
key: 'name',
op: 'like',
value: this.select.name
}, {
key: 'company_name',
op: 'like',
value: this.select.company_name
}, {
key: 'company_position',
op: 'eq',
value: this.select.company_position
}, {
key: 'company_area',
op: 'eq',
value: this.select.company_area
}, {
key: 'company_type',
op: 'eq',
value: this.select.company_type
}, {
key: 'company_industry',
op: 'eq',
value: this.select.company_industry
}]
})
this.list = res.data
this.total = res.total
},
showDetail(type, id) {
this.$refs.studentDetail.id = id
this.$refs.studentDetail.type = type
this.$refs.studentDetail.isShow = true
}
}
}
</script>
<style lang="scss" scoped>
.searchwrap {
display: flex;
align-items: center;
&>div {
display: flex;
align-items: center;
&>div {
margin-right: 10px;
}
}
}
</style>