|
@@ -57,7 +57,7 @@
|
|
|
<el-form-item prop="cooperationOrganId">
|
|
|
<el-select
|
|
|
class="multiple"
|
|
|
- :disabled="!topForm.orgin.length>0"
|
|
|
+ :disabled="!topForm.orgin.length > 0"
|
|
|
v-model.trim="topForm.cooperationOrganId"
|
|
|
filterable
|
|
|
clearable
|
|
@@ -184,7 +184,9 @@
|
|
|
label="乐团编号"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <copy-text>{{ scope.row.id }}</copy-text>
|
|
|
+ <copy-text>
|
|
|
+ {{ scope.row.id }}
|
|
|
+ </copy-text>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -194,7 +196,9 @@
|
|
|
label="乐团名称"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <copy-text>{{ scope.row.name }}</copy-text>
|
|
|
+ <p>
|
|
|
+ {{ scope.row.name }}
|
|
|
+ </p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -467,6 +471,7 @@ import closeStudens from "../teamBuild/modals/close-studens";
|
|
|
import { getTimes } from "@/utils";
|
|
|
import { Export } from "@/utils/downLoadFile";
|
|
|
import { queryByOrganId } from "@/api/systemManage";
|
|
|
+import Tooltip from "@/components/Tooltip/index";
|
|
|
export default {
|
|
|
name: "teamList",
|
|
|
data() {
|
|
@@ -483,7 +488,7 @@ export default {
|
|
|
courseViewType: "",
|
|
|
billTimer: [],
|
|
|
createTimer: [],
|
|
|
- cooperationOrganId:null
|
|
|
+ cooperationOrganId: null,
|
|
|
},
|
|
|
organList: [],
|
|
|
typeList: [], // 收费类型
|
|
@@ -500,26 +505,27 @@ export default {
|
|
|
passed: [], // 传递的参数
|
|
|
showSteam: false,
|
|
|
activeId: null,
|
|
|
- cooperationList:[]
|
|
|
+ cooperationList: [],
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
|
pagination,
|
|
|
teamSteam,
|
|
|
closeStudens,
|
|
|
+ Tooltip,
|
|
|
},
|
|
|
mounted() {
|
|
|
const { query } = this.$route;
|
|
|
if (query.organId) {
|
|
|
- this.topForm.orgin = []
|
|
|
- this.topForm.orgin.push(query.organId)
|
|
|
+ this.topForm.orgin = [];
|
|
|
+ this.topForm.orgin.push(query.organId);
|
|
|
// this.topForm.orgin = query.organId;
|
|
|
}
|
|
|
if (query.search) {
|
|
|
this.topForm.search = query.search;
|
|
|
}
|
|
|
- if(this.topForm.orgin.length >0){
|
|
|
- this.onBranchChange(this.topForm.orgin)
|
|
|
+ if (this.topForm.orgin.length > 0) {
|
|
|
+ this.onBranchChange(this.topForm.orgin);
|
|
|
}
|
|
|
|
|
|
this.init();
|
|
@@ -568,12 +574,12 @@ export default {
|
|
|
getTeamList({
|
|
|
rows: this.rules.limit,
|
|
|
page: this.rules.page,
|
|
|
- organId: this.topForm.orgin.join(','),
|
|
|
+ organId: this.topForm.orgin.join(","),
|
|
|
chargeTypeId: this.topForm.payType || null,
|
|
|
search: this.topForm.search || null,
|
|
|
musicGroupStatus: this.topForm.status || null,
|
|
|
courseViewType: this.topForm.courseViewType || null,
|
|
|
- cooperationOrganId:this.topForm.cooperationOrganId || null,
|
|
|
+ cooperationOrganId: this.topForm.cooperationOrganId || null,
|
|
|
searchType: this.$route.query.searchType,
|
|
|
...getTimes(
|
|
|
createTimer,
|
|
@@ -1118,7 +1124,7 @@ export default {
|
|
|
let { createTimer, billTimer, ...reset } = this.topForm;
|
|
|
let obj = {
|
|
|
...reset,
|
|
|
- organId: this.topForm.orgin.join(',') || null,
|
|
|
+ organId: this.topForm.orgin.join(",") || null,
|
|
|
...getTimes(
|
|
|
createTimer,
|
|
|
["createStartDate", "createEndDate"],
|
|
@@ -1144,7 +1150,7 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
// 合作单位
|
|
|
- await queryByOrganId({ organId: value.join(',') }).then((res) => {
|
|
|
+ await queryByOrganId({ organId: value.join(",") }).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.cooperationList = res.data;
|
|
|
this.topForm.cooperationOrganId = null;
|