|
|
@@ -804,7 +804,7 @@ export default {
|
|
|
this.form.packageJson = JSON.stringify(this.packageList);
|
|
|
}
|
|
|
if (this.form.courseProducts != null) {
|
|
|
- this.form.productId = this.form.courseProducts[0].id
|
|
|
+ this.form.productId = this.form.courseProducts.map(item => item.id).join(',');
|
|
|
}
|
|
|
if (this.form.videoId != null) {
|
|
|
updateUserCourseVideo(this.form).then(response => {
|