|
@@ -191,8 +191,8 @@ export default {
|
|
|
this.title = "修改训练营";
|
|
|
this.formes = {
|
|
|
...row,
|
|
|
- organIds: row.organIds?.split(','),
|
|
|
- musicGroupIds: row.musicGroupIds?.split(','),
|
|
|
+ organIds: row.organIds?.split(',')?.filter(Boolean) || [],
|
|
|
+ musicGroupIds: row.musicGroupIds?.split(',')?.filter(Boolean) || [],
|
|
|
applyTime: [row.applyStartDate, row.applyEndDate],
|
|
|
trainTime: [row.trainStartDate, row.trainEndDate],
|
|
|
};
|