|
@@ -372,6 +372,11 @@ export default {
|
|
|
this.postId = row.postId,
|
|
this.postId = row.postId,
|
|
|
getDetailInfo({postId:row.postId}).then(response => {
|
|
getDetailInfo({postId:row.postId}).then(response => {
|
|
|
this.data = response.data.data.data;
|
|
this.data = response.data.data.data;
|
|
|
|
|
+ this.data.forEach(item => {
|
|
|
|
|
+ if (item.type == "MCQ") {
|
|
|
|
|
+ item.comment = item.comment.split(',');
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
this.dialogStatus = val;
|
|
this.dialogStatus = val;
|
|
|
this.dialogFormVisible = true;
|
|
this.dialogFormVisible = true;
|
|
|
}).catch(() => {})
|
|
}).catch(() => {})
|