1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105 |
- <template>
- <div class="m-container">
- <h2>
- <div class="squrt"></div>
- 乐团管理
- <filter-search
- @reload="reloadSearch"
- :moreKeys="['organId']"
- :keys="['searchType']"
- />
- </h2>
- <div class="m-core">
- <div class="btnList" style="margin-bottom: 20px">
- <el-button
- type="primary"
- v-if="permission('musicGroup/createGroup')"
- @click="createNewTeam"
- >新建乐团</el-button
- >
- <!-- <div class='newBand'
- v-permission="'/teamBuild/trimming'"
- @click="resetTeam">乐团调整</div> -->
- </div>
- <save-form
- :inline="true"
- @submit="search"
- @reset="reset"
- class="topForm"
- ref="topForm"
- :model="topForm"
- >
- <el-form-item prop="teamName">
- <el-input
- v-model.trim="topForm.teamName"
- clearable
- @keyup.enter.native="search"
- placeholder="请输入乐团名称"
- ></el-input>
- </el-form-item>
- <el-form-item prop="orgin">
- <el-select
- class="multiple"
- v-model.trim="topForm.orgin"
- filterable
- clearable
- placeholder="请选择分部"
- >
- <el-option
- v-for="(item, index) in organList"
- :key="index"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop="status">
- <el-select
- class="multiple"
- v-model.trim="topForm.status"
- filterable
- clearable
- placeholder="请选择乐团状态"
- >
- <el-option
- v-for="(item, index) in nowStatus"
- :key="index"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <!-- 收费类型 -->
- <el-form-item prop="payType">
- <el-select
- v-model.trim="topForm.payType"
- filterable
- placeholder="请选择收费类型"
- 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 prop="courseViewType">
- <el-select
- v-model.trim="topForm.courseViewType"
- filterable
- placeholder="请选择收费模式"
- clearable
- >
- <el-option
- :label="item.label"
- :value="item.value"
- v-for="item in courseViewTypeList"
- :key="item.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop="createTimer">
- <el-date-picker
- v-model.trim="topForm.createTimer"
- style="width: 420px"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="申请开始日期"
- end-placeholder="申请结束日期"
- :picker-options="{
- firstDayOfWeek: 1,
- }"
- ></el-date-picker>
- </el-form-item>
- <el-form-item prop="billTimer">
- <el-date-picker
- v-model.trim="topForm.billTimer"
- style="width: 420px"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="成团开始日期"
- end-placeholder="成团结束日期"
- :picker-options="{
- firstDayOfWeek: 1,
- }"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button type="danger" native-type="submit">搜索</el-button>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" native-type="reset">重置</el-button>
- </el-form-item>
- </save-form>
- <div class="tableWrap">
- <el-table
- style="width: 100%"
- @selection-change="handleSelectionChange"
- :header-cell-style="{ background: '#EDEEF0', color: '#444' }"
- :data="tableData"
- >
- <!-- <el-table-column type="selection"
- :selectable="checkSelectable"
- width="50">
- </el-table-column> -->
- <el-table-column
- prop="organName"
- align="center"
- label="所属分部"
- ></el-table-column>
- <el-table-column
- prop="id"
- width="100"
- align="center"
- label="乐团编号"
- >
- <template slot-scope="scope">
- <copy-text>{{ scope.row.id }}</copy-text>
- </template>
- </el-table-column>
- <el-table-column
- prop="name"
- width="200px"
- align="center"
- label="乐团名称"
- >
- <template slot-scope="scope">
- <copy-text>{{ scope.row.name }}</copy-text>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- width="200px"
- prop="cooperationOrganName"
- max-width="274"
- label="合作单位"
- >
- </el-table-column>
- <el-table-column prop="status" align="center" label="乐团状态">
- <template slot-scope="scope">
- <div>
- {{ scope.row.status | musicGroupType }}
- </div>
- </template>
- </el-table-column>
- <el-table-column prop="status" align="center" label="收费模式">
- <template slot-scope="scope">
- <div>
- {{ scope.row.courseViewType | courseViewType }}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- prop="chargeTypeName"
- label="收费类型"
- >
- </el-table-column>
- <el-table-column
- prop="educationalTeacherName"
- align="center"
- label="乐团主管"
- >
- </el-table-column>
- <el-table-column
- prop="teamTeacherName"
- align="center"
- label="运营主管"
- >
- </el-table-column>
- <el-table-column
- prop="groupMemberNum"
- align="center"
- label="成团人数"
- >
- </el-table-column>
- <el-table-column prop="payNum" align="center" label="在读人数">
- </el-table-column>
- <!-- <el-table-column prop="course"
- align='center'
- label="当前课时">
- </el-table-column> -->
- <el-table-column
- prop="createTime"
- width="100px"
- align="center"
- label="申请时间"
- >
- <template slot-scope="scope">
- <div>
- {{ scope.row.createTime | formatTimer }}
- </div>
- </template>
- </el-table-column>
- <el-table-column align="center" width="100px" label="成团时间">
- <template slot-scope="scope">
- <div>
- {{ scope.row.billStartDate | formatTimer }}
- </div>
- </template>
- </el-table-column>
- <el-table-column align="center" width="100px" label="清单状况">
- <template slot-scope="scope">
- <div>
- {{ scope.row.hasVerifyMusicalList ? "已确认" : "未确认" }}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- align="center"
- width="220px"
- fixed="right"
- label="操作"
- >
- <template slot-scope="scope">
- <div>
- <!-- 审核中 编辑 -->
- <el-button
- type="text"
- v-if="
- scope.row.status == 'AUDIT' &&
- permission('musicGroup/auditSuccess')
- "
- @click="lookTeamDetail(scope.row)"
- >审核</el-button
- >
- <el-button
- type="text"
- v-if="
- scope.row.status == 'DRAFT' &&
- permission('musicGroup/update')
- "
- @click="lookTeamDetail(scope.row)"
- >编辑</el-button
- >
- <!-- 审核失败 编辑 -->
- <el-button
- type="text"
- v-if="
- scope.row.status == 'AUDIT_FAILED' &&
- permission('musicGroup/update')
- "
- @click="lookTeamDetail(scope.row)"
- >编辑</el-button
- >
- <!-- 报名中缴费中筹备中查看乐团 -->
- <el-button
- type="text"
- v-if="
- (scope.row.status == 'PRE_APPLY' ||
- scope.row.status == 'PAUSE' ||
- scope.row.status == 'PRE_BUILD_FEE' ||
- scope.row.status == 'PROGRESS' ||
- scope.row.status == 'CANCELED' ||
- scope.row.status == 'APPLY' ||
- scope.row.status == 'PAY' ||
- scope.row.status == 'PREPARE' ||
- scope.row.status == 'CLOSE' ||
- scope.row.status == 'FEE_AUDIT') &&
- permission('/resetTeaming')
- "
- @click="lookTeamDetail(scope.row)"
- >详情</el-button
- >
- <!-- <el-button
- v-if="permission('recharge/findAll')"
- type="text"
- @click="lookSteam(scope.row)"
- >乐团日志</el-button
- > -->
- <!-- 进行中 关闭 -->
- <el-button
- type="text"
- v-if="
- scope.row.status == 'PROGRESS' &&
- permission('musicGroup/closeMusicGroup')
- "
- @click="closeTeamDetail(scope.row)"
- >关闭</el-button
- >
- <!-- 进行中 查看 -->
- <!-- <el-button
- type="text"
- v-if="
- scope.row.status == 'PROGRESS' && permission('/teamDetails')
- "
- @click="lookTeamDetail(scope.row)"
- >查看</el-button
- > -->
- <el-button
- type="text"
- v-if="
- (scope.row.status == 'DRAFT' ||
- scope.row.status == 'AUDIT' ||
- scope.row.status == 'FEE_AUDIT' ||
- scope.row.status == 'APPLY' ||
- scope.row.status == 'PAY' ||
- scope.row.status == 'PRE_APPLY' ||
- scope.row.status == 'PRE_BUILD_FEE') &&
- permission('musicGroup/cancelMusicGroup')
- "
- @click="stopTeam(scope.row)"
- >取消乐团</el-button
- >
- <el-button
- v-if="
- scope.row.status == 'PREPARE' &&
- permission('musicGroup/action')
- "
- @click="startTeam(scope.row)"
- type="text"
- >确认成团</el-button
- >
- <!-- <el-button type="text"
- v-if="scope.row.status == 'AUDIT' && permission('musicGroup/cancelMusicGroup')"
- @click="stopTeam(scope.row)">取消乐团</el-button> -->
- <el-button
- v-if="
- scope.row.status == 'PAUSE' &&
- permission('musicGroup/resumeMusicGroup')
- "
- @click="onTeamOpeation('start', scope.row)"
- type="text"
- >启动</el-button
- >
- <el-button
- v-if="
- scope.row.status == 'PROGRESS' &&
- permission('musicGroup/pauseMusicGroup')
- "
- @click="onTeamOpeation('pause', scope.row)"
- type="text"
- >暂停</el-button
- >
- <el-button
- v-if="
- scope.row.status == 'CANCELED' &&
- permission('musicGroup/deleteMusicGroup')
- "
- @click="deteleTeaming(scope.row)"
- type="text"
- >删除</el-button
- >
- </div>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页器 -->
- <!-- 分页 -->
- <pagination
- sync
- :total.sync="rules.total"
- :page.sync="rules.page"
- :limit.sync="rules.limit"
- :page-sizes="rules.page_size"
- @pagination="getList"
- />
- </div>
- <el-dialog :visible.sync="showSteam" width="500px" title="乐团流程">
- <teamSteam :activeId="activeId" />
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="showSteam = false">确 定</el-button>
- </div>
- </el-dialog>
- <el-dialog :visible.sync="closeVisible" title="确认学员" width="800px">
- <closeStudens
- v-if="closeVisible"
- :detail="closeDetail"
- @close="closeVisible = false"
- @submited="getList"
- />
- </el-dialog>
- </div>
- </div>
- </template>
- <script>
- import pagination from "@/components/Pagination/index";
- import { getTeamList, getPayType } from "@/api/teamServer";
- import {
- getCooperation,
- cancelMusicGroup,
- startTeam,
- getEmployeeOrgan,
- pauseMusicGroup,
- resumeMusicGroup,
- deleteMusicGroup,
- } from "@/api/buildTeam";
- import { musicGroupStatus, courseViewTypeList } from "@/utils/searchArray";
- import { isObject } from "util";
- import { permission } from "@/utils/directivePage";
- import teamSteam from "./teamListComponent/teamSteam";
- import closeStudens from "../teamBuild/modals/close-studens";
- import { getTimes } from "@/utils";
- export default {
- name: "teamList",
- data() {
- return {
- courseViewTypeList,
- closeDetail: {},
- closeVisible: false,
- topForm: {
- teamName: "",
- status: "",
- payType: "",
- word: "",
- orgin: "",
- courseViewType: "",
- billTimer: [],
- createTimer: [],
- },
- organList: [],
- typeList: [], // 收费类型
- nowStatus: musicGroupStatus,
- searchLsit: [], // 存储选择后的数组
- tableData: [], // table数据
- rules: {
- // 分页规则
- limit: 10, // 限制显示条数
- page: 1, // 当前页
- total: 0, // 总条数
- page_size: [10, 20, 40, 50], // 选择限制显示条数
- },
- passed: [], // 传递的参数
- showSteam: false,
- activeId: null,
- };
- },
- components: {
- pagination,
- teamSteam,
- closeStudens,
- },
- mounted() {
- const { query } = this.$route;
- if (query.organId) {
- this.topForm.orgin = query.organId;
- }
- if (query.search) {
- this.topForm.teamName = query.search;
- }
- this.init();
- },
- activated() {
- this.init();
- },
- methods: {
- reloadSearch() {
- this.rules.page = 1;
- this.getList();
- },
- init() {
- localStorage.setItem("resetCode", "1");
- getEmployeeOrgan().then((res) => {
- if (res.code == 200) {
- this.organList = res.data;
- }
- });
- // 获取乐团收费类型
- getPayType().then((res) => {
- if (res.code == 200) {
- this.typeList = res.data.rows;
- }
- });
- // 获取乐团合作单位(学校)
- // getCooperation().then(res => {
- // })
- this.getList();
- },
- permission(str) {
- return permission(str);
- },
- reset() {
- this.rules.page = 1;
- this.$refs["topForm"].resetFields();
- this.getList();
- },
- search() {
- this.rules.page = 1;
- this.getList();
- },
- getList() {
- let { createTimer, billTimer, ...reset } = this.topForm;
- getTeamList({
- rows: this.rules.limit,
- page: this.rules.page,
- organId: this.topForm.orgin || null,
- chargeTypeId: this.topForm.payType || null,
- musicGroupName: this.topForm.teamName || null,
- musicGroupStatus: this.topForm.status || null,
- courseViewType: this.topForm.courseViewType || null,
- searchType: this.$route.query.searchType,
- ...getTimes(
- createTimer,
- ["createStartDate", "createEndDate"],
- "YYYY-MM-DD"
- ),
- ...getTimes(billTimer, ["billStartDate", "billEndDate"], "YYYY-MM-DD"),
- }).then((res) => {
- if (res.code == 200) {
- this.tableData = res.data.rows;
- this.rules.total = res.data.total;
- }
- });
- },
- createNewTeam() {
- // this.$store.dispatch("buildIndex", 0);
- // this.$store.dispatch("delVisitedViews", { path: "/business/teamBuild" });
- localStorage.removeItem(`newTeambase`);
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: { type: "newTeam", team_status: "newTeam" },
- },
- (router) => {
- router.meta.title = "新建乐团";
- }
- );
- },
- resetTeam() {
- // 这里还有勾选的乐团信息
- if (this.passed && this.passed.length <= 0) {
- this.$message.error("请至少选择一个乐团进行调整");
- return;
- }
- this.$router.push({
- path: "/business/teamDraft",
- query: { type: "teamList", teamList: this.passed },
- });
- },
- resetTeaming(row) {
- // 修改进行中的乐团
- localStorage.removeItem(`${row.id}base`);
- localStorage.removeItem(`${row.id}sound`);
- this.$nextTick((res) => {
- this.$router.push({
- path: "/business/resetTeaming",
- query: { type: "resetTeam", id: row.id },
- });
- });
- },
- setSearchList(obj) {
- //
- // 没有相同的key=>添加这个对象
- // 有相同的key => 替换这个对象
- if (obj.type == 1) {
- let flag = false;
- this.searchLsit = this.searchLsit.map((item) => {
- if (item.id == obj.id) {
- item = obj;
- flag = true;
- }
- return item;
- });
- if (!flag) {
- this.searchLsit.push(obj);
- }
- } else {
- let flag = false;
- this.searchLsit = this.searchLsit.map((item) => {
- if (item.key == obj.key) {
- // 多选框的再次点击=> 等于 就是删除
- item = obj;
- flag = true;
- }
- return item;
- });
- if (!flag) {
- this.searchLsit.push(obj);
- }
- }
- },
- closeSearch(item) {
- // 1.删除search里的元素
- if (item.type == 1) {
- for (let some in this.searchLsit) {
- if (this.searchLsit[some].id == item.id) {
- this.searchLsit.splice(some, 1);
- }
- }
- // 2.清空对应元素所对应的的值
- this.topForm[item.id] = "";
- } else {
- for (let i = 0; i < this.topForm[item.id].length; i++) {
- if (this.topForm[item.id][i] == item.value) {
- this.topForm[item.id].splice(i, 1);
- }
- }
- // 处理search
- for (let some in this.searchLsit) {
- if (
- this.searchLsit[some].value == item.value &&
- this.searchLsit[some].id == item.id
- ) {
- this.searchLsit.splice(some, 1);
- }
- // id: 'school', key: this.schools[item].text, value: val, type: 1
- }
- }
- },
- closeTeamDetail(row) {
- this.closeVisible = true;
- this.closeDetail = { ...row };
- },
- onTeamOpeation(type, row) {
- if (type == "start") {
- this.$confirm("是否确定开启乐团?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- resumeMusicGroup({ musicGroupId: row.id }).then((res) => {
- if (res.code == 200) {
- this.$message.success("开启成功");
- this.getList();
- } else {
- this.$message.error(res.msg);
- }
- });
- })
- .catch(() => {});
- } else if (type == "pause") {
- this.$confirm("是否确定暂停乐团?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- pauseMusicGroup({ musicGroupId: row.id }).then((res) => {
- if (res.code == 200) {
- this.$message.success("暂停成功");
- this.getList();
- } else {
- this.$message.error(res.msg);
- }
- });
- })
- .catch(() => {});
- }
- },
- gotoSearch() {
- this.$refs["topForm"].resetFields();
- this.searchLsit = [];
- },
- lookTeamCourse(row) {
- // 查看课表
- this.$router.push({
- path: "/teamListCourse",
- query: { id: row.id, name: row.name },
- });
- },
- lookTeamDetail(row) {
- localStorage.removeItem(`${row.id}base`);
- localStorage.removeItem(`${row.id}sound`);
- localStorage.removeItem("newTeambase");
- switch (row.status) {
- case "DRAFT": {
- // 编辑中
- this.$store.dispatch("draftIndex", 0);
- // teamBaseInfo
- // this.$router.push(
- // {
- // path: "/business/teamDraft",
- // query: { type: "teamDraft", id: row.id ,clear:'true'},
- // },
- // (router) => {
- // router.meta.title = "编辑乐团";
- // }
- // );
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: { type: "teamDraft", id: row.id, team_status: row.status },
- },
- (router) => {
- router.meta.title = "乐团编辑中";
- }
- );
- break;
- }
- case "AUDIT": {
- // 审核中
- this.$store.dispatch("draftIndex", 0);
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "teamAudit",
- id: row.id,
- clear: "true",
- team_status: row.status,
- },
- },
- (router) => {
- router.meta.title = "乐团审核中";
- }
- );
- break;
- }
- case "PRE_BUILD_FEE": {
- // 创建缴费中
- // this.$router.push({
- // path: "/business/createPayment",
- // query: { type: "PRE_BUILD_FEE", id: row.id, name: row.name },
- // });
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "look",
- id: row.id,
- name: row.name,
- team_status: "PRE_BUILD_FEE",
- tabrouter: 3,
- },
- },
- (router) => {
- router.meta.title = "创建缴费中";
- }
- );
- break;
- }
- case "FEE_AUDIT": {
- // 费用审核中
- this.$store.dispatch("draftIndex", 0);
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "feeAudit",
- id: row.id,
- clear: "true",
- team_status: row.status,
- },
- },
- (router) => {
- router.meta.title = "乐团费用审核中";
- }
- );
- break;
- }
- case "AUDIT_FAILED": {
- // 审核失败
- this.$store.dispatch("draftIndex", 0);
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "teamDraft",
- id: row.id,
- clear: "true",
- team_status: row.status,
- },
- },
- (router) => {
- router.meta.title = "乐团审核失败";
- }
- );
- break;
- }
- case "PRE_APPLY": {
- // 预报名
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "look",
- id: row.id,
- name: row.name,
- team_status: "PRE_APPLY",
- tabrouter: 9,
- },
- },
- (router) => {
- router.meta.title = "乐团预报名";
- }
- );
- // this.$router.push({
- // path: "/business/forecastName",
- // query: { id: row.id, name: row.name },
- // });
- break;
- }
- case "APPLY": {
- // 报名中
- this.$router.push(
- {
- path: `/business/resetTeaming`,
- query: {
- status: row.status,
- id: row.id,
- name: row.name,
- team_status: "APPLY",
- type: "look",
- tabrouter: 11,
- },
- },
- (router) => {
- router.meta.title = "乐团报名中";
- }
- );
- break;
- }
- case "PAY": {
- // 缴费中
- this.$router.push(
- {
- path: `/business/resetTeaming`,
- query: {
- status: row.status,
- id: row.id,
- name: row.name,
- team_status: "PAY",
- type: "look",
- tabrouter: 11,
- },
- },
- (router) => {
- router.meta.title = "乐团缴费中";
- }
- );
- break;
- }
- case "PREPARE": {
- // 筹备中 跳转到乐团设置界面
- this.$router.push(
- {
- path: `/business/resetTeaming`,
- query: {
- type: "look",
- status: row.status,
- id: row.id,
- name: row.name,
- team_status: row.status,
- tabrouter: 10,
- },
- },
- (router) => {
- router.meta.title = "乐团筹备中";
- }
- );
- break;
- }
- case "PROGRESS": {
- // 进行中
- // 调到乐团详情 teamDetails
- this.$router.push(
- {
- path: `/business/resetTeaming`,
- query: {
- status: row.status,
- id: row.id,
- name: row.name,
- organId: row.organId,
- type: "resetTeam",
- team_status: row.status,
- },
- },
- (router) => {
- router.meta.title = "乐团进行中";
- }
- );
- break;
- }
- case "CANCELED": {
- // 取消
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: {
- type: "teamCanceled",
- id: row.id,
- team_status: row.status,
- },
- },
- (router) => {
- router.meta.title = "取消乐团";
- }
- );
- break;
- }
- case "PAUSE": {
- // 暂停
- // this.$router.push({
- // path: `/teamLists`,
- // query: { status: row.status, id: row.id, name: row.name },
- // });
- this.$router.push(
- {
- path: "/business/resetTeaming",
- query: { type: "resetTeam", id: row.id, team_status: row.status },
- },
- (router) => {
- router.meta.title = "乐团暂停";
- }
- );
- break;
- }
- case "CLOSE": {
- this.$router.push(
- {
- path: `/business/resetTeaming`,
- query: {
- status: row.status,
- id: row.id,
- name: row.name,
- team_status: "CLOSE",
- type: "look",
- },
- },
- (router) => {
- router.meta.title = "乐团关闭";
- }
- );
- }
- }
- },
- checkSelectable(row) {
- return row.status == "PROGRESS";
- },
- handleSelectionChange(arr) {
- this.passed = [];
- for (let i in arr) {
- let obj = {};
- obj.id = arr[i].id;
- obj.name = arr[i].name;
- this.passed.push(obj);
- }
- },
- gotodetailList(row) {
- this.$router.push({
- path: "/teamListedList",
- query: { id: row.id },
- });
- },
- //
- lookTeamInfo(row) {
- localStorage.removeItem(`${row.id}base`);
- localStorage.removeItem(`${row.id}sound`);
- this.$router.push({
- path: "/business/teamLookBase",
- query: {
- type: "look",
- id: row.id,
- name: row.name,
- team_status: row.status,
- },
- });
- },
- // setImprovement 设置基础技能班
- gotoImprovement(row) {
- let search = JSON.stringify(this.topForm);
- let rules = JSON.stringify(this.rules);
- this.$router.push({
- path: "/business/setImprovement",
- query: { id: row.id },
- });
- },
- // 停止乐团
- stopTeam(row) {
- this.$confirm("您确定取消申请乐团?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- cancelMusicGroup({
- musicGroupId: row.id,
- }).then((res) => {
- if (res.code == 200) {
- this.$message.success("停止成功");
- this.getList();
- }
- });
- })
- .catch(() => {});
- },
- // 确认成团
- startTeam(row) {
- this.$confirm("是否确定成团?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- startTeam({ musicGroupId: row.id }).then((res) => {
- if (res.code == 200) {
- this.$message.success("开启乐团成功");
- this.getList();
- }
- });
- })
- .catch(() => {});
- },
- deteleTeaming(row) {
- this.$confirm("您确定删除该乐团?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- deleteMusicGroup({
- musicGroupId: row.id,
- }).then((res) => {
- if (res.code == 200) {
- this.$message.success("删除成功");
- this.getList();
- }
- });
- })
- .catch(() => {});
- },
- lookSteam(row) {
- this.activeId = row.id;
- this.showSteam = true;
- },
- gotoSigin(row) {
- this.$router.push(
- {
- path: `/business/remedy`,
- query: { status: row.status, id: row.id, name: row.name },
- },
- (router) => {
- router.meta.title = "报名详情";
- }
- );
- },
- },
- watch: {
- showSteam(val) {
- if (!val) {
- this.activeId = null;
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- /deep/.el-button + .el-button {
- margin-left: 0px;
- }
- .select {
- font-size: 14px;
- }
- .btnList {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- div {
- margin-right: 15px;
- }
- }
- </style>
|