123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- <template>
- <div class="m-container">
- <h2>
- <div class="squrt"></div>学员列表
- </h2>
- <div class="m-core">
- <div class="newBand"
- v-permission="'studentManage/register'"
- @click="addStudent">新增学员</div>
- <div class="newBand"
- @click="onCreateQRCode">学员激活列表</div>
- <!-- 搜索标题 -->
- <el-form :inline="true"
- class="searchForm"
- v-model="searchForm">
- <el-form-item>
- <el-input placeholder="学生姓名或电话"
- @keyup.enter.native='onSearch'
- v-model="searchForm.search"></el-input>
- </el-form-item>
- <el-form-item prop='organId'>
- <el-select class='multiple'
- filterable
- v-model="searchForm.organId"
- 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 prop='isActive'>
- <el-select class='multiple'
- v-model="searchForm.isActive"
- clearable
- placeholder="是否激活">
- <el-option label="是"
- value="true"></el-option>
- <el-option label="否"
- value="false"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop='hasCourse'>
- <el-select class='multiple'
- v-model="searchForm.hasCourse"
- clearable
- placeholder="是否有课">
- <el-option label="是"
- value="1"></el-option>
- <el-option label="否"
- value="0"></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item>
- <el-input placeholder="学生姓名"
- @keyup.enter.native='onSearch'
- v-model="searchForm.studentName"></el-input>
- </el-form-item> -->
- <el-form-item>
- <el-button @click="onSearch"
- type="danger">搜索</el-button>
- <el-button @click="onReSet"
- type="primary">重置</el-button>
- <el-button type="primary"
- v-permission="'export/studentHasCourse'"
- @click="downLoadStudent">导出名单</el-button>
- </el-form-item>
- </el-form>
- <!-- 列表 -->
- <div class="tableWrap">
- <el-table :data='tableList'
- :header-cell-style="{background:'#EDEEF0',color:'#444'}">
- <el-table-column align='center'
- prop="userId"
- label="学员编号">
- </el-table-column>
- <el-table-column align='center'
- prop="username"
- label="学员姓名">
- </el-table-column>
- <el-table-column align='center'
- label="性别">
- <template slot-scope="scope">
- {{ scope.row.gender ? '男': '女' }}
- </template>
- </el-table-column>
- <el-table-column align='center'
- prop="realName"
- label="家长姓名">
- </el-table-column>
- <el-table-column align='center'
- prop="parentsPhone"
- label="家长联系电话">
- </el-table-column>
- <el-table-column align='center'
- label="是否激活">
- <template slot-scope="scope">
- {{ scope.row.isActive ? '是' : '否' }}
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="是否有课">
- <template slot-scope="scope">
- {{ scope.row.hasCourse ? '是' : '否' }}
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="预约陪练课">
- <template slot-scope="scope">
- {{ scope.row.isMake ? '是' : '否' }}
- </template>
- </el-table-column>
- <el-table-column align='center'
- prop="courseBalance"
- label="课程余额(元)">
- </el-table-column>
- <el-table-column align='center'
- label="操作">
- <template slot-scope="scope">
- <router-link style="color:#409EFF"
- v-permission="'/studentDetail'"
- :to="{path:`/business/studentDetail?userId=${scope.row.userId}`,query:{search:JSON.stringify(searchForm),rules:JSON.stringify(pageInfo)}}">查看</router-link>
- <el-button type="text"
- v-permission="'studentManage/studentUpdate'"
- @click="resetStudent(scope.row)">修改</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination :total="pageInfo.total"
- :page.sync="pageInfo.page"
- :limit.sync="pageInfo.limit"
- :page-sizes="pageInfo.page_size"
- @pagination="getList" />
- </div>
- </div>
- <el-dialog :title="maskName"
- width="700px"
- label-width='100px'
- label-position="right"
- :visible.sync="studentVisible">
- <el-divider>基本信息</el-divider>
- <el-form :model="studentForm"
- :inline='true'
- label-width="80px"
- label-position="right"
- ref='studentForm'
- :rules="studentRules">
- <el-form-item label="联系电话"
- :rules="[{ required: true, message: '请输入手机号' }, { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }]">
- <!-- @blur="checkPhone(studentForm.phone)" -->
- <el-input v-model="studentForm.phone"></el-input>
- </el-form-item>
- <el-form-item label="所属分部"
- v-if="isNew"
- prop="organId">
- <el-select class='multiple'
- v-model="studentForm.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 label="学生姓名"
- prop="name">
- <el-input v-model="studentForm.name"></el-input>
- </el-form-item>
- <el-form-item label="学生性别"
- prop="sex">
- <el-select class='multiple'
- filterable
- v-model="studentForm.sex"
- clearable
- placeholder="请选择性别">
- <el-option :value="0"
- label="女"></el-option>
- <el-option :value="1"
- label="男"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="家长姓名">
- <el-input v-model="studentForm.parseName"></el-input>
- </el-form-item>
- <el-form-item label="出生日期">
- <el-date-picker v-model="studentForm.date"
- value-format="yyyy-MM-dd"
- type="date"
- placeholder="选择日期">
- </el-date-picker>
- </el-form-item>
- </el-form>
- <div slot="footer"
- class="dialog-footer">
- <el-button @click="studentVisible = false">取 消</el-button>
- <el-button type="primary"
- v-if="isNew"
- @click="submitAddStudent">确 定</el-button>
- <el-button type="primary"
- v-if="!isNew"
- @click="resetStudentSubmie">确 定</el-button>
- </div>
- </el-dialog>
- <el-dialog :visible.sync="qrcodeStatus"
- center
- width="300px">
- <div class="right-code">
- <h2 class="title">学员激活列表</h2>
- <div id="qrcode"
- class="qrcode code"
- ref="qrCodeUrl"></div>
- <!-- <p class="code-url"
- v-if="codeUrl2">{{ codeUrl2 }}</p> -->
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import pagination from '@/components/Pagination/index'
- import { queryStudentList, getStudentInfoByPhone, registerStudent, updateStudent, studentHasCourse } from '@/api/studentManager'
- import { vaildStudentUrl } from '@/utils/validate'
- import { getEmployeeOrgan } from '@/api/buildTeam'
- import QRCode from 'qrcodejs2'
- import store from '@/store'
- import axios from 'axios'
- import { getToken } from '@/utils/auth'
- export default {
- name: 'studentList',
- components: { pagination },
- data () {
- return {
- studentVisible: false,
- searchForm: {
- organId: null,
- search: null,
- studentName: null,
- isActive: null,
- hasCourse: null
- },
- searchList: [],
- tableList: [],
- organList: [],
- pageInfo: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 0, // 总条数
- page_size: [10, 20, 40, 50] // 选择限制显示条数
- },
- studentForm: {
- phone: '',
- organId: '',
- name: '',
- sex: '',
- parseName: '',
- date: '',
- nation: ''
- },
- studentRules: {
- name: [{ required: true, message: '请输入学生姓名' },],
- sex: [{ required: true, message: '请选择学生姓名' },],
- date: [{ required: true, message: '请选择出生日期' },],
- organId: [{ required: true, message: '请选择分部' }],
- nation: [{ required: true, message: '请输入名族' }]
- },
- isNew: false,
- active: null,
- maskName: '新增学员',
- qrcodeStatus: false,
- qrcodes: true,
- activeRow: null
- }
- },
- mounted () {
- if (this.$route.query.search) {
- this.$route.query.search instanceof Object ? this.searchForm = this.$route.query.search : this.searchForm = JSON.parse(this.$route.query.search);
- }
- if (this.$route.query.rules) {
- this.$route.query.rules instanceof Object ? this.pageInfo = this.$route.query.rules : this.pageInfo = JSON.parse(this.$route.query.rules);
- }
- getEmployeeOrgan().then(res => {
- if (res.code == 200) {
- this.organList = res.data;
- }
- })
- this.getList();
- },
- methods: {
- onSearch () {
- this.pageInfo.page = 1;
- this.getList()
- },
- onCreateQRCode () { // 生成报名二维码
- this.qrcodeStatus = true
- // let id = this.$route.query.id
- // let teamName = this.$route.query.name
- setTimeout(() => {
- if (this.qrcodes) {
- this.qrcodes = false
- this.qrcode = new QRCode('qrcode', {
- width: 250,
- height: 250,
- colorDark: '#000000',
- colorLight: '#ffffff',
- correctLevel: QRCode.CorrectLevel.H
- })
- }
- // vaildStudentUrl() + `/#/sporadicLogin?id=${刷刷刷}`
- this.qrcode.clear();
- this.qrcode.makeCode(vaildStudentUrl() + `/#/queryStudentPer`)
- // this.codeUrl = vaildStudentUrl() + '/#/login?musicGroupId=' + id
- }, 500)
- },
- getList () {
- let params = this.searchForm
- params.rows = this.pageInfo.limit
- params.page = this.pageInfo.page
- params.organId ? params.organId : params.organId = null;
- queryStudentList(params).then(res => {
- if (res.code == 200) {
- this.tableList = res.data.rows
- this.pageInfo.total = res.data.total
- }
- })
- },
- onReSet () {
- this.searchForm = {
- organId: null,
- search: null,
- studentName: null,
- isActive: null
- }
- },
- downLoadStudent () {
- let url = '/api-web/export/studentHasCourse'
- const options = {
- method: 'POST',
- headers: {
- 'Authorization': getToken()
- },
- url,
- responseType: 'blob'
- }
- this.$confirm('确定导出?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- 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 objectUrl = URL.createObjectURL(blob)
- let link = document.createElement("a")
- let nowTime = new Date()
- let ymd = nowTime.getFullYear() + (nowTime.getMonth() + 1) + nowTime.getDate()
- let fname = `导出学员名单` + ymd //下载文件的名字
- link.href = objectUrl
- link.setAttribute("download", fname)
- document.body.appendChild(link)
- link.click()
- })
- }).catch(() => { })
- },
- checkPhone (val) {
- var regu = /^1[3456789]\d{9}$/;
- var re = new RegExp(regu);
- if (re.test(val)) {
- getStudentInfoByPhone({ mobile: this.studentForm.phone }).then(res => {
- if (res.code == 200) {
- if (res.data) {
- this.studentForm = {
- name: res.data.name,
- sex: res.data.gender,
- parseName: res.data.parentsName,
- // sound: parseInt(res.data.subjectId),
- phone: val,
- date: res.data.birthdate
- }
- }
- }
- })
- }
- },
- submitAddStudent () {
- // 效验 然后组数据提交
- this.$refs['studentForm'].validate(item => {
- if (item) {
- let obj = {
- phone: this.studentForm.phone,
- username: this.studentForm.name,
- gender: this.studentForm.sex,
- realName: this.studentForm.parseName,
- birthdate: this.studentForm.date,
- organId: this.studentForm.organId,
- nation: this.studentForm.nation
- }
- registerStudent(obj).then(res => {
- if (res.code == 200) {
- this.$message.success('添加成功');
- this.studentVisible = false;
- this.getList()
- }
- })
- }
- })
- },
- // 修改学生信息
- resetStudentSubmie () {
- this.$refs['studentForm'].validate(item => {
- if (item) {
- let obj = {
- phone: this.studentForm.phone,
- username: this.studentForm.name,
- gender: this.studentForm.sex,
- realName: this.studentForm.parseName,
- birthdate: this.studentForm.date,
- organId: this.studentForm.organId,
- id: this.active.userId,
- nation: this.studentForm.nation
- }
- updateStudent(obj).then(res => {
- if (res.code == 200) {
- this.$message.success('修改成功');
- this.studentVisible = false;
- this.getList()
- }
- })
- }
- })
- },
- addStudent () {
- this.isNew = true;
- this.studentVisible = true;
- this.maskName = '新增学员'
- },
- resetStudent (row) {
- this.isNew = false;
- this.active = row;
- this.studentVisible = true;
- this.maskName = '修改学员'
- this.studentForm = {
- phone: row.parentsPhone,
- name: row.username,
- sex: row.gender,
- parseName: row.realName,
- date: row.birthdate,
- nation: row.nation
- }
- },
- },
- watch: {
- studentVisible (val) {
- if (!val) {
- this.studentForm = {
- phone: '',
- organId: '',
- name: '',
- sex: '',
- parseName: '',
- date: '',
- nation: ''
- }
- this.$refs['studentForm'].resetFields()
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .newBand {
- display: inline-block;
- margin-right: 10px;
- }
- .right-code {
- // width: 50%;
- // float: left;
- .title {
- font-size: 18px;
- text-align: center;
- padding-bottom: 8px;
- }
- }
- </style>
|