|
@@ -346,6 +346,7 @@ export default {
|
|
|
async onBranchChange(val) {
|
|
|
// this.searchForm.cooperationOrganId = [];
|
|
|
this.$set(this.searchForm, "cooperationOrganId", []);
|
|
|
+ this.$set(this.searchForm, "musicGroupId", []);
|
|
|
if (val && val.length > 0) {
|
|
|
let organId = val.join(",");
|
|
|
try {
|
|
@@ -355,11 +356,13 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- await getTeamList({ organId, page: 1, rows: 9999 }).then((res) => {
|
|
|
- if (res.code == 200) {
|
|
|
- this.teamList = res.data.rows;
|
|
|
+ await getTeamList({ organId, page: 1, rows: 9999, status: "PROGRESS" }).then(
|
|
|
+ (res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.teamList = res.data.rows;
|
|
|
+ }
|
|
|
}
|
|
|
- });
|
|
|
+ );
|
|
|
} catch (e) {
|
|
|
console.log(e);
|
|
|
}
|