|  | @@ -8,7 +8,7 @@
 | 
											
												
													
														|  |          'box-shadow': `${
 |  |          'box-shadow': `${
 | 
											
												
													
														|  |            curQue.isShadow ? '4px 4px 4px rgba(0, 0, 0, 0.3)' : ''
 |  |            curQue.isShadow ? '4px 4px 4px rgba(0, 0, 0, 0.3)' : ''
 | 
											
												
													
														|  |          }`,
 |  |          }`,
 | 
											
												
													
														|  | -        border: `${curQue.marginHighlight ? '1.1px solid #949494' : ''}`
 |  | 
 | 
											
												
													
														|  | 
 |  | +        border: `${curQue.marginHighlight ? '1.1px solid #949494' : ''}`,
 | 
											
												
													
														|  |        }"
 |  |        }"
 | 
											
												
													
														|  |      >
 |  |      >
 | 
											
												
													
														|  |        <colgroup>
 |  |        <colgroup>
 | 
											
										
											
												
													
														|  | @@ -30,7 +30,7 @@
 | 
											
												
													
														|  |            v-for="({ content }, i) in curQue.tableData.headers"
 |  |            v-for="({ content }, i) in curQue.tableData.headers"
 | 
											
												
													
														|  |            :key="`thead-${i}`"
 |  |            :key="`thead-${i}`"
 | 
											
												
													
														|  |            :style="{
 |  |            :style="{
 | 
											
												
													
														|  | -            'background-color': `${curQue.headerBgColor}`
 |  | 
 | 
											
												
													
														|  | 
 |  | +            'background-color': `${curQue.headerBgColor}`,
 | 
											
												
													
														|  |            }"
 |  |            }"
 | 
											
												
													
														|  |          >
 |  |          >
 | 
											
												
													
														|  |            <template v-for="({ text, colspan, rowspan }, j) in content">
 |  |            <template v-for="({ text, colspan, rowspan }, j) in content">
 | 
											
										
											
												
													
														|  | @@ -48,7 +48,7 @@
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |        <tbody
 |  |        <tbody
 | 
											
												
													
														|  |          :style="{
 |  |          :style="{
 | 
											
												
													
														|  | -          'text-align': `${curQue.textAlign}`
 |  | 
 | 
											
												
													
														|  | 
 |  | +          'text-align': `${curQue.textAlign}`,
 | 
											
												
													
														|  |          }"
 |  |          }"
 | 
											
												
													
														|  |        >
 |  |        >
 | 
											
												
													
														|  |          <tr v-for="(row, i) in curQue.tableData.body" :key="`tr-${i}`">
 |  |          <tr v-for="(row, i) in curQue.tableData.body" :key="`tr-${i}`">
 | 
											
										
											
												
													
														|  | @@ -68,7 +68,7 @@
 | 
											
												
													
														|  |                        ? 'correct'
 |  |                        ? 'correct'
 | 
											
												
													
														|  |                        : 'error'
 |  |                        : 'error'
 | 
											
												
													
														|  |                      : ''
 |  |                      : ''
 | 
											
												
													
														|  | -                  : ''
 |  | 
 | 
											
												
													
														|  | 
 |  | +                  : '',
 | 
											
												
													
														|  |                ]"
 |  |                ]"
 | 
											
												
													
														|  |                :style="{ 'background-color': `${col.background}` }"
 |  |                :style="{ 'background-color': `${col.background}` }"
 | 
											
												
													
														|  |              >
 |  |              >
 | 
											
										
											
												
													
														|  | @@ -76,7 +76,7 @@
 | 
											
												
													
														|  |                  class="cell-wrap"
 |  |                  class="cell-wrap"
 | 
											
												
													
														|  |                  :class="[
 |  |                  :class="[
 | 
											
												
													
														|  |                    col.isCross ? 'cell-wrap-between' : '',
 |  |                    col.isCross ? 'cell-wrap-between' : '',
 | 
											
												
													
														|  | -                  'cell-wrap-' + curQue.textAlign
 |  | 
 | 
											
												
													
														|  | 
 |  | +                  'cell-wrap-' + curQue.textAlign,
 | 
											
												
													
														|  |                  ]"
 |  |                  ]"
 | 
											
												
													
														|  |                >
 |  |                >
 | 
											
												
													
														|  |                  <template v-if="col.type === 'content'">
 |  |                  <template v-if="col.type === 'content'">
 | 
											
										
											
												
													
														|  | @@ -85,6 +85,10 @@
 | 
											
												
													
														|  |                    </span>
 |  |                    </span>
 | 
											
												
													
														|  |                    <template v-else>
 |  |                    <template v-else>
 | 
											
												
													
														|  |                      <el-input
 |  |                      <el-input
 | 
											
												
													
														|  | 
 |  | +                      v-if="
 | 
											
												
													
														|  | 
 |  | +                        judgeAnswer !== 'standardAnswer' ||
 | 
											
												
													
														|  | 
 |  | +                        (judgeAnswer === 'standardAnswer' && col.answer)
 | 
											
												
													
														|  | 
 |  | +                      "
 | 
											
												
													
														|  |                        v-model="
 |  |                        v-model="
 | 
											
												
													
														|  |                          judgeAnswer === 'standardAnswer'
 |  |                          judgeAnswer === 'standardAnswer'
 | 
											
												
													
														|  |                            ? col.answer
 |  |                            ? col.answer
 | 
											
										
											
												
													
														|  | @@ -98,17 +102,10 @@
 | 
											
												
													
														|  |                        @blur="
 |  |                        @blur="
 | 
											
												
													
														|  |                          judgeAnswer == 'standardAnswer'
 |  |                          judgeAnswer == 'standardAnswer'
 | 
											
												
													
														|  |                            ? (col.answer = col.answer.trim())
 |  |                            ? (col.answer = col.answer.trim())
 | 
											
												
													
														|  | -                          : (curQue.Bookanswer[i].content[
 |  | 
 | 
											
												
													
														|  | -                              j
 |  | 
 | 
											
												
													
														|  | -                            ].answer = curQue.Bookanswer[i].content[
 |  | 
 | 
											
												
													
														|  | -                              j
 |  | 
 | 
											
												
													
														|  | -                            ].answer.trim())
 |  | 
 | 
											
												
													
														|  | 
 |  | +                          : (curQue.Bookanswer[i].content[j].answer =
 | 
											
												
													
														|  | 
 |  | +                              curQue.Bookanswer[i].content[j].answer.trim())
 | 
											
												
													
														|  |                        "
 |  |                        "
 | 
											
												
													
														|  |                        @input="enterAnswer(i, j, 'input')"
 |  |                        @input="enterAnswer(i, j, 'input')"
 | 
											
												
													
														|  | -                      v-if="
 |  | 
 | 
											
												
													
														|  | -                        judgeAnswer !== 'standardAnswer' ||
 |  | 
 | 
											
												
													
														|  | -                          (judgeAnswer === 'standardAnswer' && col.answer)
 |  | 
 | 
											
												
													
														|  | -                      "
 |  | 
 | 
											
												
													
														|  |                      />
 |  |                      />
 | 
											
												
													
														|  |                    </template>
 |  |                    </template>
 | 
											
												
													
														|  |                  </template>
 |  |                  </template>
 | 
											
										
											
												
													
														|  | @@ -120,6 +117,10 @@
 | 
											
												
													
														|  |                    </template>
 |  |                    </template>
 | 
											
												
													
														|  |                    <template v-else>
 |  |                    <template v-else>
 | 
											
												
													
														|  |                      <el-input
 |  |                      <el-input
 | 
											
												
													
														|  | 
 |  | +                      v-if="
 | 
											
												
													
														|  | 
 |  | +                        judgeAnswer !== 'standardAnswer' ||
 | 
											
												
													
														|  | 
 |  | +                        (judgeAnswer === 'standardAnswer' && col.answer)
 | 
											
												
													
														|  | 
 |  | +                      "
 | 
											
												
													
														|  |                        v-model="
 |  |                        v-model="
 | 
											
												
													
														|  |                          judgeAnswer === 'standardAnswer'
 |  |                          judgeAnswer === 'standardAnswer'
 | 
											
												
													
														|  |                            ? col.answer
 |  |                            ? col.answer
 | 
											
										
											
												
													
														|  | @@ -131,10 +132,6 @@
 | 
											
												
													
														|  |                        :disabled="isAnswerMode"
 |  |                        :disabled="isAnswerMode"
 | 
											
												
													
														|  |                        :autosize="{ minRows: 1, maxRows: 6 }"
 |  |                        :autosize="{ minRows: 1, maxRows: 6 }"
 | 
											
												
													
														|  |                        @input="enterAnswer(i, j, 'input')"
 |  |                        @input="enterAnswer(i, j, 'input')"
 | 
											
												
													
														|  | -                      v-if="
 |  | 
 | 
											
												
													
														|  | -                        judgeAnswer !== 'standardAnswer' ||
 |  | 
 | 
											
												
													
														|  | -                          (judgeAnswer === 'standardAnswer' && col.answer)
 |  | 
 | 
											
												
													
														|  | -                      "
 |  | 
 | 
											
												
													
														|  |                      />
 |  |                      />
 | 
											
												
													
														|  |                    </template>
 |  |                    </template>
 | 
											
												
													
														|  |                  </div>
 |  |                  </div>
 | 
											
										
											
												
													
														|  | @@ -150,21 +147,19 @@
 | 
											
												
													
														|  |                      <span
 |  |                      <span
 | 
											
												
													
														|  |                        v-for="({ pinyin, chs }, k) in col.sentence_data
 |  |                        v-for="({ pinyin, chs }, k) in col.sentence_data
 | 
											
												
													
														|  |                          .wordsList"
 |  |                          .wordsList"
 | 
											
												
													
														|  | -                      :key="
 |  | 
 | 
											
												
													
														|  | -                        `${
 |  | 
 | 
											
												
													
														|  | -                          curQue.pinyinPosition === 'top' ||
 |  | 
 | 
											
												
													
														|  | -                          curQue.pinyinPosition === 'left'
 |  | 
 | 
											
												
													
														|  | -                            ? 'pinyin'
 |  | 
 | 
											
												
													
														|  | -                            : 'chs'
 |  | 
 | 
											
												
													
														|  | -                        }-${k}`
 |  | 
 | 
											
												
													
														|  | -                      "
 |  | 
 | 
											
												
													
														|  | 
 |  | +                      :key="`${
 | 
											
												
													
														|  | 
 |  | +                        curQue.pinyinPosition === 'top' ||
 | 
											
												
													
														|  | 
 |  | +                        curQue.pinyinPosition === 'left'
 | 
											
												
													
														|  | 
 |  | +                          ? 'pinyin'
 | 
											
												
													
														|  | 
 |  | +                          : 'chs'
 | 
											
												
													
														|  | 
 |  | +                      }-${k}`"
 | 
											
												
													
														|  |                        :class="[
 |  |                        :class="[
 | 
											
												
													
														|  |                          `${
 |  |                          `${
 | 
											
												
													
														|  |                            curQue.pinyinPosition === 'top' ||
 |  |                            curQue.pinyinPosition === 'top' ||
 | 
											
												
													
														|  |                            curQue.pinyinPosition === 'left'
 |  |                            curQue.pinyinPosition === 'left'
 | 
											
												
													
														|  |                              ? 'pinyin'
 |  |                              ? 'pinyin'
 | 
											
												
													
														|  |                              : 'chs'
 |  |                              : 'chs'
 | 
											
												
													
														|  | -                        }`
 |  | 
 | 
											
												
													
														|  | 
 |  | +                        }`,
 | 
											
												
													
														|  |                        ]"
 |  |                        ]"
 | 
											
												
													
														|  |                      >
 |  |                      >
 | 
											
												
													
														|  |                        {{
 |  |                        {{
 | 
											
										
											
												
													
														|  | @@ -177,8 +172,8 @@
 | 
											
												
													
														|  |                      <span
 |  |                      <span
 | 
											
												
													
														|  |                        v-if="
 |  |                        v-if="
 | 
											
												
													
														|  |                          col.type === 'twoAnnotation' &&
 |  |                          col.type === 'twoAnnotation' &&
 | 
											
												
													
														|  | -                          (curQue.pinyinPosition === 'right' ||
 |  | 
 | 
											
												
													
														|  | -                            curQue.pinyinPosition === 'bottom')
 |  | 
 | 
											
												
													
														|  | 
 |  | +                        (curQue.pinyinPosition === 'right' ||
 | 
											
												
													
														|  | 
 |  | +                          curQue.pinyinPosition === 'bottom')
 | 
											
												
													
														|  |                        "
 |  |                        "
 | 
											
												
													
														|  |                        class="english"
 |  |                        class="english"
 | 
											
												
													
														|  |                      >
 |  |                      >
 | 
											
										
											
												
													
														|  | @@ -189,21 +184,19 @@
 | 
											
												
													
														|  |                      <span
 |  |                      <span
 | 
											
												
													
														|  |                        v-for="({ pinyin, chs }, k) in col.sentence_data
 |  |                        v-for="({ pinyin, chs }, k) in col.sentence_data
 | 
											
												
													
														|  |                          .wordsList"
 |  |                          .wordsList"
 | 
											
												
													
														|  | -                      :key="
 |  | 
 | 
											
												
													
														|  | -                        `${
 |  | 
 | 
											
												
													
														|  | -                          curQue.pinyinPosition === 'top' ||
 |  | 
 | 
											
												
													
														|  | -                          curQue.pinyinPosition === 'left'
 |  | 
 | 
											
												
													
														|  | -                            ? 'chs'
 |  | 
 | 
											
												
													
														|  | -                            : 'pinyin'
 |  | 
 | 
											
												
													
														|  | -                        }-${k}`
 |  | 
 | 
											
												
													
														|  | -                      "
 |  | 
 | 
											
												
													
														|  | 
 |  | +                      :key="`${
 | 
											
												
													
														|  | 
 |  | +                        curQue.pinyinPosition === 'top' ||
 | 
											
												
													
														|  | 
 |  | +                        curQue.pinyinPosition === 'left'
 | 
											
												
													
														|  | 
 |  | +                          ? 'chs'
 | 
											
												
													
														|  | 
 |  | +                          : 'pinyin'
 | 
											
												
													
														|  | 
 |  | +                      }-${k}`"
 | 
											
												
													
														|  |                        :class="[
 |  |                        :class="[
 | 
											
												
													
														|  |                          `${
 |  |                          `${
 | 
											
												
													
														|  |                            curQue.pinyinPosition === 'top' ||
 |  |                            curQue.pinyinPosition === 'top' ||
 | 
											
												
													
														|  |                            curQue.pinyinPosition === 'left'
 |  |                            curQue.pinyinPosition === 'left'
 | 
											
												
													
														|  |                              ? 'chs'
 |  |                              ? 'chs'
 | 
											
												
													
														|  |                              : 'pinyin'
 |  |                              : 'pinyin'
 | 
											
												
													
														|  | -                        }`
 |  | 
 | 
											
												
													
														|  | 
 |  | +                        }`,
 | 
											
												
													
														|  |                        ]"
 |  |                        ]"
 | 
											
												
													
														|  |                      >
 |  |                      >
 | 
											
												
													
														|  |                        {{
 |  |                        {{
 | 
											
										
											
												
													
														|  | @@ -216,8 +209,8 @@
 | 
											
												
													
														|  |                      <span
 |  |                      <span
 | 
											
												
													
														|  |                        v-if="
 |  |                        v-if="
 | 
											
												
													
														|  |                          col.type === 'twoAnnotation' &&
 |  |                          col.type === 'twoAnnotation' &&
 | 
											
												
													
														|  | -                          (curQue.pinyinPosition === 'top' ||
 |  | 
 | 
											
												
													
														|  | -                            curQue.pinyinPosition === 'left')
 |  | 
 | 
											
												
													
														|  | 
 |  | +                        (curQue.pinyinPosition === 'top' ||
 | 
											
												
													
														|  | 
 |  | +                          curQue.pinyinPosition === 'left')
 | 
											
												
													
														|  |                        "
 |  |                        "
 | 
											
												
													
														|  |                        class="english"
 |  |                        class="english"
 | 
											
												
													
														|  |                      >
 |  |                      >
 | 
											
										
											
												
													
														|  | @@ -231,7 +224,7 @@
 | 
											
												
													
														|  |                    <div
 |  |                    <div
 | 
											
												
													
														|  |                      class="right-pinyin"
 |  |                      class="right-pinyin"
 | 
											
												
													
														|  |                      :style="{
 |  |                      :style="{
 | 
											
												
													
														|  | -                      'grid-template-columns': `repeat(${col.sentence_data.wordsList.length}, auto)`
 |  | 
 | 
											
												
													
														|  | 
 |  | +                      'grid-template-columns': `repeat(${col.sentence_data.wordsList.length}, auto)`,
 | 
											
												
													
														|  |                      }"
 |  |                      }"
 | 
											
												
													
														|  |                    >
 |  |                    >
 | 
											
												
													
														|  |                      <span
 |  |                      <span
 | 
											
										
											
												
													
														|  | @@ -271,7 +264,7 @@
 | 
											
												
													
														|  |                            paddingRight:
 |  |                            paddingRight:
 | 
											
												
													
														|  |                              sddItem.config.wordPadding.indexOf('right') > -1
 |  |                              sddItem.config.wordPadding.indexOf('right') > -1
 | 
											
												
													
														|  |                                ? '4px'
 |  |                                ? '4px'
 | 
											
												
													
														|  | -                              : '0px'
 |  | 
 | 
											
												
													
														|  | 
 |  | +                              : '0px',
 | 
											
												
													
														|  |                          }"
 |  |                          }"
 | 
											
												
													
														|  |                        >
 |  |                        >
 | 
											
												
													
														|  |                          <!-- 补全句子 -->
 |  |                          <!-- 补全句子 -->
 | 
											
										
											
												
													
														|  | @@ -291,8 +284,8 @@
 | 
											
												
													
														|  |                          <template
 |  |                          <template
 | 
											
												
													
														|  |                            v-if="
 |  |                            v-if="
 | 
											
												
													
														|  |                              sddItem.img_list &&
 |  |                              sddItem.img_list &&
 | 
											
												
													
														|  | -                              sddItem.img_list.length > 0 &&
 |  | 
 | 
											
												
													
														|  | -                              sddItem.img_list[0].id
 |  | 
 | 
											
												
													
														|  | 
 |  | +                            sddItem.img_list.length > 0 &&
 | 
											
												
													
														|  | 
 |  | +                            sddItem.img_list[0].id
 | 
											
												
													
														|  |                            "
 |  |                            "
 | 
											
												
													
														|  |                          >
 |  |                          >
 | 
											
												
													
														|  |                            <img
 |  |                            <img
 | 
											
										
											
												
													
														|  | @@ -336,28 +329,28 @@ export default {
 | 
											
												
													
														|  |    props: {
 |  |    props: {
 | 
											
												
													
														|  |      curQue: {
 |  |      curQue: {
 | 
											
												
													
														|  |        type: Object,
 |  |        type: Object,
 | 
											
												
													
														|  | -      required: true
 |  | 
 | 
											
												
													
														|  | 
 |  | +      required: true,
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      themeColor: {
 |  |      themeColor: {
 | 
											
												
													
														|  |        type: String,
 |  |        type: String,
 | 
											
												
													
														|  | -      required: true
 |  | 
 | 
											
												
													
														|  | 
 |  | +      required: true,
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      judgeAnswer: {
 |  |      judgeAnswer: {
 | 
											
												
													
														|  | -      type: String
 |  | 
 | 
											
												
													
														|  | 
 |  | +      type: String,
 | 
											
												
													
														|  |      },
 |  |      },
 | 
											
												
													
														|  |      TaskModel: {
 |  |      TaskModel: {
 | 
											
												
													
														|  | -      type: String
 |  | 
 | 
											
												
													
														|  | -    }
 |  | 
 | 
											
												
													
														|  | 
 |  | +      type: String,
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    data() {
 |  |    data() {
 | 
											
												
													
														|  |      return {
 |  |      return {
 | 
											
												
													
														|  |        isAnswerMode: false,
 |  |        isAnswerMode: false,
 | 
											
												
													
														|  |        userError: false,
 |  |        userError: false,
 | 
											
												
													
														|  |        userAnswer: {
 |  |        userAnswer: {
 | 
											
												
													
														|  | -        completeInput: []
 |  | 
 | 
											
												
													
														|  | 
 |  | +        completeInput: [],
 | 
											
												
													
														|  |        },
 |  |        },
 | 
											
												
													
														|  |        userBookanswer: [],
 |  |        userBookanswer: [],
 | 
											
												
													
														|  | -      chsFhList: [",", "。", "”", ":", "》", "?", "!", ";"]
 |  | 
 | 
											
												
													
														|  | 
 |  | +      chsFhList: [",", "。", "”", ":", "》", "?", "!", ";"],
 | 
											
												
													
														|  |      };
 |  |      };
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    computed: {
 |  |    computed: {
 | 
											
										
											
												
													
														|  | @@ -365,28 +358,28 @@ export default {
 | 
											
												
													
														|  |        let pyPos = this.curQue.pinyinPosition;
 |  |        let pyPos = this.curQue.pinyinPosition;
 | 
											
												
													
														|  |        if (pyPos === "left") {
 |  |        if (pyPos === "left") {
 | 
											
												
													
														|  |          return {
 |  |          return {
 | 
											
												
													
														|  | -          "column-gap": "16px"
 |  | 
 | 
											
												
													
														|  | 
 |  | +          "column-gap": "16px",
 | 
											
												
													
														|  |          };
 |  |          };
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |        if (pyPos === "top") {
 |  |        if (pyPos === "top") {
 | 
											
												
													
														|  |          return {
 |  |          return {
 | 
											
												
													
														|  | -          "flex-direction": "column"
 |  | 
 | 
											
												
													
														|  | 
 |  | +          "flex-direction": "column",
 | 
											
												
													
														|  |          };
 |  |          };
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |        if (pyPos === "right") {
 |  |        if (pyPos === "right") {
 | 
											
												
													
														|  |          return {
 |  |          return {
 | 
											
												
													
														|  | -          "column-gap": "16px"
 |  | 
 | 
											
												
													
														|  | 
 |  | +          "column-gap": "16px",
 | 
											
												
													
														|  |          };
 |  |          };
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |        if (pyPos === "bottom") {
 |  |        if (pyPos === "bottom") {
 | 
											
												
													
														|  |          return {
 |  |          return {
 | 
											
												
													
														|  | -          "flex-direction": "column"
 |  | 
 | 
											
												
													
														|  | 
 |  | +          "flex-direction": "column",
 | 
											
												
													
														|  |          };
 |  |          };
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  | -    }
 |  | 
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  |    },
 |  |    },
 | 
											
												
													
														|  |    created() {
 |  |    created() {
 | 
											
												
													
														|  |      if (this.judgeAnswer) {
 |  |      if (this.judgeAnswer) {
 | 
											
										
											
												
													
														|  | @@ -397,9 +390,9 @@ export default {
 | 
											
												
													
														|  |        let flag = false; // 是否含有多个句子类型
 |  |        let flag = false; // 是否含有多个句子类型
 | 
											
												
													
														|  |        this.curQue.tableData.body.forEach((item, i) => {
 |  |        this.curQue.tableData.body.forEach((item, i) => {
 | 
											
												
													
														|  |          arr.push({
 |  |          arr.push({
 | 
											
												
													
														|  | -          content: []
 |  | 
 | 
											
												
													
														|  | 
 |  | +          content: [],
 | 
											
												
													
														|  |          });
 |  |          });
 | 
											
												
													
														|  | -        item.content.forEach(items => {
 |  | 
 | 
											
												
													
														|  | 
 |  | +        item.content.forEach((items) => {
 | 
											
												
													
														|  |            if (items.type === "mulText") {
 |  |            if (items.type === "mulText") {
 | 
											
												
													
														|  |              flag = true;
 |  |              flag = true;
 | 
											
												
													
														|  |            }
 |  |            }
 | 
											
										
											
												
													
														|  | @@ -412,7 +405,7 @@ export default {
 | 
											
												
													
														|  |                  items.CrossAnswer &&
 |  |                  items.CrossAnswer &&
 | 
											
												
													
														|  |                  items.CrossAnswer !== "normal")
 |  |                  items.CrossAnswer !== "normal")
 | 
											
												
													
														|  |                  ? "[JUDGE##F##JUDGE]"
 |  |                  ? "[JUDGE##F##JUDGE]"
 | 
											
												
													
														|  | -                : ""
 |  | 
 | 
											
												
													
														|  | 
 |  | +                : "",
 | 
											
												
													
														|  |            });
 |  |            });
 | 
											
												
													
														|  |          });
 |  |          });
 | 
											
												
													
														|  |        });
 |  |        });
 | 
											
										
											
												
													
														|  | @@ -420,8 +413,8 @@ export default {
 | 
											
												
													
														|  |          this.$set(this.curQue, "Bookanswer", arr);
 |  |          this.$set(this.curQue, "Bookanswer", arr);
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  |      } else {
 |  |      } else {
 | 
											
												
													
														|  | -      this.curQue.Bookanswer.forEach(item => {
 |  | 
 | 
											
												
													
														|  | -        item.content.forEach(item => {
 |  | 
 | 
											
												
													
														|  | 
 |  | +      this.curQue.Bookanswer.forEach((item) => {
 | 
											
												
													
														|  | 
 |  | +        item.content.forEach((item) => {
 | 
											
												
													
														|  |            if (item.userAnswerJudge === "[JUDGE##F##JUDGE]") {
 |  |            if (item.userAnswerJudge === "[JUDGE##F##JUDGE]") {
 | 
											
												
													
														|  |              this.userError = true;
 |  |              this.userError = true;
 | 
											
												
													
														|  |              return;
 |  |              return;
 | 
											
										
											
												
													
														|  | @@ -577,7 +570,7 @@ export default {
 | 
											
												
													
														|  |              items.mulText.detail.forEach((sdItem, sdIndex) => {
 |  |              items.mulText.detail.forEach((sdItem, sdIndex) => {
 | 
											
												
													
														|  |                let isHasPY = 0;
 |  |                let isHasPY = 0;
 | 
											
												
													
														|  |                let maxFontsize = 0;
 |  |                let maxFontsize = 0;
 | 
											
												
													
														|  | -              sdItem.detail.forEach(sddItem => {
 |  | 
 | 
											
												
													
														|  | 
 |  | +              sdItem.detail.forEach((sddItem) => {
 | 
											
												
													
														|  |                  if (sddItem.wordsList.length > 0) {
 |  |                  if (sddItem.wordsList.length > 0) {
 | 
											
												
													
														|  |                    sddItem.wordsList.forEach((sItem, sIndex) => {
 |  |                    sddItem.wordsList.forEach((sItem, sIndex) => {
 | 
											
												
													
														|  |                      let reg = /_{2,}/g;
 |  |                      let reg = /_{2,}/g;
 | 
											
										
											
												
													
														|  | @@ -608,7 +601,7 @@ export default {
 | 
											
												
													
														|  |                                bool || !complateArr[sItem.hengIndex]
 |  |                                bool || !complateArr[sItem.hengIndex]
 | 
											
												
													
														|  |                                  ? ""
 |  |                                  ? ""
 | 
											
												
													
														|  |                                  : "[JUDGE##F##JUDGE]",
 |  |                                  : "[JUDGE##F##JUDGE]",
 | 
											
												
													
														|  | -                            input_Isexample: Boolean(bool)
 |  | 
 | 
											
												
													
														|  | 
 |  | +                            input_Isexample: Boolean(bool),
 | 
											
												
													
														|  |                            };
 |  |                            };
 | 
											
												
													
														|  |                            Bookanswer[index].content[indexs].completeInput.push(
 |  |                            Bookanswer[index].content[indexs].completeInput.push(
 | 
											
												
													
														|  |                              JSON.parse(JSON.stringify(obj))
 |  |                              JSON.parse(JSON.stringify(obj))
 | 
											
										
											
												
													
														|  | @@ -716,8 +709,8 @@ export default {
 | 
											
												
													
														|  |        } else {
 |  |        } else {
 | 
											
												
													
														|  |          sItem.isShow = true;
 |  |          sItem.isShow = true;
 | 
											
												
													
														|  |        }
 |  |        }
 | 
											
												
													
														|  | -    }
 |  | 
 | 
											
												
													
														|  | -  }
 |  | 
 | 
											
												
													
														|  | 
 |  | +    },
 | 
											
												
													
														|  | 
 |  | +  },
 | 
											
												
													
														|  |  };
 |  |  };
 | 
											
												
													
														|  |  </script>
 |  |  </script>
 | 
											
												
													
														|  |  
 |  |  
 |