12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304 |
- <template>
- <div class='stu-container'>
- <!-- 头部展示 -->
- <div class="headWrap">
- <div class="left">
- <div class="headItem">
- <p>在读人数:<span>{{studentListInfo.studying}}</span></p>
- </div>
- <div class="headItem">
- <p>退团人数:<span>{{studentListInfo.quit}}</span></p>
- </div>
- <div class="headItem">
- <p>新增人数:<span>{{studentListInfo.add}}</span></p>
- </div>
- </div>
- <div class="right">
- <div class="newStudent"
- v-permission="'studentRegistration/insertStudent'"
- style="margin-bottom:10px;"
- @click="addStudentVisible = true">新增学员</div>
- <div class="newStudent"
- style="margin-bottom:10px;"
- @click="onCreateQRCode">报名连接</div>
- <div class="newStudent"
- @click='gotoSignin'>点名总览</div>
- </div>
- </div>
- <!-- 搜索类型 -->
- <el-form :inline="true"
- class="searchForm"
- v-model="searchForm">
- <el-form-item>
- <el-input v-model="searchForm.search"
- placeholder="学生姓名或电话"
- @keyup.enter.native='search'></el-input>
- </el-form-item>
- <el-form-item>
- <el-select v-model="searchForm.studentStatus"
- clearable
- filterable
- placeholder="学员状态">
- <el-option label="在读"
- value="NORMAL"></el-option>
- <el-option label="请假"
- value="LEAVE"></el-option>
- <el-option label="退团"
- value="QUIT"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-select v-model="searchForm.classGroupId"
- clearable
- filterable
- placeholder="请选择班级">
- <el-option v-for='(item,index) in classList'
- :key='index'
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-select v-model="searchForm.major"
- clearable
- filterable
- placeholder="所选专业">
- <el-option v-for='(item,index) in soundList'
- :key='index'
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-select v-model="searchForm.isPay"
- clearable
- filterable
- placeholder="报名缴费">
- <el-option label="完成缴费"
- value="PAID_COMPLETED"></el-option>
- <el-option label="未缴费"
- value="NON_PAYMENT"></el-option>
- <el-option label="缴费中"
- value="PROCESSING"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-select v-model="searchForm.isActive"
- clearable
- filterable
- placeholder="是否激活">
- <el-option label="是"
- value="1"></el-option>
- <el-option label="否"
- value="0"></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item>
- <el-select v-model="searchForm.school"
- placeholder="所在学校">
- <el-option label="item.text"
- value="1"></el-option>
- </el-select>
- </el-form-item> -->
- <el-form-item>
- <div class='searchBtn'
- @click='search'>搜索</div>
- </el-form-item>
- <el-form-item>
- <div class='searchBtn export'
- v-permission="'export/musicGroupStudent'"
- @click='onMusicGroupExport'>导出</div>
- </el-form-item>
- </el-form>
- <!-- 列表 -->
- <div class="tableWrap">
- <el-table :data='tableList'
- :header-cell-style="{background:'#EDEEF0',color:'#444'}">
- <el-table-column label="学员编号"
- width="120px;"
- prop="userId">
- </el-table-column>
- <el-table-column label="学员姓名"
- width="120px;"
- prop="realName">
- </el-table-column>
- <el-table-column align='center'
- prop="gender"
- width="50px;"
- label="性别">
- <template slot-scope="scope">
- <div>
- {{scope.row.gender| sex }}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- prop="phone"
- label="联系电话">
- </el-table-column>
- <!-- <el-table-column align='center'
- prop=""
- label="所在学校">
- </el-table-column> -->
- <el-table-column align='center'
- label="年级班级">
- <template slot-scope="scope">
- <div>
- {{scope.row.currentGrade+scope.row.currentClass}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="专业"
- prop="subjectName">
- </el-table-column>
- <!-- <el-table-column align='center'
- label="乐团班级">
- </el-table-column>
- <el-table-column align='center'
- label="合奏班">
- </el-table-column> -->
- <el-table-column align='center'
- prop="studentStatus"
- label="学员状态">
- <template slot-scope="scope">
- <div>
- {{ scope.row.studentStatus | musicGroupStudentType}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="新增学员">
- <template slot-scope="scope">
- <div>
- {{ scope.row.isNewStudent | yesOrNo}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="批量修改缴费">
- <template slot-scope="scope">
- <div>
- {{ scope.row.isLock?'已锁定':'可修改'}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align="center"
- label="下次缴费日期"
- prop="nextPaymentDate">
- <template slot-scope="scope">
- {{ scope.row.nextPaymentDate | formatTimer }}
- </template>
- </el-table-column>
- <el-table-column align="center"
- label="缴费金额"
- prop="courseFee">
- </el-table-column>
- <el-table-column align='center'
- label="报名缴费">
- <template slot-scope="scope">
- <div>
- {{ scope.row.paymentStatus | studentPays}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- label="是否激活">
- <template slot-scope="scope">
- <div>
- {{ scope.row.isActive?'是':'否'}}
- </div>
- </template>
- </el-table-column>
- <el-table-column align='center'
- fixed="right"
- width="250px;"
- label="操作">
- <template slot-scope="scope">
- <div v-if="scope.row.studentStatus != 'QUIT'">
- <!-- <el-popover placement="top"
- v-model="scope.row.typeVisible">
- <el-input v-model="remark"
- placeholder="请输入退团原因"></el-input>
- <el-button type="text"
- slot='reference'
- class='chiose'>
- 退团
- </el-button>
- <div style="text-align: right; margin-top: 20px">
- <el-button size="mini"
- type="text"
- @click="scope.row.typeVisible = false">取消</el-button>
- <el-button type="primary"
- size="mini"
- @click="chioseType(scope.row)">确定</el-button>
- </div>
- </el-popover> -->
- <el-button type="text"
- v-if="permission('studentManage/queryStudentClassGroup')"
- @click="lookClass(scope.row)">查看班级</el-button>
- <el-button type="text"
- v-if="!scope.row.isLock && permission('studentManage/updateStudentFeeIsLock')"
- @click="lockStudent(scope.row)">锁定</el-button>
- <el-button v-if="scope.row.isLock && permission('studentManage/updateStudentFeeIsLock')"
- type="text"
- @click="lockStudent(scope.row)">解锁</el-button>
- <el-button type="text"
- v-if="permission('studentManage/updateStudentFee')"
- @click="resetPay(scope.row)">修改缴费</el-button>
- <el-button type='text'
- v-if="permission('musicGroupQuit/directQuitMusicGroup')"
- @click="quieTeamMask(scope.row)">退团</el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <pagination :total="rules.total"
- :page.sync="rules.page"
- :limit.sync="rules.limit"
- :page-sizes="rules.page_size"
- @pagination="getList" />
- </div>
- <el-dialog title="新增学员"
- width="640px"
- class="studentInfo"
- :visible.sync="addStudentVisible">
- <el-form :model="maskForm"
- label-position="right"
- label-width="100px"
- ref='maskForm'
- :rules="maskRules"
- :inline="true">
- <el-divider>基本信息</el-divider>
- <el-form-item label="联系电话"
- :rules="[{ required: true, message: '请输入手机号' }, { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }]">
- <el-input v-model="maskForm.phone"
- placeholder="联系电话"
- @blur="checkPhone(maskForm.phone)"></el-input>
- </el-form-item>
- <el-form-item label="学员姓名"
- prop="studentName">
- <el-input v-model="maskForm.studentName"
- placeholder="学员姓名"></el-input>
- </el-form-item>
- <el-form-item label="学员性别"
- prop="sex">
- <el-select v-model="maskForm.sex"
- clearable>
- <el-option label="男"
- :value="1"></el-option>
- <el-option label="女"
- :value="0"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="家长姓名"
- prop="parentName">
- <el-input v-model="maskForm.parentName"
- placeholder="家长姓名"></el-input>
- </el-form-item>
- <el-form-item label="年级"
- prop="startClass">
- <el-select placeholder="起始年级"
- filterable
- clearable
- v-model="maskForm.startClass">
- <el-option value="一年级"
- label="一年级"></el-option>
- <el-option value="二年级"
- label="二年级"></el-option>
- <el-option value="三年级"
- label="三年级"></el-option>
- <el-option value="四年级"
- label="四年级"></el-option>
- <el-option value="五年级"
- label="五年级"></el-option>
- <el-option value="六年级"
- label="六年级"></el-option>
- <el-option value="初一"
- label="初一"></el-option>
- <el-option value="初二"
- label="初二"></el-option>
- <el-option value="初三"
- label="初三"></el-option>
- <el-option value="高一"
- label="高一"></el-option>
- <el-option value="高二"
- label="高二"></el-option>
- <el-option value="高三"
- label="高三"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="班级"
- prop="course">
- <el-input v-model="maskForm.course"
- placeholder="班级"></el-input>
- </el-form-item>
- <el-form-item label="学员声部"
- prop="sound">
- <el-select v-model="maskForm.sound"
- clearable
- filterable
- @change="onSoundChange">
- <el-option v-for='(item,index) in soundList'
- :key='index'
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="证件号"
- prop="id">
- <el-input v-model="maskForm.id"></el-input>
- </el-form-item> -->
- <el-form-item label="出生日期"
- style="margin-right: 0;"
- prop="timer">
- <el-col :span="24">
- <el-date-picker v-model="maskForm.timer"
- value-format="yyyy-MM-dd"
- type="date"
- placeholder="选择日期">
- </el-date-picker>
- </el-col>
- </el-form-item>
- <el-form-item label="课程费用"
- prop="courseFee">
- <el-input v-model="maskForm.courseFee"
- type="number"
- @mousewheel.native.prevent
- placeholder="续费金额"></el-input>
- </el-form-item>
- <br>
- <el-form-item label="单技班">
- <el-select v-model="maskForm.signClass"
- filterable
- clearable>
- <el-option v-for="(item,index) in signList"
- :key="index"
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="合奏班">
- <el-select v-model="maskForm.mixClass"
- filterable
- clearable>
- <el-option v-for="(item,index) in mixList"
- :key="index"
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="基础技能班">
- <el-select v-model="maskForm.highClass"
- filterable
- clearable>
- <el-option v-for="(item,index) in highList"
- :key="index"
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="临时班">
- <el-select v-model="maskForm.snapClass"
- filterable
- clearable
- multiple>
- <el-option v-for="(item,index) in snapList"
- :key="index"
- :value="item.id"
- :label="item.name"></el-option>
- </el-select>
- </el-form-item>
- <el-divider>首缴订单信息</el-divider>
- <el-form-item label="课程费用"
- prop="temporaryCourseFee">
- <el-input type='number'
- @mousewheel.native.prevent
- v-model="maskForm.temporaryCourseFee"
- placeholder="首缴课程金额"></el-input>
- </el-form-item>
- <el-form-item label="乐器"
- class="instrList">
- <el-col :span="11"
- style="width: auto;">
- <el-form-item>
- <el-select placeholder="选择乐器"
- filterable
- clearable
- @change="onInstrumentChange"
- v-model="maskForm.musicGoodsIdList">
- <el-option v-for="(item, index) in INSTRUMENTLIST"
- :key="index"
- :value="item.value"
- :label="item.label"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1"> </el-col>
- <el-col :span="11">
- <el-form-item>
- <el-input type="number" @mousewheel.native.prevent :disabled="kitStatus" v-model="maskForm.musicPrice"
- placeholder="输入金额">
- <el-select v-model="maskForm.kitGroupPurchaseType"
- style="width: 80px !important;"
- @change="onKitGroupChnage"
- slot="prepend">
- <el-option label="免费"
- value="FREE"></el-option>
- <el-option label="团购"
- value="GROUP"></el-option>
- <el-option label="租赁"
- value="LEASE"></el-option>
- </el-select>
- </el-input>
- </el-form-item>
- </el-col>
- </el-form-item>
- <el-form-item label="辅件">
- <el-col :span="11"
- style="width: auto;">
- <el-form-item>
- <el-select filterable
- clearable
- multiple
- placeholder="选择辅件"
- v-model="maskForm.instrGoodsIdList">
- <el-option v-for="(item, index) in ACCESSORIESLIST"
- :key="index"
- :value="item.value"
- :label="item.label"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1"> </el-col>
- <el-col :span="11">
- <el-form-item>
- <el-input v-model="maskForm.instrPrice"
- placeholder="输入金额"></el-input>
- </el-form-item>
- </el-col>
- </el-form-item>
- </el-form>
- <div slot="footer"
- class="dialog-footer">
- <!-- <el-button @click="addStudentVisible = false">取 消</el-button> -->
- <el-button type="primary"
- @click="addStudent">确 定</el-button>
- </div>
- </el-dialog>
- <el-dialog title="学员所在班级"
- width="640px"
- :visible.sync="studentClassVisible">
- <el-form :model="classMask">
- <el-form-item label="学生姓名">
- {{ classMask.studentName }}
- </el-form-item>
- <el-form-item label="所在班级"
- v-for="(item,index) in classList"
- :key="index">
- {{ item.name }}
- </el-form-item>
- </el-form>
- </el-dialog>
- <!-- 退团弹窗 -->
- <el-dialog title="退团信息确认"
- width="640px"
- :visible.sync="quitVisible">
- <el-form :model="quitForm"
- ref="quitForm"
- :rules="quitRules">
- <el-form-item label="退还课程费用"
- prop="isRefundCourseFee">
- <el-radio v-model="quitForm.isRefundCourseFee"
- :label="true">是</el-radio>
- <el-radio v-model="quitForm.isRefundCourseFee"
- :label="false">否</el-radio>
- </el-form-item>
- <el-form-item label="退还乐器费用"
- prop="isRefundInstrumentFee">
- <el-radio v-model="quitForm.isRefundInstrumentFee"
- :label="true">是</el-radio>
- <el-radio v-model="quitForm.isRefundInstrumentFee"
- :label="false">否</el-radio>
- </el-form-item>
- <el-form-item label="退还教辅费用"
- prop="isRefundTeachingAssistantsFee">
- <el-radio v-model="quitForm.isRefundTeachingAssistantsFee"
- :label="true">是</el-radio>
- <el-radio v-model="quitForm.isRefundTeachingAssistantsFee"
- :label="false">否</el-radio>
- </el-form-item>
- <el-form-item label="退团原因">
- <el-input type="textarea"
- v-model="quitForm.reason"></el-input>
- </el-form-item>
- </el-form>
- <span slot="footer"
- class="dialog-footer">
- <el-button @click="quitVisible = false">取 消</el-button>
- <el-button type="primary"
- @click="chioseType">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog title="报名二维码"
- :visible.sync="qrcodeStatus"
- width="300px">
- <div class="left-code">
- <h2>学员报名连接</h2>
- <div id="qrcode"
- class="qrcode code"
- ref="qrCodeUrl"></div>
- <p class="code-url"
- v-if="codeUrl">{{ codeUrl }}</p>
- </div>
- </el-dialog>
- <el-dialog title="修改缴费周期"
- :before-close='closePayVisible'
- width='600px'
- :visible.sync="payVisible">
- <el-form :model="payForm"
- ref="payForm"
- :inline="true">
- <el-form-item label="学生姓名"
- prop="studentName">
- <el-input v-model="payForm.studentName"
- disabled></el-input>
- </el-form-item>
- <br>
- <el-form-item label="缴费金额"
- prop="payMoney">
- <el-input type="number"
- v-model="payForm.payMoney"
- @mousewheel.native.prevent></el-input>
- </el-form-item>
- <el-form-item label="缴费月份"
- prop="payMonth">
- <el-checkbox-group v-model="payForm.payMonth"
- fill="#14928A"
- text-color='#474747'>
- <el-checkbox label="1">一月</el-checkbox>
- <el-checkbox label="2">二月</el-checkbox>
- <el-checkbox label="3">三月</el-checkbox>
- <el-checkbox label="4">四月</el-checkbox>
- <el-checkbox label="5">五月</el-checkbox>
- <el-checkbox label="6">六月</el-checkbox>
- <el-checkbox label="7">七月</el-checkbox>
- <el-checkbox label="8">八月</el-checkbox>
- <el-checkbox label="9">九月</el-checkbox>
- <el-checkbox label="10">十月</el-checkbox>
- <el-checkbox label="11">十一月</el-checkbox>
- <el-checkbox label="12">十二月</el-checkbox>
- </el-checkbox-group>
- </el-form-item>
- <!-- studentName: '',
- payMoney: '',
- payMonth -->
- </el-form>
- <div slot="footer"
- class="dialog-footer">
- <el-button @click="quitVisible = false">取 消</el-button>
- <el-button type="primary"
- @click="submitPay">确 定</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { getTeamStudentList, getTeamStudentInfo, getSingleClass, findSound, StudentQuit, findSubjectPlan, getGoods, getSubject, getMusicGroupAllClass, StudentFeeIsLock, updateStudentFee } from '@/api/buildTeam'
- import { addStudent, getStudentClass, getStudentInfoByPhone } from '@/api/studentManager'
- import pagination from '@/components/Pagination/index'
- import { vaildStudentUrl } from '@/utils/validate'
- import QRCode from 'qrcodejs2'
- import axios from 'axios'
- import { getToken } from '@/utils/auth'
- import { permission } from '@/utils/directivePage'
- export default {
- name: "tstudentList",
- props: ['teamid'],
- data () {
- return {
- payVisible: false,
- quitVisible: false, // 退团信息确认的弹窗
- studentClassVisible: false, // 学员所在班级弹窗
- addStudentVisible: false, //新增学员弹窗
- topFrom: { // 顶部的禁选框集合
- expect: '2', // 预期招生
- studing: '5', // 在读人数
- allmoney: '100', //实收总额
- students: '5', // 实际招生人数
- signout: '10', // 退团总数
- },
- searchForm: {
- studentStatus: '', // 学生状态
- major: '', // 报名专业
- isPay: '', // 是否缴费
- search: '',
- isActive: '',
- classGroupId: null
- },
- quitForm: { // 退团信息确认
- isRefundCourseFee: null,
- isRefundInstrumentFee: null,
- isRefundTeachingAssistantsFee: null,
- reason: ''
- },
- classMask: {
- studentName: ''
- },
- searchLsit: [],
- tableList: [], //
- rules: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 0, // 总条数
- page_size: [10, 20, 40, 50] // 选择限制显示条数
- },
- studentListInfo: {
- add: '',
- quit: '',
- studying: ''
- },
- signList: [],
- mixList: [],
- highList: [],
- snapList: [],
- soundList: [],
- qrcodeStatus: false, // 生成二维码
- qrcodes: true,
- qrcode: null,
- codeUrl: null,
- maskForm: {
- studentName: '',
- sex: '',
- parentName: '',
- course: '',
- phone: '',
- sound: '',
- timer: '',
- signClass: '',
- mixClass: '',
- highClass: '',
- snapClass: [],
- // price: '',
- startClass: '',
- id: '',
- courseFee: null, // 声部费用
- temporaryCourseFee: null, // 本次课程费用
- musicGoodsIdList: null, // 乐器商品编号
- kitGroupPurchaseType: 'GROUP', // 乐器购买方式
- musicPrice: null, // 乐器购买金额
- instrGoodsIdList: [], // 辅件商品编号
- instrPrice: null // 辅件购买金额
- },
- remark: '', // 退团原因
- classList: [],
- quitRules: {
- isRefundCourseFee: [{ required: true, message: '请选择是否退还课程费用' },],
- isRefundInstrumentFee: [{ required: true, message: '选择是否退还乐器费用' },],
- isRefundTeachingAssistantsFee: [{ required: true, message: '选择是否退还教辅费用' },],
- },
- maskRules: {
- studentName: [{ required: true, message: '请输入学生姓名' },],
- sex: [{ required: true, message: '请选择学生姓名' },],
- parentName: [{ required: true, message: '请输入家长姓名' },],
- course: [{ required: true, message: '请输入班级' },],
- // phone: [{ required: true, message: '请输入手机号' }, { pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }],
- sound: [{ required: true, message: '请选择声部' },],
- timer: [{ required: true, message: '请选择出生日期' },],
- signClass: [{ required: true, message: '请选择单技班' },],
- // price: [{ required: true, message: '请输入首缴金额' },],
- startClass: [{ required: true, message: '请选择年级' }],
- id: [{ required: true, message: '请输入证件号' }],
- courseFee: [{ required: true, message: '请输入声部费用' }],
- temporaryCourseFee: [{ required: true, message: '请输课程费用' }],
- musicGoodsIdList: [{ required: true, message: '请选择乐器', trigger: 'change' }],
- musicPrice: [{ required: true, message: '请输入乐器购买金额' }],
- instrGoodsIdList: [{ required: true, message: '请选择辅件' }],
- instrPrice: [{ required: true, message: '请输入辅件金额' }]
- },
- INSTRUMENTLIST: [], // 乐器列表
- ACCESSORIESLIST: [], // 辅件列表
- activeRow: null,
- Fsearch: null,
- Frules: null,
- payForm: {
- studentName: '',
- payMoney: '',
- payMonth: []
- },
- kitStatus: false, // 乐器提供方式
- }
- },
- components: {
- pagination
- },
- created () {
- // 判断是否带缓存参数
- if (this.$route.query.search) {
- this.Fsearch = this.$route.query.search;
- }
- if (this.$route.query.rules) {
- this.Frules = this.$route.query.rules
- }
- },
- /** <el-option label="已开启缴费"
- value="1"></el-option>
- <el-option label="未缴费"
- value="0"></el-option>
- <el-option label="已缴费"
- value="2"></el-option> */
- filters: {
- studentPays (val) {
- let template = {
- 'PAID_COMPLETED': "完成缴费",
- 'NON_PAYMENT': "未缴费",
- 'PROCESSING': "缴费中"
- }
- return template[val]
- }
- },
- mounted () {
- this.init()
- },
- activated () {
- this.init()
- },
- methods: {
- init () {
- // 获取汇总数据
- getTeamStudentInfo({ musicGroupId: this.teamid }).then(res => {
- if (res.code == 200) {
- this.studentListInfo = res.data;
- }
- });
- this.getList();
- // 获取乐团内所有声部
- findSound({ musicGroupId: this.teamid }).then(res => {
- if (res.code == 200) {
- this.soundList = res.data;
- }
- })
- // getSubject().then(res => {
- // if (res.code == 200) {
- // this.soundList = res.data;
- // }
- // })
- // 获取乐团所有单技课班
- // getSingleClass({ musicGroupId: this.teamid }).then(res => {
- // if (res.code == 200) {
- // this.signList = res.data;
- // }
- // })
- // 获取乐团所有合奏课
- getMusicGroupAllClass({ musicGroupId: this.teamid }).then(res => {
- if (res.code == 200) {
- this.classList = res.data;
- this.signList = [];
- this.mixList = [];
- this.highList = [];
- this.snapList = [];
- this.classList.forEach(item => {
- if (item.type == 'NORMAL') {
- this.signList.push(item);
- } else if (item.type == 'MIX') {
- this.mixList.push(item);
- } else if (item.type == 'HIGH') {
- this.highList.push(item)
- } else if (item.type == 'SNAP') {
- this.snapList.push(item);
- }
- })
- }
- })
- },
- permission (str) {
- return permission(str)
- },
- onInstrumentChange() { // 乐器切换时
- // let tempkitType = this.maskForm.kitGroupPurchaseType
- // if(tempkitType == 'GROUP') {
- // this.INSTRUMENTLIST.forEach(item => {
- // if(item.value == value) {
- // this.maskForm.musicPrice = item.marketPrice
- // }
- // })
- // }
- },
- onKitGroupChnage(value) { // 乐器提供方式
- this.kitStatus = false
- if(value == 'FREE') {
- this.kitStatus = true
- this.maskForm.musicPrice = 0
- } else {
- this.maskForm.musicPrice = null
- }
- },
- onMusicGroupExport () {
- let url = '/api-web/export/musicGroupStudent'
- let data = {
- musicGroupId: this.teamid,
- studentStatus: this.searchForm.studentStatus || null,
- paymentStatus: this.searchForm.isPay || null,
- subjectId: this.searchForm.major || null,
- search: this.searchForm.search || null,
- isActive: this.searchForm.isActive || null,
- classGroupId: this.searchForm.classGroupId || null
- }
- const options = {
- method: 'get',
- headers: {
- 'Authorization': getToken()
- },
- url,
- params: data,
- 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 fname = this.$route.query.name + '学员列表'
- link.href = objectUrl
- link.setAttribute("download", fname)
- document.body.appendChild(link)
- link.click()
- })
- }).catch(() => { })
- },
- search () {
- this.rules.page = 1;
- this.getList()
- },
- onCreateQRCode () { // 生成报名二维码
- this.qrcodeStatus = true
- let id = this.$route.query.id
- if (this.qrcodes) {
- this.qrcodes = false
- setTimeout(() => {
- this.qrcode = new QRCode('qrcode', {
- width: 200,
- height: 200,
- colorDark: '#000000',
- colorLight: '#ffffff',
- correctLevel: QRCode.CorrectLevel.H
- })
- this.qrcode.makeCode(vaildStudentUrl() + '/#/login?musicGroupId=' + id)
- this.codeUrl = vaildStudentUrl() + '/#/login?musicGroupId=' + id
- }, 500)
- }
- },
- getList () {
- let obj = {
- musicGroupId: this.teamid,
- page: this.rules.page,
- rows: this.rules.limit,
- studentStatus: this.searchForm.studentStatus || null,
- paymentStatus: this.searchForm.isPay || null,
- subjectId: this.searchForm.major || null,
- search: this.searchForm.search || null,
- isActive: this.searchForm.isActive || null,
- classGroupId: this.searchForm.classGroupId || null
- }
- getTeamStudentList(obj).then(res => {
- if (res.code == 200) {
- this.tableList = res.data.rows;
- this.rules.total = res.data.total
- }
- })
- },
- gotoSignin () {
- this.$router.push({
- path: '/business/studentSignin',
- query: {
- id: this.teamid,
- status: this.$route.query.status,
- name: this.$route.query.name,
- rules: this.Frules, search: this.Fsearch
- }
- })
- },
- chioseType () {
- this.$refs['quitForm'].validate(res => {
- if (res) {
- this.$confirm('确定退团?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let row = this.activeRow;
- // 发请求 退团
- StudentQuit({ musicGroupId: this.teamid, userId: row.userId,
- reason: this.quitForm.reason,
- isRefundCourseFee: this.quitForm.isRefundCourseFee,
- isRefundInstrumentFee: this.quitForm.isRefundInstrumentFee,
- isRefundTeachingAssistantsFee: this.quitForm.isRefundTeachingAssistantsFee }).then(res => {
- this.quitForm = { // 退团信息确认
- isRefundCourseFee: null,
- isRefundInstrumentFee: null,
- isRefundTeachingAssistantsFee: null,
- reason: ''
- }
- if (res.code == 200) {
- this.$message.success('退团成功')
- this.getList();
- this.quitVisible = false;
- }
- })
- }).catch(() => {
- });
- } else {
- }
- })
- // row.typeVisible = false;
- },
- //
- addStudent () {
- // 发请求添加学员
- this.$refs['maskForm'].validate(res => {
- if (res) {
- // this.maskForm.parentName.timer 少个生日的字段
- // classGroupId: maskForm.signClass
- /** <!-- signClass: '',
- mixClass: '',
- highClass: '',
- snapClass: [], --> */
- let maskForm = this.maskForm
- if (!maskForm.signClass && !maskForm.mixClass && !maskForm.highClass) {
- if (!maskForm.snapClass || !(maskForm.snapClass && maskForm.snapClass.length >= 1)) {
- this.$message.error('该学生必须加入一个班级')
- return;
- }
- }
- if(maskForm.musicGoodsIdList && (maskForm.musicPrice === '' || maskForm.musicPrice === null)) {
- this.$message.error('请输入乐器金额')
- return
- }
- if(maskForm.instrGoodsIdList && maskForm.instrGoodsIdList.length > 0 && (maskForm.instrPrice === '' || maskForm.instrPrice === null)) {
- this.$message.error('请输入辅件金额')
- return
- }
- let snapClassIds;
- maskForm.snapClass ? snapClassIds = maskForm.snapClass.join(',') : snapClassIds = null
- let params = {
- signClassId: maskForm.signClass,
- mixClassId: maskForm.mixClass,
- snapClassIds,
- highClassId: maskForm.highClass,
- courseFee: maskForm.courseFee,
- temporaryCourseFee: maskForm.temporaryCourseFee,
- studentRegistration: {
- name: maskForm.studentName,
- gender: maskForm.sex,
- birthdate: maskForm.timer,
- parentsName: maskForm.parentName,
- parentsPhone: maskForm.phone,
- currentGrade: maskForm.startClass,
- currentClass: maskForm.course,
- subjectId: maskForm.sound,
- musicGroupId: this.teamid,
- }
- }
- params.studentPaymentOrderDetails = []
- if (maskForm.musicGoodsIdList) {
- params.studentPaymentOrderDetails.push({
- goodsIdList: maskForm.musicGoodsIdList,
- kitGroupPurchaseType: maskForm.kitGroupPurchaseType,
- type: 'MUSICAL',
- price: maskForm.musicPrice
- })
- }
- if (maskForm.instrGoodsIdList && maskForm.instrGoodsIdList != '') {
- params.studentPaymentOrderDetails.push({
- goodsIdList: maskForm.instrGoodsIdList.join(','),
- type: 'ACCESSORIES',
- price: maskForm.instrPrice
- })
- }
- addStudent(params).then(res => {
- if (res.code == 200) {
- this.$message.success('添加学生成功');
- this.getList()
- this.addStudentVisible = false
- }
- this.$refs.maskForm.resetFields()
- })
- }
- })
- },
- onSoundChange (value) { // 学员声部切换时
- // this.findSubjectPlan(value)
- this.ACCESSORIESLIST = []
- this.maskForm.instrGoodsIdList = []
- this.maskForm.instrPrice = null
- this.INSTRUMENTLIST = []
- this.maskForm.musicPrice = null
- this.maskForm.musicGoodsIdList = null
- this.getGoodsList(value, 'INSTRUMENT') // 乐器
- this.getGoodsList(value, 'ACCESSORIES') // 辅件
- },
- // 获取购买方式
- findSubjectPlan (subjectId) {
- findSubjectPlan({
- musicGroupId: this.teamid,
- subjectId: subjectId
- }).then(res => {
- let result = res.data
- if (res.code == 200) {
- this.maskForm.musicMode = this.getBranchType(result.kitGroupPurchaseType)
- }
- })
- },
- getGoodsList (subjectId, type) {
- getGoods({
- subjectId: subjectId,
- type: type
- }).then(res => {
- let result = res.data
- if (res.code == 200) {
- let tempArr = []
- result.forEach(item => {
- tempArr.push({
- label: item.name,
- value: item.id,
- marketPrice: item.marketPrice
- })
- })
- if (type == 'ACCESSORIES') {
- this.ACCESSORIESLIST = tempArr
- }
- if (type == 'INSTRUMENT') {
- this.INSTRUMENTLIST = tempArr
- }
- }
- })
- },
- getBranchType (status) {
- let common = {
- FREE: "免费",
- GROUP: "团购",
- LEASE: "租赁"
- }
- return common[status]
- },
- lookClass (row) {
- this.classMask.studentName = row.realName;
- getStudentClass({
- musicGroupId: this.teamid,
- teacherId: row.userId
- }).then(res => {
- if (res.code == 200) {
- this.classList = res.data;
- this.studentClassVisible = true;
- }
- })
- },
- quieTeamMask (row) {
- this.activeRow = row;
- this.quitVisible = true;
- },
- checkPhone (val) {
- var regu = /^1[3456789]\d{9}$/;
- var re = new RegExp(regu);
- if (re.test(val)) {
- getStudentInfoByPhone({ mobile: this.maskForm.phone }).then(res => {
- if (res.code == 200) {
- if (res.data) {
- this.maskForm.studentName = res.data.name
- this.maskForm.sex = res.data.gender
- this.maskForm.parentName = res.data.parentsName
- this.maskForm.course = res.data.currentClass
- this.maskForm.startClass = res.data.currentGrade
- this.maskForm.phone = val
- this.maskForm.timer = res.data.birthdate
- }
- }
- })
- }
- },
- lockStudent (row) {
- this.$confirm('是否锁定/解锁学生缴费周期?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let musicGroupId = this.teamid;
- let studentId = row.userId;
- let isLock;
- row.isLock == 0 ? isLock = 1 : isLock = 0;
- StudentFeeIsLock({ musicGroupId, studentId, isLock }).then(res => {
- if (res.code == 200) {
- this.$message.success('修改成功')
- this.getList()
- }
- })
- }).catch(() => {
- });
- },
- resetPay (row) {
- this.activeRow = row;
- this.payVisible = true;
- this.payForm.studentName = row.realName;
- this.payForm.payMoney = row.courseFee;
- this.payForm.payMonth = row.paymentPeriodList.split(',')
- if (this.payForm.payMonth[0] == "") {
- this.payForm.payMonth = []
- }
- },
- submitPay () {
- let studentId = this.activeRow.userId;
- let musicGroupId = this.teamid;
- let month = this.payForm.payMonth.join(',') || null;
- let amount = this.payForm.payMoney;
- let obj = {
- studentId,
- musicGroupId,
- month,
- amount
- }
- updateStudentFee(obj).then(res => {
- if (res.code == 200) {
- this.$message.success('修改成功')
- this.payVisible = false;
- this.getList();
- }
- })
- },
- closePayVisible () {
- this.$refs['payForm'].resetFields();
- this.payVisible = false;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- // .moreInput {
- // width: 100%;
- // display: flex;
- // /deep/.el-form-item__content {
- // display: flex;
- // flex-direction: row;
- // }
- // }
- .el-select {
- width: 180px !important;
- }
- .headWrap {
- padding: 20px 0;
- }
- /deep/.el-date-editor.el-input {
- width: auto;
- .el-input__inner {
- padding-right: 0;
- }
- }
- .studentInfo {
- /deep/.el-dialog__body {
- padding-top: 0;
- padding-bottom: 0;
- }
- }
- // .instrList {
- // display: flex;
- // /deep/.el-form-item__content {
- // width: 80%;
- // }
- // .el-col {
- // /deep/.el-form-item__content {
- // width: 100%;
- // }
- // }
- // }
- .stu-container {
- .topFrom {
- margin: 20px 30px 0;
- width: 1000px;
- }
- .newStudent {
- width: 121px;
- height: 40px;
- background: rgba(20, 146, 138, 1);
- border-radius: 4px;
- color: #fff;
- text-align: center;
- line-height: 40px;
- font-size: 14px;
- cursor: pointer;
- }
- }
- .left-code,
- .right-code {
- // width: 50%;
- // float: left;
- h2 {
- display: block;
- font-size: 18px;
- text-align: center;
- padding-bottom: 8px;
- line-height: 1;
- height: 30px;
- margin-bottom: 0;
- }
- .qrcode {
- display: flex;
- justify-content: center;
- img {
- width: 200px;
- height: 200px;
- // margin: 0 auto;
- }
- }
- .code-url {
- font-size: 18px;
- text-align: center;
- padding: 15px 15px 0 15px;
- }
- }
- .export {
- background: #14928a;
- }
- </style>
|