worksDetail2.vue 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694
  1. <template>
  2. <div class="pb_content" style="background: unset">
  3. <div
  4. class="pb_content_body"
  5. style="
  6. background: #fff;
  7. box-sizing: border-box;
  8. border-radius: 5px;
  9. "
  10. >
  11. <div class="student_head">
  12. <!-- <div class="student_search">
  13. <div>班级筛选</div>
  14. <el-select v-model="sClass" placeholder="请选择班级" @change="searchWork">
  15. <el-option label="所有班级" value></el-option>
  16. <el-option
  17. v-for="(item, index) in grade"
  18. :key="index"
  19. :label="item.name"
  20. :value="item.id"
  21. ></el-option>
  22. </el-select>
  23. </div>-->
  24. <!-- chooseDy
  25. chooseTask-->
  26. <div class="student_search">
  27. <div>课程筛选</div>
  28. <div style="display: flex; width: 90%">
  29. <el-select
  30. class="r_select"
  31. v-model="choseClass"
  32. placeholder="请选择班级"
  33. @change="changeClass"
  34. >
  35. <el-option label="所有班级" value></el-option>
  36. <el-option
  37. v-for="item in classArray"
  38. :key="item.id"
  39. :label="item.name"
  40. :value="item.id"
  41. >
  42. </el-option>
  43. </el-select>
  44. <el-select
  45. class="r_select"
  46. v-model="uname"
  47. placeholder="请选择学生"
  48. @change="searchWork2"
  49. :disabled="studentLoading"
  50. >
  51. <el-option label="所有学生" value></el-option>
  52. <el-option
  53. v-for="item in userAarray"
  54. :key="item.userid"
  55. :label="item.username"
  56. :value="item.userid"
  57. >
  58. </el-option>
  59. </el-select>
  60. <el-select
  61. v-model="chooseDy"
  62. placeholder="请选择阶段"
  63. @change="searchWork1"
  64. v-if="DState == 1"
  65. >
  66. <el-option label="所有阶段" value></el-option>
  67. <el-option
  68. v-for="(item, index) in dyList"
  69. :key="index"
  70. :label="item.name"
  71. :value="item.id"
  72. ></el-option>
  73. </el-select>
  74. <el-select
  75. v-model="chooseTask"
  76. placeholder="请选择任务"
  77. @change="searchWork2"
  78. v-if="DState == 1 && cutTabNum != 0"
  79. >
  80. <el-option label="所有任务" value></el-option>
  81. <el-option
  82. v-for="(item, index) in dyList[chooseDy]
  83. ? dyList[chooseDy].taskList
  84. : []"
  85. :key="index"
  86. :label="item.name"
  87. :value="item.id"
  88. ></el-option>
  89. </el-select>
  90. <el-select
  91. v-model="chooseTask"
  92. placeholder="请选择任务"
  93. @change="searchWork2"
  94. v-if="DState != 1 && cutTabNum != 0"
  95. >
  96. <el-option label="所有任务" value></el-option>
  97. <el-option
  98. v-for="(item, index) in dyList[0]
  99. ? dyList[0].taskList
  100. : []"
  101. :key="index+'a'"
  102. :label="item.name"
  103. :value="item.id"
  104. ></el-option>
  105. </el-select>
  106. <div class="typeCheck">
  107. <el-switch v-model="typeCheck"></el-switch
  108. ><span style="font-size: 14px;">查看所有学生</span>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. <!-- {{ dyList[0] }} -->
  115. <div class="pb_content_body">
  116. <div class="cutTab">
  117. <div :class="[cutTabNum == 0 ? 'ctrlBtn2' : 'ctrlBtn']" @click="cutTabData(0)">按学生查看</div>
  118. <!-- <div v-if="DState == 1" :class="[cutTabNum ==1 ? 'ctrlBtn2' : 'ctrlBtn']" @click="cutTabData(1)">按阶段查看</div> -->
  119. <div :class="[cutTabNum == 2 ? 'ctrlBtn2' : 'ctrlBtn']" @click="cutTabData(2)">按任务查看</div>
  120. </div>
  121. <div class="student_table">
  122. <el-table
  123. ref="table"
  124. :data="tableData"
  125. border
  126. :height="tableHeight"
  127. :fit="true"
  128. v-loading="isLoading"
  129. style="width: 100%"
  130. :header-cell-style="{ background: '#f1f1f1' }"
  131. :row-class-name="tableRowClassName"
  132. stripe
  133. >
  134. <el-table-column
  135. prop="sName"
  136. label="姓名"
  137. min-width="15"
  138. align="center"
  139. ></el-table-column>
  140. <el-table-column
  141. prop="class"
  142. label="班级"
  143. min-width="20"
  144. align="center"
  145. show-overflow-tooltip
  146. >
  147. <template slot-scope="scope">
  148. <div>{{ scope.row.class ? scope.row.class : "暂无班级" }}</div>
  149. </template>
  150. </el-table-column>
  151. <!-- <el-table-column
  152. prop="course"
  153. label="课程"
  154. min-width="20"
  155. align="center"
  156. show-overflow-tooltip
  157. >
  158. </el-table-column> -->
  159. <el-table-column
  160. prop="course"
  161. label="阶段"
  162. min-width="20"
  163. align="center"
  164. show-overflow-tooltip
  165. v-if="DState == 1 && cutTabNum != 0"
  166. >
  167. <template slot-scope="scope">
  168. <div>
  169. <div v-if="scope.row.stage < dyList.length">
  170. 任务:{{ scope.row.stage }} {{ dyList[scope.row.stage].name }}
  171. </div>
  172. <!-- {{ dyList.length > 0 ? dyList[!scope.row.stage ? 0 : scope.row.stage ].name : "" }} -->
  173. <!-- {{ scope.row.stage,dyList }} -->
  174. </div>
  175. </template>
  176. </el-table-column>
  177. <el-table-column
  178. prop="course"
  179. label="任务"
  180. min-width="20"
  181. align="center"
  182. v-if="cutTabNum != 0"
  183. show-overflow-tooltip
  184. >
  185. <template slot-scope="scope">
  186. <div>
  187. <div v-if="scope.row.stage < dyList.length">
  188. <div v-if="scope.row.task < dyList[scope.row.stage].taskList.length">
  189. {{
  190. dyList[scope.row.stage].taskList[scope.row.task].name
  191. ? dyList[scope.row.stage].taskList[scope.row.task].name
  192. : scope.row.task
  193. }}
  194. </div>
  195. </div>
  196. </div>
  197. </template>
  198. </el-table-column>
  199. <el-table-column
  200. prop="time"
  201. label="时间"
  202. min-width="20"
  203. align="center"
  204. ></el-table-column>
  205. <el-table-column align="center" label="操作" width="260px">
  206. <template slot-scope="scope">
  207. <el-button
  208. type="primary"
  209. size="small"
  210. @click="
  211. lookWork(scope.row.id, scope.row.userid, 0, scope.$index,scope.row)
  212. "
  213. >查看&批改</el-button
  214. >
  215. <!-- <el-button
  216. type="primary"
  217. size="small"
  218. @click="lookData(scope.row.userid)"
  219. >生成报告</el-button
  220. >-->
  221. <el-button
  222. type="primary"
  223. size="small"
  224. v-if="cutTabNum == 2"
  225. @click="
  226. lookWork2(scope.row,scope.row.id, scope.row.userid, scope.row.courseid)
  227. "
  228. >导出作业</el-button
  229. >
  230. <el-button
  231. type="primary"
  232. size="small"
  233. v-else
  234. @click="
  235. exportPdfSetBtn(scope.row.userid,scope.row)
  236. "
  237. >导出作业集</el-button
  238. >
  239. <!-- <el-button
  240. class="de_button"
  241. type="primary"
  242. size="small"
  243. @click="deleteWork(scope.row.id)"
  244. >删除</el-button>-->
  245. </template>
  246. </el-table-column>
  247. </el-table>
  248. <el-dialog
  249. title="查看作业"
  250. :visible.sync="dialogVisible3"
  251. :append-to-body="true"
  252. :before-close="handleClose"
  253. width="100%"
  254. class="dialog_diy2 max_diy"
  255. :class="{ fullStyle: full }"
  256. v-loading="worksLoading"
  257. >
  258. <div slot="title" class="header-title">
  259. <div style="color: #fff">查看&批改</div>
  260. <!-- <div style="position: absolute; top: 14px; right: 50px">
  261. <img
  262. src="../../../assets/full.png"
  263. style="height: 14px; cursor: pointer"
  264. alt=""
  265. @click="fullTools"
  266. />
  267. </div> -->
  268. </div>
  269. <div class="zyBoxC" ref="reportPdf">
  270. <div class="courseTitle" v-if="allWorks.course">
  271. <div class="txName">
  272. <div class="tx"><img :src="tx" alt="" /></div>
  273. <div>{{ allWorks.sName }}</div>
  274. <div>{{ allWorks.course }}</div>
  275. <el-button
  276. type="primary"
  277. size="mini"
  278. style="margin-left: 15px;"
  279. @click="getPdf"
  280. >导出作业集</el-button
  281. >
  282. </div>
  283. <div class="topButton" v-if="tableData.length > 1">
  284. <div>学生切换:</div>
  285. <el-button @click="preStep" v-if="isPre == false"
  286. >上一位</el-button
  287. >
  288. <el-button @click="nextStep" v-if="isNext == false"
  289. >下一位</el-button
  290. >
  291. </div>
  292. </div>
  293. <div class="cBox">
  294. <div class="pb_left">
  295. <el-tooltip
  296. class="cTitle"
  297. effect="light"
  298. :content="allWorks.course"
  299. placement="top"
  300. >
  301. <div>{{ allWorks.course }}</div>
  302. </el-tooltip>
  303. <div class="ml">目录</div>
  304. <div class="cru_selectBox">
  305. <div v-for="(dy, dyIndex) in dyList2" :key="dyIndex">
  306. <div class="blue_box_one" @click="isOpen(dyIndex)">
  307. <div>第{{ dy.id + 1 }}阶段</div>
  308. <div>{{ dy.name }}</div>
  309. </div>
  310. <div
  311. class="twoChild"
  312. :class="{
  313. navActive: dy.isOpen,
  314. }"
  315. >
  316. <div
  317. class="navChild"
  318. v-for="(nav, navIndex) in dy.taskList"
  319. :key="navIndex"
  320. >
  321. <div
  322. class="navTask"
  323. @click="openTask(dy.id, nav.id, dyIndex, navIndex)"
  324. :class="{
  325. openTaskActive:
  326. nav.id == taskCount &&
  327. dy.id + '-' + nav.id == navId &&
  328. dy.id == stageIndex,
  329. }"
  330. >
  331. <!-- :class="{
  332. openTaskActive:
  333. nav.id == taskCount &&
  334. dy.id + '-' + nav.id == navId &&
  335. dy.id == stageIndex,
  336. }" -->
  337. <div
  338. class="vedioNav"
  339. :class="{
  340. isClick:
  341. nav.id == taskCount &&
  342. dy.id + '-' + nav.id == navId &&
  343. dy.id == stageIndex,
  344. }"
  345. style="margin: 0"
  346. >
  347. 任务{{ navIndex + 1 }}
  348. </div>
  349. <div
  350. class="isWorkCss"
  351. v-if="nav.isWork && nav.isWork == true"
  352. >
  353. <img src="../../../assets/icon/isWork.png" alt="" />
  354. </div>
  355. <el-tooltip
  356. class="navTaskname item"
  357. effect="light"
  358. :content="nav.name"
  359. placement="top"
  360. >
  361. <div>{{ nav.name }}</div>
  362. </el-tooltip>
  363. </div>
  364. </div>
  365. </div>
  366. </div>
  367. </div>
  368. </div>
  369. <div
  370. class="shuBox"
  371. v-if="worksDetail.length"
  372. :class="{ fullBox: full }"
  373. >
  374. <div
  375. class="allBox"
  376. v-for="(sin, sIndex) in sInfo"
  377. :key="sIndex"
  378. >
  379. <div
  380. class="zyBox"
  381. v-if="sin.course"
  382. :class="{ fullZyBox: full }"
  383. >
  384. <div class="top" :id="`${sin.stage}+${sin.task}`">
  385. <div class="jdName">
  386. <div>
  387. {{
  388. "第" +
  389. (sin.stage + 1) +
  390. "阶段 " +
  391. dyList[sin.stage].name
  392. }}
  393. </div>
  394. <div
  395. class="taskName"
  396. style="width: 100%; justify-content: space-between"
  397. >
  398. <div
  399. class="taskName"
  400. :id="sin.stage + '-' + sin.task"
  401. :scrollindex="sIndex"
  402. >
  403. <div class="task">任务{{ sin.task + 1 }}</div>
  404. <div>
  405. {{ dyList[sin.stage].taskList[sin.task].name }}
  406. </div>
  407. </div>
  408. <div v-if="worksDetail[sIndex].wpptInfo.length > 0">
  409. <el-button
  410. type="primary"
  411. size="small"
  412. @click="
  413. openFile2(worksDetail[sIndex].wpptInfo[0])
  414. "
  415. >
  416. 查看文档</el-button
  417. >
  418. </div>
  419. </div>
  420. </div>
  421. </div>
  422. <div class="contentBox">
  423. <div class="contentAuto">
  424. <!-- :style="{
  425. width: worksDetail[sIndex].eList.length
  426. ? '95%'
  427. : '95%',
  428. }" -->
  429. <div
  430. class="left_top"
  431. v-if="worksDetail[sIndex].img.length > 0"
  432. >
  433. <div
  434. v-if="
  435. worksDetail[sIndex].img[
  436. worksDetail[sIndex].imgIndex
  437. ].score
  438. "
  439. style="float: right; margin-right: 10px"
  440. >
  441. 评分:{{
  442. worksDetail[sIndex].img[
  443. worksDetail[sIndex].imgIndex
  444. ].score
  445. }}
  446. </div>
  447. <div
  448. class="bigImg"
  449. v-if="
  450. worksDetail[sIndex].img &&
  451. worksDetail[sIndex].img.length
  452. "
  453. >
  454. <img
  455. @click="
  456. previewImg(
  457. worksDetail[sIndex].img[
  458. worksDetail[sIndex].imgIndex
  459. ].src
  460. )
  461. "
  462. :src="
  463. worksDetail[sIndex].img[
  464. worksDetail[sIndex].imgIndex
  465. ].src
  466. "
  467. alt
  468. />
  469. </div>
  470. <div
  471. class="thumbnail"
  472. v-if="
  473. worksDetail[sIndex].img &&
  474. worksDetail[sIndex].img.length
  475. "
  476. >
  477. <div
  478. v-for="(item, index) in worksDetail[sIndex].img"
  479. :key="index"
  480. :class="
  481. worksDetail[sIndex].imgIndex == index
  482. ? 'isClick'
  483. : ''
  484. "
  485. >
  486. <img
  487. :src="item.src"
  488. alt
  489. @click="worksDetail[sIndex].imgIndex = index"
  490. />
  491. </div>
  492. </div>
  493. <div class="work_nopicture" v-else>暂无上传截图</div>
  494. </div>
  495. <div
  496. class="left_top"
  497. v-if="worksDetail[sIndex].answerInfo.length > 0"
  498. >
  499. <div
  500. v-if="worksDetail[sIndex].answerInfo[0].score"
  501. style="float: right; margin-right: 10px"
  502. >
  503. 评分:{{ worksDetail[sIndex].answerInfo[0].score }}
  504. </div>
  505. <div
  506. class="a_add_title"
  507. style="
  508. display: flex;
  509. flex-direction: row;
  510. align-items: center;
  511. justify-content: flex-start;
  512. flex-wrap: wrap;
  513. margin-bottom: 10px;
  514. "
  515. >
  516. <div style="font-size: 16px">问答</div>
  517. </div>
  518. <div class="answerbox">
  519. <div style="min-width: 80px">问答标题</div>
  520. <div>
  521. {{
  522. worksDetail[sIndex].answerInfo[0].answerInfo
  523. .answerTitle
  524. }}
  525. </div>
  526. </div>
  527. <div class="answerbox1">
  528. <div style="min-width: 60px">学生回答</div>
  529. <div>
  530. {{
  531. worksDetail[sIndex].answerInfo[0].answerInfo
  532. .answer
  533. }}
  534. </div>
  535. </div>
  536. </div>
  537. <div
  538. class="left_top"
  539. v-if="worksDetail[sIndex].askInfo.length > 0"
  540. >
  541. <div>
  542. <div
  543. v-if="worksDetail[sIndex].askInfo[0].score"
  544. style="float: right; margin-right: 10px"
  545. >
  546. 评分:{{ worksDetail[sIndex].askInfo[0].score }}
  547. </div>
  548. <div
  549. class="a_add_title"
  550. style="
  551. display: flex;
  552. flex-direction: row;
  553. align-items: center;
  554. justify-content: flex-start;
  555. flex-wrap: wrap;
  556. "
  557. >
  558. <div style="font-size: 16px">问卷工具</div>
  559. </div>
  560. <div
  561. class="a_add_title"
  562. style="
  563. display: flex;
  564. flex-direction: row;
  565. align-items: center;
  566. /* justify-content: center; */
  567. flex-wrap: wrap;
  568. margin-top: 10px;
  569. font-size: 16px;
  570. "
  571. >
  572. <div style="margin-right: 10px">标题:</div>
  573. <div>
  574. {{
  575. worksDetail[sIndex].askInfo[0].askInfo.askJson
  576. .askTitle
  577. }}
  578. </div>
  579. </div>
  580. <div class="a_addBox">
  581. <div style="font-size: 16px; color: #c7c7c7">
  582. 内容
  583. </div>
  584. <div
  585. :class="
  586. worksDetail[sIndex].askInfo.length > 1
  587. ? 'a_add_box'
  588. : 'isAddBox'
  589. "
  590. v-for="(item1, index1) in worksDetail[sIndex]
  591. .askInfo[0].askInfo.askJson.askCount"
  592. :key="index1"
  593. >
  594. <div class="a_add_head">
  595. <div style="display: flex">
  596. {{ index1 + 1 + "、" }}
  597. <div>
  598. 题目:{{
  599. worksDetail[sIndex].askInfo[0].askInfo
  600. .askJson.askJson[index1].askstitle
  601. }}
  602. </div>
  603. </div>
  604. </div>
  605. <div class="a_add_body">
  606. <div class="a_add_input">
  607. <el-radio-group
  608. v-if="
  609. worksDetail[sIndex].askInfo[0].askInfo
  610. .askJson.askJson[index1].type ==
  611. '1' ||
  612. !worksDetail[sIndex].askInfo[0].askInfo
  613. .askJson.askJson[index1].type
  614. "
  615. v-model="
  616. worksDetail[sIndex].askInfo[0].askInfo
  617. .anwer[index1]
  618. "
  619. >
  620. <el-radio
  621. v-for="(
  622. item2, checkIndex
  623. ) in worksDetail[sIndex].askInfo[0]
  624. .askInfo.askJson.askJson[index1]
  625. .checkList"
  626. :key="checkIndex"
  627. :label="checkIndex"
  628. disabled
  629. class="redioStyle"
  630. ><span v-html="item2"></span
  631. ></el-radio>
  632. </el-radio-group>
  633. <el-checkbox-group
  634. v-model="
  635. worksDetail[sIndex].askInfo[0].askInfo
  636. .anwer[index1]
  637. "
  638. v-if="
  639. worksDetail[sIndex].askInfo[0].askInfo
  640. .askJson.askJson[index1].type == '2'
  641. "
  642. >
  643. <el-checkbox
  644. v-for="(
  645. item2, checkIndex1
  646. ) in worksDetail[sIndex].askInfo[0]
  647. .askInfo.askJson.askJson[index1]
  648. .checkList"
  649. :key="checkIndex1"
  650. :label="checkIndex1"
  651. disabled
  652. class="redioStyle"
  653. ><span v-html="item2"></span>
  654. </el-checkbox>
  655. </el-checkbox-group>
  656. </div>
  657. </div>
  658. </div>
  659. </div>
  660. </div>
  661. </div>
  662. <div
  663. class="left_top"
  664. v-if="worksDetail[sIndex].chooseInfo.length > 0"
  665. >
  666. <div v-for="(lcc, lccindex) in worksDetail[sIndex].chooseInfo" :key="lccindex + 'a'">
  667. <div
  668. v-if="lcc.score"
  669. style="float: right; margin-right: 10px"
  670. >
  671. 评分:{{
  672. lcc.score
  673. }}
  674. </div>
  675. <div
  676. class="a_add_title"
  677. style="
  678. display: flex;
  679. flex-direction: row;
  680. align-items: center;
  681. justify-content: flex-start;
  682. flex-wrap: wrap;
  683. "
  684. >
  685. <div style="font-size: 16px">选择题工具{{ lccindex + 1 }}</div>
  686. </div>
  687. <div class="a_addBox">
  688. <div style="font-size: 16px; color: #c7c7c7">
  689. 题目内容
  690. </div>
  691. <div
  692. :class="
  693. worksDetail[sIndex].askInfo.length > 1
  694. ? 'a_add_box'
  695. : 'isAddBox'
  696. "
  697. v-for="(item1, index1) in lcc.chooseInfo.testJson"
  698. :key="index1 + 'a'"
  699. >
  700. <div class="a_add_head">
  701. <div style="display: flex">
  702. {{ index1 + 1 + "、" }}
  703. <div style="font-size: 14px;">
  704. 题目:{{
  705. item1.teststitle
  706. }}
  707. </div>
  708. </div>
  709. <img
  710. v-if="
  711. item1.img
  712. "
  713. :src="
  714. item1.img
  715. "
  716. style="
  717. height: 300px;
  718. margin-top: 10px;
  719. max-width: 100%;
  720. "
  721. />
  722. </div>
  723. <div class="a_add_body">
  724. <div class="a_add_input">
  725. <el-radio-group
  726. v-model="
  727. lcc.chooseInfo.radio[index1]
  728. "
  729. v-if="
  730. item1.type == '1'
  731. "
  732. >
  733. <div class="radioBox">
  734. <el-radio
  735. v-for="(
  736. item2, checkIndex
  737. ) in item1.checkList"
  738. :key="checkIndex + 'b'"
  739. :label="checkIndex"
  740. disabled
  741. :class="[item1.answer == checkIndex ? 'redioStyle5':'redioStyle2']"
  742. >
  743. <div
  744. v-if="
  745. item2 &&
  746. item2.imgType &&
  747. item2.imgType == 1
  748. "
  749. >
  750. <div
  751. class="inImg"
  752. @click.stop="
  753. previewImg(item2.src)
  754. "
  755. >
  756. <img :src="item2.src" alt="" />
  757. </div>
  758. </div>
  759. <span v-else v-html="item2"></span>
  760. </el-radio>
  761. </div>
  762. </el-radio-group>
  763. <el-checkbox-group
  764. v-model="
  765. lcc.chooseInfo.radio[index1]
  766. "
  767. v-if="
  768. item1.type == '2'
  769. "
  770. >
  771. <div class="radioBox">
  772. <el-checkbox
  773. v-for="(
  774. item2, checkIndex
  775. ) in item1.checkList"
  776. :key="checkIndex + 'c'"
  777. :label="checkIndex"
  778. disabled
  779. :class="[item1.answer.includes(checkIndex) ? 'redioStyle3':'redioStyle4']"
  780. >
  781. <div
  782. style="margin-right: 10px"
  783. v-if="
  784. item2 &&
  785. item2.imgType &&
  786. item2.imgType == 1
  787. "
  788. >
  789. <div
  790. class="inImg"
  791. @click.stop="
  792. previewImg(item2.src)
  793. "
  794. >
  795. <img :src="item2.src" alt="" />
  796. </div>
  797. </div>
  798. <span v-else v-html="item2"></span>
  799. </el-checkbox>
  800. </div>
  801. </el-checkbox-group>
  802. </div>
  803. </div>
  804. </div>
  805. </div>
  806. </div>
  807. </div>
  808. <div
  809. class="left_top"
  810. v-if="worksDetail[sIndex].wpptInfo.length > 0"
  811. >
  812. <div
  813. v-if="worksDetail[sIndex].wpptInfo[0].score"
  814. style="float: right; margin-right: 10px"
  815. >
  816. 评分:{{ worksDetail[sIndex].wpptInfo[0].score }}
  817. </div>
  818. <div
  819. style="height: 500px"
  820. @click="
  821. openFile(worksDetail[sIndex].wpptInfo[0].wpptInfo)
  822. "
  823. >
  824. <div
  825. @click="
  826. openFile(
  827. worksDetail[sIndex].wpptInfo[0].wpptInfo
  828. )
  829. "
  830. style="
  831. width: 100%;
  832. height: 500px;
  833. position: absolute;
  834. z-index: 999;
  835. "
  836. ></div>
  837. <pdf
  838. v-if="showPDF"
  839. :pdfUrl="worksDetail[sIndex].wpptInfo[0].wpptInfo"
  840. style="width: 100%; height: 95%; overflow: auto"
  841. ></pdf>
  842. <iframe
  843. v-else
  844. :src="worksDetail[sIndex].wpptInfo[0].wpptInfo"
  845. frameborder="0"
  846. width="100%"
  847. height="100%"
  848. ></iframe>
  849. </div>
  850. </div>
  851. <div
  852. class="left_top"
  853. v-if="worksDetail[sIndex].pjInfo.length > 0"
  854. >
  855. <div style="width: 100%">
  856. <div
  857. v-if="worksDetail[sIndex].pjInfo[0].score"
  858. style="float: right; margin-right: 10px"
  859. >
  860. 评分:{{ worksDetail[sIndex].pjInfo[0].score }}
  861. </div>
  862. <div
  863. class="a_add_title"
  864. style="
  865. display: flex;
  866. flex-direction: row;
  867. align-items: center;
  868. justify-content: flex-start;
  869. flex-wrap: wrap;
  870. "
  871. >
  872. <div style="font-size: 16px">个人评价工具</div>
  873. </div>
  874. <div class="evalCss">
  875. <div
  876. class="middleBox"
  877. v-if="
  878. worksDetail[sIndex].pjInfo[0].answer.eStar
  879. "
  880. >
  881. <div
  882. class="pfBox"
  883. v-for="(e, eIndex) in worksDetail[sIndex]
  884. .pjInfo[0].rateJson"
  885. :key="eIndex"
  886. >
  887. <div class="nameAndrate">
  888. <div>{{ e.value }}</div>
  889. <el-rate
  890. v-model="
  891. worksDetail[sIndex].pjInfo[0].answer
  892. .eStar[eIndex]
  893. "
  894. disabled
  895. ></el-rate>
  896. </div>
  897. <div v-if="e.detail">{{ e.detail }}</div>
  898. </div>
  899. <div class="bz">
  900. <textarea
  901. disabled
  902. rows="4"
  903. class="pj"
  904. style="
  905. padding: 10px 5px;
  906. width: 95%;
  907. background: #f7f6f9;
  908. font-size: 14px;
  909. text-indent: 10px;
  910. "
  911. cols
  912. v-model="
  913. worksDetail[sIndex].pjInfo[0].answer
  914. .eBzText
  915. "
  916. placeholder="请输入评价内容..."
  917. ></textarea>
  918. </div>
  919. </div>
  920. </div>
  921. </div>
  922. </div>
  923. <div
  924. class="left_top"
  925. v-if="worksDetail[sIndex].xztkInfo.length > 0"
  926. >
  927. <div
  928. v-if="worksDetail[sIndex].xztkInfo[0].score"
  929. style="float: right; margin-right: 10px"
  930. >
  931. 评分:{{ worksDetail[sIndex].xztkInfo[0].score }}
  932. </div>
  933. <div
  934. class="a_add_title"
  935. style="
  936. display: flex;
  937. flex-direction: row;
  938. align-items: center;
  939. justify-content: flex-start;
  940. flex-wrap: wrap;
  941. "
  942. >
  943. <div style="font-size: 16px">选择匹配工具</div>
  944. </div>
  945. <div class="select_box2_box">
  946. <div class="select_box2_img">
  947. <img
  948. :src="
  949. worksDetail[sIndex].xztkInfo[0].selectJson.url
  950. "
  951. @click="
  952. previewImg(
  953. worksDetail[sIndex].xztkInfo[0].selectJson
  954. .url
  955. )
  956. "
  957. alt=""
  958. />
  959. </div>
  960. <div class="rightWidthCss">
  961. <div style="padding-top: 15px">
  962. <div
  963. class="select_box2_answer_box"
  964. v-for="(item2, checkIndex) in worksDetail[
  965. sIndex
  966. ].xztkInfo[0].selectJson.select"
  967. :key="checkIndex"
  968. >
  969. <span style="min-width: 30px"
  970. >{{ checkIndex + 1 }}、</span
  971. >
  972. <el-select
  973. disabled
  974. v-model="
  975. worksDetail[sIndex].xztkInfo[0].answer[
  976. checkIndex
  977. ]
  978. "
  979. placeholder="请选择正确答案"
  980. >
  981. <el-option
  982. v-for="(e, eIndex) in worksDetail[sIndex]
  983. .xztkInfo[0].selectJson.select"
  984. :key="eIndex"
  985. :label="e"
  986. :value="eIndex"
  987. >
  988. </el-option>
  989. </el-select>
  990. </div>
  991. </div>
  992. <div class="rightAnswerCss">
  993. <div
  994. v-for="(a, aIndex) in worksDetail[sIndex]
  995. .xztkInfo[0].selectJson.answer"
  996. :key="aIndex"
  997. class="rightAnswer"
  998. >
  999. <div
  1000. v-if="
  1001. worksDetail[sIndex].xztkInfo[0].answer[
  1002. aIndex
  1003. ] === a
  1004. "
  1005. style="color: #767de1"
  1006. >
  1007. 回答正确
  1008. </div>
  1009. <div v-else>回答错误</div>
  1010. <div
  1011. style="margin-left: 10px"
  1012. v-if="
  1013. worksDetail[sIndex].xztkInfo[0].answer[
  1014. aIndex
  1015. ] !== a
  1016. "
  1017. >
  1018. 正确答案:
  1019. </div>
  1020. <div
  1021. :class="
  1022. worksDetail[sIndex].xztkInfo[0].answer[
  1023. aIndex
  1024. ] === a
  1025. ? 'blueCss'
  1026. : 'redCss'
  1027. "
  1028. >
  1029. {{
  1030. worksDetail[sIndex].xztkInfo[0].selectJson
  1031. .select[a]
  1032. }}
  1033. </div>
  1034. </div>
  1035. </div>
  1036. </div>
  1037. </div>
  1038. </div>
  1039. <div
  1040. class="left_top"
  1041. v-if="worksDetail[sIndex].lccjInfo.length > 0"
  1042. >
  1043. <div class="sentenBox" v-for="(lcc, lccindex) in worksDetail[sIndex].lccjInfo" :key="lccindex +'d'">
  1044. <div
  1045. v-if="lcc.score"
  1046. style="float: right; margin-right: 10px"
  1047. >
  1048. 评分:{{ lcc.score }}
  1049. </div>
  1050. <div
  1051. class="a_add_title"
  1052. style="
  1053. display: flex;
  1054. flex-direction: row;
  1055. align-items: center;
  1056. justify-content: flex-start;
  1057. flex-wrap: wrap;
  1058. "
  1059. >
  1060. <div style="font-size: 16px">排序工具</div>
  1061. </div>
  1062. <div
  1063. v-for="(st, stIndex) in lcc.lccjInfo"
  1064. :key="stIndex+'e'"
  1065. style="padding-bottom: 20px"
  1066. >
  1067. <div
  1068. style="
  1069. padding: 15px 0 10px 20px;
  1070. font-size: 18px;
  1071. "
  1072. >
  1073. 第{{ stIndex + 1 }}题
  1074. </div>
  1075. <div class="isWrong">
  1076. <div
  1077. class="cardList1"
  1078. v-if="st.chooseSenList"
  1079. >
  1080. <div class="cardBox">
  1081. <div
  1082. v-for="(s, sIndex) in st.chooseSenList"
  1083. :key="sIndex+'f'"
  1084. >
  1085. <el-tooltip
  1086. class="item"
  1087. effect="light"
  1088. :content="s"
  1089. placement="top"
  1090. >
  1091. <div class="isCard">
  1092. <div>{{ s }}</div>
  1093. </div>
  1094. </el-tooltip>
  1095. </div>
  1096. </div>
  1097. <div class="cardAnswerBox">
  1098. 组成句子:{{
  1099. st.chooseSenList.join(" ")
  1100. }}
  1101. </div>
  1102. </div>
  1103. <div
  1104. class="answerRight isTj"
  1105. v-if="
  1106. st.chooseSenList.toString() ==
  1107. st.rightAnswer.toString()
  1108. "
  1109. >
  1110. <div class="isTjImg">
  1111. <img
  1112. src="../../../assets/icon/conSentences/right.png"
  1113. alt=""
  1114. />
  1115. </div>
  1116. <div>回答正确</div>
  1117. </div>
  1118. <div
  1119. class="answerRight isTj"
  1120. v-if="
  1121. st.chooseSenList.toString() !=
  1122. st.rightAnswer.toString()
  1123. "
  1124. >
  1125. <div class="isTjImg">
  1126. <img
  1127. src="../../../assets/icon/conSentences/wrong.png"
  1128. alt=""
  1129. />
  1130. </div>
  1131. <div>回答错误</div>
  1132. </div>
  1133. </div>
  1134. <div
  1135. v-if="
  1136. st.chooseSenList.toString() !=
  1137. st.rightAnswer.toString()
  1138. "
  1139. >
  1140. <div style="padding: 15px 0 10px 20px">
  1141. 正确答案如下:
  1142. </div>
  1143. <div
  1144. class="cardList"
  1145. v-if="st.rightAnswer"
  1146. style="
  1147. border: none;
  1148. padding: 10px 0 10px 10px;
  1149. margin: 0;
  1150. "
  1151. >
  1152. <div class="cardBox">
  1153. <div
  1154. v-for="(r, rIndex) in st.rightAnswer"
  1155. :key="rIndex + 'g'"
  1156. >
  1157. <el-tooltip
  1158. class="item"
  1159. effect="light"
  1160. :content="r"
  1161. placement="top"
  1162. >
  1163. <div class="isCard1">
  1164. <div>{{ r }}</div>
  1165. </div>
  1166. </el-tooltip>
  1167. </div>
  1168. </div>
  1169. <div class="cardAnswerBox">
  1170. 组成句子:{{
  1171. st.rightAnswer.join(" ")
  1172. }}
  1173. </div>
  1174. </div>
  1175. </div>
  1176. </div>
  1177. </div>
  1178. </div>
  1179. <div
  1180. class="left_top"
  1181. v-if="worksDetail[sIndex].bgInfo.length > 0"
  1182. >
  1183. <div
  1184. v-if="worksDetail[sIndex].bgInfo[0].score"
  1185. style="float: right; margin-right: 10px"
  1186. >
  1187. 评分:{{ worksDetail[sIndex].bgInfo[0].score }}
  1188. </div>
  1189. <div
  1190. class="a_add_title"
  1191. style="
  1192. display: flex;
  1193. flex-direction: row;
  1194. align-items: center;
  1195. justify-content: flex-start;
  1196. flex-wrap: wrap;
  1197. margin-bottom: 10px;
  1198. "
  1199. >
  1200. <div style="font-size: 16px">表格工具</div>
  1201. </div>
  1202. <el-form>
  1203. <div
  1204. class="cont"
  1205. v-html="worksDetail[sIndex].bgInfo[0].bgInfo.text"
  1206. ></div>
  1207. </el-form>
  1208. </div>
  1209. <div
  1210. class="left_top"
  1211. v-if="worksDetail[sIndex].cocopiInfo.length > 0"
  1212. >
  1213. <div
  1214. v-if="worksDetail[sIndex].cocopiInfo[0].score"
  1215. style="float: right; margin-right: 10px"
  1216. >
  1217. 评分:{{ worksDetail[sIndex].cocopiInfo[0].score }}
  1218. </div>
  1219. <div
  1220. class="a_add_title"
  1221. style="
  1222. display: flex;
  1223. flex-direction: row;
  1224. align-items: center;
  1225. justify-content: flex-start;
  1226. flex-wrap: wrap;
  1227. "
  1228. >
  1229. <div style="font-size: 16px">cocopi工具</div>
  1230. </div>
  1231. <div
  1232. v-for="(c, cIndex) in worksDetail[sIndex]
  1233. .cocopiInfo"
  1234. :key="cIndex"
  1235. >
  1236. <div v-if="c.type == 1">
  1237. <div class="bigImg">
  1238. <img
  1239. :src="c.url"
  1240. @click="previewImg(c.url)"
  1241. alt=""
  1242. />
  1243. </div>
  1244. </div>
  1245. <div
  1246. v-if="c.type == 2 || c.type == 3"
  1247. @click="openFile(c.url, c.type)"
  1248. style="
  1249. width: 80px;
  1250. height: 30px;
  1251. text-align: center;
  1252. line-height: 30px;
  1253. margin: 10px 0;
  1254. "
  1255. >
  1256. <el-button type="primary" size="small"
  1257. >全屏查看</el-button
  1258. >
  1259. </div>
  1260. <div v-if="c.type == 2">
  1261. <div class="workImg">
  1262. <img
  1263. :src="word2"
  1264. @click="openFile(c.url, c.type)"
  1265. alt
  1266. />
  1267. </div>
  1268. </div>
  1269. <div v-if="c.type == 3">
  1270. <div class="workImg">
  1271. <img
  1272. :src="word2"
  1273. @click="openFile(c.url, c.type)"
  1274. alt
  1275. />
  1276. </div>
  1277. </div>
  1278. </div>
  1279. </div>
  1280. <div
  1281. class="left_top"
  1282. v-if="worksDetail[sIndex].wordInfo.length > 0"
  1283. >
  1284. <div
  1285. v-if="worksDetail[sIndex].wordInfo[0].score"
  1286. style="float: right; margin-right: 10px"
  1287. >
  1288. 评分:{{ worksDetail[sIndex].wordInfo[0].score }}
  1289. </div>
  1290. <div
  1291. class="a_add_title"
  1292. style="
  1293. display: flex;
  1294. flex-direction: row;
  1295. align-items: center;
  1296. justify-content: flex-start;
  1297. flex-wrap: wrap;
  1298. margin-bottom: 10px;
  1299. "
  1300. >
  1301. <div style="font-size: 16px">文档工具</div>
  1302. </div>
  1303. <el-form>
  1304. <div
  1305. class="cont"
  1306. v-html="
  1307. worksDetail[sIndex].wordInfo[0].wordInfo.text
  1308. "
  1309. ></div>
  1310. </el-form>
  1311. </div>
  1312. </div>
  1313. </div>
  1314. </div>
  1315. <div class="right_score" :class="{ rightScoreFullBox: full }">
  1316. <div
  1317. class="sd_score"
  1318. style="
  1319. box-sizing: border-box;
  1320. width: 100%;
  1321. box-shadow: none;
  1322. position: relative;
  1323. "
  1324. >
  1325. <div class="worksTimeBlack">
  1326. <div class="worksTimeBlackTit">
  1327. <div>
  1328. 任务得分: <span style="color: rgba(54, 129, 252, 1);margin-left: 5px;">{{ totalScore(worksDetail[sIndex].rateList) }}</span>分
  1329. </div>
  1330. </div>
  1331. <div class="worksTime">
  1332. 作业提交时间:<span style="width: auto"
  1333. >{{ worksDetail[sIndex].time }}
  1334. </span>
  1335. </div>
  1336. </div>
  1337. <div v-if="worksDetail[sIndex].eList.length">
  1338. <div>
  1339. <div class="score_boxTit"><span>分数详情</span></div>
  1340. <div
  1341. class="score_box"
  1342. v-for="(item, index) in worksDetail[sIndex].eList"
  1343. :key="index"
  1344. >
  1345. <el-tooltip
  1346. class="item"
  1347. effect="dark"
  1348. v-if="worksDetail[sIndex].state == 5"
  1349. :content="item.detail"
  1350. placement="top-start"
  1351. >
  1352. <div class="RootImgBlock">
  1353. <img
  1354. v-if="item.isai == 1"
  1355. class="RootImg"
  1356. src="../../../assets/icon/conSentences/Brootper.svg"
  1357. alt=""
  1358. />
  1359. {{ item.detail }}
  1360. </div>
  1361. </el-tooltip>
  1362. <el-tooltip
  1363. class="item"
  1364. effect="dark"
  1365. v-else
  1366. :content="item.value"
  1367. placement="top-start"
  1368. >
  1369. <div class="RootImgBlock">
  1370. <img
  1371. v-if="item.isai == 1"
  1372. class="RootImg"
  1373. src="../../../assets/icon/conSentences/Brootper.svg"
  1374. alt=""
  1375. />
  1376. {{ item.value }}
  1377. </div>
  1378. </el-tooltip>
  1379. <el-rate
  1380. class="rate_size"
  1381. style="min-width: 120px"
  1382. v-model="worksDetail[sIndex].rateList[item.detail]"
  1383. @change="getStar(sIndex)"
  1384. ></el-rate>
  1385. </div>
  1386. </div>
  1387. <div class="worksTarget" v-if="isShow(worksDetail[sIndex].eList)"><span>目标</span></div>
  1388. <div class="worksTargetCon" v-if="isShow(worksDetail[sIndex].eList)">
  1389. <div v-for="(item,tarIndex) in worksDetail[sIndex].eList" :key="tarIndex">
  1390. <span v-if="worksDetail[sIndex].state == 5"> {{ item.target }}</span>
  1391. <span v-else> {{ item.target[item.target.length-1] }}</span>
  1392. </div>
  1393. </div>
  1394. </div>
  1395. </div>
  1396. </div>
  1397. </div>
  1398. </div>
  1399. </div>
  1400. <div class="buttonCss">
  1401. <el-button type="primary" size="small" @click="updatePj"
  1402. >保存评分</el-button
  1403. >
  1404. </div>
  1405. </div>
  1406. </el-dialog>
  1407. </div>
  1408. <div class="student_page" v-if="!typeCheck">
  1409. <el-pagination
  1410. background
  1411. layout="prev, pager, next"
  1412. :page-size="10"
  1413. :total="total"
  1414. :current-page.sync="page"
  1415. v-if="page"
  1416. @current-change="handleCurrentChange"
  1417. ></el-pagination>
  1418. </div>
  1419. </div>
  1420. <el-dialog :visible.sync="pictureDialog" size="tiny">
  1421. <img width="100%" :src="dialogImageUrl" alt />
  1422. </el-dialog>
  1423. <el-dialog
  1424. title="课程评分"
  1425. :visible.sync="dataVisible"
  1426. :append-to-body="true"
  1427. width="1100px"
  1428. :before-close="handleClose"
  1429. class="dialog_diy"
  1430. >
  1431. <div>
  1432. <div class="a_addBox2">
  1433. <StudentData :studentInfo="studentInfo"></StudentData>
  1434. </div>
  1435. </div>
  1436. <span slot="footer" class="dialog-footer">
  1437. <el-button @click="dataVisible = false">关 闭</el-button>
  1438. </span>
  1439. </el-dialog>
  1440. <el-dialog
  1441. title="查看选择题"
  1442. :visible.sync="dialogVisible4"
  1443. :append-to-body="true"
  1444. width="800px"
  1445. :before-close="handleClose"
  1446. class="dialog_diy"
  1447. >
  1448. <div>
  1449. <div
  1450. class="a_add_title"
  1451. style="
  1452. display: flex;
  1453. flex-direction: row;
  1454. align-items: center;
  1455. justify-content: center;
  1456. "
  1457. >
  1458. <div style="font-size: 20px">{{ askJson.askTitle }}</div>
  1459. </div>
  1460. <div class="a_addBox">
  1461. <div style="font-size: 16px; color: #c7c7c7">内容</div>
  1462. <div
  1463. class="a_add_box"
  1464. v-for="(item, index) in askJson.askJson"
  1465. :key="index"
  1466. >
  1467. <div class="a_add_head">
  1468. <div style="display: flex">
  1469. {{ index + 1 + "、" }}
  1470. <div>题目:{{ item.askstitle }}</div>
  1471. </div>
  1472. </div>
  1473. <div class="a_add_body">
  1474. <div class="a_add_input">
  1475. <el-radio-group v-model="askJson.radio[index]">
  1476. <el-radio
  1477. v-for="(item3, checkIndex1) in item.checkList"
  1478. :key="checkIndex1"
  1479. :label="checkIndex1"
  1480. class="redioStyle"
  1481. disabled
  1482. >{{ item3 }}</el-radio
  1483. >
  1484. </el-radio-group>
  1485. </div>
  1486. </div>
  1487. </div>
  1488. </div>
  1489. </div>
  1490. <span slot="footer" class="dialog-footer">
  1491. <el-button type="primary" @click="dialogVisible4 = false"
  1492. >关 闭</el-button
  1493. >
  1494. </span>
  1495. </el-dialog>
  1496. <el-dialog
  1497. title="文件预览"
  1498. :visible.sync="dialogVisible6"
  1499. width="100%"
  1500. :before-close="handleClose"
  1501. class="worksDialogCSS"
  1502. :append-to-body="true"
  1503. >
  1504. <div slot="title" class="header-title">
  1505. <div style="color: #fff">文件预览</div>
  1506. </div>
  1507. <pdf
  1508. v-if="showPDF"
  1509. :pdfUrl="pptImgUrl"
  1510. style="width: 100%; height: 95%; overflow: auto"
  1511. ></pdf>
  1512. <iframe
  1513. v-else
  1514. :src="pptImgUrl"
  1515. frameborder="0"
  1516. width="100%"
  1517. style="height: 95%;"
  1518. ></iframe>
  1519. </el-dialog>
  1520. <el-dialog
  1521. title="文件预览"
  1522. :visible.sync="worksDialog"
  1523. :before-close="handleClose"
  1524. class="worksDialogCSS"
  1525. :append-to-body="true"
  1526. >
  1527. <div slot="title" class="header-title">
  1528. <div style="color: #fff">导出作业集</div>
  1529. </div>
  1530. <exportWorksDialog :key="exportW" :digNum="digNum" :oid="oid" :worksDialog.sync="worksDialog" :worksDialogCon="worksDialogCon" :uid="exportPdfSetUid" :cid="id"></exportWorksDialog>
  1531. </el-dialog>
  1532. </div>
  1533. </template>
  1534. <script>
  1535. import StudentData from "./studentData";
  1536. import exportWorksDialog from "./exportWorksDialog";
  1537. import pdf from "./vpdf";
  1538. import htmlDocx from "html-docx-js/dist/html-docx";
  1539. import saveAs from "file-saver";
  1540. import html2canvas from "html2canvas";
  1541. import jspdf from "jspdf";
  1542. export default {
  1543. components: {
  1544. StudentData,
  1545. pdf,
  1546. exportWorksDialog
  1547. },
  1548. props: ["cid", "uid", "ooid","DState"],
  1549. data() {
  1550. return {
  1551. tableHeight: "500px",
  1552. isLoading: false,
  1553. studentLoading:false,
  1554. id: this.cid,
  1555. userid: this.uid,
  1556. oid: this.ooid,
  1557. studentId: "",
  1558. formLabelWidth: "100px",
  1559. dialogImageUrl: "",
  1560. pictureDialog: false,
  1561. dialogVisible: false,
  1562. dialogVisible1: false,
  1563. dialogVisible2: false,
  1564. dialogVisible3: false,
  1565. dialogVisible4: false,
  1566. dataVisible: false,
  1567. full: true,
  1568. isStar: 0,
  1569. studentInfo: {},
  1570. courseByUser: "诗词中的植物",
  1571. userName: "林点",
  1572. answerName: "宿赞公房",
  1573. studentAnswer: "雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》",
  1574. commentCount: 0,
  1575. publicIndex: 0,
  1576. allWorks: [],
  1577. playerOptions: {
  1578. playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
  1579. autoplay: false, //如果true,浏览器准备好时开始回放。
  1580. muted: false, // 默认情况下将会消除任何音频。
  1581. loop: false, // 导致视频一结束就重新开始。
  1582. preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
  1583. language: "zh-CN",
  1584. aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
  1585. fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
  1586. sources: [
  1587. {
  1588. type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 || "video/ogg"|| "video/webm"
  1589. src: "", //url地址require("../../../assets/media/aaa.mp4")
  1590. },
  1591. ],
  1592. // poster: require("../../../assets/tu31.png"), //你的封面地址
  1593. // poster: dataRes.imgUrl, //你的封面地址
  1594. notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
  1595. controlBar: {
  1596. timeDivider: true, //当前时间和持续时间的分隔符
  1597. durationDisplay: true, //显示持续时间
  1598. remainingTimeDisplay: false, //是否显示剩余时间功能
  1599. fullscreenToggle: true, //全屏按钮
  1600. },
  1601. },
  1602. playerO: {},
  1603. commentName: "谭子松",
  1604. commentTime: "2021/2/5",
  1605. commentAnswer:
  1606. "作为家长我很高兴看到孩子的进步,希望这个进步只是一个开始,在新学期能够继续延续,这样才能不负老师的期望",
  1607. tableData: [],
  1608. uploadBoolean: false,
  1609. studentMessage: [],
  1610. subject: "",
  1611. sClass: "",
  1612. stageIndex: "",
  1613. taskCount: "",
  1614. navId: "",
  1615. chooseDy: "",
  1616. uname: "",
  1617. choseClass:"",
  1618. chooseTask: "",
  1619. subjectJuri: [],
  1620. projectJuri: [],
  1621. pptImgUrl: "",
  1622. grade: [],
  1623. mr: require("../../../assets/icon/wheel.png"),
  1624. tx: require("../../../assets/avatar.png"),
  1625. projectchoose: "",
  1626. scopeId: "",
  1627. scopeId1: "",
  1628. thumbnail: [],
  1629. rateList: {
  1630. ca: 0,
  1631. sia: 0,
  1632. eta: 0,
  1633. pia: 0,
  1634. lra: 0,
  1635. content: "",
  1636. },
  1637. rateParams: [],
  1638. page: 1,
  1639. total: 0,
  1640. worksDetail: [],
  1641. suserId: "",
  1642. sInfo: {},
  1643. chapInfo: [],
  1644. showPDF: false,
  1645. dialogVisible6: false,
  1646. vedio: [],
  1647. file: [],
  1648. tType: 0,
  1649. chartObj: [],
  1650. pptImgUrl: "",
  1651. ooption: [],
  1652. option: {
  1653. tooltip: {
  1654. trigger: "item",
  1655. },
  1656. series: [
  1657. {
  1658. name: "量规评分",
  1659. type: "pie",
  1660. radius: "70%",
  1661. center: ["50%", "50%"],
  1662. data: [
  1663. { value: 0, name: "意识能力" },
  1664. { value: 0, name: "科学探究能力" },
  1665. { value: 0, name: "实践创新能力" },
  1666. { value: 0, name: "学习反思能力" },
  1667. { value: 0, name: "工程思维能力" },
  1668. ],
  1669. itemStyle: {
  1670. emphasis: {
  1671. shadowBlur: 10,
  1672. shadowOffsetX: 0,
  1673. shadowColor: "rgba(0, 0, 0, 0.5)",
  1674. },
  1675. normal: {
  1676. label: {
  1677. show: true,
  1678. formatter: "{d}%",
  1679. inside: true,
  1680. position: "inner",
  1681. },
  1682. labelLine: { show: false },
  1683. },
  1684. },
  1685. },
  1686. ],
  1687. },
  1688. // 雷达图的数据
  1689. radarOption: {
  1690. splitNumber: 5,
  1691. tooltip: {
  1692. triggerOn: "mousemove",
  1693. //雷达图的tooltip不会超出div,也可以设置position属性,position定位的tooltip 不会随着鼠标移动而位置变化,不友好
  1694. confine: true,
  1695. enterable: true, //鼠标是否可以移动到tooltip区域内
  1696. backgroundColor: "rgba(255,255,255,0.7)",
  1697. textStyle: {
  1698. // 文字样式
  1699. align: "left",
  1700. },
  1701. left: "right",
  1702. top: "bottom",
  1703. },
  1704. radar: {
  1705. radius: ["0%", "70%"],
  1706. shape: "circle",
  1707. center: ["50%", "50%"],
  1708. axisName: {
  1709. textStyle: {
  1710. // 文字样式
  1711. color: "#58a5e6",
  1712. },
  1713. formatter: function (value, indicator) {
  1714. // value = value.replace(/\S{2}/g, function (match) {
  1715. // return match + "\n";
  1716. // });
  1717. return value;
  1718. },
  1719. },
  1720. indicator: [
  1721. // 雷达图的指示器,用来指定雷达图中的多个变量(维度)
  1722. ],
  1723. },
  1724. // 雷达图背景的颜色,在这儿随便设置了一个颜色,完全不透明度为0,就实现了透明背景
  1725. splitArea: {
  1726. show: true,
  1727. areaStyle: {
  1728. color: "rgba(255,0,0,0)", // 图表背景的颜色
  1729. },
  1730. },
  1731. splitLine: {
  1732. show: true,
  1733. lineStyle: {
  1734. width: 1,
  1735. color: "rgba(131,141,158,.1)", // 设置网格的颜色
  1736. },
  1737. },
  1738. series: [
  1739. {
  1740. name: "能力图", // tooltip中的标题
  1741. type: "radar", // 表示是雷达图
  1742. symbol: "circle", // 拐点的样式,还可以取值'rect','angle'等
  1743. symbolSize: 8, // 拐点的大小
  1744. areaStyle: {
  1745. normal: {
  1746. width: 1,
  1747. opacity: 0.2,
  1748. },
  1749. },
  1750. data: [
  1751. {
  1752. // 设置各个指标原始值
  1753. value: [],
  1754. // 设置区域边框和区域的颜色
  1755. itemStyle: {
  1756. normal: {
  1757. color: "#58a5e6",
  1758. lineStyle: {
  1759. color: "#58a5e6",
  1760. },
  1761. },
  1762. },
  1763. },
  1764. ],
  1765. },
  1766. ],
  1767. },
  1768. askJson: {},
  1769. dyList: [],
  1770. dyList2: [],
  1771. userAarray: [],
  1772. classArray:[],
  1773. isPre: false,
  1774. isNext: false,
  1775. checkJson: [],
  1776. typeCheck: false,
  1777. word2: require("../../../assets/icon/word2.png"),
  1778. worksLoading:false,
  1779. cutTabNum:0,
  1780. allWorkData:[],
  1781. worksDialog : false,
  1782. worksDialogCon : {},
  1783. exportPdfSetUid:'',
  1784. exportW:0,
  1785. digNum:0
  1786. };
  1787. },
  1788. computed: {
  1789. totalScore(){
  1790. return function (val) {
  1791. let sco = 0
  1792. let num = 0
  1793. for (const key in val) {
  1794. if (val[key] && key != 'content') {
  1795. sco += val[key] * 1
  1796. }
  1797. num += 1
  1798. }
  1799. if (sco == 0) return '0.0'
  1800. return (sco / (num - 1)).toFixed(1)
  1801. }
  1802. },
  1803. isShow(){
  1804. return function (val) {
  1805. let num = 0
  1806. val.forEach(i => {
  1807. if (i.target) {
  1808. num++
  1809. }
  1810. });
  1811. return num*1
  1812. }
  1813. }
  1814. },
  1815. watch: {
  1816. typeCheck(newValue, oldValue) {
  1817. this.loading = true;
  1818. this.isLoading = true;
  1819. this.tableData = [];
  1820. if (newValue) {
  1821. if (this.cutTabNum==0) {
  1822. this.getWorks1();
  1823. }
  1824. if (this.cutTabNum==1) {
  1825. this.getStageWorks2()
  1826. }
  1827. if (this.cutTabNum==2) {
  1828. this.getTaskWorks2()
  1829. }
  1830. } else {
  1831. this.page = 1;
  1832. if (this.cutTabNum==0) {
  1833. this.getWorks()
  1834. }
  1835. if (this.cutTabNum==1) {
  1836. this.getStageWorks()
  1837. }
  1838. if (this.cutTabNum==2) {
  1839. this.getTaskWorks()
  1840. }
  1841. // this.getWorks();
  1842. }
  1843. },
  1844. },
  1845. mounted() {
  1846. this.$nextTick(function () {
  1847. this.tableHeight =
  1848. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  1849. if (this.tableHeight <= 530) {
  1850. this.tableHeight = 530;
  1851. }
  1852. // 监听窗口大小变化
  1853. let self = this;
  1854. window.onresize = function () {
  1855. self.tableHeight =
  1856. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  1857. if (self.tableHeight <= 530) {
  1858. self.tableHeight = 530;
  1859. }
  1860. };
  1861. });
  1862. },
  1863. methods: {
  1864. // 导出所有作业
  1865. exportPdfSetAllWork(){
  1866. this.worksDialog = true;
  1867. this.digNum = 1
  1868. this.exportW++
  1869. },
  1870. // 按任务查看导出作业集
  1871. exportPdfSetBtn(uid, con) {
  1872. this.worksDialog = true;
  1873. this.worksDialogCon = con;
  1874. this.exportPdfSetUid = uid;
  1875. this.digNum = 0
  1876. this.exportW++
  1877. },
  1878. cutTabData(val){
  1879. this.cutTabNum = val;
  1880. this.page = 1;
  1881. if (this.typeCheck) {
  1882. if (val==0) {
  1883. this.getWorks1()
  1884. }
  1885. if (val==1) {
  1886. this.getStageWorks2()
  1887. }
  1888. if (val==2) {
  1889. this.getTaskWorks2()
  1890. }
  1891. }else{
  1892. if (val==0) {
  1893. this.getWorks()
  1894. }
  1895. if (val==1) {
  1896. this.getStageWorks()
  1897. }
  1898. if (val==2) {
  1899. this.getTaskWorks()
  1900. }
  1901. }
  1902. },
  1903. getStageWorks(){
  1904. this.isLoading = true;
  1905. let params = {
  1906. cid: this.id,
  1907. uname: this.uname,
  1908. choseClass:this.choseClass,
  1909. stage: this.chooseDy,
  1910. task: this.chooseTask,
  1911. page: this.page,
  1912. };
  1913. this.ajax
  1914. .get(this.$store.state.api + "getCourseStageWorks", params) //getCourseWorks3
  1915. .then((res) => {
  1916. this.isLoading = false;
  1917. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1918. this.tableData = res.data[0];
  1919. this.classArray = res.data[1]
  1920. })
  1921. .catch((err) => {
  1922. this.isLoading = false;
  1923. console.error(err);
  1924. });
  1925. },
  1926. getStageWorks2(){
  1927. this.isLoading = true;
  1928. let params = {
  1929. cid: this.id,
  1930. uname: this.uname,
  1931. choseClass:this.choseClass,
  1932. stage: this.chooseDy,
  1933. task: this.chooseTask
  1934. };
  1935. this.ajax
  1936. .get(this.$store.state.api + "getCourseStageWorks2", params) //getCourseWorks3
  1937. .then((res) => {
  1938. this.isLoading = false;
  1939. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1940. this.tableData = res.data[0];
  1941. })
  1942. .catch((err) => {
  1943. this.isLoading = false;
  1944. console.error(err);
  1945. });
  1946. },
  1947. getTaskWorks(){
  1948. this.isLoading = true;
  1949. let params = {
  1950. cid: this.id,
  1951. uname: this.uname,
  1952. choseClass:this.choseClass,
  1953. stage:this.DState!=1 ? 0 : this.chooseDy,
  1954. task: this.chooseTask,
  1955. page: this.page,
  1956. };
  1957. this.ajax
  1958. .get(this.$store.state.api + "getCourseTaskWorks", params) //getCourseWorks3
  1959. .then((res) => {
  1960. this.isLoading = false;
  1961. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1962. this.tableData = res.data[0];
  1963. this.classArray = res.data[1]
  1964. })
  1965. .catch((err) => {
  1966. this.isLoading = false;
  1967. console.error(err);
  1968. });
  1969. },
  1970. getTaskWorks2(){
  1971. this.isLoading = true;
  1972. let params = {
  1973. cid: this.id,
  1974. uname: this.uname,
  1975. choseClass:this.choseClass,
  1976. stage:this.DState!=1 ? 0 : this.chooseDy,
  1977. task: this.chooseTask
  1978. };
  1979. this.ajax
  1980. .get(this.$store.state.api + "getCourseTaskWorks2", params) //getCourseWorks3
  1981. .then((res) => {
  1982. this.isLoading = false;
  1983. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  1984. this.tableData = res.data[0];
  1985. })
  1986. .catch((err) => {
  1987. this.isLoading = false;
  1988. console.error(err);
  1989. });
  1990. },
  1991. getPdf(){
  1992. this.worksLoading = true
  1993. let domHeight = this.$refs.reportPdf.offsetHeight;
  1994. console.log('this.$refs.reportPdf',this.$refs.reportPdf.offsetHeight);
  1995. let maxHeight = 64257;
  1996. html2canvas(this.$refs.reportPdf, {
  1997. useCORS: true, // 如果截图的内容里有图片,可能会有跨域的情况,加上这个参数,解决文件跨域问题
  1998. scale: (maxHeight/domHeight) > 1 ? 1: (maxHeight/domHeight)
  1999. }).then((canvas) => {
  2000. const contentWidth = canvas.width;
  2001. const contentHeight = canvas.height;
  2002. let pageHeight = contentWidth / 592.28 * 841.89;
  2003. let leftHeight = contentHeight;
  2004. //页面偏移
  2005. var position = 0;
  2006. //a4纸的尺寸[595.28,841.89],html页面生成的canvas在pdf中图片的宽高
  2007. var imgWidth = 595.28; // A4 宽度
  2008. var imgHeight = 592.28/contentWidth * contentHeight; // A4总高度
  2009. var pageData = canvas.toDataURL('image/jpeg', 1.0);
  2010. var pdf = new jspdf('', 'pt', [contentWidth, contentHeight]);
  2011. //有两个高度需要区分,一个是html页面的实际高度,和生成pdf的页面高度(841.89)
  2012. //当内容未超过pdf一页显示的范围,无需分页
  2013. // if (leftHeight < pageHeight) {
  2014. pdf.addImage(pageData, 'JPEG', 0, 0, contentWidth, contentHeight );
  2015. pdf.save( this.allWorks.course+'-作业集' + '-'+ this.allWorks.sName+'.pdf')
  2016. this.worksLoading = false
  2017. })
  2018. .catch((err) => {
  2019. this.worksLoading = false
  2020. console.log(err);
  2021. });
  2022. },
  2023. changeClass(){//切换班级
  2024. this.searchWork2();
  2025. this.getCourseDetail()
  2026. },
  2027. previewImg(url) {
  2028. this.$hevueImgPreview(url);
  2029. },
  2030. lookData(uid) {
  2031. let params = {
  2032. uid: uid,
  2033. cid: this.id,
  2034. };
  2035. this.ajax
  2036. .get(this.$store.state.api + "selectWorksDetail", params)
  2037. .then((res) => {
  2038. this.studentInfo = res.data[0][0];
  2039. this.dataVisible = true;
  2040. })
  2041. .catch((err) => {
  2042. console.error(err);
  2043. });
  2044. },
  2045. tableRowClassName({ row, rowIndex }) {
  2046. if ((rowIndex + 1) % 2 === 0) {
  2047. return "even_row";
  2048. } else {
  2049. return "";
  2050. }
  2051. },
  2052. handleClose(done) {
  2053. done();
  2054. },
  2055. tableRowClassName({ row, rowIndex }) {
  2056. if ((rowIndex + 1) % 2 === 0) {
  2057. return "even_row";
  2058. } else {
  2059. return "";
  2060. }
  2061. },
  2062. handleCurrentChange(val) {
  2063. this.page = val;
  2064. if (this.cutTabNum==0) {
  2065. this.getWorks()
  2066. }
  2067. if (this.cutTabNum==1) {
  2068. this.getStageWorks()
  2069. }
  2070. if (this.cutTabNum==2) {
  2071. this.getTaskWorks()
  2072. }
  2073. // this.getWorks();
  2074. },
  2075. lookWork(id, uid, type, index,con) {
  2076. this.scopeId1 = id;
  2077. this.studentId = uid;
  2078. let params = {
  2079. uid: uid,
  2080. cid: this.id,
  2081. };
  2082. this.ajax
  2083. .get(this.$store.state.api + "selectAllWorksDetail", params)
  2084. .then((res) => {
  2085. var b = res.data[0].reduce((result, item) => {
  2086. const key = item.stage + "-" + item.task;
  2087. if (!result[key]) {
  2088. result[key] = item;
  2089. }
  2090. return result;
  2091. }, {});
  2092. // 将结果转换为数组形式
  2093. b = Object.values(b);
  2094. var c = b.sort(function (x, y) {
  2095. // 首先比较stage字段
  2096. if (x.stage !== y.stage) {
  2097. return parseInt(x.stage) - parseInt(y.stage);
  2098. }
  2099. // 如果stage字段相同,则比较task字段
  2100. return parseInt(x.task) - parseInt(y.task);
  2101. });
  2102. this.sInfo = c;
  2103. var chapters = [],
  2104. eList = [],
  2105. _ooption = [],
  2106. _rate = [],
  2107. _rateList = [];
  2108. console.log('res.data',res.data);
  2109. var worksDetail = res.data[1];
  2110. // let worksDetailCopy = JSON.parse(JSON.stringify(worksDetail))
  2111. // console.log('worksDetailCopy',worksDetailCopy);
  2112. // this.scopeId = res.data[2][0].id;
  2113. // var scopeId = res.data[2][0].id;
  2114. var askInfo = res.data[3];
  2115. var answerInfo = res.data[4];
  2116. var pptInfo = res.data[5];
  2117. var chooseInfo = res.data[6];
  2118. var pjInfo = res.data[7]; //个人评价作业
  2119. var xztkInfo = res.data[8]; //选择匹配作业
  2120. var lccjInfo = res.data[9]; //排序作业
  2121. var bgInfo = res.data[10]; //表格作业
  2122. var cocopiInfo = res.data[11]; //cocopi或源码编辑作业
  2123. var wordInfo = res.data[12]; //文档作业
  2124. var workEvaList = res.data[13];
  2125. var workJson = {};
  2126. let checkJson = {};
  2127. for (var k = 0; k < res.data[0].length; k++) {
  2128. this.allWorks = res.data[0][k];
  2129. if (this.chapInfo.length == 0) {
  2130. this.chapInfo.push(JSON.parse(res.data[0][k].chapters));
  2131. } else {
  2132. for (var i = 0; i < this.chapInfo.length; i++) {
  2133. if (
  2134. JSON.stringify(res.data[0][k].chapters) ===
  2135. JSON.stringify(this.chapInfo[i])
  2136. ) {
  2137. continue;
  2138. }
  2139. }
  2140. }
  2141. if (chapters.length == 0) {
  2142. chapters.push(JSON.parse(res.data[0][k].chapters));
  2143. } else {
  2144. for (var i = 0; i < chapters.length; i++) {
  2145. if (
  2146. JSON.stringify(res.data[0][k].chapters) ===
  2147. JSON.stringify(chapters[i])
  2148. ) {
  2149. continue;
  2150. }
  2151. }
  2152. }
  2153. if (
  2154. !chapters[0][res.data[0][k].stage].chapterInfo[0].taskJson[
  2155. res.data[0][k].task
  2156. ]
  2157. ) {
  2158. continue;
  2159. }
  2160. // checkJson[stagetask] = {};
  2161. let stagetask = res.data[0][k].stage + "-" + res.data[0][k].task;
  2162. if (!workJson[stagetask]) {
  2163. workJson[stagetask] = {
  2164. img: [],
  2165. imgIndex: 0,
  2166. eList: [],
  2167. rateList: {},
  2168. askInfo: [],
  2169. answerInfo: [],
  2170. wpptInfo: [],
  2171. chooseInfo: [],
  2172. pjInfo: [],
  2173. xztkInfo: [],
  2174. lccjInfo: [],
  2175. bgInfo: [],
  2176. cocopiInfo: [],
  2177. wordInfo: [],
  2178. scopeId: res.data[0][k].id,
  2179. state: res.data[0][k].state,
  2180. stagetask: stagetask,
  2181. time: "",
  2182. };
  2183. checkJson[stagetask] = {
  2184. stagetask: stagetask,
  2185. };
  2186. }
  2187. workJson[stagetask].time = res.data[0][k].time;
  2188. for (var i = 0; i < askInfo.length; i++) {
  2189. if (
  2190. res.data[0][k].stage == askInfo[i].stage &&
  2191. res.data[0][k].task == askInfo[i].task &&
  2192. res.data[0][k].tool == askInfo[i].tool
  2193. ) {
  2194. const element = askInfo[i];
  2195. let a = JSON.parse(element.content)[0];
  2196. let e = [];
  2197. for (var y = 0; y < a.askJson.length; y++) {
  2198. if (a.askJson[y].type == "2") {
  2199. e.push(JSON.parse(askInfo[i].content)[0].anwer[y]);
  2200. } else {
  2201. e.push(JSON.parse(askInfo[i].content)[0].anwer[y]);
  2202. }
  2203. }
  2204. a.radio = e;
  2205. workJson[stagetask].askInfo.push({
  2206. askInfo: a,
  2207. score: askInfo[i].score
  2208. ? JSON.parse(askInfo[i].score).wScore
  2209. : askInfo[i].score,
  2210. });
  2211. // checkJson[stagetask].allRight = 0;
  2212. checkJson[stagetask].allRight = 0
  2213. var isCount = 0;
  2214. for (var p = 0; p < a.radio.length; p++) {
  2215. if (!checkJson[stagetask][p]) {
  2216. checkJson[stagetask][p] = {
  2217. checkCount: [],
  2218. checkPerson: [],
  2219. };
  2220. }
  2221. if (!checkJson[stagetask][p].checkCount.length) {
  2222. checkJson[stagetask][p].checkCount = [];
  2223. let _askItemCount = a.askJson[p].askCount;
  2224. for (var aic = 0; aic < _askItemCount; aic++) {
  2225. checkJson[stagetask][p].checkCount.push(0);
  2226. }
  2227. }
  2228. if (a.radio[p] instanceof Array) {
  2229. if (
  2230. workJson[stagetask].askInfo[0].askInfo.askJson[p].answer
  2231. .sort()
  2232. .join(",") == a.radio[p].sort().join(",")
  2233. ) {
  2234. checkJson[stagetask][p].right = 100;
  2235. isCount += checkJson[stagetask][p].right;
  2236. } else {
  2237. checkJson[stagetask][p].right = 0;
  2238. isCount += 0;
  2239. }
  2240. for (var q = 0; q < a.radio[p].length; q++) {
  2241. checkJson[stagetask][p].checkPerson[parseInt(a.radio[p][q])]
  2242. ? checkJson[stagetask][p].checkPerson[
  2243. parseInt(a.radio[p][q])
  2244. ].push(res.data[0][k].sName)
  2245. : (checkJson[stagetask][p].checkPerson[
  2246. parseInt(a.radio[p][q])
  2247. ] = [res.data[0][k].sName]);
  2248. checkJson[stagetask][p].checkCount[parseInt(a.radio[p][q])]
  2249. ? checkJson[stagetask][p].checkCount[
  2250. parseInt(a.radio[p][q])
  2251. ]++
  2252. : (checkJson[stagetask][p].checkCount[
  2253. parseInt(a.radio[p][q])
  2254. ] = 1);
  2255. }
  2256. } else {
  2257. if (
  2258. workJson[stagetask].askInfo[0].askInfo.askJson[p]
  2259. .answer == a.radio[p]
  2260. ) {
  2261. checkJson[stagetask][p].right = 100;
  2262. isCount += checkJson[stagetask][p].right;
  2263. } else {
  2264. checkJson[stagetask][p].right = 0;
  2265. isCount += 0;
  2266. }
  2267. if (parseInt(a.radio[p]) || parseInt(a.radio[p]) == 0) {
  2268. checkJson[stagetask][p].checkPerson[parseInt(a.radio[p])]
  2269. ? checkJson[stagetask][p].checkPerson[
  2270. parseInt(a.radio[p])
  2271. ].push(res.data[0][k].sName)
  2272. : (checkJson[stagetask][p].checkPerson[
  2273. parseInt(a.radio[p])
  2274. ] = [res.data[0][k].sName]);
  2275. checkJson[stagetask][p].checkCount[parseInt(a.radio[p])]
  2276. ? checkJson[stagetask][p].checkCount[
  2277. parseInt(a.radio[p])
  2278. ]++
  2279. : (checkJson[stagetask][p].checkCount[
  2280. parseInt(a.radio[p])
  2281. ] = 1);
  2282. }
  2283. }
  2284. }
  2285. checkJson[stagetask].allRight = isCount / a.radio.length;
  2286. }
  2287. }
  2288. // console.log(checkJson);
  2289. for (var i = 0; i < chooseInfo.length; i++) {
  2290. if (
  2291. res.data[0][k].stage == chooseInfo[i].stage &&
  2292. res.data[0][k].task == chooseInfo[i].task &&
  2293. res.data[0][k].tool == chooseInfo[i].tool
  2294. ) {
  2295. const element1 = chooseInfo[i];
  2296. let t = JSON.parse(element1.content)[0].testJson;
  2297. let e = [];
  2298. for (var y = 0; y < t.testJson.length; y++) {
  2299. if (t.testJson[y].type == "2") {
  2300. e.push(JSON.parse(chooseInfo[i].content)[0].anwer[y]);
  2301. } else {
  2302. e.push(JSON.parse(chooseInfo[i].content)[0].anwer[y]);
  2303. }
  2304. }
  2305. t.radio = e;
  2306. workJson[stagetask].chooseInfo.push({
  2307. chooseInfo: t,
  2308. score: chooseInfo[i].score
  2309. ? JSON.parse(chooseInfo[i].score).wScore
  2310. : chooseInfo[i].score,
  2311. });
  2312. checkJson[stagetask].allRight = 0;
  2313. var isCount = 0;
  2314. for (var p = 0; p < t.radio.length; p++) {
  2315. if (!checkJson[stagetask][p]) {
  2316. checkJson[stagetask][p] = {
  2317. checkCount: [],
  2318. checkPerson: [],
  2319. };
  2320. }
  2321. if (!checkJson[stagetask][p].checkCount.length) {
  2322. checkJson[stagetask][p].checkCount = [];
  2323. let _askItemCount = t.testJson[p].testItem;
  2324. for (var aic = 0; aic < _askItemCount; aic++) {
  2325. checkJson[stagetask][p].checkCount.push(0);
  2326. }
  2327. }
  2328. if (t.radio[p] instanceof Array) {
  2329. if (
  2330. t.testJson[p].answer.sort().join(",") ==
  2331. t.radio[p].sort().join(",")
  2332. ) {
  2333. checkJson[stagetask][p].right = 100;
  2334. isCount += checkJson[stagetask][p].right;
  2335. } else {
  2336. checkJson[stagetask][p].right = 0;
  2337. isCount += 0;
  2338. }
  2339. for (var q = 0; q < t.radio[p].length; q++) {
  2340. checkJson[stagetask][p].checkPerson[
  2341. parseInt(t.radio[p][q])
  2342. ]
  2343. ? checkJson[stagetask][p].checkPerson[
  2344. parseInt(t.radio[p][q])
  2345. ].push(res.data[0][k].sName)
  2346. : (checkJson[stagetask][p].checkPerson[
  2347. parseInt(t.radio[p][q])
  2348. ] = [res.data[0][k].sName]);
  2349. checkJson[stagetask][p].checkCount[
  2350. parseInt(t.radio[p][q])
  2351. ]
  2352. ? checkJson[stagetask][p].checkCount[
  2353. parseInt(t.radio[p][q])
  2354. ]++
  2355. : (checkJson[stagetask][p].checkCount[
  2356. parseInt(t.radio[p][q])
  2357. ] = 1);
  2358. }
  2359. } else {
  2360. if (t.testJson[p].answer == t.radio[p]) {
  2361. checkJson[stagetask][p].right = 100;
  2362. isCount += checkJson[stagetask][p].right;
  2363. } else {
  2364. checkJson[stagetask][p].right = 0;
  2365. isCount += 0;
  2366. }
  2367. if (parseInt(t.radio[p]) || parseInt(t.radio[p]) == 0) {
  2368. checkJson[stagetask][p].checkPerson[parseInt(t.radio[p])]
  2369. ? checkJson[stagetask][p].checkPerson[
  2370. parseInt(t.radio[p])
  2371. ].push(res.data[0][k].sName)
  2372. : (checkJson[stagetask][p].checkPerson[
  2373. parseInt(t.radio[p])
  2374. ] = [res.data[0][k].sName]);
  2375. checkJson[stagetask][p].checkCount[parseInt(t.radio[p])]
  2376. ? checkJson[stagetask][p].checkCount[
  2377. parseInt(t.radio[p])
  2378. ]++
  2379. : (checkJson[stagetask][p].checkCount[
  2380. parseInt(t.radio[p])
  2381. ] = 1);
  2382. }
  2383. }
  2384. }
  2385. checkJson[stagetask].allRight = isCount / t.radio.length;
  2386. }
  2387. }
  2388. }
  2389. for (var i = 0; i < worksDetail.length; i++) {
  2390. workJson[worksDetail[i].stage + "-" + worksDetail[i].task].img.push(
  2391. {
  2392. src: worksDetail[i].content,
  2393. id: i,
  2394. score: worksDetail[i].score
  2395. ? JSON.parse(worksDetail[i].score).wScore
  2396. : worksDetail[i].score,
  2397. }
  2398. );
  2399. }
  2400. for (var i = 0; i < pptInfo.length; i++) {
  2401. var a = ["PPT", "PPTX", "XLSX", "XLS", "DOC", "DOCX"];
  2402. if (
  2403. a.indexOf(
  2404. pptInfo[i].content
  2405. .split(".")
  2406. [pptInfo[i].content.split(".").length - 1].toLocaleUpperCase()
  2407. ) != -1
  2408. ) {
  2409. var a =
  2410. "https://view.officeapps.live.com/op/view.aspx?src=" +
  2411. encodeURIComponent(pptInfo[i].content);
  2412. workJson[pptInfo[i].stage + "-" + pptInfo[i].task].wpptInfo.push({
  2413. wpptInfo: a,
  2414. score: pptInfo[i].score
  2415. ? JSON.parse(pptInfo[i].score).wScore
  2416. : pptInfo[i].score,
  2417. });
  2418. this.showPDF = false;
  2419. } else if (
  2420. pptInfo[i].content
  2421. .split(".")
  2422. [
  2423. pptInfo[i].content.split(".").length - 1
  2424. ].toLocaleUpperCase() == "PDF"
  2425. ) {
  2426. workJson[pptInfo[i].stage + "-" + pptInfo[i].task].wpptInfo.push({
  2427. wpptInfo: pptInfo[i].content,
  2428. score: pptInfo[i].score
  2429. ? JSON.parse(pptInfo[i].score).wScore
  2430. : pptInfo[i].score,
  2431. });
  2432. this.showPDF = true;
  2433. }
  2434. }
  2435. for (var i = 0; i < answerInfo.length; i++) {
  2436. const element = answerInfo[i];
  2437. workJson[
  2438. answerInfo[i].stage + "-" + answerInfo[i].task
  2439. ].answerInfo.push({
  2440. answerInfo: JSON.parse(element.content)[0],
  2441. score: answerInfo[i].score
  2442. ? JSON.parse(answerInfo[i].score).wScore
  2443. : answerInfo[i].score,
  2444. });
  2445. }
  2446. for (var i = 0; i < pjInfo.length; i++) {
  2447. var pj = pjInfo[i];
  2448. var a =
  2449. chapters[0][pjInfo[i].stage].chapterInfo[0].taskJson[
  2450. pjInfo[i].task
  2451. ].toolChoose;
  2452. var rateJson = [];
  2453. for (var z = 0; z < a.length; z++) {
  2454. if (a[z].tool[0] == 40) {
  2455. rateJson = a[z].rateJson;
  2456. }
  2457. }
  2458. workJson[pjInfo[i].stage + "-" + pjInfo[i].task].pjInfo.push({
  2459. answer: JSON.parse(pj.content),
  2460. rateJson: rateJson,
  2461. score: pjInfo[i].score
  2462. ? JSON.parse(pjInfo[i].score).wScore
  2463. : pjInfo[i].score,
  2464. });
  2465. }
  2466. for (var i = 0; i < xztkInfo.length; i++) {
  2467. if (xztkInfo[i].type == 7) {
  2468. var xztk = xztkInfo[i];
  2469. var a =
  2470. chapters[0][xztkInfo[i].stage].chapterInfo[0].taskJson[
  2471. xztkInfo[i].task
  2472. ].toolChoose;
  2473. var selectJson = [];
  2474. for (var z = 0; z < a.length; z++) {
  2475. if (a[z].tool[0] == 41) {
  2476. selectJson = a[z].selectJson;
  2477. }
  2478. }
  2479. workJson[
  2480. xztkInfo[i].stage + "-" + xztkInfo[i].task
  2481. ].xztkInfo.push({
  2482. answer: xztk.content.split(",").map(Number),
  2483. selectJson: selectJson,
  2484. score: xztkInfo[i].score
  2485. ? JSON.parse(xztkInfo[i].score).wScore
  2486. : xztkInfo[i].score,
  2487. });
  2488. }
  2489. }
  2490. // 排序
  2491. for (var i = 0; i < lccjInfo.length; i++) {
  2492. var lccj = lccjInfo[i];
  2493. workJson[lccjInfo[i].stage + "-" + lccjInfo[i].task].lccjInfo.push({
  2494. lccjInfo: JSON.parse(lccj.content),
  2495. score: lccjInfo[i].score
  2496. ? JSON.parse(lccjInfo[i].score).wScore
  2497. : lccjInfo[i].score,
  2498. });
  2499. }
  2500. for (var i = 0; i < bgInfo.length; i++) {
  2501. var bg = bgInfo[i];
  2502. workJson[bgInfo[i].stage + "-" + bgInfo[i].task].bgInfo.push({
  2503. bgInfo: JSON.parse(bg.content),
  2504. score: bgInfo[i].score
  2505. ? JSON.parse(bgInfo[i].score).wScore
  2506. : bgInfo[i].score,
  2507. });
  2508. }
  2509. for (var i = 0; i < cocopiInfo.length; i++) {
  2510. var cocopi = cocopiInfo[i];
  2511. var c = ["DOT", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  2512. var d = [
  2513. "BMP",
  2514. "PJP",
  2515. "APNG",
  2516. "PNG",
  2517. "JPG",
  2518. "GIF",
  2519. "SVG",
  2520. "JPEG",
  2521. "JPG",
  2522. "ICO",
  2523. "PGPEG",
  2524. "AVIF",
  2525. ];
  2526. var t = 0; //t = 1是图片 2是文档 3是pdf
  2527. if (
  2528. d.indexOf(
  2529. cocopi.content
  2530. .split(".")
  2531. [cocopi.content.split(".").length - 1].toLocaleUpperCase()
  2532. ) != -1
  2533. ) {
  2534. t = 1;
  2535. workJson[
  2536. cocopiInfo[i].stage + "-" + cocopiInfo[i].task
  2537. ].cocopiInfo.push({
  2538. url: cocopi.content,
  2539. type: t,
  2540. score: cocopiInfo[i].score
  2541. ? JSON.parse(cocopiInfo[i].score).wScore
  2542. : cocopiInfo[i].score,
  2543. });
  2544. } else if (
  2545. c.indexOf(
  2546. cocopi.content
  2547. .split(".")
  2548. [cocopi.content.split(".").length - 1].toLocaleUpperCase()
  2549. ) != -1
  2550. ) {
  2551. t = 2;
  2552. var a =
  2553. "https://view.officeapps.live.com/op/view.aspx?src=" +
  2554. encodeURIComponent(cocopi.content);
  2555. workJson[
  2556. cocopiInfo[i].stage + "-" + cocopiInfo[i].task
  2557. ].cocopiInfo.push({
  2558. url: a,
  2559. type: t,
  2560. score: cocopiInfo[i].score
  2561. ? JSON.parse(cocopiInfo[i].score).wScore
  2562. : cocopiInfo[i].score,
  2563. });
  2564. } else if (
  2565. cocopi.content
  2566. .split(".")
  2567. [cocopi.content.split(".").length - 1].toLocaleUpperCase() ==
  2568. "PDF"
  2569. ) {
  2570. t = 3;
  2571. workJson[
  2572. cocopiInfo[i].stage + "-" + cocopiInfo[i].task
  2573. ].cocopiInfo.push({
  2574. url: cocopi.content,
  2575. type: t,
  2576. score: cocopiInfo[i].score
  2577. ? JSON.parse(cocopiInfo[i].score).wScore
  2578. : cocopiInfo[i].score,
  2579. });
  2580. }
  2581. }
  2582. for (var i = 0; i < wordInfo.length; i++) {
  2583. var word = wordInfo[i];
  2584. workJson[wordInfo[i].stage + "-" + wordInfo[i].task].wordInfo.push({
  2585. wordInfo: JSON.parse(word.content),
  2586. score: wordInfo[i].score
  2587. ? JSON.parse(wordInfo[i].score).wScore
  2588. : wordInfo[i].score,
  2589. });
  2590. }
  2591. // const result = workJson.filter((item, index, arr) => {
  2592. // return (
  2593. // arr.findIndex((temp) => temp.stagetask === item.stagetask) ===
  2594. // index
  2595. // );
  2596. // });
  2597. let result = [];
  2598. let checkJsonArray = [];
  2599. for (var wi = 0; wi < Object.keys(workJson).length; wi++) {
  2600. result.push(workJson[Object.keys(workJson)[wi]]);
  2601. checkJsonArray.push(checkJson[Object.keys(checkJson)[wi]]);
  2602. }
  2603. var resultNewArray = result.sort(function (x, y) {
  2604. // 以stagetask字段为排序依据
  2605. var x_parts = x.stagetask.split("-");
  2606. var y_parts = y.stagetask.split("-");
  2607. // 首先比较第一个数字
  2608. if (x_parts[0] !== y_parts[0]) {
  2609. return parseInt(x_parts[0]) - parseInt(y_parts[0]);
  2610. }
  2611. // 如果第一个数字相同,则比较第二个数字
  2612. return parseInt(x_parts[1]) - parseInt(y_parts[1]);
  2613. });
  2614. var checkJsonNewArray = checkJsonArray.sort(function (x, y) {
  2615. // 以stagetask字段为排序依据
  2616. var x_parts = x.stagetask.split("-");
  2617. var y_parts = y.stagetask.split("-");
  2618. // 首先比较第一个数字
  2619. if (x_parts[0] !== y_parts[0]) {
  2620. return parseInt(x_parts[0]) - parseInt(y_parts[0]);
  2621. }
  2622. // 如果第一个数字相同,则比较第二个数字
  2623. return parseInt(x_parts[1]) - parseInt(y_parts[1]);
  2624. });
  2625. result = resultNewArray;
  2626. checkJsonArray = checkJsonNewArray;
  2627. this.checkJson = checkJsonArray;
  2628. for (var l = 0; l < b.length; l++) {
  2629. var eListOld =
  2630. chapters[0][b[l].stage].chapterInfo[0].taskJson[b[l].task].eList;
  2631. if (eListOld && eListOld.length) {
  2632. var eListNew = Object.keys(eListOld).map(function (key) {
  2633. return {
  2634. detail: eListOld[key].detail,
  2635. score: eListOld[key].score,
  2636. value: eListOld[key].value,
  2637. isai: eListOld[key].isai,
  2638. target: eListOld[key].target
  2639. };
  2640. });
  2641. eList = eListNew;
  2642. if (eList && eList.length) {
  2643. _ooption = [];
  2644. result[l].eList = eList;
  2645. for (var i = 0; i < eList.length; i++) {
  2646. _ooption.push({ value: 0, name: eList[i].value });
  2647. result[l].rateList[eList[i].detail] = 0;
  2648. }
  2649. result[l].rateList.content = "";
  2650. this.ooption[l] = _ooption;
  2651. }
  2652. if (b[l].rate && eList && eList.length) {
  2653. _rate[l] = JSON.parse(b[l].rate);
  2654. _rateList[l] = Object.keys(JSON.parse(b[l].rate));
  2655. for (var i = 0; i < _rateList[l].length; i++) {
  2656. var _c = Object.keys(result[l].rateList);
  2657. if (_c.indexOf(_rateList[l][i]) != -1) {
  2658. result[l].rateList[_rateList[l][i]] =
  2659. _rate[l][_rateList[l][i]];
  2660. }
  2661. }
  2662. for (var i = 0; i < this.ooption[l].length; i++) {
  2663. if (_rateList[l].indexOf(this.ooption[l][i].name) != -1) {
  2664. this.ooption[l][i].value =
  2665. _rate[l][this.ooption[l][i].name];
  2666. }
  2667. }
  2668. } else {
  2669. _rate[l] = [];
  2670. _rateList[l] = [];
  2671. }
  2672. }
  2673. if (workEvaList.length > 0) {
  2674. for (var p = 0; p < workEvaList.length; p++) {
  2675. if (
  2676. b[l].stage == workEvaList[p].stage &&
  2677. b[l].task == workEvaList[p].task
  2678. ) {
  2679. var eListOld =
  2680. chapters[0][b[l].stage].chapterInfo[0].taskJson[b[l].task]
  2681. .eList;
  2682. if (eListOld && eListOld.length) {
  2683. var eListNew = Object.keys(eListOld).map(function (key) {
  2684. return {
  2685. detail: eListOld[key].detail,
  2686. score: eListOld[key].score,
  2687. value: eListOld[key].value,
  2688. isai: eListOld[key].isai,
  2689. target: eListOld[key].target
  2690. };
  2691. });
  2692. eList = eListNew;
  2693. if (eList && eList.length) {
  2694. _ooption = [];
  2695. result[l].eList = eList;
  2696. for (var i = 0; i < eList.length; i++) {
  2697. _ooption.push({ value: 0, name: eList[i].value });
  2698. result[l].rateList[eList[i].detail] = 0;
  2699. }
  2700. result[l].rateList.content = "";
  2701. this.ooption[l] = _ooption;
  2702. }
  2703. if (workEvaList[p].rate && eList && eList.length) {
  2704. _rate[l] = JSON.parse(workEvaList[p].rate);
  2705. _rateList[l] = Object.keys(
  2706. JSON.parse(workEvaList[p].rate)
  2707. );
  2708. for (var i = 0; i < _rateList[l].length; i++) {
  2709. var _c = Object.keys(result[l].rateList);
  2710. if (_c.indexOf(_rateList[l][i]) != -1) {
  2711. result[l].rateList[_rateList[l][i]] =
  2712. _rate[l][_rateList[l][i]];
  2713. }
  2714. }
  2715. for (var i = 0; i < this.ooption[l].length; i++) {
  2716. if (
  2717. _rateList[l].indexOf(this.ooption[l][i].name) != -1
  2718. ) {
  2719. this.ooption[l][i].value =
  2720. _rate[l][this.ooption[l][i].name];
  2721. }
  2722. }
  2723. } else {
  2724. _rate[l] = [];
  2725. _rateList[l] = [];
  2726. }
  2727. }
  2728. } else {
  2729. _rate[l] = [];
  2730. _rateList[l] = [];
  2731. }
  2732. }
  2733. }
  2734. }
  2735. this.worksDetail = result;
  2736. console.log(' this.worksDetail', this.worksDetail);
  2737. this.courseDetail = res.data[0][0];
  2738. // console.log('this.courseDetail',);
  2739. this.$forceUpdate;
  2740. this.dialogVisible3 = true;
  2741. setTimeout(() => {
  2742. for (var p = 0; p < res.data[0].length; p++) {
  2743. if (!this.ooption[p]) {
  2744. this.chartObj[p] = null;
  2745. continue;
  2746. }
  2747. var _ooption = JSON.parse(JSON.stringify(this.ooption[p]));
  2748. var _option = JSON.parse(JSON.stringify(this.radarOption));
  2749. _option.radar.indicator = [];
  2750. _option.series[0].data[0].value = [];
  2751. for (var i = 0; i < _ooption.length; i++) {
  2752. _option.radar.indicator.push({
  2753. name: _ooption[i].name,
  2754. max: 5,
  2755. });
  2756. _option.series[0].data[0].value.push(_ooption[i].value);
  2757. }
  2758. this.setChart(_option, p);
  2759. }
  2760. }, 0);
  2761. let _dyList = JSON.parse(JSON.stringify(this.dyList));
  2762. // let _dyList2 = [];
  2763. // let _dyList3 = [];
  2764. // for (var c = 0; c < _dyList.length; c++) {
  2765. // _dyList[c].taskList = [];
  2766. // _dyList2.push(_dyList[c]);
  2767. // }
  2768. // _dyList = JSON.parse(JSON.stringify(this.dyList));
  2769. // for (var c = 0; c < result.length; c++) {
  2770. // let _stage = result[c].stagetask.split("-")[0];
  2771. // let _task = result[c].stagetask.split("-")[1];
  2772. // _dyList2[_stage].taskList.push(_dyList[_stage].taskList[_task]);
  2773. // _dyList2[_stage].taskList;
  2774. // }
  2775. for (var dc = 0; dc < _dyList.length; dc++) {
  2776. // _dyList[dc].isOpen = dc === 0 ? true : false;
  2777. _dyList[dc].isOpen = true;
  2778. }
  2779. for (var i = 0; i < result.length; i++) {
  2780. for (var j = 0; j < _dyList.length; j++) {
  2781. var sta = result[i].stagetask.split("-")[0];
  2782. var ta = result[i].stagetask.split("-")[1];
  2783. if (sta == _dyList[j].id) {
  2784. for (var z = 0; z < _dyList[j].taskList.length; z++) {
  2785. if (ta == _dyList[j].taskList[z].id) {
  2786. _dyList[j].taskList[z].isWork = true;
  2787. }
  2788. }
  2789. }
  2790. }
  2791. }
  2792. this.dyList2 = _dyList;
  2793. this.stageIndex = this.dyList2[0].id;
  2794. this.taskCount = this.dyList2[0].taskList[0].id;
  2795. this.navId =
  2796. this.dyList2[0].id + "-" + this.dyList2[0].taskList[0].id;
  2797. if (type == 0) {
  2798. if (index == 0) {
  2799. this.isPre = true;
  2800. } else {
  2801. this.isPre = false;
  2802. }
  2803. if (index == 9) {
  2804. this.isNext = true;
  2805. } else {
  2806. this.isNext = false;
  2807. }
  2808. }
  2809. if(this.cutTabNum == 2){
  2810. this.$nextTick(()=>{
  2811. this.openTask2(con)
  2812. })
  2813. }else{
  2814. this.$nextTick(()=>{
  2815. this.openTask(con,this.chooseDy?this.chooseDy:0,this.chooseTask?this.chooseTask:0,this.chooseDy?this.dyList2.findIndex(i=>i.id==this.chooseDy):0,this.chooseTask?this.dyList2[this.dyList2.findIndex(i=>i.id==this.chooseDy)].taskList.findIndex(i=>i.id==this.chooseTask):0)
  2816. })
  2817. }
  2818. // this.preStep();
  2819. // this.nextStep();
  2820. })
  2821. .catch((err) => {
  2822. console.error(err);
  2823. });
  2824. },
  2825. checkAsk(askJson) {
  2826. this.askJson = askJson;
  2827. this.dialogVisible4 = true;
  2828. },
  2829. setChart(option, k) {
  2830. let _this = this;
  2831. // 雷达图显示的标签
  2832. let newPromise = new Promise((resolve) => {
  2833. resolve();
  2834. });
  2835. //然后异步执行echarts的初始化函数
  2836. newPromise.then(() => {
  2837. const chartObj = _this.$echarts.init(
  2838. //劳动课程
  2839. // _this.$el.querySelector("#charts_canvas")
  2840. document.getElementsByClassName("charts_canvas")[k]
  2841. );
  2842. // 初始化雷达图
  2843. _this.chartObj[k] = chartObj;
  2844. _this.chartObj[k].setOption(option);
  2845. });
  2846. },
  2847. giveScore() {
  2848. this.rateList = this.chapInfo[this.publicIndex].rate;
  2849. this.dialogVisible2 = true;
  2850. },
  2851. openFile(f, t) {
  2852. console.log('fff',f);
  2853. this.pptImgUrl = f;
  2854. if (t == 2) {
  2855. this.showPDF = false;
  2856. } else {
  2857. this.showPDF = true;
  2858. }
  2859. this.dialogVisible6 = true;
  2860. },
  2861. openFile2(f) {
  2862. this.pptImgUrl = f.wpptInfo;
  2863. var fileA = [
  2864. "DOC",
  2865. "DOCX",
  2866. "DOCM",
  2867. "DOTM",
  2868. "DOTX",
  2869. "PPTX",
  2870. "PPSX",
  2871. "PPT",
  2872. "PPS",
  2873. "PPTM",
  2874. "POTM",
  2875. "PPAM",
  2876. "POTX",
  2877. "PPSM",
  2878. "XLSX",
  2879. "XLS",
  2880. ];
  2881. if (
  2882. fileA.indexOf(
  2883. this.pptImgUrl
  2884. .split(".")
  2885. [this.pptImgUrl.split(".").length - 1].toLocaleUpperCase()
  2886. ) != -1
  2887. ) {
  2888. this.showPDF = false; //word 文件
  2889. } else if (
  2890. "pdf".indexOf(
  2891. this.pptImgUrl
  2892. .split(".")
  2893. [this.pptImgUrl.split(".").length - 1].toLocaleLowerCase()
  2894. ) != -1
  2895. ) {
  2896. this.showPDF = true; //pdf
  2897. }
  2898. this.dialogVisible6 = true;
  2899. },
  2900. //获取班级列表
  2901. getClass() {
  2902. let params = {
  2903. oid: this.oid,
  2904. };
  2905. this.ajax
  2906. .get(this.$store.state.api + "selectClassBySchool", params)
  2907. .then((res) => {
  2908. this.grade = res.data[0];
  2909. })
  2910. .catch((err) => {
  2911. this.isLoading = false;
  2912. console.error(err);
  2913. });
  2914. },
  2915. //获取分组分类
  2916. getGroup() {
  2917. let params = {};
  2918. this.ajax
  2919. .get(this.$store.state.api + "getGroup", params)
  2920. .then((res) => {
  2921. this.subjectJuri = res.data[0];
  2922. this.projectJuri = res.data[0];
  2923. })
  2924. .catch((err) => {
  2925. console.error(err);
  2926. });
  2927. },
  2928. searchWork1() {
  2929. this.page = 1;
  2930. this.chooseTask = "";
  2931. if (this.typeCheck) {
  2932. if (this.cutTabNum==0) {
  2933. this.getWorks1()
  2934. }
  2935. if (this.cutTabNum==1) {
  2936. this.getStageWorks2()
  2937. }
  2938. if (this.cutTabNum==2) {
  2939. this.getTaskWorks2()
  2940. }
  2941. }else{
  2942. if (this.cutTabNum==0) {
  2943. this.getWorks()
  2944. }
  2945. if (this.cutTabNum==1) {
  2946. this.getStageWorks()
  2947. }
  2948. if (this.cutTabNum==2) {
  2949. this.getTaskWorks()
  2950. }
  2951. }
  2952. // if (this.cutTabNum==0) {
  2953. // this.getWorks()
  2954. // }
  2955. // if (this.cutTabNum==1) {
  2956. // this.getStageWorks()
  2957. // }
  2958. // if (this.cutTabNum==2) {
  2959. // this.getTaskWorks()
  2960. // }
  2961. // this.getWorks();
  2962. },
  2963. searchWork2() {
  2964. this.page = 1;
  2965. // console.log(this.typeCheck);
  2966. if (this.typeCheck) {
  2967. if (this.cutTabNum==0) {
  2968. this.getWorks1()
  2969. }
  2970. if (this.cutTabNum==1) {
  2971. this.getStageWorks2()
  2972. }
  2973. if (this.cutTabNum==2) {
  2974. this.getTaskWorks2()
  2975. }
  2976. }else{
  2977. if (this.cutTabNum==0) {
  2978. this.getWorks()
  2979. }
  2980. if (this.cutTabNum==1) {
  2981. this.getStageWorks()
  2982. }
  2983. if (this.cutTabNum==2) {
  2984. this.getTaskWorks()
  2985. }
  2986. }
  2987. // this.getWorks();
  2988. },
  2989. // fullTools() {
  2990. // this.full = !this.full;
  2991. // },
  2992. //获取作业
  2993. getWorks() {
  2994. this.isLoading = true;
  2995. var mr = this.mr;
  2996. let params = {
  2997. cid: this.id,
  2998. uname: this.uname,
  2999. choseClass:this.choseClass,
  3000. stage: this.chooseDy,
  3001. task: this.chooseTask,
  3002. page: this.page,
  3003. };
  3004. this.ajax
  3005. .get(this.$store.state.api + "getCourseWorks5", params) //getCourseWorks3
  3006. .then((res) => {
  3007. this.isLoading = false;
  3008. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  3009. this.tableData = res.data[0];
  3010. this.classArray = res.data[1]
  3011. })
  3012. .catch((err) => {
  3013. this.isLoading = false;
  3014. console.error(err);
  3015. });
  3016. },
  3017. getWorks1() {
  3018. this.isLoading = true;
  3019. let params = {
  3020. cid: this.id,
  3021. uname: this.uname,
  3022. choseClass:this.choseClass,
  3023. stage: this.chooseDy,
  3024. task: this.chooseTask,
  3025. };
  3026. this.ajax
  3027. .get(this.$store.state.api + "getCourseWorks6", params) //getCourseWorks4
  3028. .then((res) => {
  3029. this.isLoading = false;
  3030. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  3031. this.tableData = res.data[0];
  3032. })
  3033. .catch((err) => {
  3034. this.isLoading = false;
  3035. console.error(err);
  3036. });
  3037. },
  3038. getCourseDetail() {
  3039. this.studentLoading = true;
  3040. let params = {
  3041. cid: this.cid,
  3042. choseClass:this.choseClass
  3043. };
  3044. this.ajax
  3045. .get(this.$store.state.api + "getCourseWorksReport2", params)//getCourseWorksReport
  3046. .then((res) => {
  3047. this.course = res.data[0][0];
  3048. var dyJSON = JSON.parse(res.data[0][0].chapters);
  3049. let dyList = [];
  3050. for (var i = 0; i < dyJSON.length; i++) {
  3051. dyList.push({ name: dyJSON[i].dyName, id: i, taskList: [] });
  3052. var a = dyJSON[i].chapterInfo[0].taskJson;
  3053. for (var j = 0; j < a.length; j++) {
  3054. dyList[i].taskList.push({ name: a[j].task, id: j });
  3055. }
  3056. }
  3057. this.studentLoading = false;
  3058. this.dyList = dyList;
  3059. this.userAarray = res.data[1];
  3060. if (this.cutTabNum==0) {
  3061. this.getWorks()
  3062. }
  3063. if (this.cutTabNum==1) {
  3064. this.getStageWorks()
  3065. }
  3066. if (this.cutTabNum==2) {
  3067. this.getTaskWorks()
  3068. }
  3069. // this.getWorks();
  3070. })
  3071. .catch((err) => {
  3072. console.error(err);
  3073. });
  3074. },
  3075. // getCourseDetail() {
  3076. // const loading = this.$loading.service({
  3077. // background: "rgba(255, 255, 255, 0.7)",
  3078. // target: document.querySelector(".student_table"),
  3079. // });
  3080. // let params = {
  3081. // courseId: this.id,
  3082. // };
  3083. // this.ajax
  3084. // .get(this.$store.state.api + "selectCourseDetail", params)
  3085. // .then((res) => {
  3086. // loading.close();
  3087. // // this.chapInfo = JSON.parse(res.data[0][0].chapters);
  3088. // var dyJSON = JSON.parse(res.data[0][0].chapters);
  3089. // let dyList = [];
  3090. // for (var i = 0; i < dyJSON.length; i++) {
  3091. // dyList.push({ name: dyJSON[i].dyName, id: i, taskList: [] });
  3092. // var a = dyJSON[i].chapterInfo[0].taskJson;
  3093. // for (var j = 0; j < a.length; j++) {
  3094. // dyList[i].taskList.push({ name: a[j].task, id: j });
  3095. // }
  3096. // }
  3097. // this.dyList = dyList;
  3098. // // var dyJSON = JSON.parse()
  3099. // })
  3100. // .catch((err) => {
  3101. // loading.close();
  3102. // console.error(err);
  3103. // });
  3104. // },
  3105. handlePictureCardPreview(url) {
  3106. this.dialogImageUrl = url;
  3107. this.pictureDialog = true;
  3108. },
  3109. updatePj() {
  3110. for (var i = 0; i < this.worksDetail.length; i++) {
  3111. if (!this.worksDetail[i].eList.length) {
  3112. continue;
  3113. }
  3114. this.updateWorks(
  3115. this.worksDetail[i].stagetask,
  3116. this.worksDetail[i].rateList,
  3117. i
  3118. );
  3119. }
  3120. },
  3121. getStar(i) {
  3122. const k = i;
  3123. var _ooption = JSON.parse(JSON.stringify(this.ooption[k]));
  3124. var _rate = this.worksDetail[i].rateList;
  3125. var _rateList = Object.keys(this.worksDetail[i].rateList);
  3126. for (var i = 0; i < _ooption.length; i++) {
  3127. if (_rateList.indexOf(_ooption[i].name) != -1) {
  3128. _ooption[i].value = _rate[_ooption[i].name];
  3129. }
  3130. }
  3131. // var _option = JSON.parse(JSON.stringify(this.radarOption));
  3132. var _option = this.radarOption;
  3133. _option.radar.indicator = [];
  3134. _option.series[0].data[0].value = [];
  3135. for (var i = 0; i < _ooption.length; i++) {
  3136. _option.radar.indicator.push({ name: _ooption[i].name, max: 5 });
  3137. _option.series[0].data[0].value.push(_ooption[i].value);
  3138. }
  3139. if (this.chartObj && this.chartObj[k]) {
  3140. // _option.series[0].data = _ooption;
  3141. this.chartObj[k].setOption(_option);
  3142. } else {
  3143. this.setChart(_ooption);
  3144. }
  3145. },
  3146. updateWorks(stagetask, rateList, i) {
  3147. // console.log(this.worksDetail[i]);
  3148. // return console.log(stagetask, rateList, i);
  3149. var arr = stagetask.split("-");
  3150. let params = {
  3151. cid: this.id,
  3152. s: arr[0],
  3153. t: arr[1],
  3154. rate: rateList,
  3155. uid: this.studentId,
  3156. };
  3157. const k = i;
  3158. this.ajax
  3159. .get(this.$store.state.api + "updateWorksEva", params)
  3160. .then((res) => {
  3161. // var _ooption = JSON.parse(JSON.stringify(this.ooption[k]));
  3162. // var _rate = rateList;
  3163. // var _rateList = Object.keys(rateList);
  3164. // for (var i = 0; i < _ooption.length; i++) {
  3165. // if (_rateList.indexOf(_ooption[i].name) != -1) {
  3166. // _ooption[i].value = _rate[_ooption[i].name];
  3167. // }
  3168. // }
  3169. // var _option = this.radarOption;
  3170. // _option.radar.indicator = [];
  3171. // _option.series[0].data[0].value = [];
  3172. // for (var i = 0; i < _ooption.length; i++) {
  3173. // _option.radar.indicator.push({ name: _ooption[i].name, max: 5 });
  3174. // _option.series[0].data[0].value.push(_ooption[i].value);
  3175. // }
  3176. // if (this.chartObj) {
  3177. // this.chartObj[k].setOption(_option);
  3178. // } else {
  3179. // this.setChart(_ooption);
  3180. // }
  3181. // let _k = 0;
  3182. // for (var i = 0; i < this.worksDetail.length; i++) {
  3183. // if (this.worksDetail[i].eList.length) {
  3184. // _k = i;
  3185. // }
  3186. // }
  3187. // if (k == _k) {
  3188. // this.$message({
  3189. // message: "评价成功",
  3190. // type: "success",
  3191. // });
  3192. // }
  3193. this.$message({
  3194. message: "评价成功",
  3195. type: "success",
  3196. });
  3197. })
  3198. .catch((err) => {
  3199. this.$message.error("评价失败");
  3200. console.error(err);
  3201. });
  3202. },
  3203. switchVideo(media, index) {
  3204. this.playerO = {};
  3205. this.playerOptions.poster = "";
  3206. this.playerOptions.sources[0].src = media;
  3207. this.playerO = this.playerOptions;
  3208. },
  3209. onPlayerPlay() {},
  3210. // this.$store.commit("update", ["userInfo", userInfo]);
  3211. lookWork2(w,id, uid, cid) {
  3212. // this.scopeId = id;
  3213. let params = {
  3214. uid: uid,
  3215. cid: cid,
  3216. };
  3217. this.ajax
  3218. .get(this.$store.state.api + "selectAllWorksDetail", params)
  3219. .then((res) => {
  3220. this.sInfo = res.data[0][0];
  3221. this.chapInfo = JSON.parse(res.data[0][0].chapters);
  3222. var chapters = JSON.parse(res.data[0][0].chapters);
  3223. var worksDetail = res.data[1];
  3224. // this.scopeId = res.data[2][0].id;
  3225. // var scopeId = res.data[2][0].id;
  3226. var askInfo = res.data[3];
  3227. var answerInfo = res.data[4];
  3228. var linkInfo = res.data[5];
  3229. var chooseInfo = res.data[6];
  3230. var pjInfo = res.data[7]; //个人评价作业
  3231. var xztkInfo = res.data[8]; //选择匹配作业
  3232. var lccjInfo = res.data[9]; //排序作业
  3233. var bgInfo = res.data[10]; //表格作业
  3234. var cocopiInfo = res.data[11]; //cocopi或源码编辑作业
  3235. var wordInfo = res.data[12]; //文档作业
  3236. var workEvaList = res.data[13];
  3237. this.scopeId = res.data[2].length ? res.data[2][0].id : this.sInfo.id;
  3238. var workJson = {
  3239. img: [],
  3240. imgIndex: 0,
  3241. eList: [],
  3242. // rateList: {},
  3243. askInfo: [],
  3244. answerInfo: [],
  3245. wpptInfo: [],
  3246. chooseInfo: [],
  3247. pjInfo: [],
  3248. xztkInfo: [],
  3249. lccjInfo: [],
  3250. bgInfo: [],
  3251. cocopiInfo: [],
  3252. wordInfo: [],
  3253. };
  3254. var _title =
  3255. "<h2>" +
  3256. "第" +
  3257. (w.stage + 1) +
  3258. "阶段 " +
  3259. (this.dyList[w.stage].name ? this.dyList[w.stage].name : `阶段${w.stage + 1}`) +
  3260. "</h2>";
  3261. var _subtitle =
  3262. "<h3>" +
  3263. "任务" +
  3264. (w.task + 1) +
  3265. " " +
  3266. (this.dyList[w.stage].taskList[w.task].name ? this.dyList[w.stage].taskList[w.task].name : `任务${w.task + 1}`) +
  3267. "</h3>";
  3268. for (var i = 0; i < worksDetail.length; i++) {
  3269. if (worksDetail[i].stage == w.stage && worksDetail[i].task == w.task) {
  3270. workJson.img.push({
  3271. src: worksDetail[i].content,
  3272. id: i,
  3273. score: worksDetail[i].score
  3274. ? JSON.parse(worksDetail[i].score).wScore
  3275. : worksDetail[i].score,
  3276. });
  3277. }
  3278. }
  3279. for (var i = 0; i < askInfo.length; i++) {
  3280. if (askInfo[i].stage == w.stage && askInfo[i].task == w.task) {
  3281. const element = askInfo[i];
  3282. let a = JSON.parse(element.content)[0];
  3283. let e = [];
  3284. for (var y = 0; y < a.askJson.length; y++) {
  3285. if (a.askJson[y].type == "2") {
  3286. e.push(JSON.parse(askInfo[i].content)[0].anwer[y]);
  3287. } else {
  3288. e.push(JSON.parse(askInfo[i].content)[0].anwer[y]);
  3289. }
  3290. }
  3291. a.radio = e;
  3292. workJson.askInfo.push({
  3293. askInfo: a,
  3294. score: askInfo[i].score
  3295. ? JSON.parse(askInfo[i].score).wScore
  3296. : askInfo[i].score,
  3297. });
  3298. }
  3299. }
  3300. for (var i = 0; i < chooseInfo.length; i++) {
  3301. if (chooseInfo[i].stage == w.stage && chooseInfo[i].task == w.task) {
  3302. const element1 = chooseInfo[i];
  3303. let t = JSON.parse(element1.content)[0].testJson;
  3304. console.log('t',t);
  3305. let e = [];
  3306. for (var y = 0; y < t.testJson.length; y++) {
  3307. if (t.testJson[y].type == "2") {
  3308. e.push(JSON.parse(chooseInfo[i].content)[0].anwer[y]);
  3309. } else {
  3310. e.push(JSON.parse(chooseInfo[i].content)[0].anwer[y]);
  3311. }
  3312. }
  3313. t.radio = e;
  3314. workJson.chooseInfo.push({
  3315. chooseInfo: t,
  3316. score: chooseInfo[i].score
  3317. ? JSON.parse(chooseInfo[i].score).wScore
  3318. : chooseInfo[i].score,
  3319. });
  3320. }
  3321. }
  3322. for (var i = 0; i < answerInfo.length; i++) {
  3323. if (answerInfo[i].stage == w.stage && answerInfo[i].task == w.task) {
  3324. const element = answerInfo[i];
  3325. workJson.answerInfo.push({
  3326. answerInfo: JSON.parse(element.content)[0],
  3327. score: answerInfo[i].score
  3328. ? JSON.parse(answerInfo[i].score).wScore
  3329. : answerInfo[i].score,
  3330. });
  3331. }
  3332. }
  3333. for (var i = 0; i < pjInfo.length; i++) {
  3334. if (pjInfo[i].stage == w.stage && pjInfo[i].task == w.task) {
  3335. var pj = pjInfo[i];
  3336. console.log('pj',pj);
  3337. var a =
  3338. chapters[w.stage].chapterInfo[0].taskJson[
  3339. w.task
  3340. ].toolChoose;
  3341. var rateJson = [];
  3342. for (var z = 0; z < a.length; z++) {
  3343. if (a[z].tool[0] == 40) {
  3344. rateJson = a[z].rateJson;
  3345. }
  3346. }
  3347. workJson.pjInfo.push({
  3348. answer: JSON.parse(pj.content),
  3349. rateJson: rateJson,
  3350. score: pjInfo[i].score
  3351. ? JSON.parse(pjInfo[i].score).wScore
  3352. : pjInfo[i].score,
  3353. });
  3354. }
  3355. }
  3356. for (var i = 0; i < xztkInfo.length; i++) {
  3357. if (xztkInfo[i].stage == w.stage && xztkInfo[i].task == w.task) {
  3358. const element = xztkInfo[i];
  3359. workJson.xztkInfo.push(element.content);
  3360. }
  3361. }
  3362. if (lccjInfo.length > 0) {
  3363. for (var i = 0; i < lccjInfo.length; i++) {
  3364. if (lccjInfo[i].stage == w.stage && lccjInfo[i].task == w.task) {
  3365. var lccj = lccjInfo[i];
  3366. workJson.lccjInfo.push({
  3367. lccjInfo: JSON.parse(lccj.content),
  3368. score: lccjInfo[i].score
  3369. ? JSON.parse(lccjInfo[i].score).wScore
  3370. : lccjInfo[i].score,
  3371. });
  3372. }
  3373. }
  3374. }
  3375. for (var i = 0; i < bgInfo.length; i++) {
  3376. if (bgInfo[i].stage == w.stage && bgInfo[i].task == w.task) {
  3377. var bg = bgInfo[i];
  3378. workJson.bgInfo.push({
  3379. bgInfo: JSON.parse(bg.content),
  3380. score: bgInfo[i].score
  3381. ? JSON.parse(bgInfo[i].score).wScore
  3382. : bgInfo[i].score,
  3383. });
  3384. }
  3385. }
  3386. // for (var i = 0; i < cocopiInfo.length; i++) {
  3387. // if (cocopiInfo[i].stage == w.stage && cocopiInfo[i].task == w.task) {
  3388. // var cocopi = cocopiInfo[i];
  3389. // var c = ["DOT", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  3390. // var d = [
  3391. // "BMP",
  3392. // "PJP",
  3393. // "APNG",
  3394. // "PNG",
  3395. // "JPG",
  3396. // "GIF",
  3397. // "SVG",
  3398. // "JPEG",
  3399. // "JPG",
  3400. // "ICO",
  3401. // "PGPEG",
  3402. // "AVIF",
  3403. // ];
  3404. // var t = 0; //t = 1是图片 2是文档 3是pdf
  3405. // if (
  3406. // d.indexOf(
  3407. // cocopi.content
  3408. // .split(".")
  3409. // [cocopi.content.split(".").length - 1].toLocaleUpperCase()
  3410. // ) != -1
  3411. // ) {
  3412. // t = 1;
  3413. // workJson.cocopiInfo.push({
  3414. // url: cocopi.content,
  3415. // type: t,
  3416. // score: cocopiInfo[i].score
  3417. // ? JSON.parse(cocopiInfo[i].score).wScore
  3418. // : cocopiInfo[i].score,
  3419. // });
  3420. // } else if (
  3421. // c.indexOf(
  3422. // cocopi.content
  3423. // .split(".")
  3424. // [cocopi.content.split(".").length - 1].toLocaleUpperCase()
  3425. // ) != -1
  3426. // ) {
  3427. // t = 2;
  3428. // var a =
  3429. // "https://view.officeapps.live.com/op/view.aspx?src=" +
  3430. // encodeURIComponent(cocopi.content);
  3431. // workJson.cocopiInfo.push({
  3432. // url: a,
  3433. // type: t,
  3434. // score: cocopiInfo[i].score
  3435. // ? JSON.parse(cocopiInfo[i].score).wScore
  3436. // : cocopiInfo[i].score,
  3437. // });
  3438. // } else if (
  3439. // cocopi.content
  3440. // .split(".")
  3441. // [cocopi.content.split(".").length - 1].toLocaleUpperCase() ==
  3442. // "PDF"
  3443. // ) {
  3444. // t = 3;
  3445. // workJson.cocopiInfo.push({
  3446. // url: cocopi.content,
  3447. // type: t,
  3448. // score: cocopiInfo[i].score
  3449. // ? JSON.parse(cocopiInfo[i].score).wScore
  3450. // : cocopiInfo[i].score,
  3451. // });
  3452. // }
  3453. // }
  3454. // }
  3455. for (var i = 0; i < wordInfo.length; i++) {
  3456. if (wordInfo[i].stage == w.stage && wordInfo[i].task == w.task) {
  3457. var word = wordInfo[i];
  3458. workJson.wordInfo.push({
  3459. wordInfo: JSON.parse(word.content),
  3460. score: wordInfo[i].score
  3461. ? JSON.parse(wordInfo[i].score).wScore
  3462. : wordInfo[i].score,
  3463. });
  3464. }
  3465. }
  3466. this.worksDetail = workJson;
  3467. // this.courseDetail = res.data[0][0];
  3468. this.$forceUpdate;
  3469. var _course = `<h1>${w.course}</h1>`;
  3470. var _img = "";
  3471. if (workJson.img.length > 0) {
  3472. for (var i = 0; i < workJson.img.length; i++) {
  3473. _img += `<div style="margin-top:10px"><div>图片${
  3474. i + 1
  3475. }</div><img style="max-width:500px" src="${
  3476. workJson.img[i].src
  3477. }"/></div>`;
  3478. }
  3479. }
  3480. var _ask = "";
  3481. if (workJson.askInfo.length > 0) {
  3482. var _ask = "<h3>问卷</h3>";
  3483. for (var i = 0; i < workJson.askInfo.length; i++) {
  3484. var _div = document.createElement("div");
  3485. _div.innerHTML = `<h4>标题:${workJson.askInfo[i].askInfo.askJson.askTitle}</h4>`;
  3486. for (
  3487. var j = 0;
  3488. j < workJson.askInfo[i].askInfo.askJson.askJson.length;
  3489. j++
  3490. ) {
  3491. var _div2 = document.createElement("div");
  3492. _div2.innerHTML = `<h5>第${j + 1}题:${
  3493. workJson.askInfo[i].askInfo.askJson.askJson[j].askstitle
  3494. } 选择:${
  3495. workJson.askInfo[i].askInfo.answer &&
  3496. workJson.askInfo[i].askInfo.answer.length > 0
  3497. ? workJson.askInfo[i].askInfo.answer[0]
  3498. : 1
  3499. }</h5> `;
  3500. var _div3 = document.createElement("div");
  3501. for (
  3502. var z = 0;
  3503. z <
  3504. workJson.askInfo[i].askInfo.askJson.askJson[j].checkList
  3505. .length;
  3506. z++
  3507. ) {
  3508. _div3.innerHTML += `<span style="margin-right:5px">${z + 1}.${
  3509. workJson.askInfo[i].askInfo.askJson.askJson[j].checkList[z]
  3510. }</span>`;
  3511. }
  3512. _div2.innerHTML += `<div>${_div3.innerHTML}</div>`;
  3513. _div.innerHTML += `<div>${_div2.innerHTML}</div>`;
  3514. }
  3515. _ask += `<div>${_div.innerHTML}</div>`;
  3516. }
  3517. }
  3518. var _xztkInfo = "";
  3519. if (workJson.xztkInfo.length > 0) {
  3520. var _xztkInfo = "<h3>选择匹配</h3>"
  3521. // console.log('workJson.xztkInfo',workJson.xztkInfo);
  3522. workJson.xztkInfo.forEach((e,i)=>{
  3523. _xztkInfo += `<h6>${e}</h6>`;
  3524. })
  3525. }
  3526. var _answer = "";
  3527. if (workJson.answerInfo.length > 0) {
  3528. var _answer = "<h3>问答</h3>";
  3529. for (var i = 0; i < workJson.answerInfo.length; i++) {
  3530. var _div = document.createElement("div");
  3531. _div.innerHTML = `<h4>问答:${workJson.answerInfo[i].answerInfo.answerTitle}</h4>`;
  3532. _div.innerHTML += `<div>${workJson.answerInfo[i].answerInfo.answer}</div>`;
  3533. _answer += `<div>${_div.innerHTML}</div>`;
  3534. }
  3535. }
  3536. var _link = "";
  3537. if (linkInfo.length > 0) {
  3538. for (var i = 0; i < linkInfo.length; i++) {
  3539. if (linkInfo[i].stage == w.stage && linkInfo[i].task == w.task) {
  3540. _link += `<div style="margin-top:10px"><a href='${linkInfo[i].content}'>${linkInfo[i].content}</a></div>`;
  3541. }
  3542. }
  3543. }
  3544. var _choose = "";
  3545. if (workJson.chooseInfo.length > 0) {
  3546. var _choose = "<h3>选择题</h3>";
  3547. for (var i = 0; i < workJson.chooseInfo.length; i++) {
  3548. var _div = document.createElement("div");
  3549. _div.innerHTML = `<h4>标题:${workJson.chooseInfo[i].chooseInfo.testTitle}</h4>`;
  3550. for (
  3551. var j = 0;
  3552. j < workJson.chooseInfo[i].chooseInfo.testJson.length;
  3553. j++
  3554. ) {
  3555. var _div2 = document.createElement("div");
  3556. _div2.innerHTML = `<h5>第${j + 1}题:${
  3557. workJson.chooseInfo[i].chooseInfo.testJson[j].teststitle
  3558. } 选择:${
  3559. workJson.chooseInfo[i].chooseInfo.testJson[j].type == 1 ? workJson.chooseInfo[i].chooseInfo.radio[j] : workJson.chooseInfo[i].chooseInfo.radio[j].join(',')
  3560. } 答案:${
  3561. workJson.chooseInfo[i].chooseInfo.testJson[j].answer
  3562. }</h5> `;
  3563. var _div3 = document.createElement("div");
  3564. for (
  3565. var z = 0;
  3566. z <
  3567. workJson.chooseInfo[i].chooseInfo.testJson[j].checkList
  3568. .length;
  3569. z++
  3570. ) {
  3571. _div3.innerHTML += `<span style="margin-right:5px">${z}.${
  3572. workJson.chooseInfo[i].chooseInfo.testJson[j].checkList[z]
  3573. }</span>`;
  3574. }
  3575. _div2.innerHTML += `<div>${_div3.innerHTML}</div>`;
  3576. _div.innerHTML += `<div>${_div2.innerHTML}</div>`;
  3577. }
  3578. _choose += `<div>${_div.innerHTML}</div>`;
  3579. }
  3580. }
  3581. var _lccjInfo = "";
  3582. if (workJson.lccjInfo.length>0) {
  3583. if (workJson.lccjInfo[0].lccjInfo.length > 0) {
  3584. var _lccjInfo = "<h3>排序<h3>";
  3585. for (var i = 0; i < workJson.lccjInfo[0].lccjInfo.length; i++) {
  3586. var _div = document.createElement("div");
  3587. _div.innerHTML = `<h4>第${i+1}题${workJson.lccjInfo[0].lccjInfo[i].sentenceTitle}</h4> `;
  3588. var _div2 = document.createElement("div");
  3589. _div2.innerHTML+= ` 句子 ${i + 1}:${ workJson.lccjInfo[0].lccjInfo[i].addSentence.join(',')} 选择:${
  3590. workJson.lccjInfo[0].lccjInfo[i].chooseSenList.join(',')
  3591. } 答案:${
  3592. workJson.lccjInfo[0].lccjInfo[i].rightAnswer.join(',')
  3593. }`
  3594. _div.innerHTML += `<div>${_div2.innerHTML}</div>`;
  3595. _lccjInfo += `<div>${_div.innerHTML}</div>`;
  3596. }
  3597. }
  3598. }
  3599. var _bg = "";
  3600. if (workJson.bgInfo.length > 0) {
  3601. var _bg = "<h3>表格<h3>";
  3602. for (var i = 0; i < workJson.bgInfo.length; i++) {
  3603. var _div = document.createElement("div");
  3604. _div.innerHTML = `<h4>${workJson.bgInfo[i].bgInfo.text}</h4> `;
  3605. _bg += `<div>${_div.innerHTML}</div>`;
  3606. }
  3607. }
  3608. var _word = "";
  3609. if (workJson.wordInfo.length > 0) {
  3610. var _word = "<h3>文档<h3>";
  3611. for (var i = 0; i < workJson.wordInfo.length; i++) {
  3612. var _div = document.createElement("div");
  3613. _div.innerHTML = `<h4>${workJson.wordInfo[i].wordInfo.text}</h4> `;
  3614. _word += `<div>${_div.innerHTML}</div>`;
  3615. }
  3616. }
  3617. var _html =
  3618. _course +
  3619. _title +
  3620. _subtitle +
  3621. _img +
  3622. _xztkInfo +
  3623. _ask +
  3624. _answer +
  3625. _link +
  3626. _choose +
  3627. _lccjInfo +
  3628. _bg +
  3629. _word;
  3630. this.generate(_html,w);
  3631. })
  3632. .catch((err) => {
  3633. console.error(err);
  3634. });
  3635. },
  3636. isOpen(s) {
  3637. // this.stageIndex = s;
  3638. this.dyList2[s].isOpen = !this.dyList2[s].isOpen;
  3639. },
  3640. openTask(s, i, dyi, navi) {
  3641. // console.log('openTask2',con,s, i, dyi, navi);
  3642. if (!this.dyList2[dyi].taskList[navi].isWork) {
  3643. this.$message.warning("该任务暂时没提交作业");
  3644. } else {
  3645. const element = document.getElementById(`${s}+${i}`);
  3646. if (element) {
  3647. element.scrollIntoView();
  3648. setTimeout(()=>{
  3649. let scrollBody = document.querySelector(".zyBoxC").parentElement
  3650. scrollBody.scrollTop = scrollBody.scrollTop - 70
  3651. }, 0);
  3652. // function scrollToElement(elementA) {
  3653. // return new Promise((resolve) => {
  3654. // const observer = new IntersectionObserver((entries) => {
  3655. // if (entries[0].isIntersecting) {
  3656. // observer.disconnect(); // 停止观察
  3657. // setTimeout(() => {
  3658. // resolve(); // 延迟以确保滚动完成
  3659. // }, 300); // 可以调整延迟时间
  3660. // }
  3661. // }, { threshold: [1] }); // 阈值设为 1 确保完全可见
  3662. // elementA.scrollIntoView({ behavior: 'smooth', block: "start" });
  3663. // // elementA.scrollIntoView();
  3664. // observer.observe(elementA);
  3665. // });
  3666. // }
  3667. // // 使用示例
  3668. // scrollToElement(element).then(()=>{
  3669. // let scrollBody = document.querySelector(".zyBoxC").parentElement
  3670. // setTimeout(() => {
  3671. // scrollBody.scrollTop = scrollBody.scrollTop - 70;
  3672. // }, 100); // 调整时间确保足够长
  3673. // });
  3674. }
  3675. var a = s + "-" + i;
  3676. // var b = document.getElementById(a);
  3677. // var d = b.getAttribute("scrollindex");
  3678. // c.scrollTop = parseInt(d) * 375;
  3679. this.stageIndex = s;
  3680. this.taskCount = i;
  3681. this.navId = a;
  3682. }
  3683. },
  3684. openTask2(con) {
  3685. console.log(con);
  3686. let s = con.stage
  3687. let i = con.task
  3688. const element = document.getElementById(`${s}+${i}`);
  3689. if (element) {
  3690. element.scrollIntoView();
  3691. setTimeout(()=>{
  3692. let scrollBody = document.querySelector(".zyBoxC").parentElement
  3693. scrollBody.scrollTop = scrollBody.scrollTop - 70
  3694. }, 0);
  3695. // function scrollToElement(elementA) {
  3696. // return new Promise((resolve) => {
  3697. // const observer = new IntersectionObserver((entries) => {
  3698. // if (entries[0].isIntersecting) {
  3699. // observer.disconnect(); // 停止观察
  3700. // setTimeout(() => {
  3701. // resolve(); // 延迟以确保滚动完成
  3702. // }, 300); // 可以调整延迟时间
  3703. // }
  3704. // }, { threshold: [1] }); // 阈值设为 1 确保完全可见
  3705. // elementA.scrollIntoView({ behavior: 'smooth', block: "start" });
  3706. // // elementA.scrollIntoView();
  3707. // observer.observe(elementA);
  3708. // });
  3709. // }
  3710. // // 使用示例
  3711. // scrollToElement(element).then(()=>{
  3712. // let scrollBody = document.querySelector(".zyBoxC").parentElement
  3713. // setTimeout(() => {
  3714. // scrollBody.scrollTop = scrollBody.scrollTop - 70;
  3715. // }, 100); // 调整时间确保足够长
  3716. // });
  3717. }
  3718. var a = s + "-" + i;
  3719. this.stageIndex = s;
  3720. this.taskCount = i;
  3721. this.navId = a;
  3722. },
  3723. async generate(a,w) {
  3724. // 将html文件中需要用到的数据挂载到store上
  3725. this.$store.commit("update", ["report", a]);
  3726. const content = `<!DOCTYPE html>
  3727. <html lang="en">
  3728. <head>
  3729. <meta charset="UTF-8">
  3730. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  3731. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  3732. <title>报告</title>
  3733. </head>
  3734. <body>
  3735. ${this.$store.state.report}
  3736. </body>
  3737. </html>`;
  3738. // debugger
  3739. // 生成报告
  3740. const link = document.createElement("a");
  3741. let dname = w.course + "-"+ (this.dyList[w.stage].name ? this.dyList[w.stage].name : `阶段${w.stage+1}`) +"-" + (this.dyList[w.stage].taskList[w.task].name ? this.dyList[w.stage].taskList[w.task].name : `任务${w.task+1}`) + '-' +w.sName + ".html";
  3742. // link.download = "报告.html"; // 文件名
  3743. console.log('dname',dname);
  3744. link.download = dname; // 文件名
  3745. link.style.display = "none";
  3746. // 创建文件流
  3747. // 创建bolb实例时,内容一定要放在[]中
  3748. const blob = new Blob([content], {
  3749. type: "text/plain;charset='utf-8'",
  3750. });
  3751. link.href = window.URL.createObjectURL(blob);
  3752. document.body.appendChild(link);
  3753. link.click();
  3754. document.body.removeChild(link);
  3755. // saveAs(
  3756. // htmlDocx.asBlob(content, {
  3757. // orientation: "landscape", //跨域设置
  3758. // }),
  3759. // //文件名
  3760. // "报告.doc"
  3761. // );
  3762. },
  3763. preStep() {
  3764. var uid = "";
  3765. for (var i = 0; i < this.tableData.length; i++) {
  3766. if (this.scopeId1 == this.tableData[i].id) {
  3767. if (i - 1 == 0) {
  3768. this.isPre = true;
  3769. } else {
  3770. this.isPre = false;
  3771. }
  3772. if (i - 1 < 9) {
  3773. this.isNext = false;
  3774. }
  3775. uid = this.tableData[i - 1].userid;
  3776. this.lookWork(this.tableData[i - 1].id, uid, 1);
  3777. break;
  3778. }
  3779. }
  3780. },
  3781. nextStep() {
  3782. var uid = "";
  3783. for (var i = 0; i < this.tableData.length; i++) {
  3784. if (this.scopeId1 == this.tableData[i].id) {
  3785. if (i + 1 == 9) {
  3786. this.isNext = true;
  3787. } else {
  3788. this.isNext = false;
  3789. }
  3790. if (i + 1 > 0) {
  3791. this.isPre = false;
  3792. }
  3793. uid = this.tableData[i + 1].userid;
  3794. this.lookWork(this.tableData[i + 1].id, uid, 1);
  3795. break;
  3796. }
  3797. }
  3798. },
  3799. },
  3800. created() {
  3801. this.page = 1;
  3802. this.isLoading = true;
  3803. this.getCourseDetail();
  3804. this.getClass();
  3805. this.getGroup();
  3806. },
  3807. };
  3808. </script>
  3809. <style scoped>
  3810. .pb_head > span:nth-child(2) {
  3811. font-size: 16px;
  3812. margin-left: 80px;
  3813. color: #ab582f;
  3814. }
  3815. .pb_head {
  3816. margin: 0 !important;
  3817. width: 100% !important;
  3818. }
  3819. .student_page {
  3820. margin-top: 10px;
  3821. }
  3822. .student_head {
  3823. /* margin-top: 10px;
  3824. padding-bottom: 15px; */
  3825. padding: 20px 0;
  3826. }
  3827. .student_search {
  3828. display: flex;
  3829. }
  3830. .student_search > div:nth-child(1) {
  3831. line-height: 35px;
  3832. font-size: 14px;
  3833. }
  3834. .student_search >>> .el-input__inner {
  3835. width: 190px;
  3836. height: 35px;
  3837. margin-left: 10px;
  3838. }
  3839. .student_table >>> .el-table--border td {
  3840. border-right: 0px !important;
  3841. }
  3842. .add_work >>> .el-dialog__header {
  3843. padding: 20px 20px 10px;
  3844. text-align: center;
  3845. background: #32455b;
  3846. }
  3847. .add_work >>> .el-dialog__title {
  3848. font-size: 14px !important;
  3849. color: #fff !important;
  3850. }
  3851. .add_work >>> .el-dialog__headerbtn {
  3852. font-size: 20px !important;
  3853. top: 5px !important;
  3854. right: 8px !important;
  3855. }
  3856. .add_work >>> .el-form-item__label {
  3857. margin-left: 65px;
  3858. }
  3859. .add_work >>> .el-form-item {
  3860. display: flex;
  3861. }
  3862. .add_work >>> .el-form-item__content {
  3863. margin: 0 !important;
  3864. }
  3865. .add_work >>> .el-dialog__footer {
  3866. text-align: center !important;
  3867. }
  3868. .add_work >>> .el-dialog {
  3869. min-width: 650px !important;
  3870. width: 1080px;
  3871. }
  3872. .add_work >>> .el-dialog__body {
  3873. background: #fff;
  3874. height: 660px;
  3875. overflow: auto;
  3876. }
  3877. .header-title {
  3878. display: flex;
  3879. }
  3880. .logoImg {
  3881. width: 30px;
  3882. }
  3883. .logoImg > img {
  3884. width: 100%;
  3885. height: 100%;
  3886. }
  3887. .title_add_student {
  3888. margin: 0 auto;
  3889. color: #fff;
  3890. }
  3891. .first {
  3892. margin-top: 25px;
  3893. border-bottom: 1px solid #c5c5c5;
  3894. }
  3895. .one_top {
  3896. display: flex;
  3897. justify-content: space-between;
  3898. }
  3899. .one_top > div:nth-child(1) {
  3900. color: #2490bf;
  3901. font-size: 16px;
  3902. }
  3903. .one_top > button {
  3904. width: 100px;
  3905. background: #24a0a4;
  3906. height: 30px;
  3907. color: #e0e0e0;
  3908. font-size: 13px;
  3909. padding: 0 !important;
  3910. }
  3911. .work_Img {
  3912. width: 150px;
  3913. margin: 10px 0;
  3914. }
  3915. .assess_Img {
  3916. width: 400px;
  3917. margin: 0 auto;
  3918. padding: 15px 0;
  3919. }
  3920. .work_Img > img,
  3921. .assess_Img > img {
  3922. width: 100%;
  3923. height: 100%;
  3924. }
  3925. .work_input {
  3926. border: 1px solid;
  3927. width: 135px;
  3928. height: 20px;
  3929. line-height: 20px;
  3930. font-size: 13px;
  3931. padding: 5px;
  3932. }
  3933. .poetry {
  3934. margin: 10px 0 15px 0;
  3935. }
  3936. .assess {
  3937. background: #169bd5 !important;
  3938. }
  3939. .assess_top {
  3940. border-bottom: 2px solid #eee;
  3941. padding-bottom: 10px;
  3942. }
  3943. .assess_top > div:nth-child(1) {
  3944. color: #2490bf;
  3945. font-size: 16px;
  3946. }
  3947. .student_Answer {
  3948. display: flex;
  3949. margin: 5px 10px;
  3950. /* padding-bottom: 25px; */
  3951. }
  3952. .workName {
  3953. font-size: 18px;
  3954. font-weight: bold;
  3955. margin: 5px 10px;
  3956. }
  3957. .toux {
  3958. width: 35px;
  3959. /* margin: auto 0; */
  3960. height: 35px;
  3961. }
  3962. .toux > img {
  3963. width: 100%;
  3964. height: 100%;
  3965. }
  3966. .nav {
  3967. display: flex;
  3968. flex-wrap: wrap;
  3969. margin-top: 10px;
  3970. flex-direction: column;
  3971. }
  3972. .studentName {
  3973. margin-left: 10px;
  3974. font-size: 13px;
  3975. }
  3976. .studentAnswer {
  3977. font-size: 12px;
  3978. margin: 5px 0 0 10px;
  3979. height: 42px;
  3980. overflow: auto;
  3981. }
  3982. .comment {
  3983. /* margin: 20px 0 0 10px;
  3984. overflow: auto;
  3985. height: 75%;
  3986. max-height: 330px; */
  3987. overflow: auto;
  3988. /* height: 290px; */
  3989. height: 525px;
  3990. background: #fff;
  3991. border-radius: 5px;
  3992. padding: 10px;
  3993. box-sizing: border-box;
  3994. }
  3995. .comment_body {
  3996. height: calc(100% - 25px);
  3997. overflow: auto;
  3998. }
  3999. .comment > .comment_title {
  4000. font-size: 18px;
  4001. }
  4002. .comment > .comment_title > span {
  4003. font-size: 14px;
  4004. }
  4005. .other_Answer {
  4006. display: flex;
  4007. margin: 5px 10px;
  4008. padding: 15px 0;
  4009. justify-content: center;
  4010. }
  4011. .nav {
  4012. margin-left: 5px;
  4013. width: 80%;
  4014. }
  4015. .nameAndTime {
  4016. display: flex;
  4017. }
  4018. .otherName {
  4019. font-weight: bold;
  4020. margin-left: 10px;
  4021. font-size: 13px;
  4022. }
  4023. .time {
  4024. margin-left: 25px;
  4025. font-size: 12px;
  4026. margin-top: 3px;
  4027. }
  4028. .otherAnswer {
  4029. width: 80%;
  4030. word-wrap: break-word;
  4031. word-break: break-all;
  4032. overflow: hidden;
  4033. font-size: 12px;
  4034. margin: 5px 0 0 10px;
  4035. }
  4036. .doingAssess {
  4037. margin: 0 auto;
  4038. width: 300px;
  4039. background: #169bd5;
  4040. height: 35px;
  4041. line-height: 35px;
  4042. border-radius: 3px;
  4043. font-size: 13px;
  4044. text-align: center;
  4045. color: #fff;
  4046. margin-top: 30px;
  4047. cursor: pointer;
  4048. }
  4049. .score_top {
  4050. display: flex;
  4051. margin-bottom: 10px;
  4052. }
  4053. .userTou {
  4054. width: 50px;
  4055. }
  4056. .userTou > img {
  4057. width: 100%;
  4058. height: 100%;
  4059. }
  4060. .score_user_name {
  4061. line-height: 53px;
  4062. margin-left: 15px;
  4063. }
  4064. .course_top {
  4065. display: flex;
  4066. align-items: center;
  4067. }
  4068. .course_top > div:nth-child(1) {
  4069. line-height: 25px;
  4070. }
  4071. .course_top > div:nth-child(2) {
  4072. border: 1px solid #ccc;
  4073. width: 250px;
  4074. text-align: center;
  4075. height: 25px;
  4076. line-height: 25px;
  4077. margin-left: 30px;
  4078. }
  4079. .sd_score {
  4080. font-size: 15px;
  4081. background: #fff;
  4082. height: 100%;
  4083. /* padding-top: 40px; */
  4084. padding: 40px 30px 10px;
  4085. border-radius: 5px;
  4086. width: 90%;
  4087. box-shadow: 2px 2px 5px #909090;
  4088. /* overflow: auto; */
  4089. }
  4090. .sd_score .score_boxTit{
  4091. margin-top: 20px;
  4092. /* padding: 0 30px; */
  4093. box-sizing: border-box;
  4094. font-size: 16px;
  4095. font-weight: 600;
  4096. color: rgba(0, 0, 0, 0.9);
  4097. }
  4098. .RootImg{
  4099. position: absolute;
  4100. left: 0;
  4101. top: 50%;
  4102. transform: translate(-20px,-50%);
  4103. }
  4104. .RootImgBlock{
  4105. width: 50%;
  4106. white-space: nowrap;
  4107. overflow: hidden;
  4108. text-overflow: ellipsis;
  4109. }
  4110. .sd_score .score_boxTit > span{
  4111. border-left: 3px solid rgba(54, 129, 252, 1);
  4112. padding-left: 5px;
  4113. }
  4114. .sd_score .score_box {
  4115. display: flex;
  4116. align-items: center;
  4117. font-size: 14px !important;
  4118. /* justify-content: flex-start; */
  4119. justify-content: space-between;
  4120. margin-bottom: 15px;
  4121. /* margin: 10px 0 0 30px; */
  4122. margin: 10px 0;
  4123. position: relative;
  4124. margin-left: 19px;
  4125. }
  4126. .sd_score .score_box > span:nth-child(1) {
  4127. margin-right: 20px;
  4128. /* text-align-last: justify; */
  4129. /* max-width: 300px; */
  4130. width: 150px;
  4131. white-space: nowrap;
  4132. overflow: hidden;
  4133. text-overflow: ellipsis;
  4134. word-break: break-word;
  4135. }
  4136. .sd_score .score_box:last-child {
  4137. margin-bottom: 0;
  4138. }
  4139. .rate_size >>> .el-rate__icon {
  4140. font-size: 22px;
  4141. }
  4142. .rate_size >>> .el-icon-star-off {
  4143. font-size: 22px;
  4144. }
  4145. .sd_score > span:nth-child(1) {
  4146. width: 130px;
  4147. text-align: justify;
  4148. text-align-last: justify;
  4149. display: block;
  4150. margin-right: 20px;
  4151. white-space: nowrap;
  4152. overflow: hidden;
  4153. text-overflow: ellipsis;
  4154. font-size: 16px;
  4155. }
  4156. .worksTarget {
  4157. margin: 15px 0;
  4158. border-left: 3px solid rgba(54, 129, 252, 1);
  4159. font-size: 16px;
  4160. font-weight: 600;
  4161. color: rgba(0, 0, 0, 0.9);
  4162. }
  4163. .worksTarget > span {
  4164. margin-left: 5px;
  4165. }
  4166. .worksTargetCon {
  4167. background: rgba(243, 247, 253, 1);
  4168. margin: 0 30;
  4169. padding: 10px;
  4170. border-radius: 5px;
  4171. box-sizing: border-box;
  4172. margin-bottom: 10px;
  4173. }
  4174. .worksTargetCon > div {
  4175. margin-bottom: 10px;
  4176. }
  4177. .worksTargetCon > div:last-child{
  4178. margin: 0 !important;
  4179. }
  4180. .moreSay {
  4181. margin: 0px 0 5px 20px;
  4182. }
  4183. .more_say_input {
  4184. margin-left: 20px;
  4185. width: 80%;
  4186. }
  4187. .more_say_input >>> .el-input__inner {
  4188. height: 75px;
  4189. font-size: 13px;
  4190. padding: 0 0 0 10px;
  4191. }
  4192. .assess_right {
  4193. width: 200px;
  4194. background: #82b0ee;
  4195. color: #fff;
  4196. text-align: center;
  4197. height: 30px;
  4198. line-height: 30px;
  4199. border-radius: 5px;
  4200. margin: 0 auto;
  4201. margin-top: 20px;
  4202. font-size: 13px;
  4203. cursor: pointer;
  4204. }
  4205. .student_page {
  4206. margin-top: 10px;
  4207. }
  4208. .display {
  4209. display: none;
  4210. }
  4211. .firstTop {
  4212. background: #fff;
  4213. display: flex;
  4214. margin-bottom: 15px;
  4215. flex-direction: column;
  4216. align-items: flex-start;
  4217. height: 90px;
  4218. padding: 10px 25px;
  4219. border-radius: 5px;
  4220. width: 90%;
  4221. box-shadow: 2px 2px 5px #909090;
  4222. }
  4223. .talkScore >>> .el-dialog__body {
  4224. background: #efefef;
  4225. margin: 0 !important;
  4226. }
  4227. .lastTop {
  4228. background: #fff;
  4229. border-radius: 5px;
  4230. width: 98%;
  4231. height: 120px;
  4232. box-shadow: 2px 2px 5px #909090;
  4233. }
  4234. .left,
  4235. .right {
  4236. /* background: #fff; */
  4237. border-radius: 5px;
  4238. /* padding: 10px; */
  4239. box-sizing: border-box;
  4240. }
  4241. .left {
  4242. margin-right: 10px;
  4243. width: 30%;
  4244. min-height: 425px;
  4245. }
  4246. /* .left .left_top {
  4247. background: #fff;
  4248. padding: 10px;
  4249. border-radius: 5px;
  4250. margin-bottom: 15px;
  4251. } */
  4252. .left .left_bottom {
  4253. background: #fff;
  4254. padding: 10px;
  4255. border-radius: 5px;
  4256. height: 160px;
  4257. }
  4258. .right {
  4259. width: 20%;
  4260. background: none;
  4261. padding: 0;
  4262. }
  4263. .courseTitle {
  4264. font-size: 16px;
  4265. color: #7c7c7c;
  4266. width: 100%;
  4267. /* min-width: 1246px; */
  4268. /* margin-bottom: 10px; */
  4269. display: flex;
  4270. justify-content: space-between;
  4271. align-items: center;
  4272. padding: 15px 20px 15px;
  4273. box-sizing: border-box;
  4274. z-index: 99;
  4275. background-color:#ededed;
  4276. position: sticky;
  4277. top: 0;
  4278. }
  4279. .course_t {
  4280. font-size: 19px;
  4281. display: flex;
  4282. align-items: flex-end;
  4283. }
  4284. .course_t span:nth-child(2) {
  4285. font-size: 16px;
  4286. margin-left: 10px;
  4287. }
  4288. .courseTitle span:nth-child(2) {
  4289. /* font-size: 14px;
  4290. cursor: pointer; */
  4291. }
  4292. .bigImg {
  4293. margin-top: 10px;
  4294. /* height: 300px; */
  4295. height: 150px;
  4296. }
  4297. .bigImg > img,
  4298. .thumbnail > div > img {
  4299. width: 100%;
  4300. height: 100%;
  4301. object-fit: contain;
  4302. }
  4303. .thumbnail {
  4304. display: flex;
  4305. flex-direction: row;
  4306. justify-content: flex-start;
  4307. margin: 5px 0 8px;
  4308. overflow-x: auto;
  4309. overflow-y: hidden;
  4310. }
  4311. .isClick {
  4312. /* border: 3px solid #5f89d4; */
  4313. border-radius: 5px;
  4314. font-weight: bold;
  4315. }
  4316. .thumbnail > div {
  4317. width: 80px;
  4318. height: 80px;
  4319. margin-right: 5px;
  4320. cursor: pointer;
  4321. flex-shrink: 0;
  4322. box-sizing: border-box;
  4323. }
  4324. .zyBoxC {
  4325. background: #ededed;
  4326. display: flex;
  4327. align-items: flex-start;
  4328. /* justify-content: center; */
  4329. flex-direction: column;
  4330. min-height: calc(100% - 50px);
  4331. }
  4332. .zyBox {
  4333. display: flex;
  4334. min-width: 600px;
  4335. width: 600px;
  4336. position: relative;
  4337. background: #fff;
  4338. flex-direction: column;
  4339. flex-wrap: nowrap;
  4340. align-items: flex-start;
  4341. overflow: hidden;
  4342. border-radius: 5px;
  4343. }
  4344. .zyBoxC + .zyBoxC {
  4345. margin-top: 10px;
  4346. }
  4347. .rbButtom {
  4348. position: absolute;
  4349. bottom: 0;
  4350. right: 0;
  4351. background: #06a7ff;
  4352. width: 100px;
  4353. height: 30px;
  4354. border-radius: 5px;
  4355. text-align: center;
  4356. color: #fff;
  4357. line-height: 30px;
  4358. font-size: 14px;
  4359. cursor: pointer;
  4360. right: 10px;
  4361. }
  4362. .bigImg >>> .vjs-tech,
  4363. .bigImg >>> .video-js {
  4364. height: 300px !important;
  4365. }
  4366. .el-table >>> .even_row {
  4367. background-color: #f1f1f1;
  4368. }
  4369. .data_body {
  4370. height: 200px;
  4371. display: flex;
  4372. position: relative;
  4373. border-radius: 5px;
  4374. box-sizing: border-box;
  4375. width: 100%;
  4376. background: #fff;
  4377. }
  4378. .data_body .title {
  4379. position: absolute;
  4380. top: 10px;
  4381. left: 10px;
  4382. }
  4383. .dialog_diy >>> .el-dialog__header {
  4384. padding: 9px 20px 10px;
  4385. background: #32455b !important;
  4386. }
  4387. .worksDialogCSS >>> .el-dialog__header {
  4388. /* padding: 9px 20px 10px; */
  4389. background: #32455b !important;
  4390. }
  4391. .worksDialogCSS >>> .el-dialog__body {
  4392. width: 850px !important;
  4393. }
  4394. .worksDialogCSS >>> .el-dialog {
  4395. width: 888px !important;
  4396. }
  4397. .dialog_diy >>> .el-dialog__title {
  4398. color: #fff;
  4399. font-size: 15px;
  4400. }
  4401. .dialog_diy >>> .el-dialog__headerbtn {
  4402. top: 14px;
  4403. }
  4404. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  4405. color: #fff;
  4406. }
  4407. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  4408. color: #fff;
  4409. }
  4410. .dialog_diy >>> .el-dialog__body,
  4411. .dialog_diy >>> .el-dialog__footer {
  4412. background: #fafafa;
  4413. }
  4414. .max_diy >>> .el-dialog {
  4415. /* max-width: 1200px; */
  4416. max-width: 1300px;
  4417. /* height:800px */
  4418. }
  4419. .max_diy >>> .el-dialog__body {
  4420. height: 800px;
  4421. }
  4422. .dialog_diy2 {
  4423. overflow: hidden;
  4424. }
  4425. .dialog_diy2 >>> .el-dialog__header {
  4426. padding: 9px 20px 10px;
  4427. background: #32455b !important;
  4428. }
  4429. .dialog_diy2 >>> .el-dialog__title {
  4430. color: #fff;
  4431. font-size: 15px;
  4432. }
  4433. .dialog_diy2 >>> .el-dialog__headerbtn {
  4434. top: 12px;
  4435. }
  4436. .dialog_diy2 >>> .el-dialog__headerbtn .el-dialog__close {
  4437. color: #fff;
  4438. }
  4439. .dialog_diy2 >>> .el-dialog__headerbtn .el-dialog__close:hover {
  4440. color: #fff;
  4441. }
  4442. .dialog_diy2 >>> .el-dialog__body,
  4443. .dialog_diy2 >>> .el-dialog__footer {
  4444. background: #ededed;
  4445. padding: 0px;
  4446. }
  4447. .a_addBox2 {
  4448. margin: 10px 0;
  4449. background: #fff;
  4450. padding: 15px;
  4451. }
  4452. .a_addBox {
  4453. margin: 10px 0;
  4454. background: #fff;
  4455. padding: 0 15px;
  4456. /* max-height: 400px; */
  4457. /* max-height: 160px; */
  4458. /* overflow: auto; */
  4459. }
  4460. .a_add_box,
  4461. .isAddBox {
  4462. border-bottom: 2px solid #eee;
  4463. padding-bottom: 10px;
  4464. }
  4465. .isAddBox {
  4466. border: none;
  4467. }
  4468. .a_add_head {
  4469. display: flex;
  4470. align-items: center;
  4471. justify-content: space-between;
  4472. margin: 10px 0;
  4473. /* font-size: 18px; */
  4474. }
  4475. .a_add_head .a_add_head_input {
  4476. width: 300px;
  4477. }
  4478. .a_add_head .a_add_head_div {
  4479. display: flex;
  4480. align-items: center;
  4481. justify-content: space-between;
  4482. }
  4483. .a_add_body {
  4484. display: flex;
  4485. align-items: center;
  4486. }
  4487. .a_add_body >>> .el-radio__label{
  4488. font-size: 14px !important;
  4489. }
  4490. .a_add_input {
  4491. display: flex;
  4492. align-items: center;
  4493. flex-wrap: wrap;
  4494. /* flex-direction: column; */
  4495. /* width: 100%; */
  4496. }
  4497. .a_add_input >>> el-radio-group {
  4498. margin: 10px 0;
  4499. }
  4500. .a_add_input >>> .el-radio-group {
  4501. display: flex;
  4502. flex-direction: row;
  4503. flex-wrap: wrap;
  4504. }
  4505. .redioStyle >>> .el-radio__label {
  4506. font-size: 18px;
  4507. }
  4508. .redioStyle5 >>> .el-radio__label {
  4509. font-size: 14px;
  4510. color: #06a7ff !important;
  4511. }
  4512. .redioStyle2 >>> .el-radio__label {
  4513. font-size: 14px;
  4514. }
  4515. .redioStyle3 >>> .el-checkbox__label {
  4516. font-size: 14px;
  4517. color: #06a7ff !important;
  4518. }
  4519. .redioStyle4 >>> .el-checkbox__label {
  4520. font-size: 14px;
  4521. }
  4522. .task_title {
  4523. font-size: 18px;
  4524. font-weight: 700;
  4525. }
  4526. .ask_Answer {
  4527. /* margin-top: 10px; */
  4528. }
  4529. .ask_Answer_title {
  4530. font-size: 18px;
  4531. }
  4532. .ask_Answer_content {
  4533. display: flex;
  4534. justify-content: center;
  4535. margin: 10px 0;
  4536. }
  4537. .answer_body {
  4538. padding: 10px 0;
  4539. border-bottom: 1px solid #f5f5f5;
  4540. }
  4541. .answer_title {
  4542. font-size: 15px;
  4543. font-weight: 700;
  4544. }
  4545. .answer_content {
  4546. margin-top: 5px;
  4547. }
  4548. .ask_body {
  4549. display: flex;
  4550. font-size: 16px;
  4551. margin-top: 10px;
  4552. flex-direction: column;
  4553. height: 130px;
  4554. overflow: auto;
  4555. /* padding: 0 10px; */
  4556. box-sizing: border-box;
  4557. }
  4558. .ask_body div {
  4559. /* cursor: pointer; */
  4560. display: flex;
  4561. align-items: center;
  4562. justify-content: space-between;
  4563. }
  4564. .ask_body div .btn {
  4565. cursor: pointer;
  4566. color: #fff;
  4567. background-color: #409eff;
  4568. text-align: center;
  4569. font-size: 12px;
  4570. padding: 6px 12px;
  4571. box-sizing: border-box;
  4572. border-radius: 5px;
  4573. width: 60px;
  4574. }
  4575. .ask_body div span:nth-child(1) {
  4576. max-width: 250px;
  4577. white-space: nowrap;
  4578. overflow: hidden;
  4579. text-overflow: ellipsis;
  4580. }
  4581. .ask_body div + div {
  4582. margin-top: 10px;
  4583. }
  4584. .work_nopicture {
  4585. display: flex;
  4586. justify-content: center;
  4587. align-items: center;
  4588. /* height: 350px; */
  4589. height: 352px;
  4590. }
  4591. .student_table >>> .el-table,
  4592. .student_table >>> .el-table__body-wrapper {
  4593. height: auto !important;
  4594. }
  4595. .tx {
  4596. width: 35px;
  4597. }
  4598. .ech {
  4599. width: 100px;
  4600. }
  4601. .tx > img,
  4602. .ech > img {
  4603. width: 100%;
  4604. height: 100%;
  4605. }
  4606. .txName {
  4607. display: flex;
  4608. flex-direction: row;
  4609. align-items: center;
  4610. margin-left: 10px;
  4611. }
  4612. .txName > div:nth-child(2),
  4613. .txName > div:nth-child(3) {
  4614. margin-left: 10px;
  4615. }
  4616. .top {
  4617. display: flex;
  4618. justify-content: space-between;
  4619. padding: 15px 0 15px 20px;
  4620. flex-direction: row;
  4621. flex-wrap: nowrap;
  4622. width: 95%;
  4623. }
  4624. .jdName > div:nth-child(1) {
  4625. font-size: 20px;
  4626. font-weight: bold;
  4627. }
  4628. .taskName {
  4629. font-size: 14px;
  4630. margin-top: 10px;
  4631. display: flex;
  4632. flex-direction: row;
  4633. align-items: center;
  4634. }
  4635. .task {
  4636. background: #49a0f0;
  4637. color: #fff;
  4638. width: 50px;
  4639. height: 22px;
  4640. border-radius: 5px;
  4641. text-align: center;
  4642. line-height: 22px;
  4643. margin-right: 10px;
  4644. }
  4645. .contentBox {
  4646. width: 100%;
  4647. display: flex;
  4648. flex-direction: row;
  4649. flex-wrap: nowrap;
  4650. align-items: flex-start;
  4651. /* height: 253px; */
  4652. }
  4653. .left_top {
  4654. width: 95%;
  4655. margin: 0 0 0 20px;
  4656. padding: 10px 0 10px 0;
  4657. border-bottom: 2px solid #eee;
  4658. }
  4659. .right_top {
  4660. width: 53%;
  4661. }
  4662. .cBox {
  4663. display: flex;
  4664. flex-direction: row;
  4665. flex-wrap: nowrap;
  4666. align-items: flex-start;
  4667. width: 100%;
  4668. height: calc(100% - 60px);
  4669. padding: 0 20px 15px;
  4670. box-sizing: border-box;
  4671. /* overflow: auto; */
  4672. }
  4673. .right_score {
  4674. min-width: 370px;
  4675. min-height: 351px;
  4676. margin-left: 10px;
  4677. }
  4678. .pb_left {
  4679. width: 20%;
  4680. margin-right: 10px;
  4681. background: rgb(255, 255, 255);
  4682. /* padding-right: 10px; */
  4683. /* height: 500px; */
  4684. /* height:calc(100% - 65px); */
  4685. height: calc(100vh - 178px);
  4686. overflow: auto;
  4687. /* min-height: 800px; */
  4688. border-radius: 5px;
  4689. position: sticky;
  4690. top: 70px;
  4691. }
  4692. .cTitle {
  4693. background: #205cc6;
  4694. width: 85%;
  4695. margin: 10px auto;
  4696. height: 50px;
  4697. color: #fff;
  4698. line-height: 50px;
  4699. text-align: center;
  4700. font-size: 20px;
  4701. font-weight: bold;
  4702. border-radius: 5px;
  4703. cursor: pointer;
  4704. white-space: nowrap;
  4705. overflow: hidden;
  4706. text-overflow: ellipsis;
  4707. padding: 0 10px;
  4708. }
  4709. .ml {
  4710. margin-left: 20px;
  4711. color: #5b7dba;
  4712. border-left: 3px solid #5b7dba;
  4713. padding-left: 5px;
  4714. font-weight: bold;
  4715. }
  4716. .cru_selectBox {
  4717. width: 100%;
  4718. margin: 0 auto;
  4719. overflow: auto;
  4720. height: calc(100% - 90px);
  4721. overflow-x: hidden;
  4722. }
  4723. .cru_selectBox::-webkit-scrollbar {
  4724. /*滚动条整体样式*/
  4725. width: 6px;
  4726. /*高宽分别对应横竖滚动条的尺寸*/
  4727. height: 6px;
  4728. }
  4729. /*定义滚动条轨道 内阴影+圆角*/
  4730. .cru_selectBox::-webkit-scrollbar-track {
  4731. border-radius: 10px;
  4732. background-color: #b8bdc9;
  4733. }
  4734. /*定义滑块 内阴影+圆角*/
  4735. .cru_selectBox::-webkit-scrollbar-thumb {
  4736. border-radius: 10px;
  4737. -webkit-box-shadow: inset 0 0 6px rgb(96, 125, 184);
  4738. background-color: #2c5ab3;
  4739. }
  4740. .blue_box_one {
  4741. text-align: center;
  4742. color: #fff;
  4743. background-image: linear-gradient(90deg, #477cd7, #65b9fc);
  4744. border-radius: 7px;
  4745. margin: 10px auto;
  4746. cursor: pointer;
  4747. width: 95%;
  4748. height: 45px;
  4749. display: flex;
  4750. flex-direction: row;
  4751. justify-content: flex-start;
  4752. align-items: center;
  4753. }
  4754. .blue_box_one > div:nth-child(1) {
  4755. line-height: 30px;
  4756. margin: 0 5px 0 10px;
  4757. width: 30%;
  4758. min-width: 70px;
  4759. border-radius: 4px;
  4760. }
  4761. .blue_box_one > div:nth-child(2) {
  4762. white-space: nowrap;
  4763. text-overflow: ellipsis;
  4764. overflow: hidden;
  4765. word-break: break-all;
  4766. width: 70%;
  4767. text-align: left;
  4768. margin-right: 10px;
  4769. max-width: calc(100% - 85px);
  4770. }
  4771. .blue_box_one > div:nth-child(2):hover {
  4772. overflow: hidden;
  4773. text-overflow: ellipsis;
  4774. white-space: nowrap;
  4775. cursor: pointer;
  4776. }
  4777. .twoChild {
  4778. width: 95%;
  4779. margin: 10px auto;
  4780. border-radius: 5px;
  4781. background: #f2f2f2;
  4782. display: flex;
  4783. flex-direction: column;
  4784. flex-wrap: nowrap;
  4785. justify-content: flex-start;
  4786. align-items: flex-start;
  4787. transition: all 0.5s;
  4788. overflow: hidden;
  4789. height: 0;
  4790. background: #e7f3ff;
  4791. }
  4792. .twoChild > div:nth-child(1) {
  4793. margin-top: 5px;
  4794. }
  4795. .navChild {
  4796. width: 100%;
  4797. cursor: pointer;
  4798. margin-bottom: 10px;
  4799. }
  4800. .navActive {
  4801. height: auto;
  4802. }
  4803. .navTask {
  4804. display: flex;
  4805. flex-direction: row;
  4806. flex-wrap: nowrap;
  4807. align-items: center;
  4808. align-content: flex-start;
  4809. height: 40px;
  4810. justify-content: flex-start;
  4811. padding: 0 10px;
  4812. width: 100%;
  4813. box-sizing: border-box;
  4814. }
  4815. .vedioNav {
  4816. margin: 10px 0 0 15px;
  4817. border-bottom: 1px solid #d7d7d7;
  4818. padding-bottom: 5px;
  4819. background: #96d1ff;
  4820. width: 55px;
  4821. min-width: 55px;
  4822. border-radius: 5px;
  4823. color: #fff;
  4824. text-align: center;
  4825. height: 20px;
  4826. line-height: 26px;
  4827. font-size: 14px;
  4828. }
  4829. .isWorkCss {
  4830. min-width: 20px;
  4831. height: 20px;
  4832. margin: 0 5px 0 10px;
  4833. }
  4834. .isWorkCss > img {
  4835. width: 100%;
  4836. height: 100%;
  4837. }
  4838. .navTaskname {
  4839. white-space: nowrap;
  4840. text-overflow: ellipsis;
  4841. overflow: hidden;
  4842. word-break: break-all;
  4843. padding-left: 5px;
  4844. }
  4845. .allBox {
  4846. display: flex;
  4847. flex-direction: row;
  4848. flex-wrap: nowrap;
  4849. /* align-items: flex-start; */
  4850. width: 100%;
  4851. /* height: 351px; */
  4852. margin-bottom: 20px;
  4853. }
  4854. .shuBox {
  4855. display: flex;
  4856. flex-direction: column;
  4857. flex-wrap: nowrap;
  4858. align-items: center;
  4859. width: 80%;
  4860. flex-wrap: nowrap;
  4861. /* overflow: auto; */
  4862. /* height: 500px; */
  4863. height: 100%;
  4864. }
  4865. .shuBox > .allBox:last-child {
  4866. margin-bottom: 0;
  4867. }
  4868. .answerbox {
  4869. display: flex;
  4870. flex-direction: row;
  4871. /* align-items: center; */
  4872. margin-bottom: 20px;
  4873. font-size: 16px;
  4874. }
  4875. .answerbox > div:nth-child(2) {
  4876. margin-left: 15px;
  4877. }
  4878. .answerbox1 {
  4879. display: flex;
  4880. flex-direction: row;
  4881. align-items: center;
  4882. flex-wrap: nowrap;
  4883. }
  4884. .answerbox1 > div:nth-child(2) {
  4885. margin-left: 10px;
  4886. /* width: 265px; */
  4887. max-height: 147px;
  4888. overflow: auto;
  4889. }
  4890. .jdName {
  4891. width: 100%;
  4892. }
  4893. .worksDialogCSS >>> .el-dialog {
  4894. /* margin: 0 !important; */
  4895. height: 100%;
  4896. }
  4897. .worksDialogCSS >>> .el-dialog__body {
  4898. height: calc(100% - 100px);
  4899. }
  4900. .openTaskActive {
  4901. color: #4386e6;
  4902. font-weight: bold;
  4903. }
  4904. .isClick {
  4905. background: #4d9def;
  4906. }
  4907. .buttonCss {
  4908. width: 100%;
  4909. display: flex;
  4910. flex-direction: row;
  4911. flex-wrap: nowrap;
  4912. justify-content: flex-end;
  4913. margin: 0px 0 20px;
  4914. padding: 0 20px;
  4915. box-sizing: border-box;
  4916. }
  4917. .fullStyle >>> .el-dialog__body {
  4918. height: calc(100% - 40px) !important;
  4919. /* height: 100%; */
  4920. overflow: auto;
  4921. }
  4922. .fullStyle >>> .el-dialog,
  4923. .fullStyle {
  4924. width: 100% !important;
  4925. max-width: 100% !important;
  4926. height: 100% !important;
  4927. margin: 0 !important;
  4928. }
  4929. .worksTimeBlack{
  4930. /* padding: 0 30px; */
  4931. box-sizing: border-box;
  4932. display: flex;
  4933. justify-content: space-between;
  4934. align-items: center;
  4935. color: rgba(0, 0, 0, 0.9);
  4936. }
  4937. .worksTimeBlack > .worksTimeBlackTit{
  4938. font-size: 18px;
  4939. font-weight: 600;
  4940. }
  4941. .worksTime {
  4942. /* position: absolute;
  4943. top: 10px;
  4944. right: 20px; */
  4945. display: flex;
  4946. flex-direction: row;
  4947. flex-wrap: nowrap;
  4948. align-items: baseline;
  4949. }
  4950. .fullBox {
  4951. /* overflow: unset !important;
  4952. height: auto !important; */
  4953. }
  4954. .fullZyBox {
  4955. width: 60% !important;
  4956. }
  4957. .rightScoreFullBox {
  4958. width: 40%;
  4959. }
  4960. .topButton {
  4961. display: flex;
  4962. flex-direction: row;
  4963. flex-wrap: nowrap;
  4964. align-items: center;
  4965. }
  4966. .topButton >>> .el-button {
  4967. color: #409eff;
  4968. border-color: #c6e2ff;
  4969. background-color: #ecf5ff;
  4970. }
  4971. .topButton >>> .el-button:hover {
  4972. color: #606266;
  4973. border-color: #dcdfe6;
  4974. background-color: #fff;
  4975. }
  4976. .radioBox {
  4977. display: flex;
  4978. flex-direction: column;
  4979. flex-wrap: wrap;
  4980. /* align-items: center; */
  4981. }
  4982. .radioBox >>> .el-radio {
  4983. margin-bottom: 5px;
  4984. }
  4985. .radioBox >>> .el-checkbox {
  4986. margin-bottom: 5px;
  4987. }
  4988. .radioBox > div {
  4989. margin: 10px 0 0 10px;
  4990. }
  4991. .radioBox >>> .el-radio__input,
  4992. .radioBox >>> .el-checkbox__inner {
  4993. margin-left: 10px;
  4994. }
  4995. .radioBox >>> .el-radio,
  4996. .radioBox >>> .el-checkbox {
  4997. display: flex;
  4998. align-items: center;
  4999. }
  5000. .inImg {
  5001. width: 100px;
  5002. }
  5003. .inImg > img {
  5004. width: 100%;
  5005. height: 100%;
  5006. object-fit: cover;
  5007. }
  5008. .xuan_right_box {
  5009. padding: 10px;
  5010. background: rgb(247, 247, 247);
  5011. margin: 10px 12px;
  5012. border-radius: 5px;
  5013. }
  5014. .tool_right_box {
  5015. display: flex;
  5016. align-items: center;
  5017. }
  5018. .tool_right_box + .tool_right_box {
  5019. margin-top: 10px;
  5020. }
  5021. .right_box_xuan,
  5022. .allRightBox > span:nth-child(2) {
  5023. background: rgb(0 123 255);
  5024. color: #fff;
  5025. border-radius: 5px;
  5026. padding: 5px;
  5027. margin-left: 10px;
  5028. }
  5029. .allRightBox {
  5030. padding: 10px 12px;
  5031. }
  5032. .typeCheck {
  5033. display: flex;
  5034. align-items: center;
  5035. justify-content: flex-end;
  5036. margin-left: 10px;
  5037. /* margin-bottom: 20px; */
  5038. }
  5039. .typeCheck > span {
  5040. margin-left: 10px;
  5041. }
  5042. .contentAuto {
  5043. width: 100%;
  5044. /* height: 253px; */
  5045. overflow: auto;
  5046. }
  5047. .evalCss {
  5048. background: #fff;
  5049. font-size: 18px;
  5050. }
  5051. .middleBox {
  5052. padding: 20px 0 15px 0;
  5053. }
  5054. .pfBox {
  5055. padding-bottom: 30px;
  5056. }
  5057. .nameAndrate {
  5058. display: flex;
  5059. flex-direction: row;
  5060. flex-wrap: nowrap;
  5061. align-items: center;
  5062. padding-bottom: 10px;
  5063. height: 30px;
  5064. line-height: 30px;
  5065. width: 100%;
  5066. }
  5067. .nameAndrate > div {
  5068. margin-left: 10px;
  5069. color: #000;
  5070. height: 30px;
  5071. }
  5072. .nameAndrate >>> .el-rate__icon {
  5073. font-size: 28px !important;
  5074. }
  5075. .pfBox > div:nth-child(2) {
  5076. background: #f7f6f9;
  5077. min-height: 45px;
  5078. border-radius: 10px;
  5079. font-size: 16px;
  5080. display: flex;
  5081. flex-wrap: wrap;
  5082. align-items: center;
  5083. padding: 10px 20px;
  5084. box-sizing: border-box;
  5085. color: #000;
  5086. }
  5087. .bz {
  5088. display: flex;
  5089. flex-direction: row;
  5090. flex-wrap: nowrap;
  5091. align-items: flex-start;
  5092. width: 100%;
  5093. }
  5094. .bz > div {
  5095. padding: 0 10px;
  5096. }
  5097. .pj {
  5098. font: inherit;
  5099. color: currentColor;
  5100. width: 100%;
  5101. margin: 0;
  5102. padding: 15px 14px;
  5103. display: block;
  5104. min-width: 0;
  5105. outline: none;
  5106. box-sizing: content-box;
  5107. background: none;
  5108. -webkit-tap-highlight-color: transparent;
  5109. border: 1px solid rgba(0, 0, 0, 0.23);
  5110. border-radius: 4px;
  5111. box-sizing: border-box;
  5112. resize: none;
  5113. }
  5114. .select_box2_box {
  5115. display: flex;
  5116. flex-direction: column;
  5117. flex-wrap: nowrap;
  5118. align-items: center;
  5119. }
  5120. .select_box2_img {
  5121. width: 70%;
  5122. height: 100%;
  5123. overflow: auto;
  5124. background: #fff;
  5125. border-radius: 5px;
  5126. margin-top: 10px;
  5127. }
  5128. .select_box2_img img {
  5129. width: 100%;
  5130. }
  5131. .select_box2_answer_box {
  5132. margin: 0 0 10px 20px;
  5133. width: 85%;
  5134. display: flex;
  5135. flex-direction: row;
  5136. flex-wrap: nowrap;
  5137. align-items: center;
  5138. }
  5139. .select_box2_answer_box >>> .el-input.is-disabled .el-input__inner {
  5140. color: #000;
  5141. }
  5142. .rightWidthCss {
  5143. width: 100%;
  5144. display: flex;
  5145. flex-direction: row;
  5146. align-items: center;
  5147. }
  5148. .rightAnswer {
  5149. display: flex;
  5150. flex-direction: row;
  5151. flex-wrap: nowrap;
  5152. align-items: center;
  5153. color: red;
  5154. margin-bottom: 31px;
  5155. }
  5156. .rightAnswerCss {
  5157. display: flex;
  5158. flex-direction: column;
  5159. flex-wrap: nowrap;
  5160. padding-top: 30px;
  5161. }
  5162. .blueCss {
  5163. color: #767de1;
  5164. margin-left: 10px;
  5165. }
  5166. .redCss {
  5167. color: red;
  5168. }
  5169. .sentenBox {
  5170. background: #fff;
  5171. /* background-image: url("../../../assets/icon/conSentences/stuBg.png"); */
  5172. /* background-position: 102%; */
  5173. /* background-repeat: no-repeat; */
  5174. /* background-size: 60%; */
  5175. }
  5176. .isWrong {
  5177. display: flex;
  5178. flex-direction: row;
  5179. flex-wrap: nowrap;
  5180. align-content: center;
  5181. align-items: center;
  5182. }
  5183. .cardList,
  5184. .cardList1 {
  5185. padding: 10px 0 10px 0;
  5186. display: flex;
  5187. flex-direction: row;
  5188. flex-wrap: wrap;
  5189. align-items: center;
  5190. box-sizing: border-box;
  5191. border-bottom: 1px solid #f4f4f4;
  5192. width: 98%;
  5193. margin: 0 auto;
  5194. min-width: 60%;
  5195. max-width: 85%;
  5196. }
  5197. .cardList1 {
  5198. padding: 10px 0 10px 10px !important;
  5199. margin: 0 !important;
  5200. }
  5201. .cardBox {
  5202. display: flex;
  5203. flex-direction: row;
  5204. flex-wrap: wrap;
  5205. align-items: center;
  5206. align-content: center;
  5207. }
  5208. .cardBox > div {
  5209. margin-bottom: 10px;
  5210. }
  5211. .isCard,
  5212. .isCard1 {
  5213. width: 130px;
  5214. height: 60px;
  5215. text-align: center;
  5216. line-height: 60px;
  5217. font-size: 20px;
  5218. cursor: pointer;
  5219. background-image: url("../../../assets/icon/conSentences/titleBorder.png");
  5220. background-size: cover;
  5221. transition: all 2s;
  5222. margin-right: 20px;
  5223. }
  5224. .isCard > div,
  5225. .isCard1 > div {
  5226. white-space: nowrap;
  5227. overflow: hidden;
  5228. text-overflow: ellipsis;
  5229. width: 75%;
  5230. margin: 0 auto;
  5231. font-size: 16px;
  5232. }
  5233. .cardAnswerBox {
  5234. font-size: 16px;
  5235. width: 97%;
  5236. border: 5px;
  5237. padding: 0;
  5238. border-radius: 5px;
  5239. margin: 10px auto;
  5240. word-break: break-word;
  5241. }
  5242. .answerRight {
  5243. width: 25%;
  5244. }
  5245. .isTj {
  5246. display: flex;
  5247. flex-direction: row;
  5248. flex-wrap: nowrap;
  5249. align-items: center;
  5250. min-width: 100px;
  5251. }
  5252. .isTj > div:nth-child(2) {
  5253. color: #727070;
  5254. margin-left: 5px;
  5255. }
  5256. .isTjImg {
  5257. width: 20px;
  5258. height: 20px;
  5259. }
  5260. .isTjImg > img {
  5261. width: 100%;
  5262. height: 100%;
  5263. }
  5264. /* table 样式 */
  5265. .cont >>> table {
  5266. border-top: 1px solid #ccc;
  5267. border-left: 1px solid #ccc;
  5268. }
  5269. .cont >>> table td,
  5270. .cont >>> table th {
  5271. border-bottom: 1px solid #ccc;
  5272. border-right: 1px solid #ccc;
  5273. padding: 15px 5px;
  5274. max-width: 0px;
  5275. }
  5276. .cont >>> table th {
  5277. border-bottom: 2px solid #ccc;
  5278. text-align: center;
  5279. }
  5280. /* blockquote 样式 */
  5281. .cont >>> blockquote {
  5282. display: block;
  5283. border-left: 8px solid #d0e5f2;
  5284. padding: 5px 10px;
  5285. margin: 10px 0;
  5286. line-height: 1.4;
  5287. font-size: 100%;
  5288. background-color: #f1f1f1;
  5289. }
  5290. /* code 样式 */
  5291. .cont >>> code {
  5292. display: inline-block;
  5293. *display: inline;
  5294. *zoom: 1;
  5295. background-color: #f1f1f1;
  5296. border-radius: 3px;
  5297. padding: 3px 5px;
  5298. margin: 0 3px;
  5299. }
  5300. .cont >>> pre code {
  5301. display: block;
  5302. }
  5303. /* ul ol 样式 */
  5304. .cont >>> ul,
  5305. ol {
  5306. margin: 10px 0 10px 20px;
  5307. }
  5308. .workImg {
  5309. width: 90%;
  5310. /* height: calc(100% - 40px); */
  5311. height: 105px;
  5312. position: relative;
  5313. }
  5314. .workImg > img {
  5315. width: 100%;
  5316. height: 100%;
  5317. object-fit: contain;
  5318. cursor: pointer;
  5319. }
  5320. .cutTab {
  5321. display: flex;
  5322. margin: 10px 0;
  5323. }
  5324. .cutTab > .ctrlBtn {
  5325. margin-right: 15px;
  5326. padding: 5px 0;
  5327. cursor: pointer;
  5328. font-size: 14px;
  5329. }
  5330. .cutTab > .ctrlBtn2 {
  5331. cursor: pointer;
  5332. margin-right: 15px;
  5333. border-bottom: 3px #409EFF solid;
  5334. font-weight: 600;
  5335. font-size: 14px;
  5336. padding: 5px 0;
  5337. color: #409EFF;
  5338. }
  5339. </style>