doTask.vue 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. <template>
  2. <div class="doTask">
  3. <!-- <div class="dt_back" @click.stop="back()">返回</div> -->
  4. <div class="dt_main" v-if="!isSubmit">
  5. <div class="dt_m_head">
  6. <div class="dt_m_h_chapter">{{ taskMessage.chapter }}</div>
  7. <div class="dt_m_h_message">
  8. {{ taskMessage.grade }}<span>|</span>{{ taskMessage.semester
  9. }}<span>|</span>{{ taskMessage.edition }}<span>|</span
  10. >{{ taskMessage.subject }}
  11. </div>
  12. <span class="dt_m_h_back" @click.stop="back">
  13. <svg
  14. width="20"
  15. height="20"
  16. viewBox="0 0 20 20"
  17. fill="none"
  18. xmlns="http://www.w3.org/2000/svg"
  19. >
  20. <path
  21. fill-rule="evenodd"
  22. clip-rule="evenodd"
  23. d="M10.1973 15L10.1717 14.9836L2.5 10.0567L10.2042 5V5.03346L10.2016 8.82213C11.3364 8.8539 12.4635 8.91767 13.0862 9.04175C13.1629 9.05701 13.2492 9.073 13.3424 9.09026C13.8173 9.17824 14.4717 9.29947 14.9413 9.52789C15.5469 9.82252 16.1378 10.2494 16.4445 10.5914C17.4895 11.7566 17.4999 13.7513 17.4999 13.7513C17.4999 13.7513 17.336 12.921 16.7963 12.4144C16.3823 12.0259 16.1246 11.8067 15.517 11.6852C14.6833 11.5184 12.283 11.5278 10.1997 11.5739L10.1973 15Z"
  24. fill="black"
  25. />
  26. </svg>
  27. 返回
  28. </span>
  29. </div>
  30. <div class="dt_m_box">
  31. <div class="dt_m_b_left">
  32. <div class="dt_m_b_l_head">
  33. <div class="dt_m_l_h_title" v-text="taskMessage.title"></div>
  34. <div class="dt_m_l_h_changeChapter" @click.stop="changeChapter()">
  35. <svg
  36. width="16"
  37. height="16"
  38. viewBox="0 0 16 16"
  39. fill="none"
  40. xmlns="http://www.w3.org/2000/svg"
  41. >
  42. <path
  43. fill-rule="evenodd"
  44. clip-rule="evenodd"
  45. d="M10.0417 2.20921C10.2722 1.93026 10.6458 1.93026 10.8763 2.20921L13.8271 5.78064C13.9959 5.98492 14.0464 6.29215 13.9551 6.55906C13.8637 6.82597 13.6485 7 13.4098 7H2.59016C2.26423 7 2 6.6802 2 6.28571C2 5.89123 2.26423 5.57143 2.59016 5.57143H11.985L10.0417 3.21936C9.81122 2.94042 9.81122 2.48816 10.0417 2.20921Z"
  46. fill="#3681FC"
  47. />
  48. <path
  49. fill-rule="evenodd"
  50. clip-rule="evenodd"
  51. d="M2.04494 9.44094C2.13629 9.17403 2.35148 9 2.59018 9H13.4098C13.7358 9 14 9.3198 14 9.71429C14 10.1088 13.7358 10.4286 13.4098 10.4286H4.01496L5.9583 12.7806C6.18878 13.0596 6.18878 13.5118 5.9583 13.7908C5.72783 14.0697 5.35416 14.0697 5.12369 13.7908L2.17287 10.2194C2.00409 10.0151 1.95359 9.70785 2.04494 9.44094Z"
  52. fill="#3681FC"
  53. />
  54. </svg>
  55. <span>切换章节</span>
  56. </div>
  57. </div>
  58. <!-- <div class="dt_m_b_l_title">{{ classTitle }}</div> -->
  59. <div class="dt_m_b_l_task">
  60. <div class="dt_m_b_l_t_title">
  61. {{ showTaskIndex + 1 }}.
  62. <span>{{
  63. typeof taskList[showTaskIndex].answer == "object"
  64. ? "[多选题]"
  65. : "[单选题]"
  66. }}</span
  67. >{{ taskList[showTaskIndex].teststitle }}
  68. </div>
  69. <div class="dt_m_b_l_t_choseList">
  70. <div
  71. :class="[
  72. 'dt_m_b_l_t_cl_item',
  73. typeof taskList[showTaskIndex].answer == 'object'
  74. ? taskList[showTaskIndex].answer2.includes(index)
  75. ? 'dt_m_b_l_t_cl_itemActive'
  76. : ''
  77. : taskList[showTaskIndex].answer2 === index
  78. ? 'dt_m_b_l_t_cl_itemActive'
  79. : ''
  80. ]"
  81. v-for="(item, index) in taskList[showTaskIndex].checkList"
  82. @click.stop="choseAnswer(index)"
  83. :key="showTaskIndex + '-' + index"
  84. >
  85. <div>
  86. <span></span>
  87. </div>
  88. <span v-if="item.imgType == 1"
  89. >{{ choseList[index] }}<span>.</span
  90. ><img :src="item.src" @click.stop="$hevueImgPreview(item.src)"
  91. /></span>
  92. <span v-else
  93. >{{ choseList[index] }}<span>.</span>{{ item }}</span
  94. >
  95. </div>
  96. </div>
  97. </div>
  98. <div class="dt_m_b_l_bottom">
  99. <div class="dt_m_b_l_b_seekAssist" v-show="!showSeekAssist" @click.stop="seekAssist()">
  100. <svg
  101. width="20"
  102. height="20"
  103. viewBox="0 0 20 20"
  104. fill="none"
  105. xmlns="http://www.w3.org/2000/svg"
  106. >
  107. <path
  108. d="M16.0911 7.91C16.0911 4.394 13.1601 1.563 9.60806 1.727C6.44706 1.873 3.87806 4.432 3.72106 7.593C3.59906 10.037 4.89706 12.189 6.86206 13.3V15.434C6.86206 15.911 7.24906 16.299 7.72706 16.299H12.0801C12.5571 16.299 12.9451 15.912 12.9451 15.434V13.3C14.8221 12.237 16.0911 10.222 16.0911 7.91Z"
  109. fill="#AECCFE"
  110. />
  111. <path
  112. d="M10.2181 1.729C10.4281 1.807 11.9881 2.424 13.2791 3.889C15.2841 6.165 15.2821 9.617 13.2351 11.856C12.9801 12.135 12.6881 12.412 12.3561 12.682C12.1591 12.842 12.0411 13.08 12.0411 13.333V15.047C12.0411 15.241 11.9011 15.407 11.7091 15.432C11.6531 15.439 11.5921 15.443 11.5251 15.443H7.95805C7.43905 15.443 7.17406 15.443 7.05206 15.189C7.12906 15.763 6.45606 16.227 8.51006 16.227H11.7931C11.7581 16.252 11.7191 16.276 11.6741 16.298H12.0781C12.2001 16.298 12.3151 16.273 12.4201 16.227H12.4961L12.4891 16.194C12.6261 16.12 12.7406 16.0102 12.8203 15.8764C12.9001 15.7426 12.9421 15.5898 12.9421 15.434V13.3C14.8211 12.238 16.0901 10.222 16.0901 7.91C16.0911 4.597 13.4891 1.894 10.2181 1.729Z"
  113. fill="#3681FC"
  114. />
  115. <path
  116. d="M7.76294 7.91C7.76294 8.19089 7.81827 8.46904 7.92576 8.72856C8.03326 8.98807 8.19081 9.22387 8.38944 9.4225C8.58806 9.62112 8.82386 9.77868 9.08338 9.88617C9.3429 9.99367 9.62104 10.049 9.90194 10.049C10.1828 10.049 10.461 9.99367 10.7205 9.88617C10.98 9.77868 11.2158 9.62112 11.4144 9.4225C11.6131 9.22387 11.7706 8.98807 11.8781 8.72856C11.9856 8.46904 12.0409 8.19089 12.0409 7.91C12.0409 7.6291 11.9856 7.35095 11.8781 7.09144C11.7706 6.83192 11.6131 6.59612 11.4144 6.3975C11.2158 6.19887 10.98 6.04131 10.7205 5.93382C10.461 5.82632 10.1828 5.771 9.90194 5.771C9.62104 5.771 9.3429 5.82632 9.08338 5.93382C8.82386 6.04131 8.58806 6.19887 8.38944 6.3975C8.19081 6.59612 8.03326 6.83192 7.92576 7.09144C7.81827 7.35095 7.76294 7.6291 7.76294 7.91Z"
  117. fill="#FFAF77"
  118. />
  119. <path
  120. d="M9.78495 9.95702C10.0519 9.97802 10.3139 9.98802 10.5669 9.99102C11.5139 9.77102 12.2199 8.92302 12.2199 7.90902C12.2199 6.72702 11.2619 5.77002 10.0809 5.77002C9.93995 5.77002 9.80295 5.78402 9.66895 5.81002L9.94795 5.97402C9.94795 5.97402 11.1929 6.75002 11.1929 7.84102C11.1929 8.93302 10.4069 9.72802 9.78495 9.95702Z"
  121. fill="#E67F36"
  122. />
  123. <path
  124. d="M12.442 7.91009C12.442 6.51009 11.303 5.37109 9.90301 5.37109C8.50301 5.37109 7.36401 6.51009 7.36401 7.91009C7.36401 9.17409 8.29301 10.2251 9.50301 10.4181V13.9381C9.50301 14.1591 9.68201 14.3381 9.90301 14.3381C10.124 14.3381 10.303 14.1591 10.303 13.9381V10.4181C11.513 10.2251 12.442 9.17409 12.442 7.91009ZM9.90201 9.64909C8.94301 9.64909 8.16301 8.86909 8.16301 7.91009C8.16301 6.95109 8.94301 6.17109 9.90201 6.17109C10.861 6.17109 11.641 6.95109 11.641 7.91009C11.641 8.86909 10.861 9.64909 9.90201 9.64909Z"
  125. fill="#211D38"
  126. />
  127. <path
  128. d="M12.0781 16.6981H7.72611C7.02911 16.6981 6.46111 16.1311 6.46111 15.4341V13.5291C4.39811 12.2651 3.20011 10.0051 3.32111 7.57311C3.48811 4.22611 6.24111 1.48211 9.59011 1.32711C11.4111 1.24311 13.1381 1.88811 14.4521 3.14311C15.7671 4.39911 16.4921 6.09211 16.4921 7.90911C16.4921 10.2011 15.2921 12.3331 13.3431 13.5281V15.4331C13.3431 16.1311 12.7761 16.6981 12.0781 16.6981ZM9.90511 2.12011C9.81311 2.12011 9.72011 2.12211 9.62711 2.12611C6.68611 2.26211 4.26711 4.67211 4.12111 7.61211C4.01111 9.81811 5.13711 11.8641 7.05911 12.9511C7.12065 12.986 7.17184 13.0366 7.20749 13.0978C7.24314 13.1589 7.26199 13.2283 7.26211 13.2991V15.4331C7.26211 15.6891 7.47011 15.8971 7.72711 15.8971H12.0801C12.3361 15.8971 12.5451 15.6891 12.5451 15.4331V13.3001C12.5451 13.1561 12.6231 13.0231 12.7481 12.9521C14.5651 11.9251 15.6931 9.99311 15.6931 7.91011C15.6931 6.31311 15.0571 4.82611 13.9011 3.72211C12.8121 2.68311 11.4021 2.12011 9.90511 2.12011Z"
  129. fill="#211D38"
  130. />
  131. <path
  132. d="M4.6361 9.55986C4.5271 9.55986 4.4261 9.48786 4.3951 9.37786C4.2271 8.78086 4.1581 8.15986 4.1891 7.53186C4.2071 7.17586 4.2581 6.82186 4.3421 6.47786C4.3751 6.34386 4.4121 6.20986 4.4541 6.07986C4.46416 6.04857 4.4803 6.01957 4.50159 5.99454C4.52288 5.9695 4.5489 5.94891 4.57817 5.93395C4.60743 5.91899 4.63936 5.90996 4.67213 5.90737C4.70489 5.90478 4.73784 5.90868 4.7691 5.91886C4.9001 5.96086 4.9731 6.10186 4.9301 6.23386C4.8921 6.35186 4.8581 6.47386 4.8281 6.59586C4.7521 6.90986 4.7051 7.23286 4.6891 7.55686C4.6601 8.13086 4.7241 8.69786 4.8771 9.24286C4.9141 9.37586 4.8371 9.51386 4.7041 9.55086C4.6811 9.55686 4.6591 9.55986 4.6361 9.55986ZM5.1211 5.41986C5.0801 5.41986 5.0381 5.40986 5.0001 5.38786C4.97137 5.37193 4.94607 5.35049 4.92565 5.32478C4.90522 5.29906 4.89007 5.26956 4.88106 5.23798C4.87205 5.2064 4.86935 5.17335 4.87314 5.14072C4.87692 5.1081 4.8871 5.07654 4.9031 5.04786C5.2636 4.40034 5.74536 3.82827 6.3221 3.36286C6.4291 3.27586 6.5871 3.29286 6.6741 3.39986C6.7611 3.50686 6.7441 3.66486 6.6371 3.75186C6.1071 4.18086 5.6711 4.69886 5.3401 5.29186C5.2941 5.37286 5.2091 5.41986 5.1211 5.41986ZM7.5241 3.19586C7.4321 3.19586 7.3431 3.14486 7.2991 3.05586C7.2381 2.93186 7.2891 2.78186 7.4131 2.72086C7.6881 2.58586 7.9781 2.47186 8.2731 2.38186C8.4051 2.34186 8.5451 2.41686 8.5851 2.54886C8.6251 2.68086 8.5501 2.82086 8.4181 2.86086C8.1491 2.94186 7.8851 3.04586 7.6341 3.16986C7.5991 3.18786 7.5611 3.19586 7.5241 3.19586Z"
  133. fill="white"
  134. />
  135. <path
  136. d="M12.7521 18.612H7.0521C6.8311 18.612 6.6521 18.433 6.6521 18.212C6.6521 17.991 6.8311 17.812 7.0521 17.812H12.7521C12.9731 17.812 13.1521 17.991 13.1521 18.212C13.1521 18.433 12.9731 18.612 12.7521 18.612Z"
  137. fill="#211D38"
  138. />
  139. <path
  140. d="M8.51611 7.9342C8.50411 7.9342 8.49211 7.9332 8.47911 7.9312C8.44659 7.92645 8.41532 7.91533 8.3871 7.89848C8.35888 7.88163 8.33427 7.85937 8.31466 7.83299C8.29506 7.80661 8.28086 7.77662 8.27287 7.74473C8.26488 7.71285 8.26326 7.67971 8.26811 7.6472C8.32011 7.2922 8.44511 7.0272 8.68411 6.7602C8.70588 6.73519 8.7324 6.71475 8.76214 6.70009C8.79188 6.68543 8.82423 6.67683 8.85733 6.67479C8.89042 6.67275 8.92359 6.67732 8.9549 6.68822C8.98621 6.69912 9.01505 6.71614 9.03972 6.73829C9.06439 6.76045 9.08441 6.78728 9.09861 6.81724C9.11281 6.84721 9.12091 6.87969 9.12243 6.91281C9.12396 6.94594 9.11888 6.97903 9.10749 7.01017C9.09611 7.04131 9.07864 7.06987 9.05611 7.0942C8.88511 7.2852 8.80011 7.4662 8.76211 7.7192C8.75417 7.77878 8.72484 7.83345 8.67958 7.87301C8.63432 7.91256 8.57622 7.93431 8.51611 7.9342Z"
  141. fill="white"
  142. />
  143. <path
  144. d="M4.24707 14.5559C4.22293 14.5019 4.18838 14.4532 4.14541 14.4125C4.10243 14.3719 4.05187 14.3401 3.99661 14.3191C3.94135 14.298 3.88248 14.288 3.82336 14.2897C3.76425 14.2914 3.70604 14.3047 3.65207 14.3289L3.35107 14.4639L3.21607 14.1629C3.19193 14.1089 3.15738 14.0602 3.11441 14.0195C3.07143 13.9789 3.02087 13.9471 2.96561 13.9261C2.91035 13.905 2.85148 13.895 2.79236 13.8967C2.73325 13.8983 2.67504 13.9117 2.62107 13.9359C2.39407 14.0379 2.29307 14.3039 2.39407 14.5309L2.52907 14.8319L2.22807 14.9669C2.00107 15.0689 1.90007 15.3349 2.00107 15.5619C2.03662 15.6411 2.09434 15.7084 2.16726 15.7556C2.24019 15.8028 2.3252 15.8279 2.41207 15.8279C2.47307 15.8279 2.53607 15.8149 2.59607 15.7889L2.89707 15.6539L3.03207 15.9549C3.06762 16.0341 3.12534 16.1014 3.19826 16.1486C3.27119 16.1958 3.3562 16.2209 3.44307 16.2209C3.50407 16.2209 3.56707 16.2079 3.62707 16.1819C3.85407 16.0799 3.95507 15.8139 3.85407 15.5869L3.71907 15.2859L4.02007 15.1509C4.12895 15.1019 4.21398 15.0118 4.25653 14.9003C4.29908 14.7887 4.29568 14.6649 4.24707 14.5559Z"
  145. fill="#FFAF77"
  146. />
  147. <path
  148. d="M15.677 15.1852C15.677 15.3578 15.7456 15.5234 15.8677 15.6455C15.9898 15.7676 16.1553 15.8362 16.328 15.8362C16.5007 15.8362 16.6662 15.7676 16.7883 15.6455C16.9104 15.5234 16.979 15.3578 16.979 15.1852C16.979 15.0125 16.9104 14.8469 16.7883 14.7249C16.6662 14.6028 16.5007 14.5342 16.328 14.5342C16.1553 14.5342 15.9898 14.6028 15.8677 14.7249C15.7456 14.8469 15.677 15.0125 15.677 15.1852Z"
  149. fill="#E2E5F1"
  150. />
  151. </svg>
  152. <span>求助</span>
  153. </div>
  154. <div class="dt_m_b_l_b_btnArea" v-show="!showSeekAssist">
  155. <span
  156. class="dt_m_b_l_b_ba_btnPrev"
  157. @click.stop="changeTask('prev')"
  158. >上一题</span
  159. >
  160. <!-- v-if="showTaskIndex > 0" -->
  161. <span
  162. class="dt_m_b_l_b_ba_btnNext"
  163. @click.stop="changeTask('next')"
  164. >下一题</span
  165. >
  166. <!-- v-if="taskList.length > showTaskIndex + 1" -->
  167. <!-- <span
  168. v-if="showTaskIndex == taskList.length - 1"
  169. @click.stop="submitTask()"
  170. >确认提交</span
  171. > -->
  172. </div>
  173. </div>
  174. </div>
  175. <div class="dt_m_b_right">
  176. <div class="dt_m_b_r_time">
  177. <div class="dt_m_b_r_t_head">
  178. <svg
  179. width="20"
  180. height="20"
  181. viewBox="0 0 20 20"
  182. fill="none"
  183. xmlns="http://www.w3.org/2000/svg"
  184. >
  185. <path
  186. fill-rule="evenodd"
  187. clip-rule="evenodd"
  188. d="M3.75 11.25C3.75 7.79822 6.54822 5 10 5C11.7319 5 13.2984 5.70364 14.431 6.84218C15.5559 7.97295 16.25 9.52981 16.25 11.25C16.25 14.7018 13.4518 17.5 10 17.5C6.54822 17.5 3.75 14.7018 3.75 11.25ZM10 3.75C5.85786 3.75 2.5 7.10786 2.5 11.25C2.5 15.3921 5.85786 18.75 10 18.75C14.1421 18.75 17.5 15.3921 17.5 11.25C17.5 9.56177 16.9417 8.00315 16.0004 6.74983C16.0236 6.73236 16.0458 6.71307 16.0669 6.69194L17.3169 5.44194C17.561 5.19786 17.561 4.80214 17.3169 4.55806C17.0729 4.31398 16.6771 4.31398 16.4331 4.55806L15.1831 5.80806C15.1795 5.81166 15.1759 5.81529 15.1724 5.81896C13.8273 4.53761 12.0051 3.75 10 3.75Z"
  189. fill="#17C469"
  190. />
  191. <path
  192. fill-rule="evenodd"
  193. clip-rule="evenodd"
  194. d="M7 1.875C7 1.52982 7.33579 1.25 7.75 1.25H12.25C12.6642 1.25 13 1.52982 13 1.875C13 2.22018 12.6642 2.5 12.25 2.5H7.75C7.33579 2.5 7 2.22018 7 1.875Z"
  195. fill="#17C469"
  196. />
  197. <path
  198. fill-rule="evenodd"
  199. clip-rule="evenodd"
  200. d="M10 7.5C10.3452 7.5 10.625 7.77982 10.625 8.125V11.25C10.625 11.5952 10.3452 11.875 10 11.875C9.65482 11.875 9.375 11.5952 9.375 11.25V8.125C9.375 7.77982 9.65482 7.5 10 7.5Z"
  201. fill="#17C469"
  202. />
  203. </svg>
  204. <span>计时器</span>
  205. </div>
  206. <div class="dt_m_b_r_t_showTime">
  207. <span>{{ showTime }}</span>
  208. </div>
  209. <div class="dt_m_b_r_t_schedule">
  210. <div class="dt_m_b_r_t_s_box">
  211. <div
  212. class="dt_m_b_r_t_s_b_inner"
  213. :style="`width:${schedule}%`"
  214. ></div>
  215. <div class="dt_m_b_r_t_s_b_round" :style="`left:${schedule}%`">
  216. <span
  217. >{{ showTaskIndex + 1 }}<span>/</span
  218. >{{ taskList.length }}</span
  219. >
  220. </div>
  221. </div>
  222. </div>
  223. <div class="dt_m_b_r_t_btn" @click.stop="keepTime()">
  224. <span v-if="timer !== null">暂停计时</span>
  225. <span v-else>继续计时</span>
  226. </div>
  227. </div>
  228. <div class="dt_m_b_r_taskList">
  229. <div class="dt_m_b_r_tl_head">
  230. <div>
  231. <svg
  232. width="16"
  233. height="16"
  234. viewBox="0 0 16 16"
  235. fill="none"
  236. xmlns="http://www.w3.org/2000/svg"
  237. >
  238. <path
  239. fill-rule="evenodd"
  240. clip-rule="evenodd"
  241. d="M2 2.5C2 2.22386 2.22386 2 2.5 2H13.5C13.7761 2 14 2.22386 14 2.5V13.5C14 13.7761 13.7761 14 13.5 14H2.5C2.22386 14 2 13.7761 2 13.5V2.5ZM3 3V13H13V3H3Z"
  242. fill="#E67F36"
  243. />
  244. <path
  245. fill-rule="evenodd"
  246. clip-rule="evenodd"
  247. d="M7.24631 5.08406L5.56066 6.76971C5.46689 6.86348 5.33972 6.91616 5.20711 6.91616C5.0745 6.91616 4.94732 6.86348 4.85355 6.76971L4 5.91616L4.70711 5.20905L5.20711 5.70905L6.5392 4.37695L7.24631 5.08406Z"
  248. fill="#E67F36"
  249. />
  250. <path
  251. fill-rule="evenodd"
  252. clip-rule="evenodd"
  253. d="M5.4 9.4001C5.06863 9.4001 4.8 9.66873 4.8 10.0001C4.8 10.3315 5.06863 10.6001 5.4 10.6001C5.73137 10.6001 6 10.3315 6 10.0001C6 9.66873 5.73137 9.4001 5.4 9.4001ZM4 10.0001C4 9.2269 4.6268 8.6001 5.4 8.6001C6.1732 8.6001 6.8 9.2269 6.8 10.0001C6.8 10.7733 6.1732 11.4001 5.4 11.4001C4.6268 11.4001 4 10.7733 4 10.0001Z"
  254. fill="#E67F36"
  255. />
  256. <path
  257. fill-rule="evenodd"
  258. clip-rule="evenodd"
  259. d="M8 5.5H12V6.5H8V5.5Z"
  260. fill="#E67F36"
  261. />
  262. <path
  263. fill-rule="evenodd"
  264. clip-rule="evenodd"
  265. d="M8 9.5H12V10.5H8V9.5Z"
  266. fill="#E67F36"
  267. />
  268. </svg>
  269. <span>答题卡</span>
  270. </div>
  271. <div>
  272. 共{{ taskList.length }}道题
  273. <span>|</span>
  274. 合计100分
  275. </div>
  276. </div>
  277. <div class="dt_m_b_r_tl_boxList">
  278. <span
  279. v-for="(item, index) in taskList"
  280. :key="index"
  281. :class="[
  282. isDoTask(index) ? 'isDoTask' : '',
  283. showTaskIndex == index ? 'inDoTask' : ''
  284. ]"
  285. @click.stop="showTaskIndex = index"
  286. >{{ index + 1 }}</span
  287. >
  288. </div>
  289. <div class="dt_m_b_r_tl_bottom">
  290. <div><span class="isDoTask"></span>已答</div>
  291. <div><span class="inDoTask"></span>当前</div>
  292. <div><span></span>未答</div>
  293. </div>
  294. </div>
  295. <div class="dt_m_b_r_bottom">
  296. <div
  297. @click.stop="saveTask()"
  298. v-if="!isDoAllTask && this.showTaskIndex != taskList.length - 1"
  299. >
  300. 保存
  301. </div>
  302. <div
  303. @click.stop="submitTask()"
  304. v-if="isDoAllTask || this.showTaskIndex == taskList.length - 1"
  305. >
  306. 确认提交
  307. </div>
  308. </div>
  309. </div>
  310. </div>
  311. </div>
  312. <div class="dt_dialogBackground" v-if="showSeekAssist"></div>
  313. <div class="dt_character">
  314. <img
  315. :src="
  316. characterList.find(i => userInfo.choseCharacter === i.index).image
  317. "
  318. />
  319. <div class="dt_c_message" v-if="showSeekAssist">
  320. <span class="dt_c_m_characterName">{{
  321. characterList.find(i => userInfo.choseCharacter === i.index)
  322. ? characterList.find(i => userInfo.choseCharacter === i.index).name
  323. : "AI"
  324. }}</span>
  325. <span class="dt_c_m_closeIcon" @click.stop="showSeekAssist = false">
  326. <svg
  327. width="14"
  328. height="14"
  329. viewBox="0 0 14 14"
  330. fill="none"
  331. xmlns="http://www.w3.org/2000/svg"
  332. >
  333. <path
  334. d="M7 0C3.14049 0 0 3.14001 0 7C0 10.86 3.14001 14 7 14C10.8595 14 14 10.86 14 7C14 3.14001 10.86 0 7 0ZM9.8555 9.156C10.0505 9.352 10.05 9.668 9.85451 9.863C9.75702 9.96 9.62951 10.009 9.50152 10.009C9.37301 10.009 9.24502 9.96001 9.14751 9.86201L6.9975 7.7055L4.84051 9.83951C4.74302 9.93552 4.61599 9.98401 4.48899 9.98401C4.36001 9.98401 4.2315 9.9345 4.1335 9.83551C3.9395 9.639 3.941 9.32299 4.13751 9.1285L6.292 6.9975L4.14549 4.844C3.95049 4.64849 3.951 4.332 4.14649 4.137C4.342 3.94149 4.65798 3.94251 4.85349 4.13799L7.00298 6.29399L9.15998 4.16001C9.35597 3.96552 9.67297 3.9675 9.86698 4.16401C10.0615 4.36052 10.0595 4.67701 9.86298 4.87101L7.70851 7.00199L9.8555 9.156Z"
  335. fill="#E0EAFB"
  336. />
  337. </svg>
  338. </span>
  339. <div class="dt_c_m_message">
  340. 这题选:<span>{{ taskList[showTaskIndex].answer }}</span>
  341. </div>
  342. <div class="dt_c_m_btnArea">
  343. <span class="dt_c_m_btn1" @click.stop="doNotKnow()">还是不太明白</span>
  344. <span class="dt_c_m_btn2" @click.stop="showSeekAssist = false">明白,去做题→</span>
  345. </div>
  346. </div>
  347. </div>
  348. <div class="dt_isSubmit" v-if="isSubmit">
  349. <!-- <div class="dt_m_b_l_head">
  350. <span>{{ grade }}</span
  351. >><span>{{ semester }}</span
  352. >><span>{{ edition }}</span>
  353. </div> -->
  354. <div class="dt_m_b_l_title">{{ taskMessage.title }}</div>
  355. <div class="dt_is_statistics">
  356. <img
  357. :src="require('../../../assets/icon/pocAiClassroom/taskSuccess.png')"
  358. alt=""
  359. />
  360. <el-rate
  361. class="dt_is_s_star"
  362. v-model="star"
  363. allow-half
  364. disabled
  365. ></el-rate>
  366. <div class="dt_is_s_message">
  367. <span>总计题目:{{ showMessage.total }}</span>
  368. <span>总答对数量:{{ showMessage.right }}</span>
  369. <span>正确率:{{ showMessage.accuracy }}%</span>
  370. </div>
  371. <div class="dt_is_s_taskList">
  372. <span
  373. v-for="(item, index) in taskList"
  374. @click.stop="goDoTask(index)"
  375. :class="[
  376. typeof item.answer === 'object'
  377. ? item.answer2.length != 0
  378. ? isTrueTask(index).no.length == 0 &&
  379. isTrueTask(index).yes.length == item.answer.length
  380. ? 'isDoYes'
  381. : 'isDoNo'
  382. : 'isNoDo'
  383. : item.answer2 !== ''
  384. ? item.answer === item.answer2
  385. ? 'isDoYes'
  386. : 'isDoNo'
  387. : 'isNoDo'
  388. ]"
  389. :key="index"
  390. >{{ index + 1 }}</span
  391. >
  392. </div>
  393. </div>
  394. <div class="dt_is_taskList">
  395. <div class="dt_is_tl_head">
  396. <span>题目回顾</span>
  397. <div>
  398. <span @click.stop="onlyShowMistake = !onlyShowMistake"
  399. >只显示错题</span
  400. >
  401. <el-switch
  402. v-model="onlyShowMistake"
  403. style="transform: scale(1.2,1.2);"
  404. ></el-switch>
  405. </div>
  406. </div>
  407. <div class="dt_is_tl_taskBox">
  408. <div
  409. class="dt_is_tl_tb_item"
  410. v-for="(item, index) in taskList"
  411. :ref="'taskItem' + index + 'Ref'"
  412. :key="index"
  413. v-if="
  414. !onlyShowMistake ||
  415. (typeof item.answer === 'object'
  416. ? !(
  417. isTrueTask(index).no.length == 0 &&
  418. isTrueTask(index).yes.length == item.answer.length
  419. )
  420. : item.answer !== item.answer2)
  421. "
  422. >
  423. <span class="dt_is_tl_tb_i_title"
  424. >{{ typeof item.answer == "object" ? "【多选题】" : "【单选题】"
  425. }}{{ index + 1 }}.{{ item.teststitle }}</span
  426. >
  427. <div class="dt_is_tl_tb_i_choseList">
  428. <span
  429. v-for="(item2, index2) in item.checkList"
  430. :key="index + '-' + index2"
  431. >
  432. <span v-if="item2.imgType == 1"
  433. >{{ choseList[index2] }}<span>.</span
  434. ><img
  435. :src="item2.src"
  436. @click.stop="$hevueImgPreview(item2.src)"
  437. /></span>
  438. <span v-else
  439. >{{ choseList[index2] }}<span>.</span>{{ item2 }}</span
  440. >
  441. </span>
  442. </div>
  443. <div class="dt_is_tl_tb_i_answer">
  444. <div>
  445. 你的答案:<span v-if="typeof item.answer === 'object'">
  446. <span
  447. v-for="(item3, index3) in item.answer2"
  448. :key="index + '+' + index3"
  449. :style="
  450. item.answer.includes(item3)
  451. ? 'color:#75BD42'
  452. : 'color:#FF5B5B'
  453. "
  454. >{{ choseList[item3]
  455. }}{{ index3 == item.answer2.length - 1 ? "" : "、" }}</span
  456. > </span
  457. ><span
  458. v-else
  459. :style="
  460. item.answer === item.answer2
  461. ? 'color:#75BD42'
  462. : 'color:#FF5B5B'
  463. "
  464. >{{ choseList[item.answer2] }}</span
  465. >
  466. </div>
  467. <div>
  468. 正确答案:<span style="color:#75BD42">{{
  469. typeof item.answer === "object"
  470. ? item.answer.map(i => choseList[i]).join("、")
  471. : choseList[item.answer]
  472. }}</span>
  473. </div>
  474. </div>
  475. <div class="dt_is_tl_tb_i_analyze">
  476. <div>答案解析:<span v-text="item.analyze"></span></div>
  477. </div>
  478. </div>
  479. </div>
  480. </div>
  481. </div>
  482. </div>
  483. </template>
  484. <script>
  485. export default {
  486. data() {
  487. return {
  488. showTaskIndex: 0,
  489. time: 0,
  490. time2: 0,
  491. startTime: 0,
  492. timer: null,
  493. userId: this.$route.query.userid,
  494. org: this.$route.query.org,
  495. oid: this.$route.query.oid,
  496. showSeekAssist: false,
  497. choseList: [
  498. "A",
  499. "B",
  500. "C",
  501. "D",
  502. "E",
  503. "F",
  504. "G",
  505. "H",
  506. "I",
  507. "J",
  508. "K",
  509. "L",
  510. "M",
  511. "N",
  512. "O",
  513. "P",
  514. "Q",
  515. "R",
  516. "S",
  517. "T",
  518. "U",
  519. "V",
  520. "W",
  521. "X",
  522. "Y",
  523. "Z"
  524. ],
  525. taskList: [
  526. {
  527. teststitle: "请从以下选项中选出一个由三个不同字母组成的组合。",
  528. checkList: ["abc", "aaa", "bca", "ccc"],
  529. timuList: [],
  530. answer: 0,
  531. type: "1",
  532. analyze:
  533. "本题考核学生对字母的识别能力以及对字母组合的理解。学生需要识别每个选项中的字母,并判断是否由三个不同的字母组成。选项1(abc)和选项3(bca)都由三个不同的字母组成,但根据题目要求,选项1是正确答案。",
  534. answer2: "",
  535. uuid: "2b29f3aa-3389-4415-85aa-613f72e23de6",
  536. isSubmit: false
  537. },
  538. {
  539. teststitle: "哪种动物会飞?",
  540. checkList: ["狗", "猫", "鸟", "鱼"],
  541. timuList: [],
  542. answer: 2,
  543. type: "1",
  544. analyze:
  545. "这道题目考察学生对动物基本特征的了解。鸟是会飞的动物,而狗、猫和鱼都不会飞。",
  546. answer2: "",
  547. uuid: "55d7fdcb-bedb-4c2f-b6ea-b3b98e7415be",
  548. isSubmit: false
  549. },
  550. {
  551. teststitle: "以下哪些动物会飞?",
  552. checkList: ["狗", "猫", "鸟", "蝙蝠", "企鹅", "蜜蜂"],
  553. timuList: [],
  554. answer: [2, 3, 5],
  555. type: "2",
  556. analyze:
  557. "本题考查学生对动物飞行能力的认知。鸟、蝙蝠和蜜蜂都是会飞的动物,而狗、猫和企鹅不会飞。通过这道题,学生需要对多种动物的特征进行分类和识别。",
  558. answer2: [],
  559. uuid: "764246b9-0ce5-4d75-9035-3de982b3420f",
  560. isSubmit: false
  561. },
  562. {
  563. teststitle: "测试",
  564. testItem: 4,
  565. checkList: [
  566. {
  567. src:
  568. "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/1-2740353x15_hanspub1687855155487.jpg",
  569. imgType: 1
  570. },
  571. "测试1",
  572. "测试2",
  573. "测试3"
  574. ],
  575. timuList: [
  576. {
  577. src:
  578. "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/DSC20210112100951431687855143262.jpg"
  579. }
  580. ],
  581. answer: [2, 0],
  582. type: "2",
  583. answer2: [],
  584. uuid: "157fb875-acec-4dc9-8e60-73b82bb4ed9a",
  585. analyze:
  586. "题目要求选择正确的答案。根据题目和选项的内容,正确答案是3和1。\n分析考核的知识点包括理解题意和选项内容的能力。",
  587. isSubmit: false
  588. },
  589. {
  590. teststitle: "哪种动物生活在水中?",
  591. checkList: ["狗", "猫", "鸟", "鱼"],
  592. timuList: [],
  593. answer: 3,
  594. type: "1",
  595. analyze:
  596. "这道题目考核的是学生对常见动物生活环境的认知能力。鱼是生活在水中的动物,而狗、猫和鸟则不是。",
  597. answer2: "",
  598. uuid: "723dd167-f480-47e9-b958-353138113742",
  599. isSubmit: false
  600. },
  601. {
  602. teststitle: "以下哪些动物既能生活在水中也能生活在陆地上?",
  603. checkList: ["青蛙", "鲨鱼", "海豚", "企鹅"],
  604. timuList: [],
  605. answer: 0,
  606. type: "1",
  607. analyze:
  608. "本题考核学生对动物生活环境的更深入认知。青蛙是两栖动物,既能生活在水中也能生活在陆地上,而鲨鱼和海豚主要生活在水中,企鹅虽然能在陆地上活动,但主要生活在水中。",
  609. answer2: "",
  610. uuid: "ca09b084-2fea-4e68-9f8a-325e77c652d3",
  611. isSubmit: false
  612. },
  613. {
  614. teststitle: "以下哪种动物既能飞又能游泳?",
  615. checkList: ["企鹅", "老鹰", "鸵鸟", "海豚"],
  616. timuList: [],
  617. answer: 0,
  618. type: "1",
  619. analyze:
  620. "题目考察了学生对动物特征的综合认知。企鹅是唯一一种既能飞(在水中飞行)又能游泳的动物,而老鹰只能飞行,鸵鸟既不能飞也不能游泳,海豚只能游泳。",
  621. answer2: "",
  622. uuid: "cdc13cd7-a1c6-4809-b958-d2b37b2aac6b",
  623. isSubmit: false
  624. },
  625. {
  626. teststitle: "以下哪种动物能够在水中游泳?",
  627. checkList: ["企鹅", "老鹰", "鸵鸟", "猫"],
  628. timuList: [],
  629. answer: 0,
  630. type: "1",
  631. analyze:
  632. "这道题目考核的是学生对动物特性的了解。企鹅是一种能够在水中游泳的动物,而其他选项中的动物(老鹰、鸵鸟、猫)都不能在水中游泳。",
  633. answer2: "",
  634. uuid: "ebed926d-5010-4d2e-9740-b6fe00438420",
  635. isSubmit: false
  636. },
  637. {
  638. teststitle:
  639. "观察以下模式,并选择正确的选项来完成这个模式:cscs, sscs, cscs, sscs, ______",
  640. checkList: ["cscs", "sscs", "cssc", "sssc"],
  641. timuList: [],
  642. answer: 0,
  643. type: "1",
  644. analyze:
  645. "这道题目考察学生对模式识别的能力。题目给出了一个重复的模式:cscs, sscs, cscs, sscs。根据这个模式,下一步应该是cscs。因此,正确答案是选项1。",
  646. end: "",
  647. answer2: "",
  648. uuid: "61ae2659-43c3-4741-b5c2-a543a57a9705",
  649. isSubmit: false
  650. },
  651. {
  652. teststitle: "世界上最长的河流是哪一条?",
  653. checkList: ["尼罗河", "亚马逊河", "长江", "密西西比河"],
  654. timuList: [],
  655. answer: 0,
  656. type: "1",
  657. analyze:
  658. "这道题目考核的是学生对世界地理常识的了解。世界上最长的河流是尼罗河,全长约6650公里。通过这道题目,学生可以学习到关于世界河流的基本知识。",
  659. answer2: "",
  660. uuid: "b328ebf9-389a-4828-b6c6-9a04426d3216",
  661. isSubmit: false
  662. },
  663. {
  664. teststitle: "世界上最高的山峰及其高度",
  665. checkList: [
  666. "珠穆朗玛峰,高度8848米",
  667. "珠穆朗玛峰,高度8000米",
  668. "太白山,高度8848米",
  669. "刚果盆地,高度8848米"
  670. ],
  671. timuList: [],
  672. answer: 0,
  673. type: "1",
  674. analyze:
  675. "本题考察学生对世界上最高山峰珠穆朗玛峰及其高度的了解。珠穆朗玛峰是世界上最高的山峰,其高度为8848米。通过这道题,学生不仅需要知道最高的山峰,还需要记住其具体高度。",
  676. answer2: "",
  677. uuid: "e1cf1783-2e9f-40f6-a58f-6c3a7a951173",
  678. isSubmit: false
  679. }
  680. ],
  681. taskMessage: {
  682. chapter: "第一章",
  683. grade: "八年级",
  684. semester: "上学期",
  685. edition: "人教版",
  686. subject: "物理",
  687. title: "第四课 测量平均速度"
  688. },
  689. isSubmit: false,
  690. star: 4,
  691. onlyShowMistake: false,
  692. userInfo: {
  693. userName: "科科",
  694. grade: 7,
  695. userAvatar: "",
  696. choseCharacter: 0
  697. },
  698. characterList: [
  699. {
  700. index: 0,
  701. image: require("../../../assets/icon/pocAiClassroom/character1.png"),
  702. name: "圆鼓鼓的大胖鱼",
  703. personality:
  704. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心"
  705. },
  706. {
  707. index: 1,
  708. image: require("../../../assets/icon/pocAiClassroom/character2.png"),
  709. name: "迷人的大反派2",
  710. personality:
  711. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心2"
  712. },
  713. {
  714. index: 2,
  715. image: require("../../../assets/icon/pocAiClassroom/character3.png"),
  716. name: "迷人的大反派3",
  717. personality:
  718. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心3"
  719. },
  720. {
  721. index: 3,
  722. image: require("../../../assets/icon/pocAiClassroom/character4.png"),
  723. name: "迷人的大反派4",
  724. personality:
  725. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心4"
  726. },
  727. {
  728. index: 4,
  729. image: require("../../../assets/icon/pocAiClassroom/character5.png"),
  730. name: "迷人的大反派5",
  731. personality:
  732. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心5"
  733. },
  734. {
  735. index: 5,
  736. image: require("../../../assets/icon/pocAiClassroom/character6.png"),
  737. name: "迷人的大反派6",
  738. personality:
  739. "心思细腻,能够敏锐捕捉到别人的需求,喜欢支持和鼓励他人,富有耐心6"
  740. }
  741. ]
  742. };
  743. },
  744. computed: {
  745. isDoTask() {
  746. return _index => {
  747. let _result = false;
  748. const _type = typeof this.taskList[_index].answer == "object" ? 1 : 0;
  749. if (_type == 0) {
  750. if (this.taskList[_index].answer2 !== "") _result = true;
  751. } else if (_type == 1) {
  752. if (this.taskList[_index].answer2.length > 0) _result = true;
  753. }
  754. return _result;
  755. };
  756. },
  757. isTrueTask() {
  758. return _index => {
  759. let _result = {
  760. yes: [],
  761. no: []
  762. };
  763. const _type = typeof this.taskList[_index].answer == "object" ? 1 : 0;
  764. const _answer = this.taskList[_index].answer;
  765. const _answer2 = this.taskList[_index].answer2;
  766. if (_type == 0) {
  767. if (_answer === _answer2) {
  768. _result.yes = [_answer2];
  769. _result.no = [];
  770. } else {
  771. _result.yes = [];
  772. _result.no = [_answer2];
  773. }
  774. } else if (_type == 1) {
  775. if (
  776. _answer.length === _answer2.length &&
  777. _answer.every(i => _answer2.includes(i))
  778. ) {
  779. _result.yes = _answer2;
  780. _result.no = [];
  781. } else {
  782. _result.yes = _answer.filter(i => _answer2.includes(i));
  783. _result.no = _answer2.filter(i => !_answer.includes(i));
  784. }
  785. }
  786. // let yes2 = _result.yes;
  787. // yes2.sort((a,b)=>a-b)
  788. // let no2 = _result.no;
  789. // no2.sort((a,b)=>a-b)
  790. // _result.yes = yes2;
  791. // _result.no = no2;
  792. return _result;
  793. };
  794. },
  795. isDoAllTask() {
  796. let _result = true;
  797. this.taskList.forEach((item, index) => {
  798. if (!this.isDoTask(index)) {
  799. _result = false;
  800. }
  801. });
  802. return _result;
  803. },
  804. showTime() {
  805. // 更新currentTime,将秒数转换为时分秒格式
  806. let hours = Math.floor((this.time + this.time2) / 3600);
  807. let minutes = Math.floor(((this.time + this.time2) % 3600) / 60);
  808. let seconds = Math.floor((this.time + this.time2) % 60);
  809. // this.recordedForm.time = `${hours.toString().padStart(2, "0")}:${minutes
  810. // .toString()
  811. // .padStart(2, "0")}:${seconds.toString().padStart(2, "0")}`;
  812. return `${hours
  813. .toString()
  814. .padStart(2, "0")}:${minutes
  815. .toString()
  816. .padStart(2, "0")}:${seconds.toString().padStart(2, "0")}`;
  817. },
  818. showMessage() {
  819. let _result = {
  820. total: 0,
  821. right: 0,
  822. wrong: 0,
  823. accuracy: 0
  824. };
  825. if (!this.isSubmit) return _result;
  826. _result.total = this.taskList.length;
  827. this.taskList.forEach((item, index) => {
  828. if (
  829. typeof item.answer === "object"
  830. ? !(
  831. this.isTrueTask(index).no.length == 0 &&
  832. this.isTrueTask(index).yes.length == item.answer.length
  833. )
  834. : item.answer !== item.answer2
  835. ) {
  836. _result.wrong++;
  837. } else {
  838. _result.right++;
  839. }
  840. });
  841. _result.accuracy = Math.round((_result.right / _result.total) * 100);
  842. return _result;
  843. },
  844. schedule() {
  845. let _schedule = 0;
  846. if (this.showTaskIndex == 0) {
  847. _schedule = 0;
  848. } else if (this.showTaskIndex === this.taskList.length) {
  849. _schedule = 100;
  850. } else {
  851. _schedule = Math.round(
  852. ((this.showTaskIndex + 1) / this.taskList.length) * 100
  853. );
  854. }
  855. return _schedule;
  856. }
  857. },
  858. methods: {
  859. changeTask(type) {
  860. if (type == "prev") {
  861. if (this.showTaskIndex > 0) {
  862. this.showTaskIndex--;
  863. } else {
  864. this.$message.warning("已经是第一题啦");
  865. }
  866. } else if (type == "next") {
  867. if (this.showTaskIndex < this.taskList.length - 1) {
  868. this.showTaskIndex++;
  869. } else {
  870. this.$message.warning("已经是最后一题啦");
  871. }
  872. }
  873. },
  874. // 切换章节
  875. changeChapter() {
  876. console.log("切换章节");
  877. },
  878. //求助
  879. seekAssist() {
  880. this.showSeekAssist = true;
  881. },
  882. keepTime() {
  883. if (this.timer !== null) {
  884. clearInterval(this.timer);
  885. this.timer = null;
  886. this.time += this.time2;
  887. this.time2 = 0;
  888. } else {
  889. this.startTime = new Date().getTime();
  890. this.timer = setInterval(() => {
  891. if (this.isSubmit) {
  892. clearInterval(this.timer);
  893. this.timer = null;
  894. this.time += this.time2;
  895. this.time2 = 0;
  896. return;
  897. }
  898. this.time2 = Math.floor(
  899. (new Date().getTime() - this.startTime) / 1000
  900. );
  901. }, 1000);
  902. }
  903. },
  904. endTask() {
  905. this.$confirm("确定结束练习吗", "提示", {
  906. confirmButtonText: "确定",
  907. cancelButtonText: "取消",
  908. type: "warning"
  909. })
  910. .then(() => {
  911. this.back();
  912. })
  913. .catch(() => {
  914. console.log("不结束练习");
  915. });
  916. },
  917. saveTask() {
  918. console.log("保存做题");
  919. },
  920. submitTask(type = 0) {
  921. if (!this.isDoAllTask && type == 0) {
  922. this.$confirm("还有未做的题目,是否要继续做题", "提示", {
  923. confirmButtonText: "确认提交",
  924. cancelButtonText: "继续做题",
  925. type: "warning "
  926. })
  927. .then(() => {
  928. this.submitTask(1);
  929. })
  930. .catch(() => {
  931. console.log("继续做题");
  932. });
  933. } else {
  934. this.isSubmit = true;
  935. clearInterval(this.timer);
  936. this.timer = null;
  937. this.sortTaskList();
  938. }
  939. },
  940. back() {
  941. this.$router.push(
  942. `/pocAiClassroom?userid=${this.userId}&oid=${this.oid}&org=${this.org}`
  943. );
  944. },
  945. choseAnswer(_index) {
  946. const _type =
  947. typeof this.taskList[this.showTaskIndex].answer == "object" ? 1 : 0;
  948. if (_type == 0) {
  949. if (this.taskList[this.showTaskIndex].answer2 === _index) {
  950. this.taskList[this.showTaskIndex].answer2 = "";
  951. } else {
  952. this.taskList[this.showTaskIndex].answer2 = _index;
  953. }
  954. } else if (_type == 1) {
  955. if (this.taskList[this.showTaskIndex].answer2.includes(_index)) {
  956. this.taskList[this.showTaskIndex].answer2 = this.taskList[
  957. this.showTaskIndex
  958. ].answer2.filter(item => item != _index);
  959. } else {
  960. this.taskList[this.showTaskIndex].answer2.push(_index);
  961. }
  962. }
  963. },
  964. sortTaskList() {
  965. this.taskList.forEach(i => {
  966. if (typeof i.answer === "object") {
  967. i.answer.sort((a, b) => a - b);
  968. i.answer2.sort((a, b) => a - b);
  969. }
  970. });
  971. },
  972. goDoTask(_index) {
  973. if (this.$refs["taskItem" + _index + "Ref"][0]) {
  974. this.$refs["taskItem" + _index + "Ref"][0].scrollIntoView({
  975. behavior: "smooth",
  976. block: "start",
  977. inline: "start"
  978. });
  979. }
  980. },
  981. doNotKnow(){
  982. this.$message.info("多想想")
  983. }
  984. },
  985. mounted() {
  986. this.keepTime();
  987. this.sortTaskList();
  988. }
  989. };
  990. </script>
  991. <style scoped>
  992. .doTask {
  993. width: 100vw;
  994. height: 100vh;
  995. /* background-image: radial-gradient(#bbcdff 0%, #bbcdff 1%, #e6dee9 100%); */
  996. background-color: #f0f2f5;
  997. box-sizing: border-box;
  998. overflow: auto;
  999. position: relative;
  1000. }
  1001. .dt_back {
  1002. font-size: 24px;
  1003. cursor: pointer;
  1004. position: absolute;
  1005. right: 30px;
  1006. top: 30px;
  1007. }
  1008. .dt_main {
  1009. width: 70%;
  1010. height: 95%;
  1011. min-height: 800px;
  1012. min-width: 1100px;
  1013. display: flex;
  1014. flex-direction: column;
  1015. justify-content: space-between;
  1016. align-items: center;
  1017. margin: auto;
  1018. position: relative;
  1019. top: 2.5%;
  1020. }
  1021. .dt_m_head {
  1022. width: 100%;
  1023. height: 150px;
  1024. display: flex;
  1025. flex-direction: column;
  1026. align-items: center;
  1027. position: relative;
  1028. /* justify-content: center; */
  1029. }
  1030. .dt_m_h_message {
  1031. font-size: 20px;
  1032. color: #00000099;
  1033. }
  1034. .dt_m_h_message > span {
  1035. margin: 0 10px;
  1036. }
  1037. .dt_m_h_back {
  1038. padding: 12px 20px;
  1039. display: flex;
  1040. align-items: center;
  1041. justify-content: center;
  1042. font-size: 24px;
  1043. background-color: #f8f9fa;
  1044. border: 1px solid #e7e7e7;
  1045. border-radius: 4px;
  1046. top: calc(50% - 40px);
  1047. left: 0;
  1048. position: absolute;
  1049. cursor: pointer;
  1050. }
  1051. .dt_m_h_back > svg {
  1052. width: 25px;
  1053. height: 25px;
  1054. margin-right: 10px;
  1055. }
  1056. .dt_m_h_chapter {
  1057. font-size: 34px;
  1058. margin: 20px 0;
  1059. }
  1060. .dt_m_h_btn {
  1061. padding: 10px 20px;
  1062. display: flex;
  1063. justify-content: center;
  1064. align-items: center;
  1065. background-color: #fff;
  1066. border-radius: 5px;
  1067. font-size: 20px;
  1068. cursor: pointer;
  1069. }
  1070. .dt_m_box {
  1071. width: 100%;
  1072. height: calc(100% - 60px);
  1073. border-radius: 10px;
  1074. display: flex;
  1075. }
  1076. .dt_m_b_left {
  1077. width: calc(100% - 300px - 30px);
  1078. height: 100%;
  1079. box-sizing: border-box;
  1080. overflow: auto;
  1081. border-radius: 10px;
  1082. border: 1px solid #e7e7e7;
  1083. background-color: #ffffff;
  1084. display: flex;
  1085. flex-direction: column;
  1086. justify-content: space-between;
  1087. align-items: center;
  1088. }
  1089. .dt_m_b_l_head {
  1090. width: 100%;
  1091. height: 90px;
  1092. display: flex;
  1093. align-items: center;
  1094. justify-content: space-between;
  1095. box-sizing: border-box;
  1096. padding: 16px 32px;
  1097. background-color: #f8f9fa;
  1098. }
  1099. .dt_m_l_h_title {
  1100. font-size: 30px;
  1101. font-weight: bold;
  1102. max-width: calc(100% - 150px);
  1103. display: block;
  1104. white-space: nowrap;
  1105. overflow: hidden;
  1106. text-overflow: ellipsis;
  1107. }
  1108. .dt_m_l_h_changeChapter {
  1109. font-size: 24px;
  1110. color: #3681fc;
  1111. display: flex;
  1112. align-items: center;
  1113. justify-content: center;
  1114. cursor: pointer;
  1115. }
  1116. .dt_m_l_h_changeChapter > svg {
  1117. width: 24px;
  1118. height: 24px;
  1119. margin-right: 10px;
  1120. }
  1121. .dt_m_b_l_title {
  1122. font-size: 26px;
  1123. font-weight: bold;
  1124. margin: 20px 0;
  1125. }
  1126. .dt_m_b_right {
  1127. width: 300px;
  1128. margin-left: 30px;
  1129. height: 100%;
  1130. box-sizing: border-box;
  1131. }
  1132. .dt_m_b_r_time {
  1133. width: 100%;
  1134. height: 300px;
  1135. background-color: #fff;
  1136. padding: 20px;
  1137. display: flex;
  1138. flex-direction: column;
  1139. justify-content: flex-start;
  1140. align-items: center;
  1141. border-radius: 10px 10px 0 0;
  1142. box-sizing: border-box;
  1143. }
  1144. .dt_m_b_r_t_head {
  1145. width: 100%;
  1146. display: flex;
  1147. align-items: center;
  1148. justify-content: center;
  1149. }
  1150. .dt_m_b_r_t_head > svg {
  1151. width: 30px;
  1152. height: 30px;
  1153. margin-right: 10px;
  1154. }
  1155. .dt_m_b_r_t_head > span {
  1156. font-size: 24px;
  1157. font-weight: bold;
  1158. }
  1159. .dt_m_b_r_t_showTime {
  1160. width: 100%;
  1161. height: 80px;
  1162. display: flex;
  1163. align-items: center;
  1164. justify-content: center;
  1165. border-radius: 8px;
  1166. background-color: #f2f6fc;
  1167. margin-top: 10px;
  1168. }
  1169. .dt_m_b_r_t_showTime > span {
  1170. font-size: 2.6em;
  1171. font-weight: bold;
  1172. color: #0061ff;
  1173. }
  1174. .dt_m_b_r_t_schedule {
  1175. width: 100%;
  1176. height: 50px;
  1177. display: flex;
  1178. justify-content: center;
  1179. align-items: center;
  1180. margin-top: 10px;
  1181. }
  1182. .dt_m_b_r_t_btn {
  1183. width: 100%;
  1184. height: 60px;
  1185. border-radius: 8px;
  1186. margin-top: 10px;
  1187. background-color: #f0f2f5;
  1188. display: flex;
  1189. justify-content: center;
  1190. align-items: center;
  1191. font-size: 24px;
  1192. font-weight: bold;
  1193. cursor: pointer;
  1194. }
  1195. .dt_m_b_r_t_s_box {
  1196. width: 100%;
  1197. height: 8px;
  1198. border-radius: 5px;
  1199. background-color: #f0f2f5;
  1200. position: relative;
  1201. display: flex;
  1202. align-items: center;
  1203. }
  1204. .dt_m_b_r_t_s_b_inner {
  1205. height: 100%;
  1206. border-radius: 5px;
  1207. background-color: #3681fc;
  1208. }
  1209. .dt_m_b_r_t_s_b_round {
  1210. width: 15px;
  1211. height: 15px;
  1212. border-radius: 100%;
  1213. background-color: #3681fc;
  1214. position: absolute;
  1215. transform: translateX(-50%);
  1216. display: flex;
  1217. align-items: center;
  1218. justify-content: center;
  1219. }
  1220. .dt_m_b_r_t_s_b_round > span {
  1221. position: absolute;
  1222. top: -20px;
  1223. font-weight: bold;
  1224. color: #3681fc;
  1225. }
  1226. .dt_m_b_r_template {
  1227. width: 100%;
  1228. height: auto;
  1229. margin-bottom: 30px;
  1230. margin-top: 40px;
  1231. display: flex;
  1232. align-items: center;
  1233. }
  1234. .dt_m_b_r_template > div {
  1235. font-size: 26px;
  1236. display: flex;
  1237. align-items: center;
  1238. margin-right: 25px;
  1239. }
  1240. .dt_m_b_r_template > div > span {
  1241. width: 35px;
  1242. height: 35px;
  1243. display: flex;
  1244. margin-right: 10px;
  1245. border-radius: 8px;
  1246. border: solid 2px #325395;
  1247. box-sizing: border-box;
  1248. background-color: #fff;
  1249. }
  1250. .dt_m_b_r_template > div:nth-of-type(1) > span {
  1251. background-color: #dae3f5;
  1252. }
  1253. .dt_m_b_r_taskList {
  1254. width: 100%;
  1255. height: calc(100% - 400px);
  1256. overflow: auto;
  1257. margin: 20px 0;
  1258. box-sizing: border-box;
  1259. padding: 20px;
  1260. background-color: #fff;
  1261. }
  1262. .dt_m_b_r_tl_head {
  1263. width: 100%;
  1264. height: 80px;
  1265. display: flex;
  1266. align-items: center;
  1267. flex-direction: column;
  1268. justify-content: flex-start;
  1269. }
  1270. .dt_m_b_r_tl_head > div:nth-of-type(1) {
  1271. font-size: 24px;
  1272. font-weight: bold;
  1273. display: flex;
  1274. align-items: center;
  1275. }
  1276. .dt_m_b_r_tl_head > div:nth-of-type(1) > svg {
  1277. width: 25px;
  1278. height: 25px;
  1279. margin-right: 5px;
  1280. }
  1281. .dt_m_b_r_tl_head > div:nth-of-type(2) {
  1282. font-size: 18px;
  1283. margin-top: 15px;
  1284. color: #00000066;
  1285. }
  1286. .dt_m_b_r_tl_head > div:nth-of-type(2) > span {
  1287. margin: 0 5px;
  1288. }
  1289. .dt_m_b_r_tl_boxList {
  1290. width: 100%;
  1291. height: calc(100% - 60px - 80px - 20px);
  1292. margin: 10px 0;
  1293. box-sizing: border-box;
  1294. }
  1295. .dt_m_b_r_tl_boxList > span {
  1296. width: 35px;
  1297. height: 35px;
  1298. display: flex;
  1299. justify-content: center;
  1300. align-items: center;
  1301. margin-right: 5px;
  1302. background-color: #fff;
  1303. border-radius: 8px;
  1304. border: solid 2px #e7e7e7;
  1305. float: left;
  1306. margin: 0 6px;
  1307. margin-bottom: 10px;
  1308. cursor: pointer;
  1309. font-size: 18px;
  1310. /* font-weight: bold; */
  1311. }
  1312. .dt_m_b_r_tl_bottom {
  1313. width: 100%;
  1314. height: 60px;
  1315. box-sizing: border-box;
  1316. border-top: solid 1px #f0f2f5;
  1317. display: flex;
  1318. justify-content: space-around;
  1319. align-items: center;
  1320. }
  1321. .dt_m_b_r_tl_bottom > div {
  1322. display: flex;
  1323. align-items: center;
  1324. justify-content: center;
  1325. font-size: 18px;
  1326. }
  1327. .dt_m_b_r_tl_bottom > div > span {
  1328. width: 25px;
  1329. height: 25px;
  1330. margin-right: 5px;
  1331. background-color: #fff;
  1332. border-radius: 8px;
  1333. border: solid 2px #e7e7e7;
  1334. }
  1335. /* .dt_m_b_r_taskList > span {
  1336. width: 47px;
  1337. height: 47px;
  1338. margin-right: 12px;
  1339. border-radius: 8px;
  1340. border: solid 2px #325395;
  1341. box-sizing: border-box;
  1342. background-color: #fff;
  1343. display: flex;
  1344. justify-content: center;
  1345. align-items: center;
  1346. float: left;
  1347. margin-bottom: 10px;
  1348. cursor: pointer;
  1349. font-size: 20px;
  1350. font-weight: bold;
  1351. transition: 0.3s;
  1352. } */
  1353. .isDoTask {
  1354. background-color: #e0eafb !important;
  1355. border-color: #aeccfe !important;
  1356. color: #3681fc !important;
  1357. }
  1358. .inDoTask {
  1359. background-color: #3681fc !important;
  1360. border-color: #0061ff !important;
  1361. color: #fff !important;
  1362. }
  1363. .dt_m_b_r_bottom {
  1364. width: 100%;
  1365. height: 60px;
  1366. margin-top: 10px;
  1367. display: flex;
  1368. justify-content: center;
  1369. align-items: center;
  1370. }
  1371. .dt_m_b_r_bottom > div {
  1372. width: 100%;
  1373. height: 100%;
  1374. display: flex;
  1375. justify-content: center;
  1376. align-items: center;
  1377. color: #3681fc;
  1378. font-size: 24px;
  1379. font-weight: bold;
  1380. border-radius: 10px;
  1381. box-sizing: border-box;
  1382. border: solid 2px #3681fc;
  1383. background-color: #fff;
  1384. cursor: pointer;
  1385. }
  1386. .dt_m_b_l_task {
  1387. width: 100%;
  1388. height: calc(100% - 170px);
  1389. overflow: auto;
  1390. box-sizing: border-box;
  1391. box-sizing: border-box;
  1392. padding: 30px 40px;
  1393. }
  1394. .dt_m_b_l_t_cl_item {
  1395. font-size: 24px;
  1396. display: flex;
  1397. width: 100%;
  1398. height: auto;
  1399. align-items: flex-start;
  1400. margin: 20px 0;
  1401. background-color: #f2f6fc;
  1402. padding: 15px 25px;
  1403. border-radius: 8px;
  1404. box-sizing: border-box;
  1405. cursor: pointer;
  1406. border: 2px solid #e7e7e7;
  1407. transition: 0.2s;
  1408. }
  1409. .dt_m_b_l_t_cl_item > div {
  1410. min-width: 20px;
  1411. min-height: 20px;
  1412. width: 20px;
  1413. height: 20px;
  1414. box-sizing: border-box;
  1415. border-radius: 100%;
  1416. margin-right: 10px;
  1417. border: solid 2px #3681fc;
  1418. cursor: pointer;
  1419. display: flex;
  1420. justify-content: center;
  1421. align-items: center;
  1422. position: relative;
  1423. top: 3px;
  1424. }
  1425. .dt_m_b_l_t_cl_item > div > span {
  1426. width: 12px;
  1427. height: 12px;
  1428. border-radius: 100%;
  1429. display: none;
  1430. background-color: #3681fc;
  1431. }
  1432. .dt_m_b_l_t_cl_itemActive > div > span {
  1433. display: flex;
  1434. }
  1435. .dt_m_b_l_t_cl_itemActive {
  1436. border-color: #3681fc;
  1437. }
  1438. .dt_m_b_l_t_cl_itemActive > span {
  1439. color: #3681fc;
  1440. }
  1441. .dt_m_b_l_t_cl_item > span {
  1442. display: flex;
  1443. align-items: flex-start;
  1444. justify-content: center;
  1445. cursor: pointer;
  1446. word-break: break-all;
  1447. float: left;
  1448. }
  1449. .dt_m_b_l_t_cl_item > span > img {
  1450. max-width: 300px;
  1451. cursor: pointer;
  1452. }
  1453. .dt_m_b_l_t_cl_item > span > span {
  1454. margin-left: 3px;
  1455. }
  1456. .dt_m_b_l_t_title {
  1457. font-size: 24px;
  1458. height: auto;
  1459. width: 100%;
  1460. }
  1461. .dt_m_b_l_t_title > span {
  1462. font-weight: bold;
  1463. margin-left: -10px;
  1464. }
  1465. .dt_m_b_l_t_choseList {
  1466. width: 100%;
  1467. height: auto;
  1468. margin: 20px 0;
  1469. }
  1470. .dt_m_b_l_bottom {
  1471. width: 100%;
  1472. height: 90px;
  1473. display: flex;
  1474. align-items: center;
  1475. background-color: #f8f9fa;
  1476. border-top: 1px solid #f0f2f5;
  1477. justify-content: space-between;
  1478. padding: 16px 32px;
  1479. box-sizing: border-box;
  1480. overflow: auto;
  1481. }
  1482. .dt_m_b_l_b_seekAssist {
  1483. display: flex;
  1484. align-items: center;
  1485. justify-content: center;
  1486. cursor: pointer;
  1487. white-space: nowrap;
  1488. z-index: 3;
  1489. }
  1490. .dt_m_b_l_b_seekAssist > svg {
  1491. width: 30px;
  1492. height: 30px;
  1493. margin-right: 10px;
  1494. }
  1495. .dt_m_b_l_b_seekAssist > span {
  1496. font-size: 24px;
  1497. text-decoration: underline;
  1498. }
  1499. .dt_m_b_l_b_btnArea {
  1500. width: auto;
  1501. height: 100%;
  1502. display: flex;
  1503. align-items: center;
  1504. justify-content: center;
  1505. }
  1506. .dt_m_b_l_b_btnArea > span {
  1507. display: flex;
  1508. justify-content: center;
  1509. align-items: center;
  1510. justify-content: center;
  1511. padding: 15px 70px;
  1512. border-radius: 10px;
  1513. font-size: 20px;
  1514. cursor: pointer;
  1515. margin-left: 20px;
  1516. background-color: #fff;
  1517. white-space: nowrap;
  1518. z-index: 3;
  1519. }
  1520. .dt_m_b_l_b_ba_btnPrev {
  1521. background-color: #e0eafb !important;
  1522. color: #3681fc;
  1523. }
  1524. .dt_m_b_l_b_ba_btnNext {
  1525. background-color: #3681fc !important;
  1526. color: white;
  1527. }
  1528. .dt_isSubmit {
  1529. width: 70%;
  1530. margin: auto;
  1531. min-width: 1000px;
  1532. height: 100%;
  1533. background-color: #fff;
  1534. overflow: auto;
  1535. box-sizing: border-box;
  1536. padding: 30px 50px;
  1537. }
  1538. .dt_is_statistics {
  1539. width: 100%;
  1540. height: auto;
  1541. display: flex;
  1542. flex-direction: column;
  1543. justify-content: center;
  1544. align-items: center;
  1545. }
  1546. .dt_is_statistics > img {
  1547. width: 180px;
  1548. height: 180px;
  1549. margin-bottom: -30px;
  1550. }
  1551. .dt_is_s_star {
  1552. transform: scale(1.4, 1.4);
  1553. }
  1554. .dt_is_s_message {
  1555. width: 100%;
  1556. display: flex;
  1557. justify-content: center;
  1558. align-items: center;
  1559. margin-top: 40px;
  1560. }
  1561. .dt_is_s_message > span {
  1562. margin: 0 40px;
  1563. font-size: 24px;
  1564. }
  1565. .dt_is_s_taskList {
  1566. max-width: 70%;
  1567. width: auto;
  1568. height: auto;
  1569. margin-top: 30px;
  1570. }
  1571. .dt_is_s_taskList > span {
  1572. width: 47px;
  1573. height: 47px;
  1574. margin-right: 12px;
  1575. border-radius: 8px;
  1576. border: solid 2px #325395;
  1577. box-sizing: border-box;
  1578. background-color: #fff;
  1579. display: flex;
  1580. justify-content: center;
  1581. align-items: center;
  1582. float: left;
  1583. margin-bottom: 10px;
  1584. cursor: pointer;
  1585. font-size: 22px;
  1586. font-weight: bold;
  1587. transition: 0.3s;
  1588. }
  1589. .isDoYes {
  1590. background-color: #c8e5b3 !important;
  1591. border-color: #c8e5b3 !important;
  1592. }
  1593. .isDoNo {
  1594. background-color: #f5b7bf !important;
  1595. border-color: #f5b7bf !important;
  1596. }
  1597. .isNoDo {
  1598. background-color: #f5b7bf !important;
  1599. border-color: #f5b7bf !important;
  1600. }
  1601. .dt_is_taskList {
  1602. width: 100%;
  1603. height: auto;
  1604. }
  1605. .dt_is_tl_head {
  1606. width: 100%;
  1607. height: 50px;
  1608. display: flex;
  1609. align-items: center;
  1610. justify-content: space-between;
  1611. }
  1612. .dt_is_tl_head > span {
  1613. font-size: 24px;
  1614. font-weight: bold;
  1615. }
  1616. .dt_is_tl_head > div {
  1617. display: flex;
  1618. align-items: center;
  1619. justify-content: center;
  1620. }
  1621. .dt_is_tl_head > div > span {
  1622. font-size: 20px;
  1623. margin-right: 10px;
  1624. }
  1625. .dt_is_tl_taskBox {
  1626. width: 100%;
  1627. height: auto;
  1628. margin: 20px 0;
  1629. box-sizing: border-box;
  1630. border: solid 1px #f2f2f2;
  1631. padding: 10px;
  1632. }
  1633. .dt_is_tl_tb_item {
  1634. width: 100%;
  1635. height: auto;
  1636. padding: 20px 0 30px 0;
  1637. /* border-bottom: solid 1px black; */
  1638. }
  1639. .dt_is_tl_tb_i_title {
  1640. font-size: 24px;
  1641. }
  1642. .dt_is_tl_tb_i_choseList {
  1643. width: 100%;
  1644. height: auto;
  1645. margin-top: 20px;
  1646. display: flex;
  1647. flex-direction: column;
  1648. align-items: flex-start;
  1649. padding: 0 10px;
  1650. }
  1651. .dt_is_tl_tb_i_choseList > span {
  1652. margin-bottom: 20px;
  1653. font-size: 20px;
  1654. display: flex;
  1655. text-align: start;
  1656. cursor: default;
  1657. word-break: break-all;
  1658. float: left;
  1659. }
  1660. .dt_is_tl_tb_i_choseList > span > span {
  1661. display: flex;
  1662. align-items: flex-start;
  1663. justify-content: flex-start;
  1664. cursor: pointer;
  1665. word-break: break-all;
  1666. float: left;
  1667. }
  1668. .dt_is_tl_tb_i_choseList > span > span > img {
  1669. max-width: 60%;
  1670. }
  1671. .dt_is_tl_tb_i_answer {
  1672. font-size: 20px;
  1673. box-sizing: border-box;
  1674. padding-left: 10px;
  1675. }
  1676. .dt_is_tl_tb_i_answer > div {
  1677. margin-bottom: 10px;
  1678. }
  1679. .dt_dialogBackground {
  1680. width: 100vw;
  1681. height: 100vh;
  1682. background: linear-gradient(
  1683. 180deg,
  1684. rgba(32, 51, 80, 0) 0%,
  1685. rgba(73, 116, 182, 0.6) 100%
  1686. );
  1687. position: fixed;
  1688. top: 0;
  1689. left: 0;
  1690. }
  1691. .dt_character {
  1692. position: fixed;
  1693. bottom: 0;
  1694. left: 1%;
  1695. z-index: 1;
  1696. }
  1697. .dt_character > img {
  1698. width: 500px;
  1699. z-index: 2;
  1700. bottom: -43px;
  1701. position: absolute;
  1702. }
  1703. .dt_c_message {
  1704. width: 70vw;
  1705. min-width: 1000px;
  1706. height: 200px;
  1707. position: absolute;
  1708. left: 300px;
  1709. bottom: 20px;
  1710. background: linear-gradient(180deg, #fafcff 0%, #e7eefe 100%);
  1711. border-radius: 6px;
  1712. padding: 32px 24px 24px 24px;
  1713. box-sizing: border-box;
  1714. position: relative;
  1715. z-index: 5;
  1716. }
  1717. .dt_c_m_characterName {
  1718. padding: 10px 15px;
  1719. background-color: #3681fc;
  1720. border-radius: 6px;
  1721. color: white;
  1722. font-weight: bold;
  1723. font-size: 20px;
  1724. position: absolute;
  1725. left: -20px;
  1726. top: -20px;
  1727. }
  1728. .dt_c_m_closeIcon {
  1729. width: 25px;
  1730. height: 25px;
  1731. position: absolute;
  1732. right: 10px;
  1733. top: 10px;
  1734. }
  1735. .dt_c_m_closeIcon>svg{
  1736. width: 100%;
  1737. height: 100%;
  1738. cursor: pointer;
  1739. }
  1740. .dt_is_tl_tb_i_analyze {
  1741. font-size: 20px;
  1742. box-sizing: border-box;
  1743. margin-top: 20px;
  1744. padding-left: 10px;
  1745. }
  1746. .dt_c_m_message {
  1747. max-width: 100%;
  1748. font-size: 24px;
  1749. padding: 10px 30px;
  1750. }
  1751. .dt_c_m_message > span {
  1752. font-weight: bold;
  1753. }
  1754. .dt_c_m_btnArea {
  1755. position: absolute;
  1756. bottom: 30px;
  1757. right: 30px;
  1758. width: 100%;
  1759. height: auto;
  1760. display: flex;
  1761. justify-content: flex-end;
  1762. align-items: center;
  1763. }
  1764. .dt_c_m_btnArea > span {
  1765. padding: 12px 30px;
  1766. border-radius: 8px;
  1767. font-size: 18px;
  1768. cursor: pointer;
  1769. margin-left: 20px;
  1770. cursor: pointer;
  1771. background-color: #fdfeff;
  1772. box-sizing: border-box;
  1773. }
  1774. .dt_c_m_btn1{
  1775. color: #00000099;
  1776. }
  1777. .dt_c_m_btn2{
  1778. background-color: #3681FC !important;
  1779. color: #fff;
  1780. padding: 12px 40px !important;
  1781. }
  1782. </style>