1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075 |
- <template>
- <div class="base-container">
- <div class="banseLeft">
- <div class="head">乐团基本信息:</div>
- <!-- <div class="num">乐团编号:dywh01</div> -->
- <el-form :model="topFrom"
- :inline="true"
- ref="topinfo"
- style="margin-left:11px;">
- <el-form-item label="收费类型"
- prop="type"
- :rules="[{ required: true, message: '收费类型不能为空'}]">
- <el-select v-model.trim="topFrom.type"
- filterable
- clearable>
- <el-option v-for="(item,index) in typeList"
- :key="index"
- :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="所属分部"
- prop="section"
- :rules="[{ required: true, message: '所属分部不能为空'},]">
- <el-select v-model.trim="topFrom.section"
- filterable
- @change="changeSection"
- clearable>
- <el-option v-for="(item,index) in sectionList"
- :key="index"
- :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="合作单位"
- prop="school"
- :rules="[{ required: true, message: '合作单位不能为空'},]">
- <el-select v-model.trim="topFrom.school"
- :disabled="!topFrom.section"
- @change="chioseSchool"
- filterable
- clearable>
- <el-option v-for="(item,index) in cooperationList"
- :key="index"
- :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="教学地点"
- prop="address"
- :rules="[{ required: true, message: '教学地点不能为空'},]">
- <el-select v-model.trim="topFrom.address"
- filterable
- clearable
- :disabled="!topFrom.section">
- <el-option v-for="(item,index) in addList"
- :key="index"
- :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="乐团名称"
- prop="name"
- :rules="[{ required: true, message: '乐团名称不能为空'},]">
- <el-input placeholder="请输入乐团名称"
- v-model.trim="topFrom.name"></el-input>
- </el-form-item>
- <el-form-item label="运营主管"
- prop="boss"
- :rules="[{ required: true, message: '运营主管不能为空'},]">
- <el-select v-model.trim="topFrom.boss"
- :disabled="!topFrom.section"
- filterable
- clearable>
- <el-option v-for="(item,index) in orgianList"
- :key="index"
- :label="item.realName"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="教务老师"
- prop="teacher"
- :rules="[{ required: true, message: '教务老师不能为空'},]">
- <el-select v-model.trim="topFrom.teacher"
- :disabled="!topFrom.section"
- filterable
- clearable>
- <el-option v-for="(item,index) in orgianList"
- :key="index"
- :label="item.realName"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="维修技师"
- prop="repairUserId"
- :rules="[{ required: true, message: '维修技师不能为空'},]">
- <el-select v-model.trim="topFrom.repairUserId"
- :disabled="!topFrom.section"
- filterable
- clearable>
- <el-option v-for="(item,index) in technician"
- :key="index"
- :label="item.userName"
- :value="item.userId"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="报名截止时间"
- prop="time"
- :rules="[{ required: true, message: '请输入报名截止时间'},]">
- <el-date-picker v-model.trim="topFrom.time"
- style="width:100%!important"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"></el-date-picker>
- </el-form-item>
- <el-form-item label="预计开团时间"
- prop="startTime"
- :rules="[{ required: true, message: '请输入预计开团时间'},]">
- <el-date-picker v-model.trim="topFrom.startTime"
- style="width:100%!important"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"></el-date-picker>
- </el-form-item>
- <el-form-item label="招生年级"
- prop="startClass"
- :rules="[{ required: true, message: '请选择招生年纪'},]">
- <el-select placeholder="起始年级"
- clearable
- multiple
- collapse-tags
- filterable
- v-model.trim="topFrom.startClass">
- <el-option value="1"
- label="一年级"></el-option>
- <el-option value="2"
- label="二年级"></el-option>
- <el-option value="3"
- label="三年级"></el-option>
- <el-option value="4"
- label="四年级"></el-option>
- <el-option value="5"
- label="五年级"></el-option>
- <el-option value="6"
- label="六年级"></el-option>
- <el-option value="7"
- label="初一"></el-option>
- <el-option value="8"
- label="初二"></el-option>
- <el-option value="9"
- label="初三"></el-option>
- <el-option value="10"
- label="高一"></el-option>
- <el-option value="11"
- label="高二"></el-option>
- <el-option value="12"
- label="高三"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="课酬结算标准"
- :rules="[{ required: true, message: '请选择课酬结算标准'},]"
- prop="salary">
- <el-select v-model.trim="topFrom.salary"
- clearable
- filterable>
- <el-option label="默认课酬"
- value="TEACHER_DEFAULT"></el-option>
- <el-option label="3.0课酬"
- value="GRADIENT_SALARY"></el-option>
- <!-- <el-option label="课堂课酬"
- value="CLASSROOM_SALARY"></el-option>-->
- </el-select>
- </el-form-item>
- <el-form-item label="机构类型"
- prop="ownershipType">
- <el-select v-model.trim="topFrom.ownershipType">
- <el-option label="自有"
- value="OWN"></el-option>
- <el-option label="三方"
- value="COOPERATION"></el-option>
- <!-- <el-option label="租赁"
- value="LEASE"></el-option>-->
- </el-select>
- </el-form-item>
- <el-form-item label="乐队指导"
- v-if="teamStatus=='resetTeam' || teamStatus=='teamList'"
- prop="head">
- <el-select v-model.trim="topFrom.head"
- filterable
- clearable>
- <el-option v-for="(item,index) in orgianList"
- :key="index"
- :label="item.realName"
- :value="item.id"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="缴费类型"
- :rules="[{ required: true, message: '请选择缴费类型'}]"
- prop="feeType">
- <el-select v-model="topFrom.feeType"
- @change="changeFeeType">
- <el-option label="线上"
- value="ONLINE"></el-option>
- <el-option label="线下"
- value="OFFLINE"></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label
- prop="isClass">
- <el-checkbox v-model.trim="topFrom.isClass">课堂课乐团</el-checkbox>
- </el-form-item>
- </el-form>
- <div class="checkList">
- <div class="head noMargin">课程组成形态:</div>
- <div class="checkRow">
- <el-checkbox label="乐团声部训练"
- v-model.trim="checkList.soundInfo.ischeck"></el-checkbox>
- <div class="inputWrap">
- 单价:
- <input type="text"
- placeholder="请输入"
- v-model.trim="checkList.soundInfo.value" />
- </div>
- </div>
- <div class="checkRow">
- <el-checkbox label="乐团合奏训练"
- v-model.trim="checkList.allInfo.ischeck"></el-checkbox>
- <div class="inputWrap">
- 单价:
- <input type="text"
- placeholder="请输入"
- v-model.trim="checkList.allInfo.value" />
- </div>
- </div>
- <div class="checkRow">
- <el-checkbox label="基础技能训练"
- v-model.trim="checkList.baseInfo.ischeck"></el-checkbox>
- <div class="inputWrap">
- 单价:
- <input type="number"
- @mousewheel.native.prevent
- placeholder="请输入"
- v-model.trim="checkList.baseInfo.value" />
- </div>
- </div>
- <div class="checkRow">
- <el-checkbox label="假期集中训练"
- v-model.trim="checkList.holidayInfo.ischeck"></el-checkbox>
- <div class="inputWrap">
- 单价:
- <input type="number"
- @mousewheel.native.prevent
- placeholder="请输入"
- v-model.trim="checkList.holidayInfo.value" />
- </div>
- </div>
- <div class="checkRow"
- v-if="checkList.networkInfo">
- <el-checkbox label="乐团网络课堂"
- v-model="checkList.networkInfo.ischeck"></el-checkbox>
- <div class="inputWrap">
- 单价:
- <input type="number"
- @mousewheel.native.prevent
- placeholder="请输入"
- v-model.trim="checkList.networkInfo.value" />
- </div>
- </div>
- <div class="checkRow">
- <el-checkbox label="课程提示"
- class="classCheckBox"
- v-model.trim="checkList.submit.ischeck"></el-checkbox>
- <div class="textWrap"
- v-if="checkList.submit.ischeck">
- <el-input type="textarea"
- :rows="1"
- style="width:500px"
- v-model.trim="checkList.submit.value"></el-input>
- </div>
- </div>
- <div class="head noMargin">付费方式:</div>
- <div class="checkRow">
- <el-checkbox label="学校"
- class="classCheckBox"
- v-model.trim="payList.school.ischeck"></el-checkbox>
- <div class="chioseList">
- <div class="chioseItem"
- :class="payList.school.chiose == 'ONE_OFF'?'active':''"
- @click="payList.school.chiose='ONE_OFF'">一次性</div>
- <div class="chioseItem"
- :class="payList.school.chiose == 'MONTHLY'?'active':''"
- @click="payList.school.chiose='MONTHLY'">一个月</div>
- <div class="chioseItem"
- :class="payList.school.chiose == 'TERM'?'active':''"
- @click="payList.school.chiose='TERM'">一学期</div>
- <div class="chioseItem"
- :class="payList.school.chiose == 'YEAR'?'active':''"
- @click="payList.school.chiose='YEAR'">一学年</div>
- </div>
- <div class="inputWrap">
- 预计收费:
- <input type="textarea"
- v-model.trim="payList.school.price"
- placeholder="请输入" />
- </div>
- <div class="inputWrap">
- 备注:
- <input type="textarea"
- v-model.trim="payList.school.value"
- placeholder="请输入" />
- </div>
- </div>
- <div class="checkRow">
- <el-checkbox label="公司"
- class="classCheckBox"
- v-model.trim="payList.company.ischeck"></el-checkbox>
- <div class="chioseList">
- <div class="chioseItem"
- :class="payList.company.chiose == 'ONE_OFF'?'active':''"
- @click="payList.company.chiose='ONE_OFF'">一次性</div>
- <div class="chioseItem"
- :class="payList.company.chiose == 'MONTHLY'?'active':''"
- @click="payList.company.chiose='MONTHLY'">一个月</div>
- <div class="chioseItem"
- :class="payList.company.chiose == 'TERM'?'active':''"
- @click="payList.company.chiose='TERM'">一学期</div>
- <div class="chioseItem"
- :class="payList.company.chiose == 'YEAR'?'active':''"
- @click="payList.company.chiose='YEAR'">一学年</div>
- </div>
- <div class="inputWrap">
- 预计收费:
- <input type="textarea"
- placeholder="请输入"
- v-model.trim="payList.company.price" />
- </div>
- <div class="inputWrap">
- 备注:
- <input type="textarea"
- placeholder="请输入"
- v-model.trim="payList.company.value" />
- </div>
- </div>
- <!-- <div class="checkRow"
- v-if='teamStatus !="resetTeam"'>
- <el-checkbox label="学员"
- class="classCheckBox"
- v-model.trim="payList.student.ischeck"></el-checkbox>
- <div class="chioseList">
- <div class="chioseItem"
- :class="payList.student.chiose == 'ONE_OFF'?'active':''"
- @click="payList.student.chiose='ONE_OFF'">一次性</div>
- <div class="chioseItem"
- :class="payList.student.chiose == 'loop'?'active':''"
- @click="payList.student.chiose='loop'">周期循环</div>
- </div>
- </div> -->
- <!-- <p class="subTitle"
- v-if="payList.student.chiose == 'loop'&&teamStatus !='resetTeam'">按月缴费时,将在所选月份的1号的前一周提醒用户缴费操作,单次的缴费金额为当前列表「预计收费」的设置金额</p>
- <div class="chioseWrap"
- v-if="payList.student.chiose == 'loop'&&teamStatus !='resetTeam'">
- <p>缴费月份:</p>
- <el-checkbox-group v-model.trim="payList.chioseMonth"
- 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>
- </div> -->
- </div>
- <div class="btnWrap">
- <div class="nextBtn"
- v-if="teamStatus=='resetTeam'"
- v-permission="{child: 'musicGroup/update', parent: '/resetTeaming/teamBaseInfo'}"
- @click="resetSubmit">修改</div>
- <!-- 审批或者草稿的下一步 -->
- <div class="nextBtn"
- @click="gotoNext(1)"
- v-if="teamStatus=='newTeam' || teamStatus=='teamDraft'||teamStatus=='teamAudit' ">下一步</div>
- <!-- 跨团调整的下一步 -->
- <div class="nextBtn"
- v-if="teamStatus=='teamList'"
- @click="gotoNext(2)">下一步</div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import {
- getSection,
- getType,
- getCooperation,
- getTeacher,
- getAddress,
- getPayMaster,
- getPayStatus,
- getTeamBaseInfo,
- resetTeamBaseInfo,
- getEmployeeOrgan
- } from "@/api/buildTeam";
- import { findTechnician } from "@/api/repairManager";
- import {
- queryEmployByOrganId,
- queryByOrganId,
- getSchool
- } from "@/api/systemManage";
- import { scrollTo } from "@/utils/scroll-to";
- import axios from "axios";
- import store from "@/store";
- import qs from "qs";
- export default {
- name: "teamBaseInfo",
- props: ["getTeamList"],
- data () {
- return {
- organId: null,
- topFrom: {
- type: "", // 收费类型
- section: "", //所属分部
- school: "", // 合作单位
- teacher: "", // 教务老师
- name: "", //乐团名称
- boss: "", // 运营主管
- time: "", // 报名截止时间
- startClass: [], // 招生年级起始
- address: "", // 教学地点
- salary: "", // 收费模式
- head: "",
- isClass: false, //是否为课堂课
- startTime: "",
- feeType: null,
- ownershipType: "OWN", // 合作机构类型
- repairUserId: null, // 维修技师
- },
- checkList: {
- soundInfo: {
- // 声部
- ischeck: false,
- value: ""
- },
- allInfo: {
- // 合奏
- ischeck: false,
- value: ""
- },
- baseInfo: {
- // 基础
- ischeck: false,
- value: ""
- },
- holidayInfo: {
- // 假期
- ischeck: false,
- value: ""
- },
- networkInfo: {
- ischeck: false,
- value: ""
- },
- submit: {
- ischeck: false,
- value:
- "年度安排个月共xxx课时,课时,原价xxx元,现价xxxx元/月(约 xxxx元/课时 )"
- }
- }, // 选中的集合
- baseInfo: {},
- money: 580,
- orderInfo: {
- marketPrice: 0, // 原价总金额
- referencePrice: 0 // 现价总金额
- }, // 金额列表,金额计算
- sectionList: [], // 分部列表
- typeList: [], // 收费类型列表
- cooperationList: [], // 教学点列表
- teacherList: [], // 获取老师列表
- addList: [], // 教学地点列表
- payList: {
- school: {
- ischeck: false,
- value: "",
- price: "",
- chiose: ""
- },
- company: {
- ischeck: false,
- value: "",
- price: "",
- chiose: ""
- },
- student: {
- ischeck: true,
- chiose: "loop"
- },
- chioseMonth: [] // 选中的月份
- },
- activeTeam: [],
- teamid: "",
- teamStatus: "",
- orgianList: [],
- isInit: false,
- technician: []
- };
- },
- created () { },
- activated () {
- this.payList = {
- school: {
- ischeck: false,
- value: "",
- price: "",
- chiose: ""
- },
- company: {
- ischeck: false,
- value: "",
- price: "",
- chiose: ""
- },
- student: {
- ischeck: true,
- chiose: "loop"
- },
- chioseMonth: [] // 选中的月份
- }
- this.init();
- },
- mounted () {
- this.init();
- // this.$forceUpdate()
- // 获取分部下的员工
- },
- beforeDestroy () {
- },
- methods: {
- changeFeeType (val) {
- console.log(val == "ONLINE")
- },
- init () {
- this.isInit = true;
- // 分为3种 this.teamStatus
- // 1.resetTeam 乐团修改
- // 2. newTeam 新建乐团
- // 3.teamList 跨团修改
- // 4.teamDraft 乐团草稿
- this.teamStatus = this.$route.query.type;
- // 传过来的乐团信息
- this.activeTeam = this.getTeamList;
- if (
- this.teamStatus == "resetTeam" ||
- this.teamStatus == "teamDraft" ||
- this.teamStatus == "teamAudit"
- ) {
- // 单团修改
- this.teamid = this.$route.query.id;
- getTeamBaseInfo({ musicGroupId: this.teamid }).then(res => {
- if (res.code == 200) {
- // 头部
- this.topFrom.name = res.data.musicGroup.name;
- this.$emit('getName', this.topFrom.name)
- this.topFrom.time = res.data.musicGroup.applyExpireDate;
- this.topFrom.type = res.data.musicGroup.chargeTypeId;
- this.topFrom.startClass = res.data.musicGroup.enrollClasses.split(
- ","
- );
- this.topFrom.section = res.data.musicGroup.organId;
- this.topFrom.school = res.data.musicGroup.cooperationOrganId;
- this.topFrom.teacher = res.data.musicGroup.educationalTeacherId;
- this.topFrom.boss = res.data.musicGroup.teamTeacherId;
- this.topFrom.address = res.data.musicGroup.schoolId;
- this.topFrom.salary = res.data.musicGroup.settlementType;
- this.topFrom.head = res.data.musicGroup.directorUserId;
- this.topFrom.isClass = res.data.musicGroup.isClassroomLessons;
- this.topFrom.startTime = res.data.musicGroup.expectStartGroupDate;
- this.topFrom.ownershipType = res.data.musicGroup.ownershipType;
- this.topFrom.repairUserId = res.data.musicGroup.repairUserId ? res.data.musicGroup.repairUserId : null;
- this.topFrom.feeType = res.data.musicGroup.feeType ? res.data.musicGroup.feeType : null;
- // 课程组成形式
- this.checkList = JSON.parse(res.data.musicGroup.courseForm);
- if (this.checkList.networkInfo) {
- } else {
- this.$set(this.checkList, 'networkInfo', {
- ischeck: false,
- value: ""
- })
- }
- // 付费方式和周期
- for (let i in res.data.musicGroupPaymentEntities) {
- if (res.data.musicGroupPaymentEntities[i].name == "学校") {
- this.payList.school.ischeck = true;
- this.payList.school.value =
- res.data.musicGroupPaymentEntities[i].memo;
- this.payList.school.price =
- res.data.musicGroupPaymentEntities[i].amount;
- this.payList.school.chiose =
- res.data.musicGroupPaymentEntities[i].paymentMethod;
- }
- if (res.data.musicGroupPaymentEntities[i].name == "公司") {
- this.payList.company.ischeck = true;
- this.payList.company.value =
- res.data.musicGroupPaymentEntities[i].memo;
- this.payList.company.price =
- res.data.musicGroupPaymentEntities[i].amount;
- this.payList.company.chiose =
- res.data.musicGroupPaymentEntities[i].paymentMethod;
- }
- if (res.data.months.length > 0) {
- this.payList.student.ischeck = true;
- this.payList.student.chiose = "loop";
- this.chioseMonth = res.data.months;
- } else {
- this.payList.student.ischeck = true;
- this.payList.student.chiose = "ONE_OFF";
- }
- }
- // 循环缴费月
- this.payList.chioseMonth = res.data.months;
- if (res.data.musicGroup.organId) {
- // 获取员工
- queryEmployByOrganId({
- organId: res.data.musicGroup.organId,
- rows: 1000
- }).then(res => {
- if (res.code == 200) {
- this.orgianList = res.data.rows;
- }
- });
- // 获取合作单位
- queryByOrganId({ organId: res.data.musicGroup.organId }).then(
- res => {
- if (res.code == 200) {
- this.cooperationList = res.data;
- }
- }
- );
- // 获取教学点
- getSchool({ organId: res.data.musicGroup.organId }).then(res => {
- if (res.code == 200) {
- this.addList = res.data;
- this.isInit = false;
- }
- });
- // 获取维修技师
- findTechnician().then(res => {
- if (res.code == 200) {
- this.technician = res.data;
- }
- })
- }
- }
- });
- } else {
- (this.topFrom = {
- type: "", // 收费类型
- section: "", //所属分部
- school: "", // 合作单位
- teacher: "", // 教务老师
- name: "", //乐团名称
- boss: "", // 运营主管
- time: "", // 报名截止时间
- startClass: [], // 招生年级起始
- address: "", // 教学地点
- salary: "", // 收费模式
- head: "",
- isClass: false, //是否为课堂课
- startTime: "",
- ownershipType: "OWN", // 合作机构类型
- feeType: 'ONLINE'
- }),
- this.$refs["topinfo"].resetFields();
- }
- // 1.获取各个选项卡的数据内容
- // getSection({ 'delFlag': 0, 'rows': 1000 }).then(res => {
- // if (res.code == 200) {
- // this.sectionList = res.data.rows;
- // }
- // }).catch()
- getEmployeeOrgan().then(res => {
- if (res.code == 200) {
- this.sectionList = res.data;
- }
- });
- // 2.获取收费类型选项卡
- getType({ rows: 1000 }).then(res => {
- if (res.code == 200) {
- this.typeList = res.data.rows;
- }
- });
- // 3.获取合作单位选项卡
- // getCooperation({ 'rows': 1000, search: this.organId }).then(res => {
- // if (res.code == 200) {
- // this.cooperationList = res.data.rows;
- // }
- // })
- // 4.获取老师选项卡
- // getTeacher({ 'rows': 1000, organId: this.organId }).then(res => {
- // if (res.code == 200) {
- // this.teacherList = res.data;
- // }
- // })
- // 5.获取教学地点选项卡
- // getAddress({ 'rows': 1000, }).then(res => {
- // if (res.code == 200) {
- // this.addList = res.data.rows;
- // }
- // })
- // 6.默认支付主体
- // getPayMaster({ 'rows': 1000 }).then(res => {
- // if (res.code == 200) {
- // this.payList = res.data.map(item => {
- // let obj = {};
- // obj.id = item.id;
- // obj.ischios
- // })
- // }
- // })
- // 缓存设置时的状态
- sessionStorage.setItem("resetCode", "1");
- },
- changeSection (val) {
- // 修改分部的时候 重置运营主管 重置教务老师 重置乐队指导 合作单位 教学点
- this.topFrom.teacher = "";
- this.topFrom.boss = "";
- this.topFrom.head = "";
- this.topFrom.school = "";
- this.topFrom.address = "";
- // 发请求 根据分部id 查询所有员工
- queryEmployByOrganId({ organId: val, rows: 1000 }).then(res => {
- if (res.code == 200) {
- this.orgianList = res.data.rows;
- }
- });
- // 合作单位
- queryByOrganId({ organId: val }).then(res => {
- if (res.code == 200) {
- this.cooperationList = res.data;
- }
- });
- // 教学点=>学校
- getSchool({ organId: val }).then(res => {
- if (res.code == 200) {
- this.addList = res.data;
- }
- });
- // 获取维修技师
- findTechnician().then(res => {
- if (res.code == 200) {
- this.technician = res.data;
- }
- })
- },
- chioseSchool (val) { },
- gotoNext (num) {
- // 1.效验数据 判断是否数据正常=> 正常放入store存储
- // 不正常=> 进行效验提示
- this.$refs["topinfo"].validate((valid, object) => {
- if (!valid) {
- this.$message.error("请填写建团必要参数");
- } else {
- // 判断一下是否勾选了课程类型而没有输入金额
- let flagList = []
- for (let i in this.checkList) {
- if (this.checkList[i].ischeck && !this.checkList[i].value) {
- flagList.push(false)
- } else {
- flagList.push(true)
- }
- }
- let flag = flagList.every(item => {
- return item == true
- })
- if (!flag) {
- this.$message.error('课程价格不能为空')
- return
- }
- // 验证通过
- this.$store.dispatch("topinfo", this.topFrom);
- this.$store.dispatch("checkinfo", this.checkList);
- this.$store.dispatch("getpayInfo", this.payList);
- if (this.teamStatus == "teamDraft") {
- // 获取数据提交
- this.resetSubmit();
- } else {
- this.$emit("chiosetab", num);
- }
- }
- });
- },
- resetSubmit () {
- this.$refs["topinfo"].validate((valid, object) => {
- if (!valid) {
- this.$message.error("请填写必要参数");
- } else {
- let flagList = []
- for (let i in this.checkList) {
- if (this.checkList[i].ischeck && !this.checkList[i].value) {
- flagList.push(false)
- } else {
- flagList.push(true)
- }
- }
- let flag = flagList.every(item => {
- return item == true
- })
- if (!flag) {
- this.$message.error('课程价格不能为空')
- return
- }
- let status = null;
- // 1.resetTeam 乐团修改
- // 2.newTeam 新建乐团
- // 3.teamList 跨团修改
- // 4.teamDraft 乐团草稿
- switch (this.teamStatus) {
- case "resetTeam": {
- status = "PROGRESS";
- break;
- }
- case "newTeam": {
- status = null;
- break;
- }
- case "teamList": {
- status = null;
- break;
- }
- case "teamDraft": {
- status = "DRAFT";
- break;
- }
- }
- let obj = {};
- // topFrom.ownershipType
- this.payList.student.chiose == "loop"
- ? (obj.months = this.payList.chioseMonth)
- : (obj.months = []);
- obj.musicGroup = {
- settlementType: this.topFrom.salary,
- applyExpireDate: this.topFrom.time + " 00:00:01",
- chargeTypeId: this.topFrom.type,
- cooperationOrganId: this.topFrom.school,
- teamTeacherId: this.topFrom.boss,
- educationalTeacherId: this.topFrom.teacher,
- enrollClasses: this.topFrom.startClass.join(","),
- name: this.topFrom.name,
- organId: this.topFrom.section,
- // paymentMonths:obj.months 有待确认
- schoolId: this.topFrom.address,
- courseForm: JSON.stringify(this.checkList),
- id: this.teamid,
- directorUserId: this.topFrom.head,
- isClassroomLessons: this.topFrom.isClass,
- status,
- expectStartGroupDate: this.topFrom.startTime,
- ownershipType: this.topFrom.ownershipType,
- repairUserId: this.topFrom.repairUserId
- };
- obj.musicGroupPaymentEntities = [];
- // 添加学校主体付费方式
- if (this.payList.school.ischeck) {
- obj.musicGroupPaymentEntities.push({
- amount: this.payList.school.price,
- memo: this.payList.school.value,
- paymentMethod: this.payList.school.chiose,
- name: "学校"
- });
- }
- // 添加公司主体付费方式
- if (this.payList.company.ischeck) {
- obj.musicGroupPaymentEntities.push({
- amount: this.payList.company.price,
- memo: this.payList.company.value,
- paymentMethod: this.payList.company.chiose,
- name: "公司"
- });
- }
- if (this.payList.student.ischeck) {
- obj.musicGroupPaymentEntities.push({
- paymentMethod: this.payList.student.chiose,
- name: "学生"
- });
- }
- // 发请求
- resetTeamBaseInfo(obj).then(res => {
- if (res.code == 200) {
- if (this.teamStatus == "teamDraft") {
- this.$message.success("保存成功");
- // 跳到第二页
- // 删掉结束
- this.$emit("chiosetab", 1);
- } else {
- this.$message.success("修改乐团成功");
- // this.$router.push({ path: '/business/teamDetails', query: { id: this.teamid, name: this.topFrom.name } })
- }
- }
- });
- }
- });
- }
- },
- computed: {}
- };
- </script>
- <style lang="scss">
- .base-container {
- overflow: auto;
- // display: flex;
- // flex-direction: row;
- // justify-content: flex-start;
- // flex-wrap: nowrap;
- font-size: 14px;
- color: #444;
- // width: fill-available;
- .banseLeft {
- // width: 1050px;
- .head {
- height: 48px;
- line-height: 48px;
- background-color: #edeef0;
- font-size: 14px;
- font-weight: bold;
- color: #444;
- padding: 0 11px;
- margin-bottom: 20px;
- }
- .noMargin.head {
- margin-bottom: 0;
- }
- .num {
- padding: 15px 11px;
- }
- .checkRow {
- // width: 1050px;
- padding-left: 28px;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- flex-wrap: nowrap;
- overflow: auto;
- .el-checkbox {
- line-height: 72px;
- }
- .inputWrap {
- line-height: 72px;
- font-size: 14px;
- color: #777;
- margin-left: 65px;
- input {
- border: none;
- width: 80px;
- margin-right: 10px;
- outline: none;
- }
- }
- .inputWrap.rightFirst {
- margin-left: 245px;
- }
- .textWrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- font-size: 14px;
- color: #777;
- align-items: center;
- span {
- color: #f97215;
- }
- }
- .selectWrap {
- font-size: 14px;
- padding-top: 5px;
- margin-left: 100px;
- margin-right: 52px;
- .rowSelect {
- .el-input__inner {
- min-height: 69px;
- }
- }
- }
- .chioseList {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- font-size: 14px;
- color: #777;
- margin-left: 64px;
- .chioseItem {
- width: 80px;
- height: 30px;
- border-radius: 15px;
- border: 1px solid #979797;
- margin-right: 10px;
- line-height: 30px;
- text-align: center;
- cursor: pointer;
- }
- .chioseItem.active {
- background-color: #14928a;
- border: 1px solid #14928a;
- color: #fff;
- }
- }
- // &:nth-child(even) {
- // background-color: #c6cbd4;
- // input {
- // background-color: #c6cbd4;
- // }
- // }
- }
- }
- .btnWrap {
- margin-top: 30px;
- }
- .el-checkbox__input.is-checked + .el-checkbox__label {
- color: #606266;
- }
- .subTitle {
- // width: 1203px;
- height: 40px;
- line-height: 40px;
- background-color: #fefceb;
- padding: 0 25px;
- box-sizing: border-box;
- font-size: 16px;
- color: #474747;
- margin-bottom: 20px;
- }
- .chioseWrap {
- margin-bottom: 30px;
- display: flex;
- flex-direction: row;
- padding: 0 25px;
- p {
- width: 80px;
- font-size: 14px;
- // margin-right: 30px;
- }
- }
- .classCheckBox {
- margin-right: 10px;
- }
- }
- </style>
|