|
@@ -286,6 +286,13 @@
|
|
|
item.placeholders = item.result.map((item, cindex) => `[bank${cindex+1}]`)
|
|
|
item.reply = item.reply ? JSON.parse(item.reply) : item.result.map(() => '');
|
|
|
}
|
|
|
+
|
|
|
+ if (item.type == 4) {
|
|
|
+ // 特殊题型英语题
|
|
|
+ const audioList = item.audios ? item.audios.split(',') : [];
|
|
|
+ item.placeholders = audioList.map((item, cindex) => `[yingyu${cindex+1}]`)
|
|
|
+ item.audioList = audioList;
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
|