123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492 |
- <template>
- <div class="course-exam">
- <Header></Header>
- <section class="section">
- <div class="container">
- <div class="section__header">
- <!-- <el-breadcrumb separator="/">
- <el-breadcrumb-item
- v-for="(item, index) in $route.matched"
- :key="index"
- :to="{ path: item.path }"
- >{{ item.name }}</el-breadcrumb-item
- >
- </el-breadcrumb> -->
- </div>
- <div class="section__body">
- <div class="explain-record">
- <div class="explain-record__body clearfix">
- <div class="left-box">
- <Header-tab-box
- :num="questionOverNum(true)"
- :allNum="questionList.length"
- @prevQuestion="prevQuestion"
- @nextQuestion="nextQuestion"
- >
- </Header-tab-box>
- <div class="left-box__body">
- <template v-for="(question, questionIndex) in questionList">
- <div
- class="question"
- v-if="question.type == 1 && current == questionIndex"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ questionIndex + 1 }}、单选题
- </div>
- <div
- class="question__desc"
- v-html="question.content"
- ></div>
- <div class="question__content">
- <div class="question-list" v-if="!question.ques">
- <div
- class="radio"
- v-for="(item, index) in question.jsonStr"
- :key="index"
- @click="
- radioSelect(
- question,
- questionIndex,
- item.optionsId
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div class="question-list" v-if="question.ques">
- <div
- class="radio"
- :class="{
- right:
- bankType == 1 &&
- (item.optionsId == question.ques ||
- item.optionsId == question.ans),
- wrong:
- bankType == 1 &&
- item.optionsId == question.ques &&
- question.ques != question.ans,
- user_choose:
- bankType == 2 && item.optionsId == question.ques
- }"
- v-for="(item, index) in question.jsonStr"
- :key="index"
- @click="
- radioSelect(
- question,
- questionIndex,
- item.optionsId
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="answer-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="answer-list__left">
- 题目答案:{{ ast[question.ans - 1] }}
- </div>
- <div class="answer-list__left">
- 我的答案:{{ ast[question.ques - 1] }}
- </div>
- </div>
- <div
- class="explain-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="explain-list__header">答案解析:</div>
- <div
- class="explain-list__body"
- v-html="question.analysisContent"
- ></div>
- </div>
- </div>
- </div>
- <div
- class="question"
- v-if="question.type == 2 && current == questionIndex"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ questionIndex + 1 }}、多选题
- </div>
- <div
- class="question__desc"
- v-html="question.content"
- ></div>
- <div class="question__content">
- <div class="question-list" v-if="!question.ques">
- <el-checkbox
- class="checkbox"
- v-for="(item, index) in question.jsonStr"
- :key="index"
- :label="item.optionsId"
- v-model="item.checked"
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </el-checkbox>
- </div>
- <div class="question-list" v-if="question.ques">
- <el-checkbox
- :disabled="bankType == 2 ? false : true"
- class="checkbox"
- :class="{
- right:
- bankType == 1 &&
- (question.ques.indexOf(item.optionsId) != -1 ||
- question.ans.indexOf(item.optionsId) != -1),
- wrong:
- bankType == 1 &&
- question.ques.indexOf(item.optionsId) != -1 &&
- question.ans.indexOf(item.optionsId) == -1,
- user_choose:
- bankType == 2 &&
- question.ques.indexOf(item.optionsId) != -1
- }"
- v-for="(item, index) in question.jsonStr"
- :key="index"
- :label="item.optionsId"
- v-model="item.checked"
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </el-checkbox>
- </div>
- <div
- class="answer-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="answer-list__left">
- 题目答案:
- <template v-for="ansItem in question.ans">{{
- ast[ansItem - 1]
- }}</template>
- </div>
- <div class="answer-list__left">
- 我的答案:
- <template v-for="quesItem in question.ques">{{
- ast[quesItem - 1]
- }}</template>
- </div>
- </div>
- <div
- class="explain-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="explain-list__header">答案解析:</div>
- <div
- class="explain-list__body"
- v-html="question.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns">
- <div
- v-if="
- bankType == 2 || (bankType == 1 && !question.ques)
- "
- class="submit"
- @click="checkboxSubmit(question, questionIndex)"
- >
- 确认答案
- </div>
- </div>
- </div>
- <div
- class="question"
- v-if="question.type == 3 && current == questionIndex"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ questionIndex + 1 }}、判断题
- </div>
- <div
- class="question__desc"
- v-html="question.content"
- ></div>
- <div class="question__content">
- <div class="question-list" v-if="!question.ques">
- <div
- class="radio"
- v-for="(item, index) in judge"
- :key="index"
- @click="judgeSelect(question, questionIndex, index)"
- >
- <div>
- {{ ast[index] }}. {{ item }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div class="question-list" v-if="question.ques">
- <!-- right:
- bankType == 1 && (index == question.ques || index == question.ans),
- wrong:
- bankType == 1 && (index == question.ques &&
- question.ques != question.ans),
- user_choose: bankType == 2 && (index == question.ques), -->
- <div
- class="radio"
- :class="{
- right:
- bankType == 1 &&
- (index == (question.ques == 1 ? 0 : 1) ||
- index != question.ans),
- wrong:
- bankType == 1 &&
- index == (question.ques == 1 ? 0 : 1) &&
- question.ques != question.ans,
- user_choose:
- bankType == 2 &&
- index == (question.ques == 1 ? 0 : 1)
- }"
- v-for="(item, index) in judge"
- :key="index"
- @click="judgeSelect(question, questionIndex, index)"
- >
- <div>
- {{ ast[index] }}. {{ item }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(item.imgUrl)"
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="answer-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="answer-list__left">
- 题目答案:{{ ast[question.ans == 1 ? 0 : 1] }}
- </div>
- <div class="answer-list__left">
- 我的答案:{{ ast[question.ques == 1 ? 0 : 1] }}
- </div>
- </div>
- <div
- class="explain-list"
- v-if="bankType == 1 && question.ques"
- >
- <div class="explain-list__header">答案解析:</div>
- <div
- class="explain-list__body"
- v-html="question.analysisContent"
- ></div>
- </div>
- </div>
- </div>
- <div
- class="question"
- v-if="question.type == 4 && current == questionIndex"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ questionIndex + 1 }}、案例题
- </div>
- <div
- class="question__desc"
- v-html="question.content"
- ></div>
- <div class="question__content">
- <el-tabs v-model="question.tabIndex">
- <el-tab-pane
- v-for="(json, jsonIndex) in question.jsonStr"
- :label="'问题' + (jsonIndex + 1)"
- :name="jsonIndex + ''"
- :key="jsonIndex"
- >
- <div
- class="question"
- v-if="json.type == 1"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ jsonIndex + 1 }}、单选题
- </div>
- <div
- class="question__desc"
- v-html="json.content"
- ></div>
- <div class="question__content">
- <div
- class="question-list"
- v-if="!question.ques[jsonIndex]"
- >
- <div
- class="radio"
- v-for="(item, index) in json.optionsList"
- :key="index"
- @click="
- radioSelectChild(
- questionIndex,
- jsonIndex,
- item.optionsId
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="question-list"
- v-if="question.ques[jsonIndex]"
- >
- <div
- class="radio"
- :class="{
- right:
- bankType == 1 &&
- (item.optionsId ==
- question.ques[jsonIndex] ||
- item.optionsId ==
- question.ans[jsonIndex]),
- wrong:
- bankType == 1 &&
- item.optionsId ==
- question.ques[jsonIndex] &&
- question.ques[jsonIndex] !=
- question.ans[jsonIndex],
- user_choose:
- bankType == 2 &&
- item.optionsId ==
- question.ques[jsonIndex]
- }"
- v-for="(item, index) in json.optionsList"
- :key="index"
- @click="
- radioSelectChild(
- questionIndex,
- jsonIndex,
- item.optionsId
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="answer-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="answer-list__left">
- 题目答案:{{
- ast[question.ans[jsonIndex] - 1]
- }}
- </div>
- <div class="answer-list__left">
- 我的答案:{{
- ast[question.ques[jsonIndex] - 1]
- }}
- </div>
- </div>
- <div
- class="explain-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="explain-list__header">
- 答案解析:
- </div>
- <div
- class="explain-list__body"
- v-html="json.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns"></div>
- </div>
- <div
- class="question"
- v-if="json.type == 2"
- :key="jsonIndex"
- >
- <div class="question__title">
- {{ jsonIndex + 1 }}、多选题
- </div>
- <div
- class="question__desc"
- v-html="json.content"
- ></div>
- <div class="question__content">
- <div
- class="question-list"
- v-if="!question.ques[jsonIndex]"
- >
- <el-checkbox
- class="checkbox"
- v-for="(item, index) in json.optionsList"
- :key="index"
- :label="item.optionsId"
- v-model="item.checked"
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </el-checkbox>
- </div>
- <div
- class="question-list"
- v-if="question.ques[jsonIndex]"
- >
- <el-checkbox
- :disabled="bankType == 2 ? false : true"
- class="checkbox"
- :class="{
- right:
- bankType == 1 &&
- (question.ques[jsonIndex].indexOf(
- item.optionsId
- ) != -1 ||
- question.ans[jsonIndex].indexOf(
- item.optionsId
- ) != -1),
- wrong:
- bankType == 1 &&
- question.ques[jsonIndex].indexOf(
- item.optionsId
- ) != -1 &&
- question.ans[jsonIndex].indexOf(
- item.optionsId
- ) == -1,
- user_choose:
- bankType == 2 &&
- question.ques[jsonIndex].indexOf(
- item.optionsId
- ) != -1
- }"
- v-for="(item, index) in json.optionsList"
- :key="index"
- :label="item.optionsId"
- v-model="item.checked"
- >
- <div>
- {{ ast[index] }}. {{ item.content }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </el-checkbox>
- </div>
- <div
- class="answer-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="answer-list__left">
- 题目答案:
- <template
- v-for="ansItem in question.ans[jsonIndex]"
- >{{ ast[ansItem - 1] }}</template
- >
- </div>
- <div class="answer-list__left">
- 我的答案:
- <template
- v-for="quesItem in question.ques[
- jsonIndex
- ]"
- >{{ ast[quesItem - 1] }}</template
- >
- </div>
- </div>
- <div
- class="explain-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="explain-list__header">
- 答案解析:
- </div>
- <div
- class="explain-list__body"
- v-html="json.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns">
- <div
- v-if="
- bankType == 2 ||
- (bankType == 1 &&
- !question.ques[jsonIndex])
- "
- class="submit"
- @click="
- checkboxSubmitChild(
- questionIndex,
- jsonIndex
- )
- "
- >
- 确认答案
- </div>
- </div>
- </div>
- <div
- class="question"
- v-if="json.type == 3"
- :key="jsonIndex"
- >
- <div class="question__title">
- {{ jsonIndex + 1 }}、判断题
- </div>
- <div
- class="question__desc"
- v-html="json.content"
- ></div>
- <div class="question__content">
- <div
- class="question-list"
- v-if="!question.ques[jsonIndex]"
- >
- <div
- class="radio"
- v-for="(item, index) in judge"
- :key="index"
- @click="
- judgeSelectChild(
- questionIndex,
- jsonIndex,
- index
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="question-list"
- v-if="question.ques[jsonIndex]"
- >
- <!-- right:
- bankType == 1 && (index == question.ques[jsonIndex] ||
- index == question.ans[jsonIndex]),
- wrong:
- bankType == 1 &&
- index == question.ques[jsonIndex] &&
- question.ques[jsonIndex] !=
- question.ans[jsonIndex]),
- user_choose: bankType == 2 && (index == question.ques[jsonIndex]), -->
- <div
- class="radio"
- :class="{
- right:
- bankType == 1 &&
- (index ==
- (question.ques[jsonIndex] == 1
- ? 0
- : 1) ||
- index != question.ans[jsonIndex]),
- wrong:
- bankType == 1 &&
- index ==
- (question.ques[jsonIndex] == 1
- ? 0
- : 1) &&
- question.ques[jsonIndex] !=
- question.ans[jsonIndex],
- user_choose:
- bankType == 2 &&
- index ==
- (question.ques[jsonIndex] == 1
- ? 0
- : 1)
- }"
- v-for="(item, index) in judge"
- :key="index"
- @click="
- judgeSelectChild(
- questionIndex,
- jsonIndex,
- index
- )
- "
- >
- <div>
- {{ ast[index] }}. {{ item }}
- <div v-if="item.imgUrl">
- <img
- style="max-width: 100%"
- :src="
- $tools.splitImgHost(item.imgUrl)
- "
- alt=""
- />
- </div>
- </div>
- </div>
- </div>
- <div
- class="answer-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="answer-list__left">
- 题目答案:{{ ast[question.ans[jsonIndex]] }}
- </div>
- <div class="answer-list__left">
- 我的答案:{{
- ast[question.ques[jsonIndex]]
- }}
- </div>
- </div>
- <div
- class="explain-list"
- v-if="
- bankType == 1 && question.ques[jsonIndex]
- "
- >
- <div class="explain-list__header">
- 答案解析:
- </div>
- <div
- class="explain-list__body"
- v-html="json.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns"></div>
- </div>
- <div
- class="question"
- v-if="json.type == 5"
- :key="jsonIndex"
- >
- <div class="question__title">
- {{ jsonIndex + 1 }}、简答题
- </div>
- <div
- class="question__desc"
- v-html="json.content"
- ></div>
- <div class="question__content">
- <div
- class="question-list textarea"
- v-if="
- bankType == 2 ||
- (bankType == 1 &&
- !(
- question.ques[jsonIndex] &&
- (question.ques[jsonIndex].imageList
- .length ||
- question.ques[jsonIndex].text)
- ))
- "
- >
- <el-input
- type="textarea"
- rows="5"
- v-model="json.ansText.text"
- resize="none"
- >
- </el-input>
- <div class="upload clearfix">
- <div
- class="upload__imgs"
- v-for="(img, imgIndex) in json.ansText
- .imageList"
- :key="imgIndex"
- >
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(img, true)"
- alt=""
- />
- </div>
- <div class="upload__btn">
- <i class="el-icon-plus icon"></i>
- <p>上传图片</p>
- <input
- @change="
- uploadImgChild(
- $event,
- questionIndex,
- jsonIndex
- )
- "
- type="file"
- />
- </div>
- </div>
- </div>
- <div
- class="explain-list"
- v-if="
- bankType == 1 &&
- question.ques[jsonIndex] &&
- (question.ques[jsonIndex].imageList
- .length ||
- question.ques[jsonIndex].text)
- "
- >
- <div class="explain-list__header">
- 我的答案:
- </div>
- <div class="explain-list__body">
- <div>
- {{ question.ques[jsonIndex].text }}
- </div>
- <div class="upload clearfix">
- <div
- class="upload__imgs"
- v-for="(img, imgIndex) in question.ques[
- jsonIndex
- ].imageList"
- :key="imgIndex"
- >
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(img, true)"
- alt=""
- />
- </div>
- </div>
- </div>
- <div class="explain-list__header">
- 答案解析:
- </div>
- <div
- class="explain-list__body"
- v-html="question.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns">
- <div
- v-if="
- bankType == 2 ||
- (bankType == 1 &&
- !(
- question.ques[jsonIndex] &&
- (question.ques[jsonIndex].imageList
- .length ||
- question.ques[jsonIndex].text)
- ))
- "
- class="submit"
- @click="
- ansSubmitChild(
- question,
- questionIndex,
- jsonIndex
- )
- "
- >
- 确认答案
- </div>
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- </div>
- <div
- class="question"
- v-if="question.type == 5 && current == questionIndex"
- :key="questionIndex"
- >
- <div class="question__title">
- {{ questionIndex + 1 }}、简答题
- </div>
- <div
- class="question__desc"
- v-html="question.content"
- ></div>
- <div class="question__content">
- <div
- class="question-list textarea"
- v-if="
- bankType == 2 ||
- (bankType == 1 &&
- !question.ques.imageList.length &&
- !question.ques.text)
- "
- >
- <el-input
- type="textarea"
- rows="5"
- v-model="question.ansText.text"
- resize="none"
- ></el-input>
- <div class="upload clearfix">
- <div
- class="upload__imgs"
- v-for="(img, imgIndex) in question.ansText
- .imageList"
- :key="imgIndex"
- >
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(img, true)"
- alt=""
- />
- </div>
- <div class="upload__btn">
- <i class="el-icon-plus icon"></i>
- <p>上传图片</p>
- <input
- @change="
- uploadImg($event, question, questionIndex)
- "
- type="file"
- />
- </div>
- </div>
- </div>
- <div
- class="explain-list"
- v-if="
- bankType == 1 &&
- (question.ques.imageList.length ||
- question.ques.text)
- "
- >
- <div class="explain-list__header">我的答案:</div>
- <div class="explain-list__body">
- <div>{{ question.ques.text }}</div>
- <div class="upload clearfix">
- <div
- class="upload__imgs"
- v-for="(img, imgIndex) in question.ques
- .imageList"
- :key="imgIndex"
- >
- <img
- style="max-width: 100%"
- :src="$tools.splitImgHost(img, true)"
- alt=""
- />
- </div>
- </div>
- </div>
- <div class="explain-list__header">答案解析:</div>
- <div
- class="explain-list__body"
- v-html="question.analysisContent"
- ></div>
- </div>
- </div>
- <div class="question__btns">
- <div
- v-if="
- bankType == 2 ||
- (bankType == 1 &&
- !question.ques.imageList.length &&
- !question.ques.text)
- "
- class="submit"
- @click="ansSubmit(question, questionIndex)"
- >
- 确认答案
- </div>
- </div>
- </div>
- </template>
- </div>
- <Collection-box
- :param="param"
- @sumit="getCollectInfo(current)"
- :showT="!collectList[current]"
- >
- </Collection-box>
- </div>
- <div class="right-box">
- <div class="right-box__header">
- <el-button
- type="primary"
- round
- plain
- size="small"
- class="back-btn"
- @click="$router.back(-1)"
- >返回
- </el-button>
- </div>
- <div class="right-box__footer">
- <el-button
- type="primary"
- :loading="loading"
- class="submit"
- @click="submit"
- >交卷</el-button
- >
- </div>
- <div class="right-box__header">
- <div class="title">答题卡</div>
- <div class="time" v-if="allTimes">
- {{ countdown(lastTime) }}
- </div>
- </div>
- <div class="right-box__body">
- <div class="card">
- <div class="card__note">
- <div class="item">
- <div class="box green"></div>
- 正确
- </div>
- <div class="item">
- <div class="box red"></div>
- 错误
- </div>
- <div class="item">
- <div class="box blue"></div>
- 已做未评改
- </div>
- <div class="item">
- <div class="box yellow"></div>
- 少选
- </div>
- <div class="item">
- <div class="box white"></div>
- 未做
- </div>
- </div>
- <div class="card__content">
- <ul class="list">
- <li
- class="item white"
- v-for="(item, index) in questionList"
- :key="index"
- :class="{
- green: bankType == 1 && isRight(item, index),
- red: bankType == 1 && isWrong(item, index),
- yellow: bankType == 1 && isPart(item, index),
- blue: bankType == 1 && isOver(item, index),
- check_ans: bankType == 2 && isCheck(item, index)
- }"
- @click="changeIndex(index)"
- >
- {{ index + 1 }}
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- <ToolBar></ToolBar>
- <Footer></Footer>
- </div>
- </template>
- <script>
- import Footer from "@/components/footer/index";
- import Header from "@/components/header/index";
- import ToolBar from "@/components/toolbar/index";
- import CollectionBox from "@/components/common/CollectionBox.vue";
- import HeaderTabBox from "../../components/exam/HeaderTabBox.vue";
- import { mapMutations } from "vuex";
- export default {
- name: "BankExplain",
- components: {
- Footer,
- Header,
- ToolBar,
- CollectionBox,
- HeaderTabBox
- },
- data() {
- return {
- recordId: 0,
- tabIndex: "1",
- textarea: "",
- questionIndex: 0,
- checked: false,
- activeName: "1",
- questionList: [],
- goodsExamConfig: [],
- goodsDetail: {},
- bankList: [],
- judge: ["正确", "错误"],
- ast: [
- "A",
- "B",
- "C",
- "D",
- "E",
- "F",
- "G",
- "H",
- "I",
- "J",
- "K",
- "L",
- "M",
- "N",
- "O",
- "P",
- "Q",
- "R",
- "S",
- "T",
- "U",
- "V",
- "W",
- "X",
- "Y",
- "Z"
- ],
- mustBack: false,
- loading: false,
- needPhoto: false,
- lastTime: 0, //剩余考试时长
- allTimes: 0, //总考试时长
- lastCount: 0,
- examId: 0,
- goodsId: 0,
- moduleId: 0,
- chapterId: 0,
- current: 0,
- bankType: 0,
- timer: null,
- orderGoodsId: "",
- collectList: [],
- isSubmit: false,
- postTimer: null,
- number: "",
- simulateExamId: ""
- };
- },
- async mounted() {
- this.orderGoodsId = this.$route.query.orderGoodsId || "";
- this.current = +this.$route.query.current || 0;
- this.goodsId = this.$route.params.goodsId;
- this.number = this.$route.query.number;
- this.examId = this.$route.query.examId;
- this.moduleId = this.$route.query.moduleId;
- this.chapterId = this.$route.query.chapterId;
- (this.simulateStatus = parseInt(this.$route.query.simulateStatus)),
- await this.bankExam();
- if (!this.number) {
- this.goodsQuestionList();
- } else {
- // 随机练习
- this.goodsExamRandomList();
- }
- },
- beforeDestroy() {
- clearInterval(this.postTimer);
- clearInterval(this.timer);
- try {
- this.$msgbox.close();
- } catch (err) {}
- },
- beforeRouteLeave(to, from, next) {
- if (this.mustBack) {
- next();
- } else {
- if (this.isSubmit) {
- //交卷
- next();
- } else {
- //离开
- if (this.bankType == 1) {
- console.log(1);
- let ansCount = this.questionOverNum(true); //已答题数
- this.lastCount = this.questionList.length - ansCount; //统计未答完的题数
- //所有题目答完
- if (this.lastCount == 0) {
- // this.testOver = true;
- this.$nextTick(() => {
- this.$confirm("您还未交卷,确定结束做题吗?", "温馨提示", {
- confirmButtonText: "结束做题",
- cancelButtonText: "下次继续",
- type: "warning"
- })
- .then(() => {
- this.examSubmit();
- })
- .catch(() => {
- this.examRecordEdit();
- next();
- });
- });
- //未答完
- } else {
- this.$nextTick(() => {
- this.$confirm(
- `您还有${this.lastCount}道题未作答, 现在继续作答,还是下次继续?`,
- "温馨提示",
- {
- confirmButtonText: "继续作答",
- cancelButtonText: "下次继续",
- type: "warning"
- }
- )
- .then(() => {
- // confirmButton回调
- })
- .catch(() => {
- this.examRecordEdit();
- next();
- });
- });
- // this.isLastCount = true;
- }
- } else if (this.bankType == 2) {
- console.log(2);
- let ansCount = this.questionOverNum(true); //已答题数
- this.lastCount = this.questionList.length - ansCount; //统计未答完的题数
- //所有题目答完
- if (this.lastCount == 0) {
- this.$nextTick(() => {
- this.$confirm(`您已完成所有题目,快去交卷吧!`, "温馨提示", {
- confirmButtonText: "立即交卷",
- cancelButtonText: "暂不交卷",
- type: "warning"
- })
- .then(() => {
- // confirmButton回调
- this.examSubmit();
- next();
- })
- .catch(() => {});
- });
- //未答完
- } else {
- this.$nextTick(() => {
- this.$confirm(
- `您当前正在测试,还剩${this.lastCount}道题未完成,离开视为交卷`,
- "温馨提示",
- {
- confirmButtonText: "继续离开",
- cancelButtonText: "暂不离开",
- type: "warning"
- }
- )
- .then(() => {
- this.examSubmit();
- })
- .catch(() => {});
- });
- }
- }
- }
- }
- },
- methods: {
- ...mapMutations(["setExamResult"]),
- toFixed(num) {
- if (num) {
- let str = String(num).indexOf(".");
- if (str != -1) {
- return +num.toFixed(2);
- } else {
- return num;
- }
- } else {
- return 0;
- }
- },
- /**
- * @param {Object} current
- * 获取收藏信息
- */
- getCollectInfo(current) {
- this.$request
- .getCollectInfo({
- examId: this.examId,
- questionId: this.questionList[current].questionId,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- doMode: this.doMode
- })
- .then(res => {
- this.$set(this.collectList, current, res.data);
- })
- .catch(err => {
- this.$set(this.collectList, current, false);
- });
- },
- /**
- * 是否做完所有题目
- */
- isDoOver() {
- let questionOverNum = this.questionOverNum(true); //获取已经回答的题目数(包括简答和案例)
- if (this.questionList.length == questionOverNum) {
- //全部做完弹窗
- this.$nextTick(() => {
- this.$confirm(`您已完成所有题目,快去交卷吧!`, "温馨提示", {
- confirmButtonText: "立即交卷",
- cancelButtonText: "暂不交卷",
- type: "warning"
- })
- .then(() => {
- // confirmButton回调
- this.examSubmit();
- })
- .catch(() => {});
- });
- }
- },
- /**
- * 请求题目列表
- */
- goodsQuestionList() {
- this.$request[
- this.doMode == 3 ? "goodsRandomQuestionList" : "goodsQuestionList"
- ]({
- examId: this.examId,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- from: this.doMode == 3 ? 1 : ""
- })
- .then(async res => {
- if (this.doMode == 3) {
- this.simulateExamId = res.data.simulateExamId;
- res.data = res.data.questionList;
- }
- if (!res.data.length) {
- this.$message({
- type: "warning",
- message: "该试卷暂无题目"
- });
- return;
- }
- this.allTimes = res.data[0].answerTime * 60;
- this.lastTime = res.data[0].answerTime && res.data[0].answerTime * 60;
- //考试时间到了自动交卷
- if (this.lastTime) {
- this.timer = setInterval(() => {
- if (this.lastTime <= 0) {
- clearInterval(this.timer);
- this.$confirm(`考试时间已到,系统将自动交卷`, "提示", {
- confirmButtonText: "立即交卷",
- closeOnClickModal: false,
- showCancelButton: false,
- closeOnPressEscape: false,
- distinguishCancelAndClose: false,
- showClose: false
- });
- setTimeout(() => {
- try {
- this.$msgbox.close();
- } catch (err) {}
- this.examSubmit();
- }, 3000);
- return;
- }
- this.lastTime--;
- }, 1000);
- } else {
- }
- res.data.forEach((item, index) => {
- item.jsonStr = JSON.parse(item.jsonStr);
- if (item.type == 2) {
- //多选
- item.jsonStr.forEach(str => {
- str.optionsId = "" + str.optionsId;
- });
- let arr = item.answerQuestion.split(",");
- arr.forEach((a, i) => {
- arr[i] = "" + a;
- });
- item.ans = arr;
- item.quesSelect = [];
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- return;
- } else if (item.type == 5) {
- //简答题
- item.ansText = {
- text: "",
- imageList: []
- };
- item.ques = {
- text: "",
- imageList: []
- };
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- return;
- } else if (item.type == 4) {
- //案例题
- console.log(item.jsonStr);
- item.ques = [];
- item.tabIndex = "0";
- let ansArr = [];
- item.jsonStr.forEach((json, index) => {
- if (json.type == 1) {
- ansArr[index] = json.answerQuestion;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 2) {
- json.optionsList.forEach(str => {
- str.optionsId = "" + str.optionsId;
- });
- let arr = json.answerQuestion.split(",");
- arr.forEach((a, i) => {
- arr[i] = "" + a;
- });
- ansArr[index] = arr;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 3) {
- ansArr[index] = json.answerQuestion;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 5) {
- ansArr[index] = {
- text: "",
- imageList: []
- };
- json.ansText = {
- text: "",
- imageList: []
- };
- json.ques = {
- text: "",
- imageList: []
- };
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- }
- });
- item.ans = ansArr;
- return;
- }
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.ques = "";
- item.ans = item.answerQuestion;
- });
- this.questionList = res.data;
- this.lastCount = this.questionList.length;
- this.getCollectInfo(this.current);
- await this.examRecord();
- })
- .catch(err => {
- if (this.doMode == 3) {
- this.$alert("你已做完所有题目", "提示", {
- confirmButtonText: "确定,并且返回上一页",
- showClose: false,
- callback: action => {
- this.mustBack = true;
- this.$router.go(-1);
- return;
- }
- });
- }
- });
- },
- // 随机练习题目
- goodsExamRandomList() {
- this.$request
- .goodsExamRandomList({
- goodsId: this.goodsId,
- number: this.number,
- orderGoodsId: this.orderGoodsId
- })
- .then(async res => {
- if (!res.data.questionList.length) {
- this.$message({
- type: "warning",
- message: "该试卷暂无题目"
- });
- return;
- }
- this.examId = res.data.examId;
- this.bankType = 1;
- res.data.questionList.forEach((item, index) => {
- item.jsonStr = JSON.parse(item.jsonStr);
- console.log(item.type, "item");
- if (item.type == 2) {
- //多选
- item.jsonStr.forEach(str => {
- str.optionsId = "" + str.optionsId;
- });
- let arr = item.answerQuestion.split(",");
- arr.forEach((a, i) => {
- arr[i] = "" + a;
- });
- item.ans = arr;
- item.quesSelect = [];
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- return;
- } else if (item.type == 5) {
- //简答题
- item.ansText = {
- text: "",
- imageList: []
- };
- item.ques = {
- text: "",
- imageList: []
- };
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- return;
- } else if (item.type == 4) {
- //案例题
- console.log(item.jsonStr);
- item.ques = [];
- item.tabIndex = "0";
- let ansArr = [];
- item.jsonStr.forEach((json, index) => {
- if (json.type == 1) {
- ansArr[index] = json.answerQuestion;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 2) {
- json.optionsList.forEach(str => {
- str.optionsId = "" + str.optionsId;
- });
- let arr = json.answerQuestion.split(",");
- arr.forEach((a, i) => {
- arr[i] = "" + a;
- });
- ansArr[index] = arr;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 3) {
- ansArr[index] = json.answerQuestion;
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- } else if (json.type == 5) {
- ansArr[index] = {
- text: "",
- imageList: []
- };
- json.ansText = {
- text: "",
- imageList: []
- };
- json.ques = {
- text: "",
- imageList: []
- };
- json.content &&
- (json.content = json.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- }
- });
- item.ans = ansArr;
- return;
- }
- item.analysisContent &&
- (item.analysisContent = item.analysisContent.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.content &&
- (item.content = item.content.replace(
- /<img/gi,
- '<img style="max-width:100%;"'
- ));
- item.ques = "";
- item.ans = item.answerQuestion;
- });
- this.questionList = res.data.questionList;
- this.lastCount = this.questionList.length;
- this.getCollectInfo(this.current);
- await this.examRecord();
- });
- },
- /**
- * 记录总题数,获取recordId
- * hasSpecial (是否包含简答和案例) true 包含 false 不包含
- */
- examRecord(hasSpecial) {
- return new Promise(resolve => {
- let self = this;
- let questionList = 0;
- // if(!hasSpecial) {
- this.questionList.forEach((item, index) => {
- if (item.type == 1 || item.type == 2 || item.type == 3) {
- questionList++;
- }
- });
- // } else {
- // questionList = this.questionList.length;
- // }
- this.$request
- .examRecord({
- chapterExamId: this.chapterId || 0,
- moduleExamId: this.moduleId || 0,
- examId: this.examId,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- totalQuestionNum: questionList,
- allQuestionNum: this.questionList.length,
- doMode: this.doMode,
- simulateExamId: this.simulateExamId
- })
- .then(res => {
- this.recordId = res.data;
- if (this.bankType == 1) {
- this.examRecordEdit();
- clearInterval(this.postTimer);
- this.postTimer = setInterval(() => {
- this.examRecordEdit();
- }, 5000);
- }
- });
- });
- },
- /**
- * 离开页面统计回答正确题数
- */
- examRecordEdit() {
- clearInterval(this.postTimer);
- clearInterval(this.timer);
- let number = 0;
- let score = 0;
- let doQuestionNum = 0;
- let doQuestionIds = []; //做过的题目id
- let lessQuestionNum = 0;
- this.questionList.forEach((item, index) => {
- if (item.type == 1) {
- if (item.ques == item.ans) {
- score += item.score;
- number++;
- }
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 2) {
- let isRight =
- item.ans &&
- item.ans.every((quesItem, quesIndex) => {
- if (item.ques) {
- return item.ques[quesIndex] == item.ans[quesIndex];
- } else {
- return false;
- }
- });
- if (isRight) {
- score += item.score;
- number++;
- } else {
- let hasPart = false;
- let checkboxScore = 1; //获取单题总分数
- item.ques &&
- item.ques.forEach((ques, quesIndex) => {
- //选错一个全扣
- if (item.ques) {
- if (item.ans.indexOf(item.ques[quesIndex]) == -1) {
- checkboxScore = 0;
- }
- } else {
- checkboxScore = 0;
- }
- });
- console.log(checkboxScore);
- //没选错
- if (checkboxScore) {
- checkboxScore = 0;
- item.ans.forEach((ans, quesIndex) => {
- //漏选扣一部分,对n题给n X partScore 分
- if (item.ques) {
- if (item.ques.indexOf(item.ans[quesIndex]) != -1) {
- checkboxScore += item.partScore;
- hasPart = true;
- }
- } else {
- checkboxScore = 0;
- }
- });
- }
- if (!hasPart) {
- //0分
- } else {
- //部分分
- // number++;
- lessQuestionNum++;
- score += checkboxScore;
- }
- }
- if (item.ques && item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 3) {
- if (item.ques == item.ans) {
- score += item.score;
- number++;
- }
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item == 4) {
- if (item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 5) {
- if (item.ques && (item.ques.imageList.length || item.ques.text)) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- }
- });
- this.$request
- .examRecordEdit({
- examId: this.examId,
- goodsId: this.goodsId,
- recordId: this.recordId,
- orderGoodsId: this.orderGoodsId,
- doQuestionIds: doQuestionIds.join(","),
- rightQuestionNum: number,
- moduleExamId: this.moduleId || 0,
- chapterExamId: this.chapterId || 0,
- lessQuestionNum: lessQuestionNum,
- status: 0,
- doQuestionNum: doQuestionNum,
- historyExamJson: JSON.stringify(this.questionList)
- })
- .then(res => {
- this.punchClock();
- });
- },
- /**
- * 获取试卷类型2考试,1练习
- */
- bankExam() {
- return new Promise(resolve => {
- if (this.examType) {
- this.bankType = 1;
- resolve();
- return;
- }
- this.$request.bankExam(this.examId).then(res => {
- this.bankType = res.data.doType;
- if (this.bankType == 2) {
- this.needBack = true;
- }
- resolve();
- });
- });
- },
- /**
- * @param {Object}
- * 单选点击确认
- */
- radioSelect(question, questionIndex, optionsId) {
- // if (this.questionList[questionIndex].ques) return;
- if (this.questionList[questionIndex].ques && this.bankType == 1) {
- return;
- }
- this.$set(this.questionList[questionIndex], "ques", optionsId);
- this.isDoOver();
- // if (
- // this.questionList[questionIndex].ques !=
- // this.questionList[questionIndex].ans
- // ) {
- // this.$request
- // .examWrongRecord({
- // orderGoodsId: this.orderGoodsId,
- // examId: this.examId,
- // goodsId: this.goodsId,
- // moduleExamId: this.moduleId || 0,
- // chapterExamId: this.chapterId || 0,
- // questionIds: [this.questionList[questionIndex].questionId],
- // recordId: this.recordId,
- // type 1,
- // })
- // .then((res) => {});
- // }
- },
- /**
- * @param {Object}
- * 案例单选点击
- */
- radioSelectChild(questionIndex, jsonIndex, optionsId) {
- // if (this.questionList[questionIndex].ques[jsonIndex]) return;
- if (
- this.questionList[questionIndex].ques[jsonIndex] &&
- this.bankType == 1
- ) {
- return;
- }
- this.$set(this.questionList[questionIndex].ques, jsonIndex, optionsId);
- this.isDoOver();
- },
- /**
- * 多选点击确认
- */
- checkboxSubmit(question, questionIndex) {
- // if (this.questionList[questionIndex].ques) return;
- if (this.questionList[questionIndex].ques && this.bankType == 1) {
- return;
- }
- let arr = [];
- this.questionList[questionIndex].jsonStr.forEach(item => {
- if (item.checked) {
- arr.push(item.optionsId);
- }
- });
- if (!arr.length) {
- delete this.questionList[questionIndex].ques;
- this.$message({
- type: "warning",
- message: "请选择答案"
- });
- return;
- }
- this.$set(this.questionList[questionIndex], "ques", arr);
- this.isDoOver();
- // let isWrong = this.questionList[questionIndex].ques.some((item, i) => {
- // return this.questionList[questionIndex].ans.indexOf(item) == -1;
- // })
- // // 回答错误
- // if (isWrong) {
- // this.$request
- // .examWrongRecord({
- // orderGoodsId: this.orderGoodsId,
- // examId: this.examId,
- // goodsId: this.goodsId,
- // moduleExamId: this.moduleId || 0,
- // chapterExamId: this.chapterId || 0,
- // questionIds: [this.questionList[questionIndex].questionId],
- // recordId: this.recordId,
- // type 1,
- // })
- // .then((res) => {});
- // }
- },
- /**
- * @param {Object}
- * 案例多选确认
- */
- checkboxSubmitChild(questionIndex, ansIndex) {
- // if (this.questionList[questionIndex].ques[ansIndex]) return;
- if (
- this.questionList[questionIndex].ques[ansIndex] &&
- this.bankType == 1
- ) {
- return;
- }
- let arr = [];
- this.questionList[questionIndex].jsonStr[ansIndex].optionsList.forEach(
- item => {
- if (item.checked) {
- arr.push(item.optionsId);
- }
- }
- );
- if (!arr.length) {
- delete this.questionList[questionIndex].ques[ansIndex];
- this.$message({
- type: "warning",
- message: "请选择答案"
- });
- return;
- }
- this.$set(this.questionList[questionIndex].ques, ansIndex, arr);
- this.isDoOver();
- },
- /**
- * 判断点击确认
- */
- judgeSelect(question, questionIndex, index) {
- console.log(this.bankType);
- // if (question.ques) return;
- if (question.ques && this.bankType == 1) {
- return;
- }
- this.$set(
- this.questionList[questionIndex],
- "ques",
- index == 0 ? "1" : "0"
- );
- this.isDoOver();
- // if (
- // this.questionList[questionIndex].ques !=
- // this.questionList[questionIndex].ans
- // ) {
- // this.$request
- // .examWrongRecord({
- // orderGoodsId: this.orderGoodsId,
- // examId: this.examId,
- // goodsId: this.goodsId,
- // moduleExamId: this.moduleId || 0,
- // chapterExamId: this.chapterId || 0,
- // questionIds: [this.questionList[questionIndex].questionId],
- // recordId: this.recordId,
- // type 1,
- // })
- // .then((res) => {});
- // }
- },
- judgeSelectChild(questionIndex, jsonIndex, index) {
- console.log(this.questionList[questionIndex].ques[jsonIndex]);
- // if (this.questionList[questionIndex].ques[jsonIndex]) return;
- if (
- this.questionList[questionIndex].ques[jsonIndex] &&
- this.bankType == 1
- ) {
- return;
- }
- this.$set(
- this.questionList[questionIndex].ques,
- jsonIndex,
- index == 0 ? "1" : "0"
- );
- this.isDoOver();
- },
- /**
- * 上传图片
- */
- uploadImg(e, question, questionIndex) {
- var file = e.target.files[0];
- if (file.size > 2 * 1024 * 1024) {
- this.$message.warn("图片不得大于2000kb");
- return;
- }
- var type = e.target.value
- .toLowerCase()
- .split(".")
- .splice(-1);
- if (
- type[0] != "jpg" &&
- type[0] != "png" &&
- type[0] != "jpeg" &&
- type[0] != "gif"
- ) {
- this.$message.error("上传格式需为:.jpg/.png/.jpeg/gif");
- e.target.value = "";
- return;
- }
- this.$upload.upload(file, 0).then(res => {
- question.ansText.imageList.push(res);
- });
- },
- /**
- * 案例上传图片
- */
- uploadImgChild(e, questionIndex, jsonIndex) {
- var file = e.target.files[0];
- if (file.size > 2 * 1024 * 1024) {
- this.$message.warn("图片不得大于2000kb");
- return;
- }
- var type = e.target.value
- .toLowerCase()
- .split(".")
- .splice(-1);
- if (
- type[0] != "jpg" &&
- type[0] != "png" &&
- type[0] != "jpeg" &&
- type[0] != "gif"
- ) {
- this.$message.error("上传格式需为:.jpg/.png/.jpeg/gif");
- e.target.value = "";
- return;
- }
- this.$upload.upload(file, 0).then(res => {
- this.questionList[questionIndex].jsonStr[
- jsonIndex
- ].ansText.imageList.push(res);
- });
- },
- isOver(item, index) {
- if (this.questionList[index].ques) {
- if (item.type == 4) {
- //案例题
- let isOver = item.jsonStr.every((jsonItem, indexs) => {
- if (
- jsonItem.type == 1 ||
- jsonItem.type == 2 ||
- jsonItem.type == 3
- ) {
- if (item.ques[indexs]) {
- return true;
- } else {
- return false;
- }
- } else if (jsonItem.type == 5) {
- if (
- item.ques[indexs] &&
- (item.ques[indexs].text || item.ques[indexs].imageList.length)
- ) {
- console.log("chil");
- return true;
- } else {
- return false;
- }
- }
- });
- if (isOver) {
- return true;
- } else {
- return false;
- }
- } else if (item.type == 5) {
- //简答题
- //每一项都相等
- if (item.ques && (item.ques.imageList.length || item.ques.text)) {
- return true;
- }
- //判断
- } else {
- return false;
- }
- } else {
- return false;
- }
- },
- ansSubmit(question, questionIndex) {
- if (!question.ansText.text && !question.ansText.imageList.length) {
- this.$message({
- type: "warning",
- message: "请输入内容或上传图片"
- });
- return;
- }
- question.ques.imageList = question.ansText.imageList;
- question.ques.text = question.ansText.text;
- this.isDoOver();
- console.log(question.ques);
- },
- ansSubmitChild(question, questionIndex, jsonIndex) {
- if (
- !this.questionList[questionIndex].jsonStr[jsonIndex].ansText.text &&
- !this.questionList[questionIndex].jsonStr[jsonIndex].ansText.imageList
- .length
- ) {
- this.$message({
- type: "warning",
- message: "请输入内容或上传图片"
- });
- return;
- }
- this.$set(this.questionList[questionIndex].ques, jsonIndex, {
- imageList:
- this.questionList[questionIndex].jsonStr[jsonIndex].ansText
- .imageList || [],
- text:
- this.questionList[questionIndex].jsonStr[jsonIndex].ansText.text || ""
- });
- this.isDoOver();
- },
- changeIndex(index) {
- this.current = index;
- this.getCollectInfo(this.current);
- },
- nextQuestion() {
- if (this.current >= this.questionList.length - 1) {
- this.$message({
- type: "warning",
- message: "已经是最后一题了!"
- });
- return;
- }
- this.current++;
- this.getCollectInfo(this.current);
- },
- prevQuestion() {
- if (this.current == 0) {
- this.$message({
- type: "warning",
- message: "已经是第一题了!"
- });
- return;
- } else {
- this.current--;
- this.getCollectInfo(this.current);
- }
- },
- isCheck(item, index) {
- if (item.type === 4) {
- if (
- this.questionList[index].ques &&
- this.questionList[index].ques.length
- ) {
- return true;
- }
- } else {
- if (this.questionList[index].ques) {
- return true;
- }
- }
- },
- isRight(item, index) {
- //单选
- if (this.questionList[index].ques) {
- if (item.type == 1) {
- console.log(
- this.questionList[index].ques == this.questionList[index].ans
- );
- return this.questionList[index].ques == this.questionList[index].ans;
- //多选
- } else if (item.type == 2) {
- //每一项都相等
- return this.questionList[index].ans.every((item, i) => {
- return item == this.questionList[index].ques[i];
- });
- //判断
- } else if (item.type == 3) {
- return this.questionList[index].ques == this.questionList[index].ans;
- } else {
- return false;
- }
- } else {
- return false;
- }
- },
- isWrong(item, index) {
- if (this.questionList[index].ques) {
- //单选
- if (item.type == 1) {
- return this.questionList[index].ques != this.questionList[index].ans;
- //多选
- } else if (item.type == 2) {
- //每一项都相等
- return this.questionList[index].ques.some((item, i) => {
- return this.questionList[index].ans.indexOf(item) == -1;
- });
- //判断
- } else if (item.type == 3) {
- return this.questionList[index].ques != this.questionList[index].ans;
- } else {
- return false;
- }
- } else {
- return false;
- }
- },
- isPart(item, index) {
- if (this.questionList[index].ques) {
- if (item.type == 2) {
- let isWrong = this.questionList[index].ques.some((item, i) => {
- return this.questionList[index].ans.indexOf(item) == -1;
- });
- let isRight = this.questionList[index].ans.every((item, i) => {
- return item == this.questionList[index].ques[i];
- });
- if (!isRight && !isWrong) {
- return true;
- }
- }
- } else {
- return false;
- }
- },
- right(bankIndex, ansIndex, option) {
- if (
- this.questionList[bankIndex].ques[ansIndex] &&
- this.questionList[bankIndex].ans[ansIndex]
- ) {
- if (
- this.questionList[bankIndex].ques[ansIndex].indexOf(
- option.optionsId
- ) != -1 ||
- this.questionList[bankIndex].ans[ansIndex].indexOf(
- option.optionsId
- ) != -1
- ) {
- return true;
- } else {
- return false;
- }
- } else {
- return false;
- }
- },
- wrong(bankIndex, ansIndex, option) {
- if (
- this.questionList[bankIndex].ques[ansIndex] &&
- this.questionList[bankIndex].ans[ansIndex]
- ) {
- if (
- this.questionList[bankIndex].ques[ansIndex].indexOf(
- option.optionsId
- ) != -1 &&
- this.questionList[bankIndex].ans[ansIndex].indexOf(
- option.optionsId
- ) == -1
- ) {
- return true;
- } else {
- return false;
- }
- } else {
- return false;
- }
- },
- /**
- * 获取已经回答的题目数
- * hasSpecail (是否包含简答和案例)
- */
- questionOverNum(hasSpecail) {
- let count = 0;
- this.questionList.forEach(item => {
- if (item.type == 1 || item.type == 2 || item.type == 3) {
- if (item.ques) {
- count++;
- }
- } else if (item.type == 4) {
- //案例题
- if (hasSpecail) {
- let isOver = item.jsonStr.every((jsonItem, index) => {
- if (
- jsonItem.type == 1 ||
- jsonItem.type == 2 ||
- jsonItem.type == 3
- ) {
- if (item.ques[index]) {
- return true;
- } else {
- return false;
- }
- } else if (jsonItem.type == 5) {
- if (
- item.ques[index] &&
- (item.ques[index].text || item.ques[index].imageList.length)
- ) {
- return true;
- } else {
- return false;
- }
- }
- });
- if (isOver) {
- count++;
- console.log(item, 4441);
- }
- }
- } else if (item.type == 5) {
- //简答题
- if (hasSpecail) {
- if (item.ques && (item.ques.text || item.ques.imageList.length)) {
- console.log(5, item);
- count++;
- }
- }
- }
- });
- return count;
- },
- submit() {
- let ansCount = this.questionOverNum(true); //已答题数
- this.lastCount = this.questionList.length - ansCount; //统计未答完的题数
- //没有答完
- if (this.lastCount > 0) {
- this.$confirm(
- `您还有${this.lastCount}道题未作答, 现在继续作答,还是下次继续?`,
- "提示",
- {
- confirmButtonText: "立即交卷",
- cancelButtonText: "继续做题",
- closeOnClickModal: false,
- closeOnPressEscape: false,
- distinguishCancelAndClose: false,
- showClose: false
- }
- )
- .then(_ => {
- this.examSubmit();
- })
- .catch(_ => {});
- return;
- }
- if (this.bankType == 2) {
- if (this.lastTime > 0) {
- let lastTime = this.countdown(this.lastTime);
- this.$confirm(`时间还剩余${lastTime},确定交卷吗?`, "提示", {
- confirmButtonText: "交卷",
- cancelButtonText: "继续答题",
- closeOnClickModal: false,
- closeOnPressEscape: false,
- distinguishCancelAndClose: false,
- showClose: false
- })
- .then(_ => {
- this.examSubmit();
- })
- .catch(_ => {});
- return;
- }
- }
- this.examSubmit();
- },
- /**
- * @param {Object} second倒计时过滤器
- */
- countdown(second) {
- if (second) {
- let h = parseInt((second / 60 / 60) % 24); // 计算小时
- let m = parseInt((second / 60) % 60); // 计算分数
- let s = parseInt(second % 60); // 计算当前秒数
- if (h < 10) h = "0" + h;
- if (m < 10) m = "0" + m;
- if (s < 10) s = "0" + s;
- return h + ":" + m + ":" + s;
- } else {
- return "";
- }
- },
- /**
- * 交卷,跳转报告页
- */
- examSubmit() {
- this.loading = true;
- clearInterval(this.timer);
- clearInterval(this.postTimer);
- let score = 0; //计算总分
- let reportStatus = 0;
- let number = 0; //做对的题目数量
- let doQuestionNum = 0; //做过的题目数量
- let allScore = 0; //总分
- let passScore = 0;
- let doWrongQuestionIds = []; //错题和未做题id(客观题)
- let doQuestionIds = []; //做过的题目id
- let rightQuestionIds = []; //做对的题目id
- let lessQuestionNum = 0;
- this.questionList.forEach((item, index) => {
- passScore = item.passScore;
- if (item.type == 1) {
- //正确
- if (item.ques == item.ans) {
- item.scoreResult = item.score;
- score += item.score;
- number++;
- rightQuestionIds.push(item.questionId);
- } else {
- //错误
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- }
- allScore += item.score;
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 2) {
- let isRight =
- item.ans &&
- item.ans.every((quesItem, quesIndex) => {
- if (item.ques) {
- console.log(
- "ques:",
- item.ques,
- item.ans,
- item.ques[quesIndex],
- item.ans[quesIndex],
- quesIndex
- );
- return item.ques[quesIndex] == item.ans[quesIndex];
- } else {
- return false;
- }
- });
- if (isRight) {
- score += item.score;
- number++;
- item.scoreResult = item.score;
- rightQuestionIds.push(item.questionId);
- } else {
- let hasPart = false;
- let checkboxScore = 1; //获取单题总分数
- item.ques &&
- item.ques.forEach((ques, quesIndex) => {
- //选错一个全扣
- if (item.ques) {
- if (item.ans.indexOf(item.ques[quesIndex]) == -1) {
- checkboxScore = 0;
- }
- } else {
- checkboxScore = 0;
- }
- });
- console.log(checkboxScore, "checkboxScore1");
- //没选错
- if (checkboxScore) {
- checkboxScore = 0;
- item.ans.forEach((ans, quesIndex) => {
- //漏选扣一部分,对n题给n X partScore 分
- if (item.ques) {
- if (item.ques.indexOf(item.ans[quesIndex]) != -1) {
- checkboxScore += item.partScore;
- hasPart = true;
- }
- } else {
- checkboxScore = 0;
- }
- });
- }
- console.log(checkboxScore, "checkboxScore2");
- if (!hasPart) {
- //0分
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- } else {
- //部分分
- // number++;
- lessQuestionNum++;
- // doWrongQuestionIds.push(item.questionId);
- item.scoreResult = checkboxScore;
- score += checkboxScore;
- // rightQuestionIds.push(item.questionId)
- }
- }
- allScore += item.score;
- if (item.ques && item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 3) {
- if (item.ques == item.ans) {
- item.scoreResult = item.score;
- score += item.score;
- number++;
- rightQuestionIds.push(item.questionId);
- } else {
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- }
- allScore += item.score;
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 4) {
- allScore += item.score;
- if (item.ques && item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 5) {
- allScore += item.score;
- if (item.ques && (item.ques.imageList.length || item.ques.text)) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- }
- });
- //大于及格
- if (score >= passScore) {
- reportStatus = 1;
- } else {
- reportStatus = 0;
- }
- // setTimeout(() => {
- // let result = {
- // chapterId: this.chapterId,
- // moduleId: this.moduleId,
- // examId: this.examId,
- // recordId: this.recordId,
- // };
- // this.setExamResult(result);
- // this.$router.push({
- // path: "/bank-report/" + this.goodsId,
- // });
- // }, 1000);
- // return;
- //交卷 /exam/record/edit
- this.$request
- .examRecordEdit({
- examId: this.examId,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- reportStatus: reportStatus,
- recordId: this.recordId,
- lessQuestionNum: lessQuestionNum,
- rightQuestionNum: number,
- status: 1,
- moduleExamId: this.moduleId || 0,
- chapterExamId: this.chapterId || 0,
- doQuestionIds: doQuestionIds.join(","),
- rightQuestionIds: rightQuestionIds.join(","),
- doQuestionNum: doQuestionNum,
- performance: score,
- totalScore: allScore,
- examTime: parseInt(this.allTimes),
- doTime: parseInt(this.allTimes) - parseInt(this.lastTime),
- historyExamJson: JSON.stringify(this.questionList)
- })
- .then(res => {
- this.isSubmit = true;
- this.loading = false;
- this.$message({
- type: "success",
- message: "交卷成功"
- });
- this.punchClock();
- setTimeout(() => {
- this.$router.replace({
- path: "/bank-report/" + this.goodsId,
- query: {
- orderGoodsId: this.orderGoodsId,
- chapterId: this.chapterId,
- moduleId: this.moduleId,
- examId: this.examId,
- recordId: this.recordId,
- examType: this.examType
- }
- });
- }, 1000);
- })
- .catch(err => {
- this.loading = false;
- });
- //错题集id提交(客观题)/exam/wwrong/record
- this.$request
- .examWrongRecord({
- orderGoodsId: this.orderGoodsId,
- examId: this.examId,
- goodsId: this.goodsId,
- questionIds: doWrongQuestionIds,
- recordId: this.recordId,
- type: 1,
- doMode: this.doMode,
- courseType: 1
- })
- .then(res => {})
- .catch(err => {});
- },
- // 打卡
- punchClock() {
- if (this.examType != 1) {
- return;
- }
- this.$request.punchClock({
- chapterExamId: this.chapterId,
- examId: this.examId,
- goodsId: this.goodsId,
- moduleExamId: this.moduleId,
- recordTime: new Date(new Date().setHours(0, 0, 0, 0)) / 1000
- });
- },
- /**
- * 交卷,不用跳转
- */
- leaveNow() {
- clearInterval(this.timer);
- clearInterval(this.postTimer);
- let score = 0; //计算总分
- let reportStatus = 0;
- let number = 0; //做对的题目数量
- let doQuestionNum = 0; //做过的题目数量
- let allScore = 0; //总分
- let passScore = 0;
- let doWrongQuestionIds = []; //错题和未做题id(客观题)
- let doQuestionIds = []; //做过的题目id
- let rightQuestionIds = []; //做对的题目id
- let lessQuestionNum = 0;
- console.log(111);
- this.questionList.forEach((item, index) => {
- passScore = item.passScore;
- if (item.type == 1) {
- //正确
- if (item.ques == item.ans) {
- item.scoreResult = item.score;
- score += item.score;
- number++;
- rightQuestionIds.push(item.questionId);
- } else {
- //错误
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- }
- allScore += item.score;
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 2) {
- let isRight =
- item.ans &&
- item.ans.every((quesItem, quesIndex) => {
- if (item.ques) {
- return item.ques[quesIndex] == item.ans[quesIndex];
- } else {
- return false;
- }
- });
- if (isRight) {
- score += item.score;
- number++;
- item.scoreResult = item.score;
- rightQuestionIds.push(item.questionId);
- } else {
- let hasPart = false;
- let checkboxScore = 1; //获取单题总分数
- item.ques &&
- item.ques.forEach((ques, quesIndex) => {
- //选错一个全扣
- if (item.ques) {
- if (item.ans.indexOf(item.ques[quesIndex]) == -1) {
- checkboxScore = 0;
- }
- } else {
- checkboxScore = 0;
- }
- });
- console.log(checkboxScore, "checkboxScore1");
- //没选错
- if (checkboxScore) {
- checkboxScore = 0;
- item.ans.forEach((ans, quesIndex) => {
- //漏选扣一部分,对n题给n X partScore 分
- if (item.ques) {
- if (item.ques.indexOf(item.ans[quesIndex]) != -1) {
- checkboxScore += item.partScore;
- hasPart = true;
- }
- } else {
- checkboxScore = 0;
- }
- });
- }
- console.log(checkboxScore, "checkboxScore2");
- if (!hasPart) {
- //0分
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- } else {
- //部分分
- // number++;
- lessQuestionNum++;
- // doWrongQuestionIds.push(item.questionId);
- item.scoreResult = checkboxScore;
- score += checkboxScore;
- // rightQuestionIds.push(item.questionId)
- }
- }
- allScore += item.score;
- if (item.ques && item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 3) {
- if (item.ques == item.ans) {
- item.scoreResult = item.score;
- score += item.score;
- number++;
- rightQuestionIds.push(item.questionId);
- } else {
- item.scoreResult = 0;
- if (item.ques) {
- doWrongQuestionIds.push(item.questionId);
- }
- }
- allScore += item.score;
- if (item.ques) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 4) {
- allScore += item.score;
- if (item.ques && item.ques.length) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- } else if (item.type == 5) {
- allScore += item.score;
- if (item.ques && (item.ques.imageList.length || item.ques.text)) {
- doQuestionNum++;
- doQuestionIds.push(item.questionId);
- }
- }
- });
- //大于及格
- if (score >= passScore) {
- reportStatus = 1;
- } else {
- reportStatus = 0;
- }
- console.log(333);
- //交卷
- this.$request
- .examRecordEdit({
- examId: this.examId,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- reportStatus: reportStatus,
- recordId: this.recordId,
- rightQuestionNum: number,
- lessQuestionNum: lessQuestionNum,
- status: 1,
- moduleExamId: this.moduleId || 0,
- chapterExamId: this.chapterId || 0,
- doQuestionIds: doQuestionIds.join(","),
- rightQuestionIds: rightQuestionIds.join(","),
- doQuestionNum: doQuestionNum,
- performance: score,
- totalScore: allScore,
- examTime: parseInt(this.allTimes),
- doTime: parseInt(this.allTimes) - parseInt(this.lastTime),
- historyExamJson: JSON.stringify(this.questionList)
- })
- .then(res => {
- this.punchClock();
- });
- console.log(222);
- //错题集id提交(客观题)
- this.$request
- .examWrongRecord({
- orderGoodsId: this.orderGoodsId,
- examId: this.examId,
- goodsId: this.goodsId,
- questionIds: doWrongQuestionIds,
- recordId: this.recordId,
- type: 1,
- doMode: this.doMode,
- courseType: 1
- })
- .then(res => {
- this.loading = false;
- })
- .catch(err => {
- this.loading = false;
- });
- }
- },
- computed: {
- param() {
- return {
- examId: this.examId,
- questionId: this.questionList[this.current]
- ? this.questionList[this.current].questionId
- : undefined,
- goodsId: this.goodsId,
- orderGoodsId: this.orderGoodsId,
- collectQuestionId: this.collectList[this.current]
- ? this.collectList[this.current].collectQuestionId
- : undefined,
- doMode: this.doMode
- };
- },
- doMode() {
- return this.simulateStatus ? 3 : this.number ? 2 : 1;
- },
- examType() {
- return this.$route.query.examType || (this.number ? 2 : 0);
- }
- }
- };
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped lang="scss">
- .course-exam {
- .section {
- overflow: hidden;
- &__header {
- height: 20px;
- margin-top: 20px;
- }
- &__body {
- .explain-record {
- &__body {
- margin-bottom: 20px;
- border: 1px solid #eee;
- .left-box {
- position: relative;
- float: left;
- width: 970px;
- min-height: 630px;
- border: 1px solid #eee;
- &__body {
- .question {
- padding: 12px 0 0 12px;
- display: flex;
- flex-direction: column;
- height: 100%;
- &__title {
- padding-left: 12px;
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- line-height: 24px;
- }
- &__desc {
- padding-left: 12px;
- margin-top: 20px;
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 24px;
- text-align: justify;
- /deep/ img {
- max-width: 100% !important;
- }
- }
- &__content {
- /deep/ .el-tabs__item {
- height: 40px;
- line-height: 40px;
- }
- .question__content {
- height: auto;
- overflow: auto;
- }
- .question-list {
- padding: 24px 0 24px 24px;
- border-bottom: 1px solid #eee;
- .checkbox,
- .radio {
- cursor: pointer;
- margin-right: 24px;
- padding: 0 24px;
- display: flex;
- align-items: center;
- margin-top: 2px;
- min-height: 40px;
- padding-top: 10px;
- padding-bottom: 10px;
- background: #f5f9ff;
- border-radius: 8px;
- box-sizing: border-box;
- &.right {
- background: #37c65b;
- }
- &.wrong {
- background: #ff3a30;
- }
- &.user_choose {
- background: #007aff;
- }
- }
- &.textarea {
- margin-right: 12px;
- .upload {
- margin-top: 10px;
- &__imgs {
- margin-right: 10px;
- width: 80px;
- height: 80px;
- background: #ffffff;
- border: 1px solid #eeeeee;
- border-radius: 4px;
- position: relative;
- display: flex;
- float: left;
- align-items: center;
- justify-content: center;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- &__btn {
- margin-right: 10px;
- width: 80px;
- height: 80px;
- background: #ffffff;
- border: 1px solid #eeeeee;
- border-radius: 4px;
- position: relative;
- display: flex;
- float: left;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- .icon {
- font-size: 20px;
- color: #3f8dfd;
- }
- p {
- font-size: 12px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24px;
- }
- input {
- position: absolute;
- left: 0;
- top: 0;
- display: block;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- }
- }
- }
- /deep/
- .el-checkbox__input.is-checked
- + .el-checkbox__label {
- color: #000 !important;
- }
- .el-checkbox__input.is-disabled + span.el-checkbox__label {
- color: #000;
- }
- /deep/ .el-checkbox {
- white-space: normal;
- }
- }
- .answer-list {
- height: 40px;
- // border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- // margin-top: 24px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 24px;
- &__left {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- }
- &__right {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- }
- }
- .explain-list {
- padding: 12px 24px;
- &__header {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #666666;
- line-height: 24px;
- }
- &__body {
- margin-top: 12px;
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- line-height: 24px;
- }
- .upload {
- margin-top: 10px;
- &__imgs {
- margin-right: 10px;
- width: 80px;
- height: 80px;
- background: #ffffff;
- border: 1px solid #eeeeee;
- border-radius: 4px;
- position: relative;
- display: flex;
- float: left;
- align-items: center;
- justify-content: center;
- img {
- max-width: 100%;
- max-height: 100%;
- }
- }
- }
- }
- .question {
- padding-bottom: 58px;
- }
- }
- &__btns {
- position: relative;
- height: 32px;
- .submit {
- cursor: pointer;
- margin: 0 auto;
- width: 140px;
- height: 32px;
- padding: 0;
- color: #fff;
- background: #3f8dfd;
- box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
- border-radius: 16px;
- text-align: center;
- line-height: 32px;
- font-size: 16px;
- }
- }
- }
- }
- &__footer {
- height: 40px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- .btn {
- cursor: pointer;
- width: 140px;
- height: 32px;
- background: #ffffff;
- border: 1px solid #3f8dfd;
- border-radius: 16px;
- line-height: 32px;
- text-align: center;
- color: #3f8dfd;
- }
- }
- }
- .right-box {
- float: right;
- width: 299px;
- border-right: 1px solid #eee;
- &__header {
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #eeeeee;
- .back-btn {
- display: block;
- margin: 0 auto;
- width: 160px;
- }
- .title {
- float: left;
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- }
- .time {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #666666;
- float: right;
- }
- }
- &__body {
- height: 510px;
- border-bottom: 1px solid #eee;
- .card {
- &__note {
- display: flex;
- height: 64px;
- align-items: center;
- border-bottom: 1px solid #eee;
- flex-wrap: wrap;
- .item {
- display: flex;
- align-items: center;
- margin-left: 10px;
- width: 84px;
- font-size: 12px;
- .box {
- margin-right: 5px;
- width: 16px;
- height: 16px;
- border-radius: 4px;
- &.white {
- background: #ffffff;
- border: 1px solid #eeeeee;
- }
- &.green {
- background: #37c65b;
- }
- &.red {
- background: #ff3a30;
- }
- &.yellow {
- background: #ffc53d;
- }
- &.blue,
- &.check_ans {
- background: #3f8dfd;
- }
- }
- }
- }
- &__content {
- height: 440px;
- overflow-y: scroll;
- &::-webkit-scrollbar {
- width: 6px;
- }
- &::-webkit-scrollbar-track {
- background-color: #fff;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- &::-webkit-scrollbar-thumb {
- background-color: #eeeeee;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- .list {
- display: flex;
- flex-wrap: wrap;
- .item {
- width: 40px;
- height: 40px;
- border-radius: 10px;
- text-align: center;
- line-height: 40px;
- margin-left: 16px;
- margin-top: 16px;
- cursor: pointer;
- &.white {
- line-height: 38px;
- color: #333333;
- background: #ffffff;
- border: 1px solid #eeeeee;
- }
- &.green {
- color: #fff;
- background: #37c65b;
- }
- &.red {
- color: #fff;
- background: #ff3a30;
- }
- &.blue,
- &.check_ans {
- color: #fff;
- background: #3f8dfd;
- }
- &.yellow {
- background: #ffc53d;
- }
- &.disabled {
- cursor: not-allowed;
- line-height: 38px;
- color: #eeeeee;
- background: #ffffff;
- border: 1px solid #eeeeee;
- }
- }
- }
- }
- }
- }
- &__footer {
- border-bottom: 1px solid #eee;
- height: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- .submit {
- cursor: pointer;
- width: 140px;
- height: 32px;
- padding: 0;
- box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
- border-radius: 16px;
- line-height: 32px;
- text-align: center;
- font-size: 16px;
- }
- }
- }
- }
- }
- }
- }
- .take-photo {
- /deep/ .el-dialog__header {
- display: none;
- }
- /deep/ .el-dialog__body {
- padding: 0;
- overflow: unset;
- }
- &__close {
- cursor: pointer;
- position: absolute;
- right: 0;
- top: -28px;
- width: 24px;
- height: 24px;
- line-height: 24px;
- text-align: center;
- color: #eee;
- border: 1px solid #eee;
- border-radius: 50%;
- }
- &__header {
- height: 40px;
- border-bottom: 1px solid #eee;
- line-height: 40px;
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #333333;
- padding-left: 24px;
- }
- &__body {
- height: 400px;
- padding: 40px 24px;
- .left-box {
- width: 336px;
- float: left;
- .title {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #ff3b30;
- line-height: 24px;
- }
- .content {
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 28px;
- margin-top: 32px;
- }
- }
- .right-box {
- float: right;
- width: 400px;
- height: 300px;
- video {
- width: 100%;
- height: 100%;
- }
- }
- }
- &__footer {
- height: 90px;
- border-top: 1px solid #eee;
- text-align: center;
- .take {
- display: inline-block;
- width: 200px;
- height: 40px;
- padding: 0;
- border-radius: 20px;
- text-align: center;
- line-height: 40px;
- margin: 24px auto;
- }
- }
- }
- }
- </style>
|