|
|
@@ -566,6 +566,9 @@ export default {
|
|
|
});
|
|
|
}
|
|
|
item.crossAnswer = 'normal';
|
|
|
+ if (item.cell && item.cell.isCross) {
|
|
|
+ this.data.has_identify = 'true';
|
|
|
+ }
|
|
|
});
|
|
|
});
|
|
|
this.optionWordDataMap = {};
|
|
|
@@ -583,6 +586,9 @@ export default {
|
|
|
pinyin_proofread_word_list: [],
|
|
|
};
|
|
|
this.$set(col, 'paragraph_list_parameter', obj);
|
|
|
+ if (col.cell && col.cell.isCross) {
|
|
|
+ this.data.has_identify = 'true';
|
|
|
+ }
|
|
|
tasks.push(
|
|
|
this.createParsedTextInfoPinyin(text, i, j).then(({ parsed_text, rich_text }) => {
|
|
|
this.$set(this.optionWordDataMap, col.mark, buildWordProofreadData(parsed_text?.paragraph_list || []));
|