|  | @@ -190,11 +190,11 @@
 | 
	
		
			
				|  |  |                           v-if="permission('musicGroupQuit/directQuitMusicGroup')"
 | 
	
		
			
				|  |  |                           @click="quieTeamMask(scope.row)">退团</el-button>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -              <el-button type="text" @click="lookClass(scope.row)">查看班级</el-button>
 | 
	
		
			
				|  |  | +              <!-- <el-button type="text" @click="lookClass(scope.row)">查看班级</el-button>
 | 
	
		
			
				|  |  |                <el-button type="text" v-if="!scope.row.isLock" @click="lockStudent(scope.row)">锁定</el-button>
 | 
	
		
			
				|  |  |                <el-button v-else type="text" @click="lockStudent(scope.row)">解锁</el-button>
 | 
	
		
			
				|  |  |                <el-button type="text" @click="resetPay(scope.row)">修改缴费</el-button>
 | 
	
		
			
				|  |  | -              <el-button type="text" @click="quieTeamMask(scope.row)">退团</el-button>
 | 
	
		
			
				|  |  | +              <el-button type="text" @click="quieTeamMask(scope.row)">退团</el-button> -->
 | 
	
		
			
				|  |  |              </div>
 | 
	
		
			
				|  |  |            </template>
 | 
	
		
			
				|  |  |          </el-table-column>
 | 
	
	
		
			
				|  | @@ -520,6 +520,7 @@ 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"],
 | 
	
	
		
			
				|  | @@ -683,6 +684,9 @@ export default {
 | 
	
		
			
				|  |  |      this.init();
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  | +    permission(str) {
 | 
	
		
			
				|  |  | +      return permission(str)
 | 
	
		
			
				|  |  | +    },
 | 
	
		
			
				|  |  |      init() {
 | 
	
		
			
				|  |  |        // 获取汇总数据
 | 
	
		
			
				|  |  |        getTeamStudentInfo({ musicGroupId: this.teamid }).then(res => {
 |