|
@@ -2,9 +2,11 @@
|
|
|
<div>
|
|
|
<div class="soundBtnWrap">
|
|
|
<el-button type="primary"
|
|
|
- @click="allin">全选</el-button>
|
|
|
+ @click="allin"
|
|
|
+ v-if="teamStatus != 'resetTeam'">全选</el-button>
|
|
|
<el-button type="danger"
|
|
|
- @click="deleteRow">删除</el-button>
|
|
|
+ @click="deleteRow"
|
|
|
+ v-if="teamStatus != 'resetTeam'">删除</el-button>
|
|
|
<el-button type="primary"
|
|
|
@click="soundVisible = true">添加</el-button>
|
|
|
</div>
|
|
@@ -150,7 +152,8 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
this.activeSound = activeSound;
|
|
|
- console.log(this.activeSound)
|
|
|
+ this.chioseActiveSound = activeSound[0]
|
|
|
+ this.changeActiveSound(activeSound[0])
|
|
|
// 格式化商品和教辅
|
|
|
|
|
|
res.data.musicGroupSubjectGoodsGroups.forEach(shop => {
|