123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122 |
- <template>
- <div class="m-container">
- <h2>
- <el-page-header @back="onCancel"
- content="VIP课申请"></el-page-header>
- <!-- <div class="squrt" /> -->
- </h2>
- <div class="m-core">
- <div class="vipLeft">
- <h4>课程信息</h4>
- <el-form ref="leftForm"
- :rules="leftFormRules"
- :label-position="labelPosition"
- label-width="110px"
- :model="leftForm">
- <el-form-item label="课程名称"
- prop="name">
- <el-input v-model="leftForm.name" />
- </el-form-item>
- <el-form-item label="科目名称"
- prop="subject">
- <el-select v-model="leftForm.subject"
- clearable
- @change="changeSubject">
- <el-option v-for="(item,index) in subjectList"
- :key="index"
- :value="item.id"
- :label="item.name" />
- </el-select>
- </el-form-item>
- <el-form-item label="指导老师"
- prop="teacher">
- <el-select v-model="leftForm.teacher"
- filterable
- clearable
- :disabled="!leftForm.subject"
- @change="setSection">
- <el-option v-for="(item,index) in teacherList"
- :key="index"
- :label="item.username"
- :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="课程形式"
- prop="courseType">
- <el-select v-model="leftForm.courseType"
- clearable
- @change="changeType">
- <el-option v-for="(item,index) in courseTypeList"
- :key="index"
- :label="item.name"
- :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item label="活动方案"
- prop="activeType">
- <el-select v-model="leftForm.activeType"
- clearable
- :disabled="!leftForm.courseType"
- @change="chioseActive">
- <el-option v-for="(item,index) in activeList"
- :key="index"
- :value="item.id"
- :label="item.name" />
- </el-select>
- </el-form-item>
- <!-- 11111111111111111111111111111111 -->
- <el-form-item label="教学点">
- <el-select v-model="leftForm.section"
- clearable
- :disabled="!leftForm.teacher">
- <el-option v-for="(item,index) in scetionList"
- :key="index"
- :value="item.id"
- :label="item.name" />
- </el-select>
- </el-form-item>
- <el-form-item label="每班人数">
- <el-input type="number"
- v-model="leftForm.classNum"
- disabled />
- </el-form-item>
- <el-form-item label="每课时长">
- <!-- <el-input type="number"
- v-model="leftForm.classTime"
- disabled /> -->
- <el-select v-model="leftForm.classTime"
- :disabled="timeTable.length>0">
- <el-option v-for='(item,index) in this.classTimeList'
- :key="index"
- :value="item"
- :label="item"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="
- 报名开始时间"
- prop="signUpStart">
- <el-date-picker v-model="leftForm.signUpStart"
- type="date"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="请选择时间" />
- </el-form-item>
- <el-form-item label="报名结束时间"
- prop="signUpEnd">
- <el-date-picker v-model="leftForm.signUpEnd"
- type="date"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="请选择时间" />
- </el-form-item>
- <el-form-item v-if="leftForm.courseStart"
- label="最早排课时间">
- <el-date-picker v-model="leftForm.courseStart"
- disabled
- type="date"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="请选择时间" />
- </el-form-item>
- <el-form-item v-if="leftForm.courseEnd"
- label="最晚排课时间">
- <el-date-picker v-model="leftForm.courseEnd"
- disabled
- type="date"
- value-format="yyyy-MM-dd HH:mm:ss"
- placeholder="请选择时间" />
- </el-form-item>
- </el-form>
- </div>
- <div class="center">
- <h4>排课设置</h4>
- <el-form :model="centerForm"
- label-width="100px"
- :label-position="labelPosition">
- <el-form-item v-if="hasOnline"
- label="线上课数">
- <el-input v-model="centerForm.onlineCourseNum"
- type='number' />
- </el-form-item>
- <el-form-item v-if="hasOffline"
- label="线下课数">
- <el-input v-model="centerForm.offlineCourseNum"
- type='number' />
- </el-form-item>
- <el-form-item label="待排课数">
- <el-input v-model="allCourseCount"
- disabled />
- </el-form-item>
- <el-form-item v-if="hotType=='GIVE_CLASS'&&isGiveClass"
- label="赠课课程类型">
- <el-radio v-model="centerForm.radio"
- label="ONLINE">
- 线上课
- </el-radio>
- <el-radio v-model="centerForm.radio"
- label="OFFLINE">
- 线下课
- </el-radio>
- </el-form-item>
- </el-form>
- <!-- 排课列表开始 -->
- <div class="planList">
- <div class="planTop">
- <p>已排课程</p>
- <el-button type="text"
- @click="setCourse">
- {{id?'新增排课':'点击排课'}}
- </el-button>
- </div>
- <div class="planCore">
- <div class="row">
- <div class="name">
- 时间
- </div>
- <div class="week">
- 开始时间
- </div>
- <div class="time">
- 结束时间
- </div>
- <div class="time">
- 课程类型
- </div>
- </div>
- <div v-for="(item,index) in this.timeTable"
- class="row">
- <div class="name">
- {{ item.classDate | formatTimer }}
- </div>
- <div class="week">
- {{ item.startClassTimeStr }}
- </div>
- <div class="time">
- {{ item.endClassTimeStr }}
- </div>
- <div class="time">
- {{ item.teachMode |teachMode }}
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="right">
- <h4>课酬设置</h4>
- <el-form :model="rightForm"
- label-width="100px"
- :label-position="labelPosition">
- <el-form-item v-if="hasOnline"
- label="线上课课酬">
- <el-input v-model="rightForm.onlineCourse"
- :disabled="salaryReadonlyFlag==0" />
- <!-- || onlineSalary!='TEACHER_DEFAULT' -->
- </el-form-item>
- <el-form-item v-if="hasOffline"
- label="线下课课酬">
- <el-input v-model="rightForm.offlineCourse"
- :disabled="salaryReadonlyFlag==0" />
- <!-- || offlineSalary!='TEACHER_DEFAULT' -->
- </el-form-item>
- <el-form-item v-if="hasOnline"
- label="线上课单价">
- <el-input v-model="rightForm.onlinePrice"
- :disabled="salaryReadonlyFlag==0" />
- </el-form-item>
- <el-form-item v-if="hasOffline"
- label="线下课单价">
- <el-input v-model="rightForm.offlinePrice"
- :disabled="salaryReadonlyFlag==0" />
- </el-form-item>
- <el-form-item label="课程总价">
- <el-input v-model="rightForm.allPrice"
- disabled />
- </el-form-item>
- </el-form>
- <el-button type="primary"
- style="float:right"
- @click="computational">
- 计算
- </el-button>
- </div>
- </div>
- <!-- 弹窗 -->
- <el-dialog title="VIP排课"
- ref='maskForm'
- width="500px"
- :visible.sync="dialogFormVisible">
- <el-form :model="maskForm"
- label-position="right"
- label-width="150px">
- <el-form-item label="线上课开课时间">
- <el-date-picker v-model="maskForm.courseStartOnline"
- type="date"
- :picker-options="courseOption"
- placeholder="请选择开课时间" />
- </el-form-item>
- <el-form-item label="线下课开课时间">
- <el-date-picker v-model="maskForm.courseStartOffline"
- type="date"
- :picker-options="courseOption"
- placeholder="请选择开课时间" />
- </el-form-item>
- <div class="line"
- style="height:1px; background:#ccc; margin:0 25px;"></div>
- <el-form-item label="课程类型"
- prop="type">
- <el-radio v-if="hasOnline"
- v-model="maskForm.type"
- label="ONLINE">
- 线上课
- </el-radio>
- <el-radio v-if="hasOffline"
- v-model="maskForm.type"
- label="OFFLINE">
- 线下课
- </el-radio>
- </el-form-item>
- <el-form-item label="循环周次"
- prop="week">
- <el-select v-model="maskForm.week"
- style="width:220px!important;">
- <el-option label="星期日"
- value="0" />
- <el-option label="星期一"
- value="1" />
- <el-option label="星期二"
- value="2" />
- <el-option label="星期三"
- value="3" />
- <el-option label="星期四"
- value="4" />
- <el-option label="星期五"
- value="5" />
- <el-option label="星期六"
- value="6" />
- </el-select>
- </el-form-item>
- <el-form-item label="上课时间"
- prop="startTime">
- <el-time-picker v-model="maskForm.startTime"
- format="HH:mm"
- value-format="HH:mm"
- :picker-options="{
- selectableRange: '00:00:00 - 23:59:00'
- }"
- placeholder="选择时间" />
- </el-form-item>
- </el-form>
- <div class="btnWrap">
- <div class="okBtn"
- @click="addWeek">
- 确认
- </div>
- </div>
- <div class="planList">
- <div class="planTop">
- <p>已排课程</p>
- </div>
- <div class="planCore">
- <div v-for="(item,index) in this.lookList"
- class="row"
- :key="index">
- <div class="name">
- {{ item.type }}
- </div>
- <div class="week">
- {{ item.week }}
- </div>
- <div class="time">
- {{ item.time }}
- </div>
- <div class="operation">
- <el-button type="text"
- @click="removeWeekCourse(item.id)">
- 删除
- </el-button>
- </div>
- </div>
- </div>
- <div slot="footer"
- style='margin-top:20px;'
- class="dialog-footer">
- <el-button @click="dialogFormVisible = false">
- 取 消
- </el-button>
- <el-button type="primary"
- @click="setTimeTable">
- 确 定
- </el-button>
- </div>
- </div>
- </el-dialog>
- <div class="btnWrap">
- <div class="closeBtn">
- 取消
- </div>
- <div class="okBtn"
- @click="submitInfo">
- {{id?'修改':'确定'}}
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getTeacher, getSubject } from '@/api/buildTeam'
- import { vipGroupCategory, vipGroupActivityFind, getVipGroupCostCount, createVip, getVipGroupDetail, updateVipBaseInfo } from '@/api/vipSeting'
- import { getTeachSchool, getTeacherBySubject } from '@/api/teacherManager'
- export default {
- data () {
- return {
- dialogFormVisible: false,
- labelPosition: 'right',
- leftForm: {
- name: '',
- teacher: '',
- subject: '',
- courseType: '',
- activeType: '',
- classNum: '',
- classTime: '',
- signUpStart: '',
- signUpEnd: '',
- courseStartOnline: '',
- courseStartOffline: '',
- courseEnd: '',
- section: ''
- },
- classTimeList: [],
- centerForm: {
- allCourseNum: '',
- onlineCourseNum: 0,
- offlineCourseNum: 0,
- radio: ''
- },
- maskForm: {
- type: '',
- week: '',
- startTime: ''
- },
- rightForm: {
- onlineCourse: '',
- offlineCourse: '',
- onlinePrice: '',
- offlinePrice: '',
- allPrice: ''
- },
- subjectList: [], // 科目列表
- teacherList: [], // 老师列表
- courseTypeList: [], // 课程类型集合
- activeList: [], //活动集合
- hasOnline: false,
- hasOffline: false,
- onlineSalary: '', // 线上课课酬结算方式
- offlineSalary: '',// 线下课课酬结算方式
- hotType: '',
- attribute1: '',
- attribute2: '',
- salaryReadonlyFlag: '', // 老师工资是否可配
- lookList: [],
- onlinelookList: [], // 展示课表线上
- offlineLookList: [], // 展示课表线下
- timeTable: [], // 真正的课表
- giveNum: '',
- weekDay: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"],
- scetionList: [],
- isGiveClass: false,
- courseOption: {
- disabledDate: time => {
- let startTime = this.leftForm.courseStart;
- if (startTime) {
- let date = new Date(startTime.replace(/-/, "/"))
- return time.getTime() < date.getTime()
- }
- return;
- }
- },
- leftFormRules: {
- /**?
- * teacher: '',
- subject: '',
- courseType: '',
- activeType: '',
- */
- name: [{ required: true, message: '请输入名称', trigger: 'blur' }],
- teacher: [
- { required: true, message: '请选择老师', trigger: 'blur' },],
- subject: [{
- required: true, message: '请选择科目', trigger: 'blur'
- }],
- courseType: [{
- required: true, message: '请选择课程类型', trigger: 'blur'
- }],
- activeType: [{
- required: true, message: '请选择活动', trigger: 'blur'
- }],
- signUpStart: [{
- required: true, message: '请选择报名开始时间', trigger: 'blur'
- }],
- signUpEnd: [{
- required: true, message: '请选择报名结束时间', trigger: 'blur'
- }]
- },
- id: ''
- }
- },
- computed: {
- allCourseCount () {
- let online, offline;
- this.centerForm.onlineCourseNum ? online = this.centerForm.onlineCourseNum : online = 0;
- this.centerForm.offlineCourseNum ? offline = this.centerForm.offlineCourseNum : offline = 0;
- let giveNum;
- if (this.hotType == 'GIVE_CLASS') {
- // this.attribute1 从多少节开始送
- // this.attribute2 送多少节
- giveNum = parseInt((parseInt(offline) + parseInt(online)) - this.attribute1 >= 0 ? giveNum = this.attribute2 : giveNum = 0);
- if (giveNum) {
- // 有赠送课时
- this.isGiveClass = true
- }
- this.giveNum = giveNum || 0;
- return (parseInt(offline) + parseInt(online) + '+' + giveNum) || '';
- }
- return parseInt(offline) + parseInt(online) || ''
- }
- },
- created () {
- // 如果有id则是修改 带出所有的数据
- // 没有id 则是新增
- this.id = this.$route.query.id
- if (this.$route.query.rules) {
- this.rules = this.$route.query.rules
- }
- if (this.$route.query.searchForm) {
- this.searchForm = this.$route.query.searchForm
- }
- if (this.id) {
- // 发请求获取信息
- getVipGroupDetail({ vipGroupId: this.id }).then(res => {
- if (res.code == 200) {
- this.setVipInfo(res.data);
- }
- })
- }
- },
- mounted () {
- // 获取所有科目的接口
- getSubject().then(res => {
- if (res.code == 200) {
- this.subjectList = res.data;
- }
- })
- // 获取所有老师的接口 根据声部id获取老师
- // 获取课程类型的接口
- vipGroupCategory({ organId: this.$store.getters.organ }).then(res => {
- if (res.code == 200) {
- this.courseTypeList = res.data;
- }
- })
- },
- methods: {
- changeSubject (val) {
- this.leftForm.teacher = ''
- this.leftForm.section = ''
- // 根据科目id获取相应的老师
- getTeacherBySubject({ subjecId: val }).then(res => {
- if (res.code == 200) {
- this.teacherList = res.data;
- }
- })
- },
- // 选择课程类型
- changeType (val) {
- // 在这里清空默认课酬
- this.rightForm.offlineCourse = '';
- this.rightForm.onlineCourse = '';
- this.leftForm.activeType = '';
- for (let i in this.courseTypeList) {
- if (this.courseTypeList[i].id == val) {
- // 学生人数
- this.leftForm.classNum = this.courseTypeList[i].studentNum;
- // 每课时长
- this.classTimeList = this.courseTypeList[i].singleClassMinutes.split(',')
- // this.leftForm.classTime = this.courseTypeList[i].singleClassMinutes;
- this.leftForm.classTime = this.classTimeList[0];
- // 线上课单节价格
- this.rightForm.onlinePrice = this.courseTypeList[i].onlineClassesUnitPrice;
- // 线下课单节价格
- this.rightForm.offlinePrice = this.courseTypeList[i].offlineClassesUnitPrice;
- }
- }
- // 根据课程类型获取活动方案
- if (this.leftForm.courseType) {
- vipGroupActivityFind({ 'categoryId': this.leftForm.courseType }).then(res => {
- if (res.code == 200) {
- this.activeList = res.data;
- }
- })
- }
- },
- // 选择活动方案
- chioseActive (val) {
- this.lookList = []
- this.timeTable = []
- this.attribute1 = '';
- this.attribute2 = '';
- this.giveNum = 0;
- this.isGiveClass = false;
- // 根须活动id获取 相应的值
- for (let i in this.activeList) {
- if (this.activeList[i].id == val) {
- // 如果是买赠就必须选择赠课类型
- // 报名开始 报名结束 课程开始 课程结束 // 判断是否有线上,线下课 并同步状态
- // this.leftForm.signUpStart = this.activeList[i].startTime;
- // this.leftForm.signUpEnd = this.activeList[i].endTime;
- this.leftForm.courseStart = this.activeList[i].coursesStartTime;
- this.leftForm.courseEnd = this.activeList[i].coursesEndTime;
- // 获取活动种类并保存
- this.hotType = this.activeList[i].type;
- // 获取买赠必要参数
- this.attribute1 = this.activeList[i].attribute1;
- this.attribute2 = this.activeList[i].attribute2;
- // 存储课酬是否可配置
- this.salaryReadonlyFlag = this.activeList[i].salaryReadonlyFlag
- // hasOnline: false, hasOffline: false 还需要判断type类型 根据活动id获取
- if (this.activeList[i].salarySettlementJson) {
- let obj = JSON.parse(this.activeList[i].salarySettlementJson)
- if (obj && obj.onlineSalarySettlement) {
- // 有线上课
- this.hasOnline = true;
- this.onlineSalary = obj.onlineSalarySettlement.salarySettlementType;
- // console.log('线上:' + this.onlineSalary)
- } else {
- this.hasOnline = false;
- }
- if (obj && obj.offlineSalarySettlement) {
- // 有线下课
- this.hasOffline = true;
- this.offlineSalary = obj.offlineSalarySettlement.salarySettlementType;
- // console.log('线下:' + this.offlineSalary)
- } else {
- this.hasOffline = false;
- }
- }
- }
- }
- },
- // 点击确插入课表
- addWeek () {
- let courseType = this.maskForm.type;
- // let week = ;this.maskForm.week
- let startTime = this.maskForm.startTime;
- if (!courseType || !this.maskForm.week || !startTime) {
- this.$message.error('请填写完成信息')
- return;
- }
- // 拿到相应的值插入数组
- let endTime = this.MinutesTest(startTime, this.leftForm.classTime);
- let str;
- switch (courseType) {
- case 'ONLINE': {
- str = '线上课'
- break;
- }
- case 'OFFLINE': {
- str = '线下课'
- break;
- }
- }
- let flag = false;
- for (let i in this.lookList) {
- if (this.lookList[i].weekDay == this.maskForm.week) {
- flag = true;
- }
- }
- // true=> 说明有这一周 那么循环找到这一周 在判断时间
- // flase=> 说明没有这一周的时间 直接添加
- if (flag) {
- // 有相同的周日
- let arr = [];
- for (let i in this.lookList) {
- if (this.lookList[i].weekDay == this.maskForm.week) { // 找到这一天的所有元素
- // && !this.timeIsrange(this.lookList[i].startTime, this.lookList[i].endTime, startTime) && !this.timeIsrange(this.lookList[i].startTime, this.lookList[i].endTime, endTime)
- let isStartTime = this.timeIsrange(startTime, endTime, this.lookList[i].startTime);
- let isEndTime = this.timeIsrange(startTime, endTime, this.lookList[i].endTime);
- arr.push(!isEndTime && !isStartTime)
- }
- }
- let isAdd = true;
- for (let j = 0; j < arr.length; j++) {
- isAdd = isAdd && arr[j]
- }
- if (isAdd) {
- this.lookList.push({
- 'type': str,
- 'week': this.weekDay[this.maskForm.week],
- 'weekDay': this.maskForm.week,
- 'startTime': startTime,
- 'endTime': endTime,
- 'time': startTime + '-' + endTime,
- 'id': Date.now()
- })
- } else {
- this.$message.error('该时间段已排课请重选时间')
- return
- }
- } else {
- this.lookList.push({
- 'type': str,
- 'week': this.weekDay[this.maskForm.week],
- 'weekDay': this.maskForm.week,
- 'startTime': startTime,
- 'endTime': endTime,
- 'time': startTime + '-' + endTime,
- 'id': Date.now()
- })
- }
- // console.log(this.lookList)
- // let courseType = this.maskForm.type;
- // // let week = ;this.maskForm.week
- // let startTime = this.maskForm.startTime;
- this.maskForm.type = '';
- this.maskForm.week = '';
- this.maskForm.startTime = '';
- },
- // 分钟小时相加减
- MinutesTest (str, interval) {
- let houer = str.split(':')[0];
- let min = str.split(':')[1];
- let sdate1 = new Date(1900, 1, 1, houer, min);
- sdate1.setMinutes(sdate1.getMinutes() + parseInt(interval));
- let H = sdate1.getHours();
- let M = sdate1.getMinutes();
- if (H < 10) H = '0' + H;
- if (M < 10) M = '0' + M;
- return H + ':' + M
- },
- // 判断时间是否在时间段内
- timeIsrange (beginTime, endTime, nowTime) {
- var strb = beginTime.split(":");
- if (strb.length != 2) {
- return false;
- }
- var stre = endTime.split(":");
- if (stre.length != 2) {
- return false;
- }
- var strn = nowTime.split(":");
- if (stre.length != 2) {
- return false;
- }
- var b = new Date();
- var e = new Date();
- var n = new Date();
- b.setHours(strb[0]);
- b.setMinutes(strb[1]);
- e.setHours(stre[0]);
- e.setMinutes(stre[1]);
- n.setHours(strn[0]);
- n.setMinutes(strn[1]);
- if (n.getTime() - b.getTime() >= 0 && n.getTime() - e.getTime() <= 0) {
- // 在时间范围内
- return true;
- } else {
- // 不在时间范围内
- return false;
- }
- },
- removeWeekCourse (id) {
- for (let i in this.lookList) {
- if (this.lookList[i].id == id) {
- this.lookList.splice(i, 1);
- }
- }
- },
- setTimeTable () {
- // 拿到线上课数与线下课数 以及
- this.timeTable = [];
- let online = parseInt(this.centerForm.onlineCourseNum) || 0;
- let offline = parseInt(this.centerForm.offlineCourseNum) || 0;
- let giveNum = this.giveNum;
- let giveClassType = this.centerForm.radio;
- if (giveClassType == 'ONLINE') {
- // 线上
- online += giveNum;
- } else if (giveClassType == 'OFFLINE') {
- offline += giveNum;
- }
- console.log(`线上课数${online}-线下课数${offline}-赠课数${giveNum}`)
- // 这里判断是否选择了排课开始时间
- if (online && !this.maskForm.courseStartOnline) {
- // console.log(this.maskForm.courseStartOnline)
- alert('选择了线上课 但没有线上课开始时间')
- return
- }
- if (offline && !this.maskForm.courseStartOffline) {
- alert('选择了线下课 但没有线下课开始时间')
- return
- }
- let date = new Date(this.maskForm.courseStartOnline.getTime());
- let date1 = new Date(this.maskForm.courseStartOffline.getTime());
- // let startWeekday = this.maskForm.courseStart.getDay();
- let onlineList = []; // 装线上课的数组
- let offlineList = []; //装线下课的数组
- if (this.lookList.length <= 0) {
- this.$message.error('请先排课后再点击确认按钮');
- return
- }
- for (let i in this.lookList) {
- if (this.lookList[i].type == '线上课') {
- onlineList.push({ week: this.lookList[i].weekDay, date: this.lookList[i] })
- }
- if (this.lookList[i].type == '线下课') {
- offlineList.push({ week: this.lookList[i].weekDay, date: this.lookList[i] })
- }
- }
- // console.log(onlineList + '----------------------------------------------------------------------------------');
- // console.log(offlineList);
- if (online > 0 && onlineList.length <= 0) {
- this.$message.error('选择了线上课但未排线上课');
- this.timeTable = [];
- return;
- }
- if (offline > 0 && offlineList.length <= 0) {
- this.$message.error('选择了线下课但未排线下课')
- this.timeTable = [];
- return;
- }
- // 获取要排课的总数 获取每周要排多少次
- while (online && online > 0) {
- // 排线上课g
- for (let i in onlineList) {
- let num;
- onlineList[i].week - date.getDay() >= 0 ? num = onlineList[i].week - date.getDay() : num = onlineList[i].week - date.getDay() + 7// +差值的天数://差值的天数+7
- // console.log(num);
- let dataStr = this.getThinkDate(date, num);
- this.timeTable.push({
- 'classDate': dataStr + ' 00:00:00',
- 'actualTeacherId': this.leftForm.teacher,
- 'startClassTimeStr': onlineList[i].date.startTime,
- "endClassTimeStr": onlineList[i].date.endTime,
- "teachMode": 'ONLINE'
- })
- online--;
- if (online == 0) break
- }
- // 加一周
- date.setDate(date.getDate() + 7);
- }
- // console.log(date1)
- while (offline && offline > 0) {
- // 排线下课
- for (let i in offlineList) {
- let num;
- offlineList[i].week - date1.getDay() >= 0 ? num = offlineList[i].week - date1.getDay() : num = offlineList[i].week - date1.getDay() + 7// +差值的天数://差值的天数+7
- let dataStr = this.getThinkDate(date1, num);
- this.timeTable.push({
- 'classDate': dataStr + ' 00:00:00',
- 'actualTeacherId': this.leftForm.teacher,
- 'startClassTimeStr': offlineList[i].date.startTime,
- "endClassTimeStr": offlineList[i].date.endTime,
- "teachMode": 'OFFLINE'
- })
- offline--;
- if (offline == 0) break
- }
- // 加一周
- date1.setDate(date1.getDate() + 7);
- }
- // console.log(this.timeTable);
- this.dialogFormVisible = false;
- },
- getThinkDate (date, num) {
- let Stamp = date;
- Stamp.setDate(date.getDate() + num) // 获取当前月数的第几天
- // console.log(date.getMonth() + 1)
- // console.log(Stamp.getMonth() + 1)
- var year = Stamp.getFullYear(); //获取完整的年份(4位,1970-????)
- var month = Stamp.getMonth() + 1; //获取当前月份(0-11,0代表1月)
- var mvar = '';
- if (month < 10) {
- mvar = '0' + month;
- } else {
- mvar = month + '';
- }
- var day = Stamp.getDate();
- var dvar = '';
- if (day < 10) {
- dvar = '0' + day;
- } else {
- dvar = day + '';
- }
- // console.log(year + "-" + mvar + '-' + dvar);
- return year + "-" + mvar + '-' + dvar;
- },
- // 计算课酬
- computational () {
- let userId = this.leftForm.teacher || null;
- let giveTeachMode = this.centerForm.radio || null;
- let vipGroupCategoryId = this.leftForm.courseType || null;
- let vipGroupActivityId = this.leftForm.activeType || null;
- let onlineClassesUnitPrice = this.rightForm.onlinePrice || null;
- let offlineClassesUnitPrice = this.rightForm.offlinePrice || null;
- let onlineClassesNum = this.centerForm.onlineCourseNum || 0;
- let offlineClassesNum = this.centerForm.offlineCourseNum || 0;
- let singleClassMinutes = this.leftForm.classTime
- if (this.hotType == 'GIVE_CLASS') {
- if (this.centerForm.radio == 'ONLINE') {
- onlineClassesNum = parseInt(onlineClassesNum) + parseInt(this.giveNum)
- } else if (this.centerForm.radio == 'OFFLINE') {
- offlineClassesNum = parseInt(offlineClassesNum) + parseInt(this.giveNum)
- }
- }
- let onlineTeacherSalary = this.rightForm.onlineCourse || null;
- let offlineTeacherSalary = this.rightForm.offlineCourse || null;
- getVipGroupCostCount({ vipGroupActivityId, onlineClassesUnitPrice, onlineTeacherSalary, offlineTeacherSalary, vipGroupCategoryId, offlineClassesUnitPrice, onlineClassesNum, offlineClassesNum, userId, giveTeachMode, singleClassMinutes }).then(res => {
- if (res.code == 200) {
- this.rightForm.onlineCourse = res.data.onlineTeacherSalary;
- this.rightForm.offlineCourse = res.data.offlineTeacherSalary;
- this.rightForm.allPrice = res.data.totalPrice;
- }
- })
- },
- submitInfo () {
- let online = parseInt(this.centerForm.onlineCourseNum);
- let offline = parseInt(this.centerForm.offlineCourseNum);
- let giveNum = this.giveNum;
- let giveClassType = this.centerForm.radio;
- if (giveClassType == 'ONLINE') {
- // 线上
- online += giveNum;
- } else if (giveClassType == 'OFFLINE') {
- offline += giveNum;
- }
- let obj = {};
- obj.courseSchedules = this.timeTable;
- /**
- *
- * teacher: '',
- subject: '',
- courseType: '',
- activeType: '',
- classNum: '',
- classTime: '',
- signUpStart: '',
- signUpEnd: '',
- courseStart: '',
- courseEnd: ''
- */
- obj.vipGroupApplyBaseInfo = {
- coursesExpireDate: this.leftForm.courseEnd,
- teacherSchoolId: this.leftForm.section,
- name: this.leftForm.name,
- offlineClassesNum: offline || 0,
- onlineClassesNum: online || 0,
- offlineClassesUnitPrice: this.rightForm.offlinePrice,
- onlineClassesUnitPrice: this.rightForm.onlinePrice,
- paymentExpireDate: this.leftForm.signUpEnd,
- registrationStartTime: this.leftForm.signUpStart,
- singleClassMinutes: this.leftForm.classTime,
- studentNum: this.leftForm.classNum,
- userId: this.leftForm.teacher,
- vipGroupActivityId: this.leftForm.activeType,
- vipGroupCategoryId: this.leftForm.courseType,
- onlineTeacherSalary: this.rightForm.onlineCourse,
- offlineTeacherSalary: this.rightForm.offlineCourse,
- giveTeachMode: this.centerForm.radio,
- subjectIdList: this.leftForm.subject,
- }
- // 调接前判断是新增还是修改
- if (!this.id) {
- // 新增
- createVip(obj).then(res => {
- if (res.code == 200) {
- this.$message.success('恭喜您创建成功');
- this.$router.push({ path: '/business/vipList', query: { rules: this.rules, searchForm: this.searchForm } })
- }
- })
- } else {
- // 修改
- obj.vipGroupApplyBaseInfo.id = this.id;
- updateVipBaseInfo(obj.vipGroupApplyBaseInfo).then(res => {
- })
- }
- },
- setSection (val) {
- this.leftForm.section = '';
- this.rightForm.offlineCourse = '';
- this.rightForm.onlineCourse = '';
- getTeachSchool({ userId: val }).then(res => {
- if (res.code == 200) {
- this.scetionList = res.data;
- }
- })
- },
- onCancel () {
- this.$router.push({ path: '/business/vipList', query: { rules: this.rules, searchForm: this.searchForm } })
- },
- setCourse () {
- //
- if (this.hotType == 'GIVE_CLASS' && this.isGiveClass && !this.centerForm.radio) {
- this.$message.error('您还未选择赠课类型')
- return
- }
- this.$refs['leftForm'].validate(vali => {
- if (vali) {
- this.dialogFormVisible = true
- }
- })
- },
- setVipInfo (data) {
- this.leftForm.name = data.name;
- this.leftForm.subject = parseInt(data.subjectIdList)
- // 激活声部下的所有老师
- this.changeSubject(parseInt(data.subjectIdList));
- // 设置老师
- this.leftForm.teacher = data.userId;
- this.setSection(data.userId)
- // 课程形式
- this.leftForm.courseType = data.vipGroupCategoryId;
- // 获取课程形式下的活动方案
- this.changeType(this.leftForm.courseType)
- // 根据课程形式获取活动方案
- this.leftForm.activeType = data.vipGroupActivityId;
- setTimeout(res => {
- this.chioseActive(data.vipGroupActivityId)
- }, 1000)
- this.leftForm.section = data.teacherSchoolId;
- this.leftForm.classNum = data.studentNum;
- this.leftForm.classTime = data.singleClassMinutes;
- this.leftForm.signUpStart = data.registrationStartTime;
- this.leftForm.signUpEnd = data.paymentExpireDate;
- this.centerForm.onlineCourseNum = data.onlineClassesNum;
- this.centerForm.offlineCourseNum = data.offlineCourseNum;
- /**
- * rightForm: {
- onlineCourse: '',
- offlineCourse: '',
- onlinePrice: '',
- offlinePrice: '',
- allPrice: ''
- },
- *
- */
- this.rightForm.onlineCourse = data.onlineTeacherSalary
- this.rightForm.onlinePrice = data.onlineClassesUnitPrice;
- this.rightForm.offlineCourse = data.offlineTeacherSalary
- this.rightForm.offlinePrice = data.offlineClassesUnitPrice;
- this.rightForm.allPrice = data.totalPrice;
- //subjectIdList
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .m-core {
- margin-top: 30px;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- .el-input {
- width: 180px;
- }
- h4 {
- font-size: 16px;
- background-color: #ccc;
- color: #fff;
- text-align: center;
- width: 100%;
- height: 40px;
- line-height: 40px;
- margin-bottom: 20px;
- }
- .vipLeft {
- width: 400px;
- // h4 {
- // font-size: 16px;
- // background-color: #ccc;
- // color: #fff;
- // text-align: center;
- // width: 100%;
- // height: 40px;
- // line-height: 40px;
- // margin-bottom: 20px;
- // }
- }
- .center {
- width: 400px;
- }
- .right {
- width: 400px;
- }
- }
- .planList {
- padding: 0 25px;
- .planTop {
- height: 40px;
- line-height: 40px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- border-bottom: 1px solid #ccc;
- margin-top: 20px;
- > p {
- font-size: 14px;
- }
- }
- .planCore {
- .row {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: nowrap;
- height: 40px;
- line-height: 40px;
- font-size: 14px;
- text-align: center;
- div {
- width: 87px;
- }
- // div {
- // &:nth-child(1) {
- // text-align: left;
- // }
- // }
- }
- }
- }
- .okBtn {
- width: 120px;
- height: 40px;
- line-height: 40px;
- text-align: center;
- color: #fff;
- border-radius: 4px;
- margin-right: 20px;
- cursor: pointer;
- background-color: #f97215;
- float: right;
- }
- </style>
|