index.vue 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. <template>
  2. <div class="scroll_content">
  3. <div class="select_box">
  4. <el-radio-group v-model="errorType" size="medium" @change="_queryStudentErrorQuestion">
  5. <el-radio-button :label="-1">全部试题({{ allErrorCount }})</el-radio-button>
  6. <el-radio-button :label="0">未掌握({{ unMasterCount }})</el-radio-button>
  7. <el-radio-button :label="1">已掌握({{ masterCount }})</el-radio-button>
  8. <el-radio-button :label="2">复习题({{ reviewCount }})</el-radio-button>
  9. </el-radio-group>
  10. </div>
  11. <div class="content">
  12. <div class="right_btn" v-if="errorType !== 1">
  13. <el-button size="medium" :disabled="!canBtnClick"
  14. @click="downloadDialogVisible = true; isVariation = 0">下载错题本</el-button>
  15. <el-button :disabled="!canBtnClick" type="primary" size="medium"
  16. @click="downLoadPapers">下载个性化提升手册</el-button>
  17. </div>
  18. <Download :visible.sync="downloadDialogVisible" :examId="examId" :subjectCode="subjectCode"
  19. :isVariation="isVariation" :questionList="questionList" />
  20. <template v-if="questionList.length > 0">
  21. <div v-for="(question, index) in questionList" :key="question.questionId">
  22. <div class="question_card">
  23. <div class="card_top">
  24. <div class="card_top_info">
  25. <div class="left">
  26. <span class="number mr_10">{{ countGlobalIndex(index + 1) }}</span>
  27. <span class="gray">试题类型:<span v-if="!question.questionType">暂无试题类型</span></span>
  28. <span class="black mr_10" style="font-weight: 500;">
  29. {{ question.questionType }}
  30. </span>
  31. <span class="tag" v-if="question.classScoreRate < 40">高频错题</span>
  32. </div>
  33. </div>
  34. <div class="question_content line_height_20">
  35. <template v-if="question.questionData?.questionStem || question.questionImg">
  36. <Preview :type="question.sourceType" :content="question.questionData?.questionStem"
  37. :imgBase64="question.questionImg" />
  38. </template>
  39. <template v-else>
  40. <div style="color: #999;">暂无数据</div>
  41. </template>
  42. </div>
  43. <div class="card_footer">
  44. <div class="footer_item">
  45. <span class="gray">满分:</span>
  46. <span class="blue">{{ question.fullScore }}</span>
  47. <span class="gray">分</span>
  48. </div>
  49. <div class="footer_item">
  50. <span class="gray">我的得分:</span>
  51. <span class="blue">{{ question.score }}</span>
  52. <span class="gray">分</span>
  53. </div>
  54. <div class="footer_item">
  55. <span class="gray">难度:</span>
  56. <span style="font-weight: bold;" :class="countDiffcutyClass(question.difficulty)">
  57. {{ question.difficulty }}
  58. </span>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="card_buttom">
  63. <div class="btn_box">
  64. <span class="black ml_30" :class="{ blue: question.answerShow }" size="small"
  65. @click="ShowAnserAndParse(1, question);">
  66. <i class="iconfont icon_daan"></i>
  67. 我的答案
  68. <i class="answerShow_content" v-if="question.answerShow && !question.parseShow"></i>
  69. </span>
  70. <span class="black ml_30" :class="{ blue: question.parseShow }" size="small"
  71. @click="ShowAnserAndParse(2, question);">
  72. <i class="iconfont icon_jiexi"></i>
  73. 查看解析
  74. <i class="parseShow_content" v-if="question.parseShow && !question.answerShow"></i>
  75. </span>
  76. <template v-if="question.errorStatus === 0">
  77. <template v-if="errorType === -1 || errorType === 0">
  78. <span class="black ml_30" size="small"
  79. @click="_markStudentErrorQuestion(question, 1)">
  80. <i class="iconfont icon_biaojiyizhangwo"></i>
  81. 标记为已掌握
  82. </span>
  83. <span class="black ml_30" size="small"
  84. @click="_markStudentErrorQuestion(question, 2)">
  85. <i class="iconfont icon_jiarufuxiben"></i>
  86. 加入复习本
  87. </span>
  88. </template>
  89. </template>
  90. <template v-if="errorType === 1 || question.errorStatus === 1">
  91. <span class="black ml_30" size="small"
  92. @click="_markStudentErrorQuestion(question, 0)">
  93. <i class="iconfont icon_biaojiweizhangwo"></i>
  94. 标记为未掌握
  95. </span>
  96. </template>
  97. <template v-if="errorType === 2 || question.errorStatus === 2">
  98. <span class="black ml_30" size="small"
  99. @click="_markStudentErrorQuestion(question, 0)">
  100. <i class="iconfont icon_yichufuxiben"></i>
  101. 移除复习本
  102. </span>
  103. </template>
  104. </div>
  105. <div class="content" v-if="question.parseShow && !question.answerShow">
  106. <div class="flex">
  107. <template v-if="question.knowledgePoint && question.knowledgePoint.length > 0">
  108. <div class="flex_left" style="line-height: 28px;">【知识点】</div>
  109. <div class="flex_right">
  110. <KnowledgePoint v-for="know in question.knowledgePoint" :key="know"
  111. :text="know" />
  112. </div>
  113. </template>
  114. <template v-else>
  115. <div class="flex_left">【知识点】</div>
  116. <div class="flex_right">
  117. <div style="color: #999;">暂无数据</div>
  118. </div>
  119. </template>
  120. </div>
  121. <div class="flex" style="line-height: 1.6 !important;">
  122. <div class="flex_left">【答&nbsp;&nbsp;&nbsp;&nbsp;案】</div>
  123. <div class="flex_right">
  124. <template
  125. v-if="question.questionData?.answer || question.answerImg || question.answer">
  126. <template v-if="question.isObjective === 1">
  127. <div>{{ question.answer }}</div>
  128. </template>
  129. <template v-else>
  130. <Preview :type="question.sourceType"
  131. :content="question.questionData?.answer"
  132. :imgBase64="question.answerImg" />
  133. </template>
  134. </template>
  135. <template v-else>
  136. <div style="color: #999;">暂无数据</div>
  137. </template>
  138. </div>
  139. </div>
  140. <div class="flex" style="line-height: 1.6 !important;">
  141. <div class="flex_left">【解&nbsp;&nbsp;&nbsp;&nbsp;析】</div>
  142. <div class="flex_right">
  143. <template v-if="question.questionData?.analysis || question.parseImg">
  144. <Preview :type="question.sourceType"
  145. :content="question.questionData?.analysis"
  146. :imgBase64="question.parseImg" />
  147. </template>
  148. <template v-else>
  149. <div style="color: #999;">暂无数据</div>
  150. </template>
  151. </div>
  152. </div>
  153. </div>
  154. <div class="content" v-if="question.answerShow && !question.parseShow">
  155. <template v-if="question.isObjective === 1">
  156. <div v-if="question.studentAnswer">{{ question.studentAnswer }}</div>
  157. <div v-else style="color: #999;">暂无数据</div>
  158. </template>
  159. <template v-else>
  160. <template v-if="picUrl && questionVOS">
  161. <div style="height: 300px;">
  162. <PaperImage :imageIndex="index" :scoreFontSize="20" :rtOrWrSize="10"
  163. :paperImgUrl="picUrl" :drawData="questionVOS" />
  164. </div>
  165. </template>
  166. <div v-else style="color: #999;">暂无数据</div>
  167. </template>
  168. </div>
  169. </div>
  170. </div>
  171. <!-- 变式题推送 -->
  172. <div class="question_card" v-if="question.variationQuestion">
  173. <div class="card_top">
  174. <div class="card_top_info">
  175. <div class="left">
  176. <span class="number mr_10"
  177. :class="countLevel(question.variationQuestion.questionLevel).color">
  178. {{ countLevel(question.variationQuestion.questionLevel).text }}
  179. </span>
  180. <span class="gray">试题类型:</span>
  181. <span class="black" style="margin-right: 20px;">
  182. {{ question.variationQuestion.questionType }}
  183. </span>
  184. <span class="gray">难度:</span>
  185. <span style="font-weight: bold;"
  186. :class="countDiffcutyClass(question.variationQuestion.difficulty)">
  187. {{ question.variationQuestion.difficulty }}
  188. </span>
  189. </div>
  190. </div>
  191. <div class="question_content line_height_20">
  192. <Preview :type="1" :content="question.variationQuestion?.questionStem" />
  193. </div>
  194. <!-- <div class="yuwen">
  195. <span class="btn_span active">1</span>
  196. <span class="btn_span">2</span>
  197. <div class="question_list"></div>
  198. </div> -->
  199. <div class="card_footer">
  200. <div class="gray">知识点:</div>
  201. <template v-for="(know, index) in question.variationQuestion.knowledgePoint">
  202. <KnowledgePoint :text="know" />
  203. </template>
  204. </div>
  205. </div>
  206. </div>
  207. </div>
  208. <div style="text-align: right;">
  209. <el-pagination background layout="prev, pager, next" :total="pageParam.total"
  210. :page-size="pageParam.pageSize" :current-page="pageParam.pageNum"
  211. @current-change="handleCurrentChange">
  212. </el-pagination>
  213. </div>
  214. </template>
  215. <NoData v-else>暂无数据</NoData>
  216. </div>
  217. </div>
  218. </template>
  219. <script>
  220. import {
  221. queryStudentErrorQuestion,
  222. markStudentErrorQuestion,
  223. downloadStudentErrorQuestion,
  224. findStudentCard
  225. } from '../../../http/api/errorQuestion';
  226. import Download from './Download.vue';
  227. import { mergeImage } from './loadImg.js'
  228. import { Loading } from 'element-ui';
  229. import NoData from './NoData/NoData.vue';
  230. import KnowledgePoint from './KnowledgePoint.vue';
  231. import Preview from './Preview.vue';
  232. import PaperImage from '@/components/PaperImage.vue';
  233. import { confirm } from '../../../utils/common.js'
  234. export default {
  235. components: {
  236. Download,
  237. NoData,
  238. KnowledgePoint,
  239. Preview,
  240. PaperImage,
  241. },
  242. data() {
  243. return {
  244. pageParam: {
  245. pageNum: 1,
  246. pageSize: 10,
  247. total: 0,
  248. },
  249. questionList: [],
  250. allErrorCount: 0,
  251. unMasterCount: 0,
  252. masterCount: 0,
  253. reviewCount: 0,
  254. answerUrls: [],
  255. uploadPaperUrls: [],
  256. errorType: -1, // -1全部 0未掌握 1已掌握 2复习题
  257. examId: null,
  258. examType: null,
  259. gradeCode: null,
  260. downloadDialogVisible: false,
  261. isVariation: 0,
  262. picUrl: null,
  263. questionVOS: [],
  264. };
  265. },
  266. computed: {
  267. subjectCode() {
  268. return this.$store.state.report.filterObject.subjectCode;
  269. }, //分析报告公共参数变量
  270. IsVariation() {
  271. return this.$store.state.question.isVariation;
  272. },
  273. canBtnClick() {
  274. const has = this.questionList.find(question => {
  275. return !question.questionImg && !question.questionData?.questionStem
  276. })
  277. console.log('has', has)
  278. if (has) {
  279. this.$store.commit('question/setCanDownloanBtnClick', false)
  280. return false
  281. } else {
  282. this.$store.commit('question/setCanDownloanBtnClick', true)
  283. return true
  284. }
  285. }
  286. },
  287. watch: {
  288. subjectCode(newVal, oldVal) {
  289. if (newVal !== oldVal) {
  290. this.pageParam.pageNum = 1;
  291. this._queryStudentErrorQuestion();
  292. }
  293. },
  294. IsVariation(newVal) {
  295. if (newVal === 0 || newVal === 1) {
  296. this.downloadDialogVisible = true
  297. this.isVariation = newVal
  298. }
  299. },
  300. },
  301. created() {
  302. this.$store.commit('report/SetShowTotalScore', false)
  303. const ExamInfoItem = JSON.parse(localStorage.getItem("ExamInfoItem") || "{}");
  304. const reportExamCourseItem = JSON.parse(localStorage.getItem("reportExamCourseItem") || "{}");
  305. this.examId = reportExamCourseItem.examId;
  306. this.gradeCode = ExamInfoItem.examData.gradeCode;
  307. this.examType = ExamInfoItem.examData.examType;
  308. },
  309. async mounted() {
  310. await this._queryStudentErrorQuestion();
  311. },
  312. beforeDestroy() {
  313. this.$store.commit('report/SetShowTotalScore', true)
  314. },
  315. methods: {
  316. countGlobalIndex(index) {
  317. return (this.pageParam.pageNum - 1) * this.pageParam.pageSize + index;
  318. },
  319. countDiffcutyClass(difficulty) {
  320. // 容易:#90CB75 较易:#FAC858 一般:#5470C6 较难:#EA7ACB 困难:#EE6666
  321. const classMap = {
  322. '容易': 'easy',
  323. '较易': 'medium_easy',
  324. '一般': 'medium',
  325. '较难': 'medium_hard',
  326. '困难': 'hard'
  327. }
  328. return classMap[difficulty] || ''
  329. },
  330. countLevel(num) {
  331. // 1 :拔高题 2:进阶题 3:巩固题
  332. const arr = ['拔高题', '进阶题', '巩固题']
  333. const color = ['bg_hard', 'bg_medium', 'bg_easy',]
  334. return {
  335. text: arr[num - 1],
  336. color: color[num - 1],
  337. }
  338. },
  339. ShowAnserAndParse(type, question) {
  340. if (type === 1) {
  341. if (question.isObjective === 1) {
  342. question.answerShow = !question.answerShow;
  343. question.parseShow = false
  344. return;
  345. }
  346. findStudentCard({
  347. examId: this.examId,
  348. subjectCode: this.subjectCode,
  349. questionId: question.questionId,
  350. }).then(res => {
  351. if (res.code === 200) {
  352. if (res.data && res.data.pageVOS && res.data.pageVOS.length > 0) {
  353. const data = res.data.pageVOS[0]
  354. this.picUrl = data.picUrl;
  355. this.questionVOS = data.questionVOS.map(item => {
  356. return {
  357. ...item,
  358. samplingPosition: '{"x":195,"y":247,"page":1}'
  359. }
  360. });
  361. } else {
  362. this.picUrl = null;
  363. this.questionVOS = [];
  364. }
  365. question.answerShow = !question.answerShow;
  366. question.parseShow = false
  367. }
  368. })
  369. }
  370. if (type === 2) {
  371. question.parseShow = !question.parseShow;
  372. question.answerShow = false
  373. }
  374. },
  375. async _queryStudentErrorQuestion() {
  376. const instance = Loading.service({ fullscreen: true });
  377. const { subjectCode, gradeCode, examType, examId, errorType, pageParam: { pageNum, pageSize } } = this
  378. const res = await queryStudentErrorQuestion({ subjectCode, gradeCode, examType, examId, errorType, pageNum, pageSize });
  379. if (res.code === 200) {
  380. const { allErrorCount, unMasterCount, masterCount, reviewCount, questionList, answerUrls, uploadPaperUrls } = res.data.records[0];
  381. this.allErrorCount = allErrorCount;
  382. this.masterCount = masterCount;
  383. this.unMasterCount = unMasterCount;
  384. this.reviewCount = reviewCount;
  385. this.answerUrls = answerUrls;
  386. this.uploadPaperUrls = uploadPaperUrls;
  387. this.pageParam.total = res.data.total * 1;
  388. // 并行合并图片:先为每道题准备 promise,然后使用 Promise.all 并发执行
  389. const processedQuestions = await Promise.all(questionList.map(async (q) => {
  390. q.answerShow = false;
  391. q.parseShow = false;
  392. const { sourceType, titleCoordinates, answerCoordinates, parseCoordinates } = q;
  393. if (sourceType === 2) {
  394. try {
  395. const [questionImg, answerImg, parseImg] = await Promise.all([
  396. mergeImage(this.uploadPaperUrls, titleCoordinates),
  397. mergeImage(this.answerUrls, answerCoordinates),
  398. mergeImage(this.answerUrls, parseCoordinates),
  399. ]);
  400. q.questionImg = questionImg || '';
  401. q.answerImg = answerImg || '';
  402. q.parseImg = parseImg || '';
  403. } catch (e) {
  404. // 如果合并过程中某张图失败,记录空字符串并继续,避免阻塞全部渲染
  405. q.questionImg = q.questionImg || '';
  406. q.answerImg = q.answerImg || '';
  407. q.parseImg = q.parseImg || '';
  408. }
  409. }
  410. return q;
  411. }));
  412. this.questionList = processedQuestions;
  413. // 缓慢滚动到顶部
  414. this.scrollToTop();
  415. }
  416. instance.close();
  417. },
  418. scrollToTop() {
  419. // 等待 DOM 更新完成
  420. this.$nextTick(() => {
  421. const container = document.querySelector('.content_right');
  422. if (container) {
  423. container.scrollTo({ top: 0, behavior: 'smooth' });
  424. }
  425. });
  426. },
  427. async _markStudentErrorQuestion(question, markStatus) {
  428. const res = await markStudentErrorQuestion({
  429. questionId: question.questionId,
  430. examId: this.examId,
  431. subjectCode: this.subjectCode,
  432. markStatus
  433. })
  434. if (res.code === 200) {
  435. this.$message.success('操作成功');
  436. await this._queryStudentErrorQuestion();
  437. } else {
  438. this.$message.error(res.message || '操作失败');
  439. }
  440. },
  441. async handleCurrentChange(page) {
  442. this.pageParam.pageNum = page;
  443. await this._queryStudentErrorQuestion();
  444. },
  445. hasTuozhan() {
  446. // 查看题目中第一个 变式题为空 的题目
  447. const questionWithVariation = this.questionList.find(q => !q.variationQuestion);
  448. if (questionWithVariation) {
  449. return false; // 存在题目没有变式题
  450. }
  451. return true; // 所有题目都有变式题
  452. },
  453. downLoadPapers() {
  454. const hasVariation = this.hasTuozhan();
  455. if (!hasVariation) {
  456. confirm('教师还未确认变式题,是否继续下载?', () => {
  457. this.downloadDialogVisible = true;
  458. this.isVariation = 1;
  459. })
  460. } else {
  461. this.downloadDialogVisible = true;
  462. this.isVariation = 1;
  463. }
  464. }
  465. },
  466. }
  467. </script>
  468. <style scoped lang="scss">
  469. .flex {
  470. display: flex;
  471. margin-bottom: 10px;
  472. .flex_left {
  473. width: 80px;
  474. }
  475. .flex_right {
  476. flex: 1;
  477. display: flex;
  478. flex-wrap: wrap;
  479. }
  480. }
  481. .bg_easy {
  482. background-color: #3BA272 !important;
  483. }
  484. .bg_medium {
  485. background-color: #5470C6 !important;
  486. }
  487. .bg_hard {
  488. background-color: #EE6666 !important;
  489. }
  490. .select_box {
  491. background-color: #ffffff;
  492. border-radius: 10px;
  493. padding: 10px;
  494. margin-bottom: 10px;
  495. }
  496. .content {
  497. background-color: #ffffff;
  498. border-radius: 10px;
  499. padding: 20px;
  500. margin-bottom: 10px;
  501. }
  502. .right_btn {
  503. display: flex;
  504. justify-content: flex-end;
  505. margin-bottom: 10px;
  506. }
  507. .question_card {
  508. margin-bottom: 20px;
  509. border: 1px solid #ebeef5;
  510. border-radius: 10px;
  511. overflow: hidden;
  512. .card_top {
  513. padding: 20px;
  514. }
  515. .card_top_info {
  516. display: flex;
  517. justify-content: space-between;
  518. margin-bottom: 20px;
  519. .left {
  520. display: flex;
  521. align-items: center;
  522. span {
  523. font-size: 14px;
  524. }
  525. .tag {
  526. color: #ffffff;
  527. padding: 4px 5px;
  528. font-size: 12px;
  529. background-color: #F56C6C;
  530. border-radius: 2px;
  531. position: relative;
  532. &::before {
  533. content: '';
  534. position: absolute;
  535. left: -5px;
  536. top: 50%;
  537. transform: translateY(-50%);
  538. width: 0;
  539. height: 0;
  540. border-top: 5px solid transparent;
  541. border-bottom: 5px solid transparent;
  542. border-right: 5px solid #EE6666;
  543. }
  544. }
  545. }
  546. }
  547. .number {
  548. color: #ffffff;
  549. font-size: 14px;
  550. padding: 5px 9px;
  551. background-color: #2E64FA;
  552. border-radius: 4px;
  553. }
  554. .btn_span {
  555. color: #2E64FA;
  556. font-size: 14px;
  557. padding: 5px 9px;
  558. border: 1px solid #2E64FA;
  559. border-radius: 4px;
  560. cursor: pointer;
  561. margin-right: 10px;
  562. &.active {
  563. color: #ffffff;
  564. background-color: #2E64FA;
  565. border-radius: 4px;
  566. }
  567. }
  568. .gray {
  569. color: #999;
  570. }
  571. .black {
  572. color: #333;
  573. }
  574. .blue {
  575. color: #2E64FA;
  576. }
  577. .question_content {
  578. margin-bottom: 20px;
  579. }
  580. .yuwen {
  581. margin-top: 20px;
  582. .question_list {
  583. margin-top: 20px;
  584. height: 100px;
  585. padding-top: 20px;
  586. border-top: 1px solid #EBEEF5;
  587. }
  588. }
  589. .card_footer {
  590. display: flex;
  591. align-items: center;
  592. padding-top: 20px;
  593. border-top: 1px solid #EBEEF5;
  594. .footer_item {
  595. margin-right: 40px;
  596. }
  597. }
  598. .card_buttom {
  599. background-color: #f7f7f8;
  600. padding: 15px 20px;
  601. .btn_box {
  602. display: flex;
  603. justify-content: flex-end;
  604. span {
  605. cursor: pointer;
  606. }
  607. }
  608. .content {
  609. padding: 20px;
  610. background-color: #ffffff;
  611. margin-top: 20px;
  612. border-radius: 10px;
  613. .content_inner {
  614. border: 2px dotted #DCDFE6;
  615. border-radius: 4px;
  616. padding: 10px;
  617. }
  618. }
  619. .parseShow_content {
  620. position: relative;
  621. &::before {
  622. content: '';
  623. position: absolute;
  624. right: 20px;
  625. /* 根据需要调整三角水平位置 */
  626. top: 24px;
  627. /* 三角放置在外部,超出上方 */
  628. width: 0;
  629. height: 0;
  630. border-left: 10px solid transparent;
  631. border-right: 10px solid transparent;
  632. border-bottom: 12px solid #ffffff;
  633. z-index: 2;
  634. }
  635. }
  636. .answerShow_content {
  637. position: relative;
  638. &::before {
  639. content: '';
  640. position: absolute;
  641. right: 20px;
  642. /* 根据需要调整三角水平位置 */
  643. top: 24px;
  644. /* 三角放置在外部,超出上方 */
  645. width: 0;
  646. height: 0;
  647. border-left: 10px solid transparent;
  648. border-right: 10px solid transparent;
  649. border-bottom: 12px solid #ffffff;
  650. z-index: 2;
  651. }
  652. }
  653. }
  654. ::v-deep .qml-answer {
  655. margin-left: 0;
  656. margin-bottom: 0;
  657. }
  658. ::v-deep .qml-explanation .qml-seg p {
  659. margin-left: 0 !important;
  660. }
  661. ::v-deep .qml-explanation .qml-seg p,
  662. ::v-deep .qml-exps-sq {
  663. margin-left: 0 !important;
  664. }
  665. }
  666. </style>