addCourse.vue 346 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="stepBg">
  6. <div class="stepTop">
  7. <div v-if="steps == 1" class="first" @click="navSteps(1)">
  8. <div>
  9. <img src="../../assets/icon/first.png" alt />
  10. </div>
  11. <div>填写基本信息</div>
  12. </div>
  13. <div v-else class="firstNo" @click="navSteps(1)">
  14. <div>
  15. <img src="../../assets/icon/firstNo.png" alt />
  16. </div>
  17. <div>填写基本信息</div>
  18. </div>
  19. <div v-show="cidType === 0" class="secondNo">
  20. <div
  21. v-if="steps == 2"
  22. class="newSteps second"
  23. @click="navSteps(2)"
  24. >
  25. <div style="margin: 5px 10px 0 0; width: 2rem">
  26. <img src="../../assets/icon/second.png" alt />
  27. </div>
  28. <div>选择课程框架</div>
  29. </div>
  30. <div v-else class="newSteps secondNo" @click="navSteps(2)">
  31. <div>
  32. <img src="../../assets/icon/secondNo.png" alt />
  33. </div>
  34. <div>选择课程框架</div>
  35. </div>
  36. </div>
  37. <div v-if="steps == 3" class="third" @click="navSteps(3)">
  38. <div>
  39. <img src="../../assets/icon/third.png" alt />
  40. </div>
  41. <div>上传课程内容</div>
  42. </div>
  43. <div v-else class="thirdNo" @click="navSteps(3)">
  44. <div>
  45. <img src="../../assets/icon/thirdNo.png" alt />
  46. </div>
  47. <div>上传课程内容</div>
  48. </div>
  49. <div v-if="steps == 4" class="four">
  50. <div>
  51. <img src="../../assets/icon/four.png" alt />
  52. </div>
  53. <div>上传完成</div>
  54. </div>
  55. <div v-else class="fourNo">
  56. <div>
  57. <img src="../../assets/icon/fourNo.png" alt />
  58. </div>
  59. <div>上传完成</div>
  60. </div>
  61. </div>
  62. <div
  63. class="stepsBottom"
  64. v-if="steps == 3 && !unitJson[unitIndex].easy"
  65. >
  66. <div class="navTop">辅助导航</div>
  67. <div class="navBottom">
  68. <div
  69. class="navTask"
  70. :class="{
  71. isNavTask: isClickColor > 0 && isClickColor == tIndex + 1,
  72. }"
  73. v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
  74. .taskJson"
  75. :key="tIndex"
  76. @click="goToTask(tIndex)"
  77. >
  78. <div>任务{{ tIndex + 1 }}</div>
  79. <div>
  80. <el-tooltip effect="light" :content="t.task" placement="top">
  81. <span>{{ t.task }}</span>
  82. </el-tooltip>
  83. </div>
  84. <div
  85. class="moveBtn"
  86. v-if="unitJson[unitIndex].chapterInfo[0].taskJson.length > 1"
  87. >
  88. <div
  89. class="chapter_upload_up"
  90. style="width: 15px; height: 15px"
  91. @click.stop="taskMove(1, tIndex)"
  92. ></div>
  93. <div
  94. class="chapter_upload_down"
  95. style="width: 15px; height: 15px; margin: 2px 0 0"
  96. @click.stop="taskMove(2, tIndex)"
  97. ></div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  104. <div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
  105. <div class="courseTop">
  106. <div class="stepsNav">
  107. <h3 class="info_title" v-if="steps == 1">填写基本信息</h3>
  108. <h3 class="info_title" v-if="steps == 2">请选择课程框架</h3>
  109. <h3 class="info_title" v-if="steps == 3">上传课程内容</h3>
  110. <h3 class="info_title" v-if="steps == 4">上传课程</h3>
  111. <el-breadcrumb
  112. separator-class="el-icon-arrow-right"
  113. style="margin-top: 15px"
  114. >
  115. <el-breadcrumb-item
  116. :to="{
  117. path:
  118. '/course?userid=' +
  119. userid +
  120. '&oid=' +
  121. oid +
  122. '&org=' +
  123. org,
  124. }"
  125. >课程管理</el-breadcrumb-item
  126. >
  127. <el-breadcrumb-item>
  128. <span style="color: rgb(15, 126, 255)">添加课程</span>
  129. </el-breadcrumb-item>
  130. </el-breadcrumb>
  131. </div>
  132. <div
  133. v-if="steps == 1 || steps == 2 || steps == 3"
  134. class="stepsWord"
  135. >
  136. {{
  137. steps == 1
  138. ? "第一步"
  139. : steps == 2
  140. ? "第二步"
  141. : steps == 3
  142. ? cidType === 0
  143. ? "第三步"
  144. : "第二步"
  145. : ""
  146. }}
  147. </div>
  148. </div>
  149. <div
  150. class="rightBox"
  151. v-if="this.steps == 1"
  152. @mousewheel="scrollChange"
  153. >
  154. <div
  155. class="updateMask"
  156. :style="{
  157. height: rightBoxHeight ? rightBoxHeight + 'px' : '100%',
  158. }"
  159. v-if="cid && userid != courseUserid"
  160. ></div>
  161. <div class="whiteBg">
  162. <div
  163. class="right_title"
  164. :class="{ updateTips: cid && userid != courseUserid }"
  165. >
  166. 课程基本信息
  167. </div>
  168. <div class="basic_box">
  169. <div class="big_box">
  170. <div class="left_first">
  171. <div>
  172. <div>
  173. <div class="bInfo_title" style="margin-bottom: 15px">
  174. <!-- <span style="color: red">*</span> -->
  175. 课程名称
  176. </div>
  177. <div style="display: flex; margin-right: 20px">
  178. <img
  179. src="../../assets/icon/projectName.png"
  180. alt
  181. style="margin-right: 8px"
  182. />
  183. <input
  184. type="text"
  185. placeholder="请输入课程名称"
  186. class="binfo_input"
  187. v-model="courseName"
  188. />
  189. </div>
  190. </div>
  191. <div
  192. class="pType_box all_choose"
  193. v-if="oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5'"
  194. >
  195. <span>类型</span>
  196. <!-- 学科+ 主题+ 未来+ -->
  197. <el-checkbox-group
  198. v-model="pTypeCheck"
  199. style="display: flex; align-items: center"
  200. >
  201. <div
  202. class="all_choose"
  203. style="width: 100px"
  204. v-for="(item, index) in CourseType2"
  205. :key="index"
  206. >
  207. <el-checkbox :label="item.id"
  208. >{{ item.name }}+</el-checkbox
  209. >
  210. </div>
  211. </el-checkbox-group>
  212. </div>
  213. <div class="both">
  214. <div class="choose">
  215. <div
  216. class="all_choose"
  217. v-for="(item, index) in CourseType[0]"
  218. :key="index"
  219. >
  220. <span
  221. v-if="
  222. CourseTypeJson[item.id].length > 0 &&
  223. (pTypeCheck.length > 0
  224. ? pTypeCheck.indexOf(item.id) != -1
  225. : true)
  226. "
  227. >{{ item.name }}</span
  228. >
  229. <el-checkbox-group
  230. v-model="courseTypeId"
  231. v-if="
  232. CourseTypeJson[item.id].length > 0 &&
  233. (pTypeCheck.length > 0
  234. ? pTypeCheck.indexOf(item.id) != -1
  235. : true)
  236. "
  237. >
  238. <el-checkbox
  239. v-for="item1 in CourseTypeJson[item.id]"
  240. :key="item1.id"
  241. :label="item1.id"
  242. >{{ item1.name }}</el-checkbox
  243. >
  244. </el-checkbox-group>
  245. <!-- <div
  246. v-else
  247. style="font-size: 14px; margin-left: -8px"
  248. >
  249. 暂无
  250. </div> -->
  251. </div>
  252. </div>
  253. </div>
  254. </div>
  255. </div>
  256. </div>
  257. </div>
  258. </div>
  259. <div class="whiteBg" style="border-radius: 0">
  260. <div class="right_first">
  261. <div class="right_title">上传封面与成员</div>
  262. <div
  263. style="
  264. padding: 0 0 50px 20px;
  265. display: flex;
  266. align-items: baseline;
  267. justify-content: flex-start;
  268. margin: 0 auto;
  269. "
  270. >
  271. <div>
  272. <div class="bInfo_title" style="margin-top: 0 !important">
  273. 课程封面
  274. </div>
  275. <div
  276. class="uploadFm"
  277. @click="choosePicVisible = true"
  278. v-if="cover.length == 0"
  279. >
  280. <img src="../../assets/icon/addPoster.png" alt="" />
  281. </div>
  282. <el-upload
  283. :class="{ disUoloadSty: noneBtnImg }"
  284. class="upCss"
  285. action="#"
  286. list-type="picture"
  287. v-loading="uploadLoading1"
  288. :http-request="beforeUpload1"
  289. ref="upload1"
  290. :on-preview="handlePictureCardPreview"
  291. :on-remove="handle_remove1"
  292. :show-file-list="true"
  293. :file-list="cover"
  294. accept="image/*"
  295. :limit="1"
  296. :on-exceed="onExceed"
  297. v-else
  298. >
  299. <i class="el-icon-plus"></i>
  300. </el-upload>
  301. </div>
  302. <div
  303. style="
  304. display: flex;
  305. flex-flow: row nowrap;
  306. flex-direction: row;
  307. flex-wrap: wrap;
  308. align-items: baseline;
  309. margin: 0 30px;
  310. "
  311. >
  312. <!-- <div style="margin: 0 80px">
  313. <div class="bInfo_title">
  314. 选择课程成员
  315. </div>
  316. <div
  317. class="addPeople"
  318. @click="addPP"
  319. v-if="this.checkboxList.length == 0"
  320. >添加成员</div>
  321. <div class="addPeople" @click="addPP" v-else>已添加,点击查看</div>
  322. </div>-->
  323. <div style="margin: 0 30px 0 0; width: 150px">
  324. <div class="bInfo_title">添加班级</div>
  325. <div
  326. class="addPeople"
  327. @click="
  328. (dialogVisibleClass = true),
  329. (classSearch = ''),
  330. getClass()
  331. "
  332. >
  333. 添加班级
  334. </div>
  335. <div
  336. v-if="checkboxList2.length"
  337. style="
  338. max-width: 100%;
  339. word-break: break-all;
  340. overflow: hidden;
  341. margin-top: 10px;
  342. font-size: 14px;
  343. color: #6e6e6e;
  344. "
  345. >
  346. <span
  347. :class="{ tcMember: getClassC(tc) }"
  348. v-for="(tc, tcIndex) in checkboxList2"
  349. :key="tcIndex"
  350. >{{ getClassC(tc) }}</span
  351. >
  352. </div>
  353. </div>
  354. <div
  355. style="flex: 0.5 1 0%; margin: 0; width: 180px"
  356. v-if="courseUserid != '' ? courseUserid == userid : true"
  357. >
  358. <div class="bInfo_title">协同编辑</div>
  359. <div
  360. class="addPeople"
  361. @click="openMember"
  362. style="background: #6b92c9"
  363. >
  364. 添加协同成员
  365. </div>
  366. <div
  367. v-if="checkboxList3.length"
  368. style="
  369. max-width: 100%;
  370. word-break: break-all;
  371. overflow: hidden;
  372. margin-top: 10px;
  373. font-size: 14px;
  374. color: #6e6e6e;
  375. cursor: pointer;
  376. "
  377. @click="checkBoolean = !checkBoolean"
  378. >
  379. <span
  380. :class="{ tcMember: getMan2(tc) }"
  381. v-for="(tc, tcIndex) in checkboxList3.length > 6 &&
  382. checkBoolean
  383. ? checkboxList3
  384. : checkboxList3.slice(0, 6)"
  385. :key="tcIndex"
  386. >{{ getMan2(tc) }}</span
  387. ><span
  388. class="tcMember"
  389. v-if="checkboxList3.length > 6 && !checkBoolean"
  390. >更多...</span
  391. >
  392. </div>
  393. </div>
  394. </div>
  395. </div>
  396. </div>
  397. </div>
  398. <div class="whiteBg" style="border-radius: 0; margin-top: 15px">
  399. <div class="right_title">课程简要描述</div>
  400. <div style="width: 95%; padding: 15px 0px 15px 20px">
  401. <div style="width: 55%">
  402. <textarea
  403. rows="8"
  404. class="binfo_input"
  405. cols
  406. v-model="courseText"
  407. :placeholder="
  408. '1、课程内容说明' +
  409. '\n' +
  410. '2、课程学习知识目标' +
  411. '\n' +
  412. '3、课程学习技能目标'
  413. "
  414. ></textarea>
  415. </div>
  416. </div>
  417. <!-- <div style="width: 95%; margin: 15px auto">
  418. <el-switch
  419. v-model="isTeacherSee"
  420. active-text="允许给其他老师查看"
  421. style="padding-bottom: 30px"
  422. ></el-switch>
  423. </div>-->
  424. <div style="width: 95%; padding: 15px 0px 15px 20px">
  425. <el-switch
  426. v-model="isTeacherSee"
  427. active-text="是否公开此课程"
  428. style="padding-bottom: 30px"
  429. ></el-switch>
  430. </div>
  431. </div>
  432. <div
  433. class="whiteBg"
  434. style="border-radius: 0; margin-top: 15px; padding-bottom: 20px"
  435. >
  436. <div class="right_title">目标管理</div>
  437. <div style="margin: 15px auto; padding: 0 0 0 20px">
  438. <div
  439. style="
  440. border: 1px solid #e5e5e5;
  441. width: 95%;
  442. min-height: 600px;
  443. margin-top: 30px;
  444. box-shadow: 3px 1px 15px 3px #e0e0e0;
  445. "
  446. >
  447. <div class="e_add_top">
  448. <div class="e_add_title">
  449. <span>当前使用目标管理</span>
  450. <span>{{ eTitle ? eTitle : "请添加目标" }}</span>
  451. <img
  452. src="../../assets/line.png"
  453. class="cru_line"
  454. style="
  455. width: 125px;
  456. height: 20px;
  457. bottom: -10px;
  458. left: 155px;
  459. "
  460. />
  461. </div>
  462. <div
  463. style="
  464. display: flex;
  465. flex-direction: row;
  466. align-items: center;
  467. "
  468. >
  469. <el-button
  470. type="primary"
  471. size="small"
  472. @click="dialogVisiblemb = true"
  473. >添加目标管理</el-button
  474. >
  475. <el-button
  476. type="primary"
  477. size="small"
  478. @click="deleteEva()"
  479. >清除内容</el-button
  480. >
  481. <!-- <div class="e_add_delete" @click="deleteEva()">
  482. <img src="../../assets/icon/delete.png" alt="" />
  483. </div> -->
  484. </div>
  485. </div>
  486. <div v-if="evalua == ''">
  487. <div class="noneBox">
  488. <img src="../../assets/icon/isNoMessage.png" />
  489. </div>
  490. </div>
  491. <div class="e_add_content" v-else>
  492. <div class="e_add_list_pbox">
  493. <div class="e_add_list_pbox_title">
  494. <span class="type_title">切换模式</span>
  495. <div class="type_content">
  496. <span
  497. :class="{ active: typeMode == 1 }"
  498. @click="OtherMb(1)"
  499. >目标树</span
  500. >
  501. <span
  502. :class="{ active: typeMode == 2 }"
  503. @click="OtherMb(2)"
  504. >目标罗盘</span
  505. >
  506. <span
  507. :class="{ active: typeMode == 3 }"
  508. @click="OtherMb(3)"
  509. >目标看板</span
  510. >
  511. </div>
  512. </div>
  513. <div class="e_add_list_pbox_content">
  514. <Mind
  515. :showBar="false"
  516. :mindData="data"
  517. v-show="typeMode == 1"
  518. ></Mind>
  519. <Sunburst
  520. :Josn="eJson"
  521. :num="eJSONNum"
  522. style="width: 100%"
  523. v-if="typeMode == 2"
  524. ></Sunburst>
  525. <SeeBoard
  526. :Josn="eJson"
  527. :num="eJSONNum"
  528. :ename="eTitle"
  529. style="width: 100%"
  530. v-if="typeMode == 3"
  531. >
  532. </SeeBoard>
  533. </div>
  534. </div>
  535. </div>
  536. </div>
  537. </div>
  538. </div>
  539. </div>
  540. <div class="rightBox" v-if="this.steps == 2">
  541. <div
  542. class="basic_box"
  543. style="padding: 20px 30px 0px !important; box-sizing: border-box"
  544. >
  545. <!-- <div
  546. style="
  547. color: #b8b8b8;
  548. background: #fff;
  549. width: 26%;
  550. height: 40px;
  551. border-radius: 15px;
  552. padding-left: 20px;
  553. line-height: 40px;
  554. font-size: 17px;
  555. box-shadow: 0px 1px 2px 2px #e0e0e0;
  556. "
  557. >-->
  558. <div
  559. class="right_title"
  560. style="border: none; margin: 0; padding: 0"
  561. >
  562. 请选择合适的课程模板
  563. </div>
  564. <div class="wordbox">
  565. <div
  566. class="wordTeacher"
  567. v-for="(aa, indexF) in templateArray"
  568. :key="indexF"
  569. @click="checkTemplate(aa)"
  570. >
  571. <div class="wordPic">
  572. <img src="../../assets/icon/wordMub.png" alt />
  573. </div>
  574. <div
  575. style="
  576. margin-top: 10px;
  577. line-height: 19px;
  578. overflow: hidden;
  579. text-overflow: ellipsis;
  580. white-space: nowrap;
  581. padding: 0 20px;
  582. "
  583. >
  584. {{ aa.title }}
  585. </div>
  586. </div>
  587. <div class="wordTeacher" @click="checkTemplate2()">
  588. <div class="wordPic">
  589. <img src="../../assets/icon/wordMub.png" alt />
  590. </div>
  591. <div
  592. style="
  593. margin-top: 10px;
  594. line-height: 19px;
  595. overflow: hidden;
  596. text-overflow: ellipsis;
  597. white-space: nowrap;
  598. padding: 0 20px;
  599. "
  600. >
  601. 任务模式
  602. </div>
  603. </div>
  604. <div class="wordTeacher" @click="checkTemplate3()">
  605. <div class="wordPic">
  606. <img src="../../assets/icon/wordMub.png" alt />
  607. </div>
  608. <div
  609. style="
  610. margin-top: 10px;
  611. line-height: 19px;
  612. overflow: hidden;
  613. text-overflow: ellipsis;
  614. white-space: nowrap;
  615. padding: 0 20px;
  616. "
  617. >
  618. 简易模式
  619. </div>
  620. </div>
  621. <!-- <div class="wordTeacher" @click="checkTemplate1()">
  622. <div class="wordPic">
  623. <img src="../../assets/icon/wordMub.png" alt />
  624. </div>
  625. <div style="
  626. margin-top: 10px;
  627. line-height: 19px;
  628. overflow: hidden;
  629. text-overflow: ellipsis;
  630. white-space: nowrap;
  631. padding: 0 20px;
  632. ">
  633. 我的课程
  634. </div>
  635. </div> -->
  636. </div>
  637. </div>
  638. </div>
  639. <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
  640. <div class="basic_box">
  641. <div
  642. style="
  643. display: flex;
  644. flex-direction: row;
  645. align-items: center;
  646. position: sticky;
  647. top: 0;
  648. background: #fff;
  649. z-index: 99;
  650. width: 100%;
  651. padding: 0 20px 0 20px;
  652. box-sizing: border-box;
  653. "
  654. >
  655. <div class="cru_selectBox">
  656. <div
  657. v-for="(item, index) in unitJson"
  658. :key="index"
  659. class="cru_select"
  660. :class="unitIndex == index ? 'cru_selected' : ''"
  661. @click="unitSet(index)"
  662. >
  663. 第{{ index + 1 }}阶段
  664. </div>
  665. <img
  666. src="../../assets/line.png"
  667. class="cru_line"
  668. :style="{
  669. left: offsetLetfPx + 'px',
  670. }"
  671. />
  672. </div>
  673. <div class="addStageImg" @click="addunit()">
  674. <img src="../../assets/icon/add.png" alt />
  675. </div>
  676. </div>
  677. <div
  678. style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
  679. v-for="(item, index) in unitJson[unitIndex].chapterInfo"
  680. :key="index"
  681. >
  682. <div>
  683. <div class="chapter_contentbox">
  684. <div>第{{ unitIndex + 1 }}阶段</div>
  685. <div>
  686. <input
  687. type="text"
  688. placeholder="阶段标题"
  689. class="binfo_input"
  690. v-model="unitJson[unitIndex].dyName"
  691. />
  692. </div>
  693. <div
  694. v-if="unitJson.length > 1"
  695. @click="deleteUnit(unitIndex)"
  696. ></div>
  697. </div>
  698. </div>
  699. <div
  700. v-if="!unitJson[unitIndex].easy"
  701. style="
  702. margin: 50px 0px 10px;
  703. font-size: 1.5em;
  704. font-weight: 700;
  705. color: #0f7eff;
  706. "
  707. >
  708. 添加任务
  709. </div>
  710. <div
  711. class="taskBorder"
  712. :style="{ minHeight: unitJson[unitIndex].easy && 'unset' }"
  713. v-for="(itemTask, itemTaskIndex) in item.taskJson"
  714. :key="itemTaskIndex"
  715. >
  716. <div v-if="!unitJson[unitIndex].easy">
  717. <div>
  718. <div
  719. style="font-size: 22px; color: #8e8e8e"
  720. :id="'task' + itemTaskIndex"
  721. >
  722. 任务{{ itemTaskIndex + 1 }}
  723. </div>
  724. <div
  725. class="chapter_contentbox"
  726. style="
  727. flex-direction: row;
  728. justify-content: flex-start;
  729. align-items: center;
  730. "
  731. >
  732. <div
  733. style="
  734. border-left: 6px solid #5699e8;
  735. height: 20px;
  736. padding-left: 10px;
  737. line-height: 22px;
  738. "
  739. >
  740. 任务名称
  741. </div>
  742. <div>
  743. <input
  744. type="text"
  745. placeholder="输入任务名称"
  746. class="binfo_input"
  747. style="border-radius: 4px"
  748. v-model="
  749. unitJson[unitIndex].chapterInfo[0].taskJson[
  750. itemTaskIndex
  751. ].task
  752. "
  753. />
  754. </div>
  755. <div
  756. class="remove"
  757. v-if="item.taskJson.length > 1"
  758. @click="deleteTask(itemTaskIndex)"
  759. style="position: absolute; right: 55px"
  760. ></div>
  761. </div>
  762. <div
  763. style="
  764. display: flex;
  765. margin: 0 0 20px 0;
  766. flex-direction: row;
  767. justify-content: flex-start;
  768. align-items: center;
  769. width: 70.5% !important;
  770. padding-top: 30px;
  771. "
  772. >
  773. <div class="lineTitle">任务描述</div>
  774. <div class="line"></div>
  775. </div>
  776. <div>
  777. <editor-bar
  778. style="width: 90% !important; margin: 0"
  779. placeholder="请输入任务描述"
  780. v-model="
  781. unitJson[unitIndex].chapterInfo[0].taskJson[
  782. itemTaskIndex
  783. ].taskDetail
  784. "
  785. @change="change"
  786. ></editor-bar>
  787. <!-- <textarea
  788. rows="6"
  789. class="binfo_input"
  790. placeholder="请输入任务描述"
  791. cols
  792. style="width: 70.5% !important; height: 120px"
  793. v-model="
  794. unitJson[unitIndex].chapterInfo[0].taskJson[
  795. itemTaskIndex
  796. ].taskDetail
  797. "
  798. ></textarea>-->
  799. </div>
  800. </div>
  801. </div>
  802. <div
  803. v-if="!unitJson[unitIndex].easy"
  804. class="basic_box"
  805. style="
  806. margin: 0;
  807. min-height: 0;
  808. width: 90% !important;
  809. padding-top: 10px !important;
  810. "
  811. >
  812. <div
  813. style="
  814. display: flex;
  815. margin: 0 0 20px 0;
  816. flex-direction: row;
  817. justify-content: flex-start;
  818. align-items: center;
  819. "
  820. >
  821. <div class="lineTitle">学习内容</div>
  822. <div class="line"></div>
  823. </div>
  824. <div>
  825. <div
  826. class="add_chapters_box"
  827. v-if="
  828. itemTask.chapterData &&
  829. itemTask.chapterData.length == 0
  830. "
  831. style="height: 185px"
  832. ></div>
  833. <div
  834. v-else
  835. class="add_chapters_box"
  836. style="display: flex; flex-direction: column"
  837. >
  838. <div
  839. class="chapter_upload"
  840. v-for="(item1, index1) in itemTask.chapterData"
  841. :key="item1.id"
  842. @click="
  843. getChapterData(
  844. $event,
  845. unitIndex,
  846. index,
  847. index1,
  848. item1.type
  849. )
  850. "
  851. >
  852. <div
  853. class="chapter_upload_t"
  854. style="width: 100%"
  855. ></div>
  856. <div
  857. class="chapter_upload_o"
  858. style="
  859. position: relative;
  860. display: flex;
  861. align-items: center;
  862. "
  863. >
  864. <div
  865. class="chapter_upload_l"
  866. style="padding: 1px 0 0 10px"
  867. >
  868. <div
  869. v-if="item1.type == 2"
  870. class="chapter_upload_l_i1"
  871. ></div>
  872. <div
  873. v-if="
  874. item1.type == 3 ||
  875. item1.type == 6 ||
  876. item1.type == 7
  877. "
  878. class="chapter_upload_l_i5"
  879. style="margin-left: 1px"
  880. ></div>
  881. <div
  882. v-if="item1.type == 8"
  883. class="chapter_upload_l_i8"
  884. style="margin-left: 1px"
  885. ></div>
  886. </div>
  887. <div
  888. class="chapter_upload_ic"
  889. style="
  890. cursor: pointer;
  891. position: absolute;
  892. width: 45px;
  893. right: 0;
  894. top: 0;
  895. "
  896. >
  897. <div class="chapter_upload_ic_l"></div>
  898. <div
  899. class="chapter_upload_ic_r"
  900. style="position: absolute"
  901. @click.stop="
  902. deleteChapterData(
  903. $event,
  904. unitIndex,
  905. index,
  906. index1,
  907. itemTaskIndex
  908. )
  909. "
  910. >
  911. <div></div>
  912. </div>
  913. </div>
  914. <div class="chapter_upload_n">
  915. <input
  916. v-if="
  917. item1.type == 2 ||
  918. item1.type == 3 ||
  919. item1.type == 7
  920. "
  921. :placeholder="item1.name"
  922. @change="
  923. updataVideoT(
  924. $event,
  925. unitIndex,
  926. chapterIndex,
  927. index1
  928. )
  929. "
  930. style="
  931. border: none;
  932. outline: none;
  933. width: 80%;
  934. minwidth: 215px;
  935. z-index: 99;
  936. font-size: 14px;
  937. white-space: nowrap;
  938. overflow: hidden;
  939. text-overflow: ellipsis;
  940. "
  941. />
  942. <input
  943. :placeholder="item1.name"
  944. v-if="item1.type == 6"
  945. style="
  946. border: none;
  947. outline: none;
  948. width: 80%;
  949. white-space: nowrap;
  950. overflow: hidden;
  951. text-overflow: ellipsis;
  952. "
  953. readonly="true"
  954. @click="selectAttText(itemTaskIndex, index1)"
  955. />
  956. <input
  957. :placeholder="
  958. item1.title ? item1.title : '链接'
  959. "
  960. v-if="item1.type == 8"
  961. style="
  962. border: none;
  963. outline: none;
  964. width: 80%;
  965. white-space: nowrap;
  966. overflow: hidden;
  967. text-overflow: ellipsis;
  968. "
  969. readonly="true"
  970. @click="selectLine(itemTaskIndex, index1)"
  971. />
  972. <div
  973. class="chapter_upload_ud"
  974. style="z-index: 99"
  975. >
  976. <div
  977. class="chapter_upload_up"
  978. @click="
  979. upCd(
  980. $event,
  981. unitIndex,
  982. index,
  983. itemTaskIndex,
  984. index1
  985. )
  986. "
  987. ></div>
  988. <div
  989. class="chapter_upload_down"
  990. @click="
  991. downCd(
  992. $event,
  993. unitIndex,
  994. index,
  995. itemTaskIndex,
  996. index1
  997. )
  998. "
  999. ></div>
  1000. </div>
  1001. </div>
  1002. </div>
  1003. </div>
  1004. </div>
  1005. </div>
  1006. <div class="add_info_box">
  1007. <button class="info_btn" @click="addImg($event)">
  1008. 添加教学视频
  1009. <!-- capture="camera" -->
  1010. <input
  1011. type="file"
  1012. accept="video/mp4, video/quicktime, video/x-msvideo"
  1013. style="display: none"
  1014. v-if="inputShow"
  1015. @change="
  1016. beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  1017. "
  1018. />
  1019. </button>
  1020. <button class="info_btn" @click="addImg($event)">
  1021. 添加教学附件
  1022. <input
  1023. type="file"
  1024. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1025. style="display: none"
  1026. v-if="inputShow"
  1027. @change="
  1028. beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  1029. "
  1030. />
  1031. </button>
  1032. <button
  1033. class="info_btn"
  1034. @click="addAttText(itemTaskIndex)"
  1035. v-if="!unitJson[unitIndex].easy"
  1036. >
  1037. 添加图文
  1038. </button>
  1039. <button
  1040. class="info_btn"
  1041. @click="openLine(itemTaskIndex)"
  1042. v-if="!unitJson[unitIndex].easy"
  1043. >
  1044. 添加链接
  1045. </button>
  1046. </div>
  1047. <div
  1048. v-if="
  1049. unitJson[unitIndex].chapterInfo[0].taskJson[
  1050. itemTaskIndex
  1051. ].proVisible
  1052. "
  1053. class="mask"
  1054. >
  1055. <div class="progressBox">
  1056. <!-- <div id="closePro" class="closeCss">
  1057. <img src="../../../assets/icon/close.png" alt />
  1058. </div> -->
  1059. <div class="lbox">
  1060. <img src="../../assets/loading.gif" />上传中,请稍后
  1061. </div>
  1062. <div style="margin-bottom: 10px">
  1063. <span
  1064. >{{
  1065. unitJson[unitIndex].chapterInfo[0].taskJson[
  1066. itemTaskIndex
  1067. ].isFinishSize
  1068. }}M</span
  1069. >
  1070. /
  1071. <span
  1072. >{{
  1073. unitJson[unitIndex].chapterInfo[0].taskJson[
  1074. itemTaskIndex
  1075. ].isAllSize
  1076. }}M</span
  1077. >
  1078. </div>
  1079. <el-progress
  1080. :text-inside="true"
  1081. :stroke-width="20"
  1082. :percentage="
  1083. unitJson[unitIndex].chapterInfo[0].taskJson[
  1084. itemTaskIndex
  1085. ].progress
  1086. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  1087. itemTaskIndex
  1088. ].progress
  1089. : 0
  1090. "
  1091. style="width: 80%"
  1092. ></el-progress>
  1093. </div>
  1094. </div>
  1095. </div>
  1096. <div
  1097. v-if="unitJson[unitIndex].easy"
  1098. class="basic_box"
  1099. style="
  1100. margin: 0 auto;
  1101. min-height: 0;
  1102. width: 95% !important;
  1103. padding: 20px 10px 10px;
  1104. "
  1105. >
  1106. <div>
  1107. <div
  1108. class="add_chapters_box"
  1109. v-if="
  1110. itemTask.chapterData &&
  1111. itemTask.chapterData.length == 0
  1112. "
  1113. style="height: 185px"
  1114. ></div>
  1115. <div
  1116. v-else
  1117. class="add_chapters_box"
  1118. style="display: flex; flex-direction: column"
  1119. >
  1120. <div
  1121. v-for="(item1, index1) in itemTask.chapterData"
  1122. :key="item1.id"
  1123. >
  1124. <div
  1125. class="chapter_upload"
  1126. @click="
  1127. getChapterData(
  1128. $event,
  1129. unitIndex,
  1130. index,
  1131. index1,
  1132. item1.type
  1133. )
  1134. "
  1135. >
  1136. <div
  1137. class="chapter_upload_t"
  1138. style="width: 100%"
  1139. ></div>
  1140. <div
  1141. class="chapter_upload_o"
  1142. style="
  1143. position: relative;
  1144. display: flex;
  1145. align-items: center;
  1146. "
  1147. >
  1148. <div
  1149. class="chapter_upload_l"
  1150. style="padding: 1px 0 0 10px"
  1151. >
  1152. <div
  1153. v-if="item1.type == 2"
  1154. class="chapter_upload_l_i1"
  1155. ></div>
  1156. <div
  1157. v-if="
  1158. item1.type == 3 ||
  1159. item1.type == 6 ||
  1160. item1.type == 7
  1161. "
  1162. class="chapter_upload_l_i5"
  1163. style="margin-left: 1px"
  1164. ></div>
  1165. <div
  1166. v-if="item1.type == 8"
  1167. class="chapter_upload_l_i8"
  1168. style="margin-left: 1px"
  1169. ></div>
  1170. </div>
  1171. <div
  1172. class="chapter_upload_ic"
  1173. style="
  1174. cursor: pointer;
  1175. position: absolute;
  1176. width: 45px;
  1177. right: 0;
  1178. top: 0;
  1179. "
  1180. >
  1181. <div class="chapter_upload_ic_l"></div>
  1182. <div
  1183. class="chapter_upload_ic_r"
  1184. style="position: absolute"
  1185. @click.stop="
  1186. deleteChapterData(
  1187. $event,
  1188. unitIndex,
  1189. index,
  1190. index1,
  1191. itemTaskIndex
  1192. )
  1193. "
  1194. >
  1195. <div></div>
  1196. </div>
  1197. </div>
  1198. <div class="chapter_upload_n">
  1199. <span
  1200. style="
  1201. font-size: 14px;
  1202. color: rgb(109, 109, 109);
  1203. height: 14px;
  1204. line-height: 12px;
  1205. "
  1206. v-if="
  1207. item1.type == 2 ||
  1208. item1.type == 3 ||
  1209. item1.type == 7
  1210. "
  1211. >{{ item1.text }}-</span
  1212. >
  1213. <input
  1214. v-if="
  1215. item1.type == 2 ||
  1216. item1.type == 3 ||
  1217. item1.type == 7
  1218. "
  1219. :placeholder="item1.name"
  1220. @change="
  1221. updataVideoT(
  1222. $event,
  1223. unitIndex,
  1224. chapterIndex,
  1225. index1
  1226. )
  1227. "
  1228. style="
  1229. border: none;
  1230. outline: none;
  1231. width: 80%;
  1232. minwidth: 215px;
  1233. z-index: 99;
  1234. font-size: 14px;
  1235. white-space: nowrap;
  1236. overflow: hidden;
  1237. text-overflow: ellipsis;
  1238. "
  1239. />
  1240. <input
  1241. :placeholder="item1.name"
  1242. v-if="item1.type == 6"
  1243. style="
  1244. border: none;
  1245. outline: none;
  1246. width: 80%;
  1247. white-space: nowrap;
  1248. overflow: hidden;
  1249. text-overflow: ellipsis;
  1250. "
  1251. readonly="true"
  1252. @click="selectAttText(itemTaskIndex, index1)"
  1253. />
  1254. <input
  1255. :placeholder="
  1256. item1.title ? item1.title : '链接'
  1257. "
  1258. v-if="item1.type == 8"
  1259. style="
  1260. border: none;
  1261. outline: none;
  1262. width: 80%;
  1263. white-space: nowrap;
  1264. overflow: hidden;
  1265. text-overflow: ellipsis;
  1266. "
  1267. readonly="true"
  1268. @click="selectLine(itemTaskIndex, index1)"
  1269. />
  1270. <div
  1271. class="chapter_upload_ud"
  1272. style="z-index: 99"
  1273. >
  1274. <div
  1275. class="chapter_upload_up"
  1276. @click="
  1277. upCd(
  1278. $event,
  1279. unitIndex,
  1280. index,
  1281. itemTaskIndex,
  1282. index1
  1283. )
  1284. "
  1285. ></div>
  1286. <div
  1287. class="chapter_upload_down"
  1288. @click="
  1289. downCd(
  1290. $event,
  1291. unitIndex,
  1292. index,
  1293. itemTaskIndex,
  1294. index1
  1295. )
  1296. "
  1297. ></div>
  1298. </div>
  1299. </div>
  1300. </div>
  1301. </div>
  1302. </div>
  1303. </div>
  1304. </div>
  1305. <div class="add_info_box" style="margin: 10px 0 0">
  1306. <button class="info_btn" @click="addImg($event)">
  1307. <span style="color: red">*</span>
  1308. 教学设计
  1309. <input
  1310. type="file"
  1311. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1312. style="display: none"
  1313. v-if="inputShow"
  1314. @change="
  1315. beforeUpload3(
  1316. $event,
  1317. unitIndex,
  1318. 3,
  1319. itemTaskIndex,
  1320. '教学设计'
  1321. )
  1322. "
  1323. />
  1324. </button>
  1325. <button class="info_btn" @click="addImg($event)">
  1326. <span style="color: red">*</span>
  1327. 教学课件
  1328. <input
  1329. type="file"
  1330. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1331. style="display: none"
  1332. v-if="inputShow"
  1333. @change="
  1334. beforeUpload3(
  1335. $event,
  1336. unitIndex,
  1337. 3,
  1338. itemTaskIndex,
  1339. '教学课件'
  1340. )
  1341. "
  1342. />
  1343. </button>
  1344. <button class="info_btn" @click="addImg($event)">
  1345. 教学视频
  1346. <input
  1347. type="file"
  1348. accept="video/mp4, video/quicktime, video/x-msvideo"
  1349. style="display: none"
  1350. v-if="inputShow"
  1351. @change="
  1352. beforeUpload3(
  1353. $event,
  1354. unitIndex,
  1355. 2,
  1356. itemTaskIndex,
  1357. '教学视频'
  1358. )
  1359. "
  1360. />
  1361. </button>
  1362. <button class="info_btn" @click="addImg($event)">
  1363. 教学音频
  1364. <input
  1365. type="file"
  1366. accept="audio/*"
  1367. style="display: none"
  1368. v-if="inputShow"
  1369. @change="
  1370. beforeUpload3(
  1371. $event,
  1372. unitIndex,
  1373. 2,
  1374. itemTaskIndex,
  1375. '教学音频'
  1376. )
  1377. "
  1378. />
  1379. </button>
  1380. <button class="info_btn" @click="addImg($event)">
  1381. 学习单
  1382. <input
  1383. type="file"
  1384. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1385. style="display: none"
  1386. v-if="inputShow"
  1387. @change="
  1388. beforeUpload3(
  1389. $event,
  1390. unitIndex,
  1391. 3,
  1392. itemTaskIndex,
  1393. '学习单'
  1394. )
  1395. "
  1396. />
  1397. </button>
  1398. </div>
  1399. <div
  1400. v-if="
  1401. unitJson[unitIndex].chapterInfo[0].taskJson[
  1402. itemTaskIndex
  1403. ].proVisible
  1404. "
  1405. class="mask"
  1406. >
  1407. <div class="progressBox">
  1408. <!-- <div id="closePro" class="closeCss">
  1409. <img src="../../../assets/icon/close.png" alt />
  1410. </div> -->
  1411. <div class="lbox">
  1412. <img src="../../assets/loading.gif" />上传中,请稍后
  1413. </div>
  1414. <div style="margin-bottom: 10px">
  1415. <span
  1416. >{{
  1417. unitJson[unitIndex].chapterInfo[0].taskJson[
  1418. itemTaskIndex
  1419. ].isFinishSize
  1420. }}M</span
  1421. >
  1422. /
  1423. <span
  1424. >{{
  1425. unitJson[unitIndex].chapterInfo[0].taskJson[
  1426. itemTaskIndex
  1427. ].isAllSize
  1428. }}M</span
  1429. >
  1430. </div>
  1431. <el-progress
  1432. :text-inside="true"
  1433. :stroke-width="20"
  1434. :percentage="
  1435. unitJson[unitIndex].chapterInfo[0].taskJson[
  1436. itemTaskIndex
  1437. ].progress
  1438. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  1439. itemTaskIndex
  1440. ].progress
  1441. : 0
  1442. "
  1443. style="width: 80%"
  1444. ></el-progress>
  1445. </div>
  1446. </div>
  1447. </div>
  1448. <div
  1449. style="
  1450. flex-direction: row;
  1451. justify-content: flex-start;
  1452. align-items: center;
  1453. padding: 0 0 0 30px;
  1454. paddint-top: 10px !important;
  1455. "
  1456. >
  1457. <div
  1458. style="
  1459. display: flex;
  1460. flex-direction: row;
  1461. align-items: center;
  1462. margin-bottom: 20px;
  1463. "
  1464. >
  1465. <div class="lineTitle">
  1466. {{
  1467. !unitJson[unitIndex].easy ? "练习内容" : "评价内容"
  1468. }}
  1469. </div>
  1470. <div class="line" style="width: 90%"></div>
  1471. </div>
  1472. </div>
  1473. <div
  1474. v-if="!unitJson[unitIndex].easy"
  1475. class="toolChoose"
  1476. style="padding: 0 0 0 30px"
  1477. >
  1478. <div class="tools">
  1479. <div
  1480. class="leftTools"
  1481. style="
  1482. width: 95%;
  1483. padding: 0 0 15px 0;
  1484. border-bottom: 1px solid #efefef;
  1485. margin-bottom: 15px;
  1486. "
  1487. v-for="(itemTool, toolIndex) in itemTask.toolChoose"
  1488. :key="toolIndex"
  1489. >
  1490. <div>
  1491. <textarea
  1492. rows="3"
  1493. type="text"
  1494. placeholder="添加工具描述"
  1495. class="binfo_input"
  1496. style="margin: 0 0 20px 0; width: 71.5% !important"
  1497. v-model="itemTool.toolDetail"
  1498. ></textarea>
  1499. </div>
  1500. <div
  1501. style="
  1502. display: flex;
  1503. flex-direction: row;
  1504. align-items: baseline;
  1505. flex-wrap: nowrap;
  1506. justify-content: flex-start;
  1507. position: relative;
  1508. "
  1509. >
  1510. <div style="margin-right: 20px; font-weight: bold">
  1511. 步骤 {{ toolIndex + 1 }} :
  1512. </div>
  1513. <div class="chooseWho">
  1514. <div
  1515. :class="
  1516. itemTool.toolType == 0 ? 'isChooseActive' : ''
  1517. "
  1518. @click="(itemTool.toolType = 0), $forceUpdate()"
  1519. >
  1520. 互动类
  1521. </div>
  1522. <div
  1523. :class="
  1524. itemTool.toolType == 1 ? 'isChooseActive' : ''
  1525. "
  1526. @click="(itemTool.toolType = 1), $forceUpdate()"
  1527. >
  1528. 思维类
  1529. </div>
  1530. <div
  1531. :class="
  1532. itemTool.toolType == 2 ? 'isChooseActive' : ''
  1533. "
  1534. @click="(itemTool.toolType = 2), $forceUpdate()"
  1535. >
  1536. 评价类
  1537. </div>
  1538. <div
  1539. :class="
  1540. itemTool.toolType == 3 ? 'isChooseActive' : ''
  1541. "
  1542. @click="(itemTool.toolType = 3), $forceUpdate()"
  1543. >
  1544. 编程类
  1545. </div>
  1546. <div
  1547. :class="
  1548. itemTool.toolType == 5 ? 'isChooseActive' : ''
  1549. "
  1550. @click="(itemTool.toolType = 5), $forceUpdate()"
  1551. >
  1552. 学科类
  1553. </div>
  1554. <div
  1555. :class="
  1556. itemTool.toolType == 4 ? 'isChooseActive' : ''
  1557. "
  1558. @click="(itemTool.toolType = 4), $forceUpdate()"
  1559. >
  1560. 其他
  1561. </div>
  1562. </div>
  1563. <div
  1564. class="remove"
  1565. @click="deleteTool(itemTaskIndex, toolIndex)"
  1566. v-if="itemTask.toolChoose.length > 1"
  1567. style="position: absolute; right: 55px"
  1568. ></div>
  1569. </div>
  1570. <div style="min-height: 163px">
  1571. <div class="toolSort" v-if="itemTool.toolType == 0">
  1572. <!-- <div class="tool">
  1573. <div
  1574. class="whiteBIcon"
  1575. @click="addTools(8, itemTaskIndex, toolIndex)"
  1576. >
  1577. <img src="../../assets/icon/secondToolList/library.png" alt />
  1578. <div style="margin: 5px 0">素材库</div>
  1579. </div>
  1580. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  1581. <img
  1582. src="../../assets/icon/checkNo.png"
  1583. alt
  1584. v-if="itemTool.tool.indexOf(8) == -1"
  1585. />
  1586. <div class="checkDiv" v-else><img src="../../assets/icon/checkedIs.png"
  1587. alt /><span>已选择</span></div>
  1588. </div>
  1589. </div>-->
  1590. <!-- <div class="tool">
  1591. <div
  1592. class="whiteBIcon"
  1593. @click="addTools(17, itemTaskIndex, toolIndex)"
  1594. >
  1595. <img
  1596. src="../../assets/icon/secondToolList/library.png"
  1597. alt
  1598. />
  1599. <div style="margin: 5px 0">学习资料</div>
  1600. </div>
  1601. <div
  1602. class="check"
  1603. @click="addTools(17, itemTaskIndex, toolIndex)"
  1604. >
  1605. <img
  1606. src="../../assets/icon/checkNo.png"
  1607. alt
  1608. v-if="itemTool.tool.indexOf(17) == -1"
  1609. />
  1610. <img
  1611. src="../../assets/icon/checkedIs.png"
  1612. alt
  1613. v-else
  1614. />
  1615. </div>10
  1616. </div> -->
  1617. <div class="tool">
  1618. <div
  1619. class="whiteBIcon"
  1620. @click="openTools(itemTaskIndex, 10, toolIndex)"
  1621. >
  1622. <img
  1623. src="../../assets/icon/thirdToolList/time.png"
  1624. alt
  1625. />
  1626. <div style="margin: 5px 0">倒计时</div>
  1627. </div>
  1628. <div
  1629. class="check"
  1630. @click="addTools(10, itemTaskIndex, toolIndex)"
  1631. >
  1632. <img
  1633. src="../../assets/icon/checkNo.png"
  1634. alt
  1635. v-if="itemTool.tool.indexOf(10) == -1"
  1636. />
  1637. <div class="checkDiv" v-else>
  1638. <img
  1639. src="../../assets/icon/checkedIs.png"
  1640. alt
  1641. /><span>已选择</span>
  1642. </div>
  1643. </div>
  1644. </div>
  1645. <div class="tool">
  1646. <div
  1647. class="whiteBIcon"
  1648. @click="openTools(itemTaskIndex, 49, toolIndex)"
  1649. >
  1650. <img
  1651. src="../../assets/icon/fourthToolList/group.png"
  1652. alt
  1653. />
  1654. <div style="margin: 5px 0">学生分组</div>
  1655. </div>
  1656. <div
  1657. class="check"
  1658. @click="addTools(49, itemTaskIndex, toolIndex)"
  1659. >
  1660. <img
  1661. src="../../assets/icon/checkNo.png"
  1662. alt
  1663. v-if="itemTool.tool.indexOf(49) == -1"
  1664. />
  1665. <div class="checkDiv" v-else>
  1666. <img
  1667. src="../../assets/icon/checkedIs.png"
  1668. alt
  1669. /><span>已选择</span>
  1670. </div>
  1671. </div>
  1672. </div>
  1673. </div>
  1674. <div class="toolSort" v-if="itemTool.toolType == 1">
  1675. <div class="tool">
  1676. <div
  1677. class="whiteBIcon"
  1678. @click="addTools(7, itemTaskIndex, toolIndex)"
  1679. >
  1680. <img
  1681. src="../../assets/icon/secondToolList/mindNetwork.png"
  1682. alt
  1683. />
  1684. <div style="margin: 5px 0">思维网格</div>
  1685. </div>
  1686. <div
  1687. class="check"
  1688. @click="addTools(7, itemTaskIndex, toolIndex)"
  1689. >
  1690. <img
  1691. src="../../assets/icon/checkNo.png"
  1692. alt
  1693. v-if="itemTool.tool.indexOf(7) == -1"
  1694. />
  1695. <div class="checkDiv" v-else>
  1696. <img
  1697. src="../../assets/icon/checkedIs.png"
  1698. alt
  1699. /><span>已选择</span>
  1700. </div>
  1701. </div>
  1702. </div>
  1703. <div class="tool">
  1704. <div
  1705. class="whiteBIcon"
  1706. @click="openTools(itemTaskIndex, 1, toolIndex)"
  1707. >
  1708. <img
  1709. src="../../assets/icon/secondToolList/whiteBoard.png"
  1710. alt
  1711. />
  1712. <div style="margin: 5px 0">电子白板</div>
  1713. </div>
  1714. <div
  1715. class="check"
  1716. @click="addTools(1, itemTaskIndex, toolIndex)"
  1717. >
  1718. <img
  1719. src="../../assets/icon/checkNo.png"
  1720. alt
  1721. v-if="itemTool.tool.indexOf(1) == -1"
  1722. />
  1723. <div class="checkDiv" v-else>
  1724. <img
  1725. src="../../assets/icon/checkedIs.png"
  1726. alt
  1727. /><span>已选择</span>
  1728. </div>
  1729. </div>
  1730. </div>
  1731. <!-- <div class="tool">
  1732. <div
  1733. class="whiteBIcon"
  1734. @click="addTools(2, itemTaskIndex, toolIndex)"
  1735. >
  1736. <img
  1737. src="../../assets/icon/secondToolList/note.png"
  1738. alt
  1739. />
  1740. <div style="margin: 5px 0">便签</div>
  1741. </div>
  1742. <div
  1743. class="check"
  1744. @click="addTools(2, itemTaskIndex, toolIndex)"
  1745. >
  1746. <img
  1747. src="../../assets/icon/checkNo.png"
  1748. alt
  1749. v-if="itemTool.tool.indexOf(2) == -1"
  1750. />
  1751. <div class="checkDiv" v-else>
  1752. <img
  1753. src="../../assets/icon/checkedIs.png"
  1754. alt
  1755. /><span>已选择</span>
  1756. </div>
  1757. </div>
  1758. </div> -->
  1759. <!-- <div class="tool">
  1760. <div class="whiteBIcon" @click="addTools(6, itemTaskIndex, toolIndex)">
  1761. <img src="../../assets/icon/secondToolList/doc.png" alt />
  1762. <div style="margin: 5px 0">协同文档</div>
  1763. </div>
  1764. <div
  1765. class="check"
  1766. @click="addTools(6, itemTaskIndex, toolIndex)"
  1767. >
  1768. <img
  1769. src="../../assets/icon/checkNo.png"
  1770. alt
  1771. v-if="itemTool.tool.indexOf(6) == -1"
  1772. />
  1773. <div class="checkDiv" v-else>
  1774. <img
  1775. src="../../assets/icon/checkedIs.png"
  1776. alt
  1777. /><span>已选择</span>
  1778. </div>
  1779. </div>
  1780. </div> -->
  1781. <div class="tool">
  1782. <div
  1783. class="whiteBIcon"
  1784. @click="openTools(itemTaskIndex, 52, toolIndex)"
  1785. >
  1786. <img
  1787. src="../../assets/icon/fourthToolList/text.png"
  1788. alt
  1789. />
  1790. <div style="margin: 5px 0">文档</div>
  1791. </div>
  1792. <div
  1793. class="check"
  1794. @click="addTools(52, itemTaskIndex, toolIndex)"
  1795. >
  1796. <img
  1797. src="../../assets/icon/checkNo.png"
  1798. alt
  1799. v-if="itemTool.tool.indexOf(52) == -1"
  1800. />
  1801. <div class="checkDiv" v-else>
  1802. <img
  1803. src="../../assets/icon/checkedIs.png"
  1804. alt
  1805. /><span>已选择</span>
  1806. </div>
  1807. </div>
  1808. </div>
  1809. <div class="tool">
  1810. <div
  1811. class="whiteBIcon"
  1812. @click="openTools(itemTaskIndex, 3, toolIndex)"
  1813. >
  1814. <img
  1815. src="../../assets/icon/secondToolList/mindMapping.png"
  1816. alt
  1817. />
  1818. <div style="margin: 5px 0">思维导图</div>
  1819. </div>
  1820. <div
  1821. class="check"
  1822. @click="addTools(3, itemTaskIndex, toolIndex)"
  1823. >
  1824. <img
  1825. src="../../assets/icon/checkNo.png"
  1826. alt
  1827. v-if="itemTool.tool.indexOf(3) == -1"
  1828. />
  1829. <div class="checkDiv" v-else>
  1830. <img
  1831. src="../../assets/icon/checkedIs.png"
  1832. alt
  1833. /><span>已选择</span>
  1834. </div>
  1835. </div>
  1836. </div>
  1837. </div>
  1838. <div class="toolSort" v-if="itemTool.toolType == 2">
  1839. <!-- <div class="tool">
  1840. <div
  1841. class="whiteBIcon"
  1842. @click="addTools(5, itemTaskIndex, toolIndex)"
  1843. >
  1844. <img
  1845. src="../../assets/icon/thirdToolList/score.png"
  1846. alt
  1847. />
  1848. <div style="margin: 5px 0">量规评分</div>
  1849. </div>
  1850. <div
  1851. class="check"
  1852. @click="addTools(5, itemTaskIndex, toolIndex)"
  1853. >
  1854. <img
  1855. src="../../assets/icon/checkNo.png"
  1856. alt
  1857. v-if="itemTool.tool.indexOf(5) == -1"
  1858. />
  1859. <img
  1860. src="../../assets/icon/checkedIs.png"
  1861. alt
  1862. v-else
  1863. />
  1864. </div>
  1865. </div>-->
  1866. <div class="tool">
  1867. <div
  1868. class="whiteBIcon"
  1869. @click="openTools(itemTaskIndex, 4, toolIndex)"
  1870. >
  1871. <img
  1872. src="../../assets/icon/thirdToolList/ask.png"
  1873. alt
  1874. />
  1875. <div style="margin: 5px 0">问卷调查</div>
  1876. </div>
  1877. <div
  1878. class="check"
  1879. @click="addTools(4, itemTaskIndex, toolIndex)"
  1880. >
  1881. <img
  1882. src="../../assets/icon/checkNo.png"
  1883. alt
  1884. v-if="itemTool.tool.indexOf(4) == -1"
  1885. />
  1886. <div class="checkDiv" v-else>
  1887. <img
  1888. src="../../assets/icon/checkedIs.png"
  1889. alt
  1890. /><span>已选择</span>
  1891. </div>
  1892. </div>
  1893. </div>
  1894. <div class="tool">
  1895. <div
  1896. class="whiteBIcon"
  1897. @click="openTools(itemTaskIndex, 45, toolIndex)"
  1898. >
  1899. <img
  1900. src="../../assets/icon/thirdToolList/choose.png"
  1901. alt
  1902. />
  1903. <div style="margin: 5px 0">选择题</div>
  1904. </div>
  1905. <div
  1906. class="check"
  1907. @click="addTools(45, itemTaskIndex, toolIndex)"
  1908. >
  1909. <img
  1910. src="../../assets/icon/checkNo.png"
  1911. alt
  1912. v-if="itemTool.tool.indexOf(45) == -1"
  1913. />
  1914. <div class="checkDiv" v-else>
  1915. <img
  1916. src="../../assets/icon/checkedIs.png"
  1917. alt
  1918. /><span>已选择</span>
  1919. </div>
  1920. </div>
  1921. </div>
  1922. <div class="tool">
  1923. <div
  1924. class="whiteBIcon"
  1925. @click="openTools(itemTaskIndex, 15, toolIndex)"
  1926. >
  1927. <img
  1928. src="../../assets/icon/thirdToolList/answer.png"
  1929. alt
  1930. />
  1931. <div style="margin: 5px 0">问答工具</div>
  1932. </div>
  1933. <div
  1934. class="check"
  1935. @click="addTools(15, itemTaskIndex, toolIndex)"
  1936. >
  1937. <img
  1938. src="../../assets/icon/checkNo.png"
  1939. alt
  1940. v-if="itemTool.tool.indexOf(15) == -1"
  1941. />
  1942. <div class="checkDiv" v-else>
  1943. <img
  1944. src="../../assets/icon/checkedIs.png"
  1945. alt
  1946. /><span>已选择</span>
  1947. </div>
  1948. </div>
  1949. </div>
  1950. <div class="tool">
  1951. <div
  1952. class="whiteBIcon"
  1953. @click="addTools(16, itemTaskIndex, toolIndex)"
  1954. >
  1955. <img
  1956. src="../../assets/icon/thirdToolList/work.png"
  1957. alt
  1958. />
  1959. <div style="margin: 5px 0">作业提交</div>
  1960. </div>
  1961. <div
  1962. class="check"
  1963. @click="addTools(16, itemTaskIndex, toolIndex)"
  1964. >
  1965. <img
  1966. src="../../assets/icon/checkNo.png"
  1967. alt
  1968. v-if="itemTool.tool.indexOf(16) == -1"
  1969. />
  1970. <div class="checkDiv" v-else>
  1971. <img
  1972. src="../../assets/icon/checkedIs.png"
  1973. alt
  1974. /><span>已选择</span>
  1975. </div>
  1976. </div>
  1977. </div>
  1978. <div class="tool">
  1979. <div
  1980. class="whiteBIcon"
  1981. @click="openTools(itemTaskIndex, 50, toolIndex)"
  1982. >
  1983. <img
  1984. src="../../assets/icon/thirdToolList/plwork.png"
  1985. alt
  1986. />
  1987. <div style="margin: 5px 0">批量上传</div>
  1988. </div>
  1989. <div
  1990. class="check"
  1991. @click="addTools(50, itemTaskIndex, toolIndex)"
  1992. >
  1993. <img
  1994. src="../../assets/icon/checkNo.png"
  1995. alt
  1996. v-if="itemTool.tool.indexOf(50) == -1"
  1997. />
  1998. <div class="checkDiv" v-else>
  1999. <img
  2000. src="../../assets/icon/checkedIs.png"
  2001. alt
  2002. /><span>已选择</span>
  2003. </div>
  2004. </div>
  2005. </div>
  2006. <div class="tool">
  2007. <div
  2008. class="whiteBIcon"
  2009. @click="openTools(itemTaskIndex, 40, toolIndex)"
  2010. >
  2011. <img
  2012. src="../../assets/icon/thirdToolList/eval.png"
  2013. alt
  2014. />
  2015. <div style="margin: 5px 0">个人评价</div>
  2016. </div>
  2017. <div
  2018. class="check"
  2019. @click="addTools(40, itemTaskIndex, toolIndex)"
  2020. >
  2021. <img
  2022. src="../../assets/icon/checkNo.png"
  2023. alt
  2024. v-if="itemTool.tool.indexOf(40) == -1"
  2025. />
  2026. <div class="checkDiv" v-else>
  2027. <img
  2028. src="../../assets/icon/checkedIs.png"
  2029. alt
  2030. /><span>已选择</span>
  2031. </div>
  2032. </div>
  2033. </div>
  2034. <div class="tool">
  2035. <div
  2036. class="whiteBIcon"
  2037. @click="openTools(itemTaskIndex, 41, toolIndex)"
  2038. >
  2039. <img
  2040. src="../../assets/icon/thirdToolList/select.png"
  2041. alt
  2042. />
  2043. <div style="margin: 5px 0">选择填空</div>
  2044. </div>
  2045. <div
  2046. class="check"
  2047. @click="addTools(41, itemTaskIndex, toolIndex)"
  2048. >
  2049. <img
  2050. src="../../assets/icon/checkNo.png"
  2051. alt
  2052. v-if="itemTool.tool.indexOf(41) == -1"
  2053. />
  2054. <div class="checkDiv" v-else>
  2055. <img
  2056. src="../../assets/icon/checkedIs.png"
  2057. alt
  2058. /><span>已选择</span>
  2059. </div>
  2060. </div>
  2061. </div>
  2062. <div class="tool">
  2063. <div
  2064. class="whiteBIcon"
  2065. @click="openTools(itemTaskIndex, 47, toolIndex)"
  2066. >
  2067. <img
  2068. src="../../assets/icon/fourthToolList/conSentences.png"
  2069. alt
  2070. />
  2071. <div style="margin: 5px 0">连词成句</div>
  2072. </div>
  2073. <div
  2074. class="check"
  2075. @click="addTools(47, itemTaskIndex, toolIndex)"
  2076. >
  2077. <img
  2078. src="../../assets/icon/checkNo.png"
  2079. alt
  2080. v-if="itemTool.tool.indexOf(47) == -1"
  2081. />
  2082. <div class="checkDiv" v-else>
  2083. <img
  2084. src="../../assets/icon/checkedIs.png"
  2085. alt
  2086. /><span>已选择</span>
  2087. </div>
  2088. </div>
  2089. </div>
  2090. <div class="tool">
  2091. <div
  2092. class="whiteBIcon"
  2093. @click="openTools(itemTaskIndex, 48, toolIndex)"
  2094. >
  2095. <img
  2096. src="../../assets/icon/fourthToolList/table.png"
  2097. alt
  2098. />
  2099. <div style="margin: 5px 0">表格</div>
  2100. </div>
  2101. <div
  2102. class="check"
  2103. @click="addTools(48, itemTaskIndex, toolIndex)"
  2104. >
  2105. <img
  2106. src="../../assets/icon/checkNo.png"
  2107. alt
  2108. v-if="itemTool.tool.indexOf(48) == -1"
  2109. />
  2110. <div class="checkDiv" v-else>
  2111. <img
  2112. src="../../assets/icon/checkedIs.png"
  2113. alt
  2114. /><span>已选择</span>
  2115. </div>
  2116. </div>
  2117. </div>
  2118. <!-- <div class="tool">
  2119. <div
  2120. class="whiteBIcon"
  2121. @click="openTools(itemTaskIndex, 42, toolIndex)"
  2122. >
  2123. <img
  2124. src="../../assets/icon/thirdToolList/mp3.png"
  2125. alt
  2126. />
  2127. <div style="margin: 5px 0">上传音频</div>
  2128. </div>
  2129. <div
  2130. class="check"
  2131. @click="addTools(42, itemTaskIndex, toolIndex)"
  2132. >
  2133. <img
  2134. src="../../assets/icon/checkNo.png"
  2135. alt
  2136. v-if="itemTool.tool.indexOf(42) == -1"
  2137. />
  2138. <img
  2139. src="../../assets/icon/checkedIs.png"
  2140. alt
  2141. v-else
  2142. />
  2143. </div>
  2144. </div> -->
  2145. </div>
  2146. <div class="toolSort" v-if="itemTool.toolType == 3">
  2147. <div class="tool">
  2148. <div
  2149. class="whiteBIcon"
  2150. @click="addTools(18, itemTaskIndex, toolIndex)"
  2151. >
  2152. <img
  2153. src="../../assets/icon/thirdToolList/trainPlatform.png"
  2154. alt
  2155. />
  2156. <div style="margin: 5px 0">训练平台</div>
  2157. </div>
  2158. <div
  2159. class="check"
  2160. @click="addTools(18, itemTaskIndex, toolIndex)"
  2161. >
  2162. <img
  2163. src="../../assets/icon/checkNo.png"
  2164. alt
  2165. v-if="itemTool.tool.indexOf(18) == -1"
  2166. />
  2167. <div class="checkDiv" v-else>
  2168. <img
  2169. src="../../assets/icon/checkedIs.png"
  2170. alt
  2171. /><span>已选择</span>
  2172. </div>
  2173. </div>
  2174. </div>
  2175. <div class="tool">
  2176. <div
  2177. class="whiteBIcon"
  2178. @click="addTools(21, itemTaskIndex, toolIndex)"
  2179. >
  2180. <img
  2181. src="../../assets/icon/fourthToolList/program.png"
  2182. alt
  2183. />
  2184. <div style="margin: 5px 0">编程平台</div>
  2185. </div>
  2186. <div
  2187. class="check"
  2188. @click="addTools(21, itemTaskIndex, toolIndex)"
  2189. >
  2190. <img
  2191. src="../../assets/icon/checkNo.png"
  2192. alt
  2193. v-if="itemTool.tool.indexOf(21) == -1"
  2194. />
  2195. <div class="checkDiv" v-else>
  2196. <img
  2197. src="../../assets/icon/checkedIs.png"
  2198. alt
  2199. /><span>已选择</span>
  2200. </div>
  2201. </div>
  2202. </div>
  2203. <div class="tool">
  2204. <div
  2205. class="whiteBIcon"
  2206. @click="addTools(22, itemTaskIndex, toolIndex)"
  2207. >
  2208. <img
  2209. src="../../assets/icon/fourthToolList/AIprogram2.png"
  2210. alt
  2211. />
  2212. <div style="margin: 5px 0">AI体验</div>
  2213. </div>
  2214. <div
  2215. class="check"
  2216. @click="addTools(22, itemTaskIndex, toolIndex)"
  2217. >
  2218. <img
  2219. src="../../assets/icon/checkNo.png"
  2220. alt
  2221. v-if="itemTool.tool.indexOf(22) == -1"
  2222. />
  2223. <div class="checkDiv" v-else>
  2224. <img
  2225. src="../../assets/icon/checkedIs.png"
  2226. alt
  2227. /><span>已选择</span>
  2228. </div>
  2229. </div>
  2230. </div>
  2231. <div class="tool">
  2232. <div
  2233. class="whiteBIcon"
  2234. @click="addTools(23, itemTaskIndex, toolIndex)"
  2235. >
  2236. <img
  2237. src="../../assets/icon/fourthToolList/Pythonprogram.png"
  2238. alt
  2239. />
  2240. <div style="margin: 5px 0">Python</div>
  2241. </div>
  2242. <div
  2243. class="check"
  2244. @click="addTools(23, itemTaskIndex, toolIndex)"
  2245. >
  2246. <img
  2247. src="../../assets/icon/checkNo.png"
  2248. alt
  2249. v-if="itemTool.tool.indexOf(23) == -1"
  2250. />
  2251. <div class="checkDiv" v-else>
  2252. <img
  2253. src="../../assets/icon/checkedIs.png"
  2254. alt
  2255. /><span>已选择</span>
  2256. </div>
  2257. </div>
  2258. </div>
  2259. <div class="tool">
  2260. <div
  2261. class="whiteBIcon"
  2262. @click="addTools(24, itemTaskIndex, toolIndex)"
  2263. >
  2264. <img
  2265. src="../../assets/icon/fourthToolList/AIprogram.png"
  2266. alt
  2267. />
  2268. <div style="margin: 5px 0">AI平台</div>
  2269. </div>
  2270. <div
  2271. class="check"
  2272. @click="addTools(24, itemTaskIndex, toolIndex)"
  2273. >
  2274. <img
  2275. src="../../assets/icon/checkNo.png"
  2276. alt
  2277. v-if="itemTool.tool.indexOf(24) == -1"
  2278. />
  2279. <div class="checkDiv" v-else>
  2280. <img
  2281. src="../../assets/icon/checkedIs.png"
  2282. alt
  2283. /><span>已选择</span>
  2284. </div>
  2285. </div>
  2286. </div>
  2287. <div class="tool">
  2288. <div
  2289. class="whiteBIcon"
  2290. @click="addTools(32, itemTaskIndex, toolIndex)"
  2291. >
  2292. <img
  2293. src="../../assets/icon/thirdToolList/code.png"
  2294. alt
  2295. />
  2296. <div style="margin: 5px 0">源码编辑</div>
  2297. </div>
  2298. <div
  2299. class="check"
  2300. @click="addTools(32, itemTaskIndex, toolIndex)"
  2301. >
  2302. <img
  2303. src="../../assets/icon/checkNo.png"
  2304. alt
  2305. v-if="itemTool.tool.indexOf(32) == -1"
  2306. />
  2307. <div class="checkDiv" v-else>
  2308. <img
  2309. src="../../assets/icon/checkedIs.png"
  2310. alt
  2311. /><span>已选择</span>
  2312. </div>
  2313. </div>
  2314. </div>
  2315. <div class="tool">
  2316. <div
  2317. class="whiteBIcon"
  2318. @click="addTools(57, itemTaskIndex, toolIndex)"
  2319. >
  2320. <img
  2321. src="../../assets/icon/fourthToolList/cocopi.png"
  2322. alt
  2323. />
  2324. <div style="margin: 5px 0">CocoPi</div>
  2325. </div>
  2326. <div
  2327. class="check"
  2328. @click="addTools(57, itemTaskIndex, toolIndex)"
  2329. >
  2330. <img
  2331. src="../../assets/icon/checkNo.png"
  2332. alt
  2333. v-if="itemTool.tool.indexOf(57) == -1"
  2334. />
  2335. <div class="checkDiv" v-else>
  2336. <img
  2337. src="../../assets/icon/checkedIs.png"
  2338. alt
  2339. /><span>已选择</span>
  2340. </div>
  2341. </div>
  2342. </div>
  2343. </div>
  2344. <div class="toolSort" v-if="itemTool.toolType == 5">
  2345. <div class="tool">
  2346. <div
  2347. class="whiteBIcon"
  2348. @click="addTools(28, itemTaskIndex, toolIndex)"
  2349. >
  2350. <img
  2351. src="../../assets/icon/secondToolList/translation.png"
  2352. alt
  2353. />
  2354. <div style="margin: 5px 0">翻译</div>
  2355. </div>
  2356. <div
  2357. class="check"
  2358. @click="addTools(28, itemTaskIndex, toolIndex)"
  2359. >
  2360. <img
  2361. src="../../assets/icon/checkNo.png"
  2362. alt
  2363. v-if="itemTool.tool.indexOf(28) == -1"
  2364. />
  2365. <div class="checkDiv" v-else>
  2366. <img
  2367. src="../../assets/icon/checkedIs.png"
  2368. alt
  2369. /><span>已选择</span>
  2370. </div>
  2371. </div>
  2372. </div>
  2373. <div class="tool">
  2374. <div
  2375. class="whiteBIcon"
  2376. @click="addTools(37, itemTaskIndex, toolIndex)"
  2377. >
  2378. <img
  2379. src="../../assets/icon/secondToolList/mohe.png"
  2380. alt
  2381. />
  2382. <div style="margin: 5px 0">魔盒识字</div>
  2383. </div>
  2384. <div
  2385. class="check"
  2386. @click="addTools(37, itemTaskIndex, toolIndex)"
  2387. >
  2388. <img
  2389. src="../../assets/icon/checkNo.png"
  2390. alt
  2391. v-if="itemTool.tool.indexOf(37) == -1"
  2392. />
  2393. <div class="checkDiv" v-else>
  2394. <img
  2395. src="../../assets/icon/checkedIs.png"
  2396. alt
  2397. /><span>已选择</span>
  2398. </div>
  2399. </div>
  2400. </div>
  2401. <div class="tool">
  2402. <div
  2403. class="whiteBIcon"
  2404. @click="addTools(38, itemTaskIndex, toolIndex)"
  2405. >
  2406. <img
  2407. src="../../assets/icon/secondToolList/24game.png"
  2408. alt
  2409. />
  2410. <div style="margin: 5px 0">24点</div>
  2411. </div>
  2412. <div
  2413. class="check"
  2414. @click="addTools(38, itemTaskIndex, toolIndex)"
  2415. >
  2416. <img
  2417. src="../../assets/icon/checkNo.png"
  2418. alt
  2419. v-if="itemTool.tool.indexOf(38) == -1"
  2420. />
  2421. <div class="checkDiv" v-else>
  2422. <img
  2423. src="../../assets/icon/checkedIs.png"
  2424. alt
  2425. /><span>已选择</span>
  2426. </div>
  2427. </div>
  2428. </div>
  2429. <div class="tool">
  2430. <div
  2431. class="whiteBIcon"
  2432. @click="addTools(31, itemTaskIndex, toolIndex)"
  2433. >
  2434. <img
  2435. src="../../assets/icon/secondToolList/networkPanel.png"
  2436. alt
  2437. />
  2438. <div style="margin: 5px 0">数学画板</div>
  2439. </div>
  2440. <div
  2441. class="check"
  2442. @click="addTools(31, itemTaskIndex, toolIndex)"
  2443. >
  2444. <img
  2445. src="../../assets/icon/checkNo.png"
  2446. alt
  2447. v-if="itemTool.tool.indexOf(31) == -1"
  2448. />
  2449. <div class="checkDiv" v-else>
  2450. <img
  2451. src="../../assets/icon/checkedIs.png"
  2452. alt
  2453. /><span>已选择</span>
  2454. </div>
  2455. </div>
  2456. </div>
  2457. <div class="tool">
  2458. <div
  2459. class="whiteBIcon"
  2460. @click="addTools(39, itemTaskIndex, toolIndex)"
  2461. >
  2462. <img
  2463. src="../../assets/icon/secondToolList/GeoGebra.png"
  2464. alt
  2465. />
  2466. <div style="margin: 5px 0">GeoGebra</div>
  2467. </div>
  2468. <div
  2469. class="check"
  2470. @click="addTools(39, itemTaskIndex, toolIndex)"
  2471. >
  2472. <img
  2473. src="../../assets/icon/checkNo.png"
  2474. alt
  2475. v-if="itemTool.tool.indexOf(39) == -1"
  2476. />
  2477. <div class="checkDiv" v-else>
  2478. <img
  2479. src="../../assets/icon/checkedIs.png"
  2480. alt
  2481. /><span>已选择</span>
  2482. </div>
  2483. </div>
  2484. </div>
  2485. <!-- <div class="tool">
  2486. <div
  2487. class="whiteBIcon"
  2488. @click="addTools(58, itemTaskIndex, toolIndex)"
  2489. >
  2490. <img
  2491. src="../../assets/icon/fourthToolList/car.png"
  2492. alt
  2493. />
  2494. <div style="margin: 5px 0">学科工具</div>
  2495. </div>
  2496. <div
  2497. class="check"
  2498. @click="addTools(58, itemTaskIndex, toolIndex)"
  2499. >
  2500. <img
  2501. src="../../assets/icon/checkNo.png"
  2502. alt
  2503. v-if="itemTool.tool.indexOf(58) == -1"
  2504. />
  2505. <div class="checkDiv" v-else>
  2506. <img
  2507. src="../../assets/icon/checkedIs.png"
  2508. alt
  2509. /><span>已选择</span>
  2510. </div>
  2511. </div>
  2512. </div> -->
  2513. <div class="tool">
  2514. <div
  2515. class="whiteBIcon"
  2516. @click="addTools(59, itemTaskIndex, toolIndex)"
  2517. >
  2518. <img
  2519. src="../../assets/icon/fourthToolList/lineSearch.png"
  2520. alt
  2521. />
  2522. <div style="margin: 5px 0">路径搜索</div>
  2523. </div>
  2524. <div
  2525. class="check"
  2526. @click="addTools(59, itemTaskIndex, toolIndex)"
  2527. >
  2528. <img
  2529. src="../../assets/icon/checkNo.png"
  2530. alt
  2531. v-if="itemTool.tool.indexOf(59) == -1"
  2532. />
  2533. <div class="checkDiv" v-else>
  2534. <img
  2535. src="../../assets/icon/checkedIs.png"
  2536. alt
  2537. /><span>已选择</span>
  2538. </div>
  2539. </div>
  2540. </div>
  2541. <div class="tool">
  2542. <div
  2543. class="whiteBIcon"
  2544. @click="addTools(60, itemTaskIndex, toolIndex)"
  2545. >
  2546. <img
  2547. src="../../assets/icon/fourthToolList/deepLearning.png"
  2548. alt
  2549. />
  2550. <div style="margin: 5px 0">深度学习</div>
  2551. </div>
  2552. <div
  2553. class="check"
  2554. @click="addTools(60, itemTaskIndex, toolIndex)"
  2555. >
  2556. <img
  2557. src="../../assets/icon/checkNo.png"
  2558. alt
  2559. v-if="itemTool.tool.indexOf(60) == -1"
  2560. />
  2561. <div class="checkDiv" v-else>
  2562. <img
  2563. src="../../assets/icon/checkedIs.png"
  2564. alt
  2565. /><span>已选择</span>
  2566. </div>
  2567. </div>
  2568. </div>
  2569. </div>
  2570. <div class="toolSort" v-if="itemTool.toolType == 4">
  2571. <div class="tool">
  2572. <div
  2573. class="whiteBIcon"
  2574. @click="addTools(26, itemTaskIndex, toolIndex)"
  2575. >
  2576. <img
  2577. src="../../assets/icon/thirdToolList/courseDesign.png"
  2578. alt
  2579. />
  2580. <div style="margin: 5px 0">课程设计</div>
  2581. </div>
  2582. <div
  2583. class="check"
  2584. @click="addTools(26, itemTaskIndex, toolIndex)"
  2585. >
  2586. <img
  2587. src="../../assets/icon/checkNo.png"
  2588. alt
  2589. v-if="itemTool.tool.indexOf(26) == -1"
  2590. />
  2591. <div class="checkDiv" v-else>
  2592. <img
  2593. src="../../assets/icon/checkedIs.png"
  2594. alt
  2595. /><span>已选择</span>
  2596. </div>
  2597. </div>
  2598. </div>
  2599. <div class="tool">
  2600. <div
  2601. class="whiteBIcon"
  2602. @click="addTools(25, itemTaskIndex, toolIndex)"
  2603. >
  2604. <img
  2605. src="../../assets/icon/thirdToolList/evalua.png"
  2606. alt
  2607. />
  2608. <div style="margin: 5px 0">目标管理</div>
  2609. </div>
  2610. <div
  2611. class="check"
  2612. @click="addTools(25, itemTaskIndex, toolIndex)"
  2613. >
  2614. <img
  2615. src="../../assets/icon/checkNo.png"
  2616. alt
  2617. v-if="itemTool.tool.indexOf(25) == -1"
  2618. />
  2619. <div class="checkDiv" v-else>
  2620. <img
  2621. src="../../assets/icon/checkedIs.png"
  2622. alt
  2623. /><span>已选择</span>
  2624. </div>
  2625. </div>
  2626. </div>
  2627. <!-- <div class="tool">
  2628. <div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
  2629. <img src="../../assets/icon/thirdToolList/hanClass.png" alt />
  2630. <div style="margin: 5px 0">汉字宫</div>
  2631. </div>
  2632. <div class="check" @click="addTools(44, itemTaskIndex, toolIndex)">
  2633. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(44) == -1" />
  2634. <div class="checkDiv" v-else>
  2635. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2636. </div>
  2637. </div>
  2638. </div> -->
  2639. </div>
  2640. </div>
  2641. </div>
  2642. <div
  2643. class="addToolFun"
  2644. @click="addToolFun(itemTaskIndex)"
  2645. >
  2646. <div class="addToolImg">
  2647. <img src="../../assets/icon/add.png" alt />
  2648. </div>
  2649. <div>添加工具</div>
  2650. </div>
  2651. </div>
  2652. </div>
  2653. <div v-else class="toolChoose" style="padding: 0 0 0 30px">
  2654. <div class="tools">
  2655. <div
  2656. class="leftTools"
  2657. style="
  2658. width: 95%;
  2659. padding: 0 0 15px 0;
  2660. border-bottom: 1px solid #efefef;
  2661. margin-bottom: 15px;
  2662. "
  2663. v-for="(itemTool, toolIndex) in itemTask.toolChoose"
  2664. :key="toolIndex"
  2665. >
  2666. <div style="min-height: 163px">
  2667. <div class="toolSort">
  2668. <div class="tool">
  2669. <div
  2670. class="whiteBIcon"
  2671. @click="openTools(itemTaskIndex, 50, toolIndex)"
  2672. >
  2673. <img
  2674. src="../../assets/icon/thirdToolList/plwork.png"
  2675. alt
  2676. />
  2677. <div style="margin: 5px 0">批量上传</div>
  2678. </div>
  2679. <div
  2680. class="check"
  2681. @click="addTools(50, itemTaskIndex, toolIndex)"
  2682. >
  2683. <img
  2684. src="../../assets/icon/checkNo.png"
  2685. alt
  2686. v-if="itemTool.tool.indexOf(50) == -1"
  2687. />
  2688. <div class="checkDiv" v-else>
  2689. <img
  2690. src="../../assets/icon/checkedIs.png"
  2691. alt
  2692. /><span>已选择</span>
  2693. </div>
  2694. </div>
  2695. </div>
  2696. </div>
  2697. </div>
  2698. </div>
  2699. </div>
  2700. </div>
  2701. <div class="elist_css">
  2702. <div class="elist_title">
  2703. <div
  2704. style="
  2705. display: flex;
  2706. flex-direction: row;
  2707. align-items: center;
  2708. margin-bottom: 20px;
  2709. "
  2710. >
  2711. <div class="lineTitle">评价设置</div>
  2712. <div class="line" style="width: 90%"></div>
  2713. </div>
  2714. </div>
  2715. <div class="mbCss">
  2716. <div class="pjCss">
  2717. <div
  2718. v-if="itemTask.eList && itemTask.eList.length"
  2719. class="elist_input"
  2720. >
  2721. <div
  2722. v-for="(eItem, eIndex) in itemTask.eList"
  2723. :key="eIndex"
  2724. class="elist_input_box"
  2725. >
  2726. <span>评价名称:</span>
  2727. <input
  2728. type="input"
  2729. v-model="itemTask.eList[eIndex].value"
  2730. placeholder="填写评价名称"
  2731. />
  2732. <span>评星等级:</span>
  2733. <el-rate
  2734. v-model="itemTask.eList[eIndex].score"
  2735. @change="setEListStar()"
  2736. disabled
  2737. ></el-rate>
  2738. <div
  2739. class="remove"
  2740. @click="
  2741. deletEList(unitIndex, itemTaskIndex, eIndex)
  2742. "
  2743. ></div>
  2744. <div class="elist_inptu_text">
  2745. <span>评价描述:</span>
  2746. <input
  2747. type="input"
  2748. v-model="itemTask.eList[eIndex].detail"
  2749. placeholder="填写评价描述"
  2750. />
  2751. </div>
  2752. <div class="elist_inptu_text" v-if="evalua">
  2753. <span>目标:</span>
  2754. <!-- <input type="input" v-model="itemTask.eList[eIndex].target" placeholder="填写评价描述" /> -->
  2755. <!-- <el-select v-model="itemTask.eList[eIndex].target" placeholder="请选择目标"
  2756. @change="forceUpdate()">
  2757. <el-option v-for="(e, eIndex) in targetArray" :key="eIndex" :label="e.name"
  2758. :value="e.name">
  2759. </el-option>
  2760. </el-select> -->
  2761. <el-cascader
  2762. :options="targetArray"
  2763. v-model="itemTask.eList[eIndex].target"
  2764. :props="{ checkStrictly: true }"
  2765. :show-all-levels="false"
  2766. clearable
  2767. ></el-cascader>
  2768. </div>
  2769. </div>
  2770. </div>
  2771. <div
  2772. class="addToolFun"
  2773. @click="addEList(unitIndex, itemTaskIndex)"
  2774. style="margin: 35px 35px 0 0"
  2775. >
  2776. <div class="addToolImg">
  2777. <img src="../../assets/icon/add.png" alt />
  2778. </div>
  2779. <div>添加</div>
  2780. </div>
  2781. </div>
  2782. <div
  2783. v-if="evalua"
  2784. style="
  2785. border: 1px solid #e5e5e5;
  2786. width: 55%;
  2787. margin-top: 20px;
  2788. box-shadow: 3px 1px 15px 3px #e0e0e0;
  2789. "
  2790. class="evaCss"
  2791. >
  2792. <div class="e_add_top">
  2793. <div class="e_add_title">
  2794. <span>当前使用目标管理</span>
  2795. <span>{{ eTitle }}</span>
  2796. <img
  2797. src="../../assets/line.png"
  2798. class="cru_line"
  2799. style="
  2800. width: 125px;
  2801. height: 20px;
  2802. bottom: -10px;
  2803. left: 155px;
  2804. "
  2805. />
  2806. <!-- <el-input
  2807. v-model="eTitle"
  2808. placeholder="请输入名称"
  2809. @change="setMindData"
  2810. ></el-input>-->
  2811. </div>
  2812. </div>
  2813. <div class="e_add_content" style="width: 100%">
  2814. <div class="e_add_list_pbox" style="width: 100%">
  2815. <div class="e_add_list_pbox_title">
  2816. <span class="type_title">切换模式</span>
  2817. <div class="type_content">
  2818. <span
  2819. :class="{ active: typeMode == 1 }"
  2820. @click="OtherMb(1)"
  2821. >目标树</span
  2822. >
  2823. <span
  2824. :class="{ active: typeMode == 2 }"
  2825. @click="OtherMb(2)"
  2826. >目标罗盘</span
  2827. >
  2828. <span
  2829. :class="{ active: typeMode == 3 }"
  2830. @click="OtherMb(3)"
  2831. >目标看板</span
  2832. >
  2833. </div>
  2834. </div>
  2835. <div class="e_add_list_pbox_content">
  2836. <Mind
  2837. :showBar="false"
  2838. :mindData="data"
  2839. style="width: 100%"
  2840. :jsmindId="
  2841. unitIndex + '-' + itemTaskIndex + 'mind'
  2842. "
  2843. v-if="typeMode == 1"
  2844. ></Mind>
  2845. <Sunburst
  2846. :Josn="eJson"
  2847. :num="eJSONNum"
  2848. style="width: 100%"
  2849. v-if="typeMode == 2"
  2850. >
  2851. </Sunburst>
  2852. <SeeBoard
  2853. :Josn="eJson"
  2854. :num="eJSONNum"
  2855. :ename="eTitle"
  2856. style="width: 100%"
  2857. v-if="typeMode == 3"
  2858. ></SeeBoard>
  2859. </div>
  2860. </div>
  2861. </div>
  2862. </div>
  2863. </div>
  2864. </div>
  2865. <div class="funBlock" style="padding: 0">
  2866. <div class="fold" @click="fold(itemTaskIndex, $event, 1)">
  2867. <div>折叠</div>
  2868. <div class="arrow">
  2869. <img src="../../assets/icon/fold.png" alt />
  2870. </div>
  2871. </div>
  2872. <div class="fold" @click="fold(itemTaskIndex, $event, 0)">
  2873. <div>展开</div>
  2874. <div class="arrow">
  2875. <img src="../../assets/icon/expand.png" alt />
  2876. </div>
  2877. </div>
  2878. </div>
  2879. </div>
  2880. <div
  2881. class="addTaskBorder"
  2882. @click="addTaskBorder"
  2883. v-if="!unitJson[unitIndex].easy"
  2884. >
  2885. <div>
  2886. <img src="../../assets/icon/addHw.png" alt />
  2887. <span>添加任务</span>
  2888. </div>
  2889. </div>
  2890. </div>
  2891. </div>
  2892. </div>
  2893. <div
  2894. style="
  2895. width: calc(100% - 20px);
  2896. background: rgb(255, 255, 255);
  2897. border-radius: 10px;
  2898. "
  2899. v-if="this.steps == 4"
  2900. >
  2901. <div class="basic_box_success">
  2902. <div class="right_img">
  2903. <img src="../../assets/icon/right.png" alt />
  2904. </div>
  2905. <div style="font-weight: bold">成功</div>
  2906. <!-- <div>您的课程编号</div>
  2907. <div class="number">{{ number }}</div>-->
  2908. <!-- <div class="success_button">
  2909. <div class="look_course" @click="isNoFinsh">
  2910. 邀请老师协同编辑
  2911. </div>
  2912. <div class="attend_others" @click="goCourse">预览课程</div>
  2913. </div> -->
  2914. </div>
  2915. </div>
  2916. <div class="info_btnBox">
  2917. <button
  2918. class="info_btn"
  2919. v-if="steps == 1"
  2920. @click="
  2921. goTo('/course?userid=' + userid + '&oid=' + oid + '&org=' + org)
  2922. "
  2923. >
  2924. 返回课程
  2925. </button>
  2926. <button
  2927. class="info_btn"
  2928. v-if="steps > 1 && steps != 5"
  2929. @click="lastSteps"
  2930. >
  2931. {{ steps == 4 ? "返回首页" : "上一步" }}
  2932. </button>
  2933. <button class="info_btn" v-if="steps < 4" @click="nextSteps">
  2934. {{ steps == 3 ? "确认上传" : "下一步" }}
  2935. </button>
  2936. </div>
  2937. </div>
  2938. </div>
  2939. </div>
  2940. <el-dialog
  2941. title="提示"
  2942. :visible.sync="dialogVisible"
  2943. :append-to-body="true"
  2944. width="25%"
  2945. :before-close="handleClose"
  2946. class="dialog_diy2 customWidth"
  2947. >
  2948. <div>请复制该链接邀请协同编辑</div>
  2949. <div>http://www.boomyon.com/index-zhang.com</div>
  2950. <span slot="footer" class="dialog-footer">
  2951. <el-button type="primary">复制链接分享</el-button>
  2952. <el-button @click="dialogVisible = false">取消</el-button>
  2953. </span>
  2954. </el-dialog>
  2955. <el-dialog
  2956. :title="updateBoolean2 ? '查看文档' : '添加文档'"
  2957. :visible.sync="dialogVisible1"
  2958. :append-to-body="true"
  2959. width="25%"
  2960. :before-close="handleClose"
  2961. class="dialog_diy2 customWidth"
  2962. >
  2963. <el-form>
  2964. <el-form-item label="文档标题">
  2965. <el-input
  2966. v-model="tTitle"
  2967. auto-complete="off"
  2968. placeholder="请输入文档标题名..."
  2969. ></el-input>
  2970. </el-form-item>
  2971. <div>文档简介</div>
  2972. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  2973. </el-form>
  2974. <span slot="footer" class="dialog-footer">
  2975. <el-button @click="dialogVisible1 = false">取 消</el-button>
  2976. <el-button type="primary" @click="addWord" v-if="!updateBoolean2"
  2977. >添加</el-button
  2978. >
  2979. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  2980. </span>
  2981. </el-dialog>
  2982. <el-dialog
  2983. title="添加文档"
  2984. :visible.sync="dialogVisible2"
  2985. :append-to-body="true"
  2986. width="500px"
  2987. :before-close="handleClose"
  2988. class="dialog_diy"
  2989. >
  2990. <el-form>
  2991. <el-form-item label="文档标题">
  2992. <el-input
  2993. v-model="templateC.title"
  2994. auto-complete="off"
  2995. placeholder="请输入文档标题名..."
  2996. ></el-input>
  2997. </el-form-item>
  2998. <div>文档内容</div>
  2999. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  3000. </el-form>
  3001. <span slot="footer" class="dialog-footer">
  3002. <el-button @click="clearChoose">取 消</el-button>
  3003. <el-button type="primary" @click="wordNext()">确定</el-button>
  3004. </span>
  3005. </el-dialog>
  3006. <el-dialog
  3007. title="添加富文本"
  3008. :visible.sync="dialogVisible6"
  3009. :append-to-body="true"
  3010. width="500px"
  3011. :before-close="handleClose"
  3012. class="dialog_diy"
  3013. >
  3014. <el-form>
  3015. <el-form-item label="文本标题">
  3016. <el-input
  3017. v-model="AttText.title"
  3018. auto-complete="off"
  3019. @input="change2"
  3020. placeholder="请输入文本标题..."
  3021. ></el-input>
  3022. </el-form-item>
  3023. <div>富文本内容</div>
  3024. <editor-bar v-model="AttText.text" @change="change"></editor-bar>
  3025. </el-form>
  3026. <span slot="footer" class="dialog-footer">
  3027. <el-button @click="clearAttText">取 消</el-button>
  3028. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  3029. </span>
  3030. </el-dialog>
  3031. <el-dialog
  3032. title="添加链接"
  3033. :visible.sync="dialogVisible7"
  3034. :append-to-body="true"
  3035. width="500px"
  3036. :before-close="handleClose"
  3037. class="dialog_diy lineCss"
  3038. >
  3039. <el-form>
  3040. <el-form-item label="标题" :label-width="formLabelWidth">
  3041. <span>
  3042. <el-input
  3043. placeholder="请输入链接标题"
  3044. clearable
  3045. v-model="lineTitle"
  3046. class="add_input"
  3047. ></el-input>
  3048. </span>
  3049. </el-form-item>
  3050. <el-form-item label="链接" :label-width="formLabelWidth">
  3051. <span>
  3052. <el-input
  3053. placeholder="请输入链接"
  3054. clearable
  3055. v-model="line"
  3056. class="add_input"
  3057. ></el-input>
  3058. </span>
  3059. </el-form-item>
  3060. </el-form>
  3061. <span slot="footer" class="dialog-footer">
  3062. <el-button @click="clearLine">取 消</el-button>
  3063. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  3064. </span>
  3065. </el-dialog>
  3066. <el-dialog
  3067. title="添加课程成员"
  3068. :visible.sync="dialogVisible3"
  3069. :append-to-body="true"
  3070. width="25%"
  3071. height="80%"
  3072. :before-close="handleClose"
  3073. class="addNewPP customWidth"
  3074. >
  3075. <div class="people">
  3076. <div class="people_top">
  3077. <div class="people_nav">选择成员</div>
  3078. <div class="people_top_right">
  3079. <div class="people_search">
  3080. <el-input
  3081. style="height: 100%"
  3082. placeholder="搜索成员名称"
  3083. v-model="searchPeople"
  3084. ></el-input>
  3085. <div class="search_img" @click="searchStudent">
  3086. <img src="../../assets/icon/search.png" alt />
  3087. </div>
  3088. </div>
  3089. </div>
  3090. </div>
  3091. <el-checkbox-group v-model="checkboxList" class="people_name">
  3092. <el-checkbox
  3093. v-for="item in studentJuri"
  3094. :key="item.userid"
  3095. :label="item.userid"
  3096. >{{ item.name ? item.name : "暂无学生可选" }}</el-checkbox
  3097. >
  3098. </el-checkbox-group>
  3099. </div>
  3100. <span slot="footer" class="dialog-footer">
  3101. <el-button @click="dialogVisible3 = false">取 消</el-button>
  3102. <el-button type="primary" @click="isAddPP">确定</el-button>
  3103. </span>
  3104. </el-dialog>
  3105. <el-dialog
  3106. title="添加班级"
  3107. :visible.sync="dialogVisibleClass"
  3108. :append-to-body="true"
  3109. width="400px"
  3110. height="80%"
  3111. :before-close="handleClose"
  3112. class="addNewPP"
  3113. >
  3114. <div class="people" style="height: 300px">
  3115. <div class="people_top">
  3116. <div class="people_top_right">
  3117. <div class="people_search">
  3118. <el-input
  3119. placeholder="搜索班级名称"
  3120. v-model="classSearch"
  3121. @input="getClass()"
  3122. ></el-input>
  3123. <!-- @click="getClass()"
  3124. @keyup.enter.native="getClass()"
  3125. -->
  3126. <div class="search_img">
  3127. <img src="../../assets/icon/search.png" alt />
  3128. </div>
  3129. </div>
  3130. </div>
  3131. <div class="people_nav">选择班级</div>
  3132. </div>
  3133. <el-checkbox-group v-model="checkboxList2" class="people_name">
  3134. <div v-for="(item, index) in grade2" :key="item.id">
  3135. <el-checkbox :label="item.id">
  3136. {{ item.name ? item.name : "暂无班级可选" }}
  3137. </el-checkbox>
  3138. <div>
  3139. <span>{{ index }}</span>
  3140. </div>
  3141. </div>
  3142. </el-checkbox-group>
  3143. </div>
  3144. <span slot="footer" class="dialog-footer">
  3145. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  3146. <el-button type="primary" @click="isAddClass">确定</el-button>
  3147. </span>
  3148. </el-dialog>
  3149. <el-dialog
  3150. title="添加协同成员"
  3151. :visible.sync="dialogVisibleMember"
  3152. :append-to-body="true"
  3153. width="25%"
  3154. height="80%"
  3155. :before-close="handleClose"
  3156. class="addNewPP customWidth"
  3157. >
  3158. <div class="people">
  3159. <div class="people_top">
  3160. <div class="people_top_right">
  3161. <div class="people_search">
  3162. <el-input
  3163. placeholder="搜索成员名称"
  3164. v-model="searchTN"
  3165. @keyup.enter.native="getTeacher"
  3166. ></el-input>
  3167. <div class="search_img" @click="getTeacher">
  3168. <img src="../../assets/icon/search.png" alt />
  3169. </div>
  3170. </div>
  3171. </div>
  3172. <div class="people_nav">选择成员</div>
  3173. </div>
  3174. <el-checkbox-group
  3175. v-model="checkboxList3"
  3176. class="people_name"
  3177. v-if="teacherJuri.length"
  3178. >
  3179. <el-checkbox
  3180. v-for="item in teacherJuri"
  3181. :key="item.userid"
  3182. :label="item.userid"
  3183. >
  3184. <div class="t_j_box">
  3185. <el-tooltip
  3186. placement="top"
  3187. :content="item.name ? item.name : '暂无姓名'"
  3188. >
  3189. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  3190. </el-tooltip>
  3191. <el-tooltip placement="top" :content="item.username">
  3192. <span>{{ item.username }}</span>
  3193. </el-tooltip>
  3194. <el-tooltip placement="top" :content="item.school">
  3195. <span>{{ item.school }}</span>
  3196. </el-tooltip>
  3197. </div>
  3198. </el-checkbox>
  3199. </el-checkbox-group>
  3200. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  3201. </div>
  3202. <span slot="footer" class="dialog-footer">
  3203. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  3204. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  3205. </span>
  3206. </el-dialog>
  3207. <el-dialog
  3208. title="创建问卷"
  3209. :visible.sync="dialogVisible5"
  3210. :append-to-body="true"
  3211. width="800px"
  3212. :before-close="handleClose"
  3213. class="dialog_diy"
  3214. >
  3215. <div>
  3216. <div
  3217. class="a_add_title"
  3218. style="
  3219. display: flex;
  3220. flex-direction: row;
  3221. align-items: center;
  3222. justify-content: center;
  3223. "
  3224. >
  3225. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  3226. <el-input
  3227. v-model="askJson.askTitle"
  3228. placeholder="请输入标题"
  3229. style="width: 400px"
  3230. ></el-input>
  3231. </div>
  3232. <div class="a_addBox">
  3233. <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div>
  3234. <div
  3235. class="a_add_box"
  3236. v-for="(item1, index1) in askJson.askCount"
  3237. :key="index1"
  3238. >
  3239. <div class="a_add_head">
  3240. <div>
  3241. {{ index1 + 1 + "、" }}
  3242. <el-input
  3243. class="a_add_head_input"
  3244. v-model="askJson.askJson[index1].askstitle"
  3245. placeholder="请输入题目..."
  3246. >
  3247. </el-input>
  3248. </div>
  3249. <div class="a_add_head_div">
  3250. <el-button type="primary" size="small" @click="addAskList()"
  3251. >添加</el-button
  3252. >
  3253. <el-button
  3254. type="primary"
  3255. size="small"
  3256. @click="deleteAskList(index1)"
  3257. v-if="askJson.askCount != 1"
  3258. >删除
  3259. </el-button>
  3260. </div>
  3261. </div>
  3262. <div class="a_add_body">
  3263. <div class="a_add_input">
  3264. <el-input
  3265. v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"
  3266. :key="checkIndex"
  3267. v-model="askJson.askJson[index1].checkList[checkIndex]"
  3268. placeholder="请输入选项..."
  3269. style="width: 150px; margin: 10px 10px 0 0"
  3270. ></el-input>
  3271. </div>
  3272. <div class="a_add_body_div">
  3273. <el-button
  3274. style="margin: 10px 0px 0 0"
  3275. type="primary"
  3276. size="small"
  3277. @click="addcheckList(askJson.askJson[index1])"
  3278. >添加</el-button
  3279. >
  3280. <el-button
  3281. type="primary"
  3282. size="small"
  3283. style="margin: 10px 0 0 10px"
  3284. @click="deletecheckList(askJson.askJson[index1])"
  3285. v-if="askJson.askJson[index1].askItem != 1"
  3286. >删除
  3287. </el-button>
  3288. </div>
  3289. </div>
  3290. </div>
  3291. </div>
  3292. </div>
  3293. <span slot="footer" class="dialog-footer">
  3294. <el-button @click="dialogVisible5 = false">取 消</el-button>
  3295. <el-button type="primary" @click="addAsk">确 定</el-button>
  3296. </span>
  3297. </el-dialog>
  3298. <el-dialog
  3299. title="创建选择题"
  3300. :visible.sync="dialogVisibleChoice"
  3301. :append-to-body="true"
  3302. width="800px"
  3303. :before-close="handleClose"
  3304. class="dialog_diy"
  3305. >
  3306. <div>
  3307. <!-- <div class="a_add_title" style="
  3308. display: flex;
  3309. flex-direction: row;
  3310. align-items: center;
  3311. justify-content: center;
  3312. ">
  3313. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  3314. <el-input v-model="testJson.testTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  3315. </div> -->
  3316. <div class="a_addBox">
  3317. <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div>
  3318. <div
  3319. class="a_add_box"
  3320. v-for="(item1, index1) in testJson.testCount"
  3321. :key="index1"
  3322. >
  3323. <div class="a_add_checkType">
  3324. <span
  3325. :class="{ active: testJson.testJson[index1].type == '1' }"
  3326. @click="checkTestType('1', testJson.testJson[index1])"
  3327. >单选题</span
  3328. >
  3329. <span
  3330. :class="{ active: testJson.testJson[index1].type == '2' }"
  3331. @click="checkTestType('2', testJson.testJson[index1])"
  3332. >多选题</span
  3333. >
  3334. </div>
  3335. <div class="a_add_head">
  3336. <div class="timuUpImg">
  3337. <div>
  3338. {{ index1 + 1 + "、" }}
  3339. <el-input
  3340. class="a_add_head_input"
  3341. v-model="testJson.testJson[index1].teststitle"
  3342. placeholder="请输入题目..."
  3343. >
  3344. </el-input>
  3345. </div>
  3346. <div class="xzUpImg" @click.stop="addImg($event)">
  3347. <img src="../../assets/icon/xzUpImg.png" alt="" />
  3348. <input
  3349. type="file"
  3350. accept="image/*"
  3351. style="display: none"
  3352. @change="beforeUploadTiMu($event, index1)"
  3353. />
  3354. </div>
  3355. </div>
  3356. <div class="a_add_head_div">
  3357. <el-button type="primary" size="small" @click="addTestList()"
  3358. >添加</el-button
  3359. >
  3360. <el-button
  3361. type="primary"
  3362. size="small"
  3363. @click="deleteTestList(index1)"
  3364. v-if="testJson.testCount != 1"
  3365. >删除
  3366. </el-button>
  3367. </div>
  3368. </div>
  3369. <div
  3370. class="timuImgBox"
  3371. v-if="
  3372. testJson.testJson[index1].timuList &&
  3373. testJson.testJson[index1].timuList.length
  3374. "
  3375. >
  3376. <div
  3377. v-for="(timg, tIndex) in testJson.testJson[index1].timuList"
  3378. :key="tIndex"
  3379. class="timuImg"
  3380. @click.stop="previewImg(timg.src)"
  3381. >
  3382. <img :src="timg.src" alt="" />
  3383. <div class="deleteWord" @click.stop="deleteM(index1, tIndex)">
  3384. <img src="../../assets/icon/delete.png" alt="" />
  3385. </div>
  3386. </div>
  3387. </div>
  3388. <div class="a_add_body">
  3389. <div class="a_add_input a_add_input_choice">
  3390. <el-radio-group
  3391. v-model="testJson.testJson[index1].answer"
  3392. v-if="testJson.testJson[index1].type == 1"
  3393. >
  3394. <div class="radioBox">
  3395. <el-radio
  3396. v-for="(item2, checkIndex) in testJson.testJson[index1]
  3397. .testItem"
  3398. :key="checkIndex"
  3399. :label="checkIndex"
  3400. >
  3401. <div style="margin-right: 10px">
  3402. 选项{{ checkIndex + 1 }}
  3403. </div>
  3404. <div
  3405. style="margin-right: 10px; width: 300px"
  3406. v-if="
  3407. testJson.testJson[index1].checkList[checkIndex] &&
  3408. testJson.testJson[index1].checkList[checkIndex]
  3409. .imgType &&
  3410. testJson.testJson[index1].checkList[checkIndex]
  3411. .imgType == 1
  3412. "
  3413. >
  3414. <div
  3415. class="inImg"
  3416. @click.stop="
  3417. previewImg(
  3418. testJson.testJson[index1].checkList[checkIndex]
  3419. .src
  3420. )
  3421. "
  3422. >
  3423. <el-image
  3424. :src="
  3425. testJson.testJson[index1].checkList[checkIndex]
  3426. .src
  3427. "
  3428. lazy
  3429. />
  3430. <!-- <img :src="
  3431. testJson.testJson[index1].checkList[checkIndex]
  3432. .src
  3433. " alt="" /> -->
  3434. </div>
  3435. </div>
  3436. <el-input
  3437. v-else
  3438. v-model="
  3439. testJson.testJson[index1].checkList[checkIndex]
  3440. "
  3441. placeholder="请输入选项..."
  3442. style="width: 300px; margin-right: 10px"
  3443. ></el-input>
  3444. <div class="xzUpImg" @click.stop="addImg($event)">
  3445. <img src="../../assets/icon/xzUpImg.png" alt="" />
  3446. <input
  3447. type="file"
  3448. accept="image/*"
  3449. style="display: none"
  3450. @change="beforeUploadTi($event, index1, checkIndex)"
  3451. />
  3452. </div>
  3453. </el-radio>
  3454. </div>
  3455. </el-radio-group>
  3456. <el-checkbox-group
  3457. v-model="testJson.testJson[index1].answer"
  3458. v-if="testJson.testJson[index1].type == '2'"
  3459. >
  3460. <div class="radioBox">
  3461. <el-checkbox
  3462. v-for="(item2, checkIndex1) in testJson.testJson[index1]
  3463. .testItem"
  3464. :key="checkIndex1"
  3465. :label="checkIndex1"
  3466. >
  3467. <div style="margin-right: 10px">
  3468. 选项{{ checkIndex1 + 1 }}
  3469. </div>
  3470. <div
  3471. style="margin-right: 10px; width: 300px"
  3472. v-if="
  3473. testJson.testJson[index1].checkList[checkIndex1] &&
  3474. testJson.testJson[index1].checkList[checkIndex1]
  3475. .imgType &&
  3476. testJson.testJson[index1].checkList[checkIndex1]
  3477. .imgType == 1
  3478. "
  3479. >
  3480. <div
  3481. class="inImg"
  3482. @click.stop="
  3483. previewImg(
  3484. testJson.testJson[index1].checkList[checkIndex1]
  3485. .src
  3486. )
  3487. "
  3488. >
  3489. <el-image
  3490. :src="
  3491. testJson.testJson[index1].checkList[checkIndex1]
  3492. .src
  3493. "
  3494. lazy
  3495. />
  3496. <!-- <img :src="
  3497. testJson.testJson[index1].checkList[checkIndex1]
  3498. .src
  3499. " alt="" /> -->
  3500. </div>
  3501. </div>
  3502. <el-input
  3503. v-else
  3504. v-model="
  3505. testJson.testJson[index1].checkList[checkIndex1]
  3506. "
  3507. placeholder="请输入选项..."
  3508. style="width: 300px; margin-right: 10px"
  3509. ></el-input>
  3510. <div class="xzUpImg" @click.stop="addImg($event)">
  3511. <img src="../../assets/icon/xzUpImg.png" alt="" />
  3512. <input
  3513. type="file"
  3514. accept="image/*"
  3515. style="display: none"
  3516. @change="beforeUploadTi($event, index1, checkIndex1)"
  3517. />
  3518. </div>
  3519. </el-checkbox>
  3520. </div>
  3521. </el-checkbox-group>
  3522. </div>
  3523. <div class="a_add_body_div" style="margin-bottom: 3px">
  3524. <el-button
  3525. type="primary"
  3526. size="small"
  3527. @click="addTcheckList(testJson.testJson[index1])"
  3528. >添加</el-button
  3529. >
  3530. <el-button
  3531. type="primary"
  3532. size="small"
  3533. @click="deleteTcheckList(testJson.testJson[index1])"
  3534. v-if="testJson.testJson[index1].testItem != 1"
  3535. >删除
  3536. </el-button>
  3537. </div>
  3538. </div>
  3539. </div>
  3540. </div>
  3541. </div>
  3542. <span slot="footer" class="dialog-footer">
  3543. <el-button @click="dialogVisibleChoice = false">取 消</el-button>
  3544. <el-button type="primary" @click="addTest">确 定</el-button>
  3545. </span>
  3546. </el-dialog>
  3547. <el-dialog
  3548. title="添加工具"
  3549. :visible.sync="dialogVisible4"
  3550. :append-to-body="true"
  3551. width="600px"
  3552. :before-close="handleClose"
  3553. class="dialog_diy addToolsDia"
  3554. >
  3555. <div class="toolChoose" style="padding: 0 0 0 30px">
  3556. <div class="tools">
  3557. <div
  3558. class="leftTools"
  3559. style="
  3560. width: 95%;
  3561. padding: 0 0 15px 0;
  3562. border-bottom: 1px solid #efefef;
  3563. margin-bottom: 15px;
  3564. "
  3565. v-for="(itemTools, itemToolsIndex) in chapTools"
  3566. :key="itemToolsIndex"
  3567. >
  3568. <div
  3569. style="
  3570. display: flex;
  3571. flex-direction: row;
  3572. align-items: baseline;
  3573. flex-wrap: nowrap;
  3574. justify-content: flex-start;
  3575. position: relative;
  3576. "
  3577. >
  3578. <div class="chooseWho">
  3579. <div
  3580. :class="chapToolsType == 0 ? 'isChooseActive' : ''"
  3581. @click="chapToolsType = 0"
  3582. >
  3583. 互动类
  3584. </div>
  3585. <div
  3586. :class="chapToolsType == 1 ? 'isChooseActive' : ''"
  3587. @click="chapToolsType = 1"
  3588. >
  3589. 思维类
  3590. </div>
  3591. <div
  3592. :class="chapToolsType == 2 ? 'isChooseActive' : ''"
  3593. @click="chapToolsType = 2"
  3594. >
  3595. 评价类
  3596. </div>
  3597. <div
  3598. :class="chapToolsType == 2 ? 'isChooseActive' : ''"
  3599. @click="chapToolsType = 2"
  3600. >
  3601. 其他
  3602. </div>
  3603. </div>
  3604. </div>
  3605. <div style="min-height: 163px">
  3606. <div class="toolSort" v-if="chapToolsType == 0">
  3607. <div class="tool">
  3608. <div class="whiteBIcon" @click="chapAddTools(8)">
  3609. <img
  3610. src="../../assets/icon/secondToolList/library.png"
  3611. alt
  3612. />
  3613. <div style="margin: 5px 0">素材库</div>
  3614. </div>
  3615. <div class="check" @click="chapAddTools(8)">
  3616. <img
  3617. src="../../assets/icon/checkNo.png"
  3618. alt
  3619. v-if="itemTools.tools.indexOf(8) == -1"
  3620. />
  3621. <div class="checkDiv" v-else>
  3622. <img src="../../assets/icon/checkedIs.png" alt /><span
  3623. >已选择</span
  3624. >
  3625. </div>
  3626. </div>
  3627. </div>
  3628. </div>
  3629. <div class="toolSort" v-if="chapToolsType == 1">
  3630. <div class="tool">
  3631. <div class="whiteBIcon" @click="chapAddTools(7)">
  3632. <img
  3633. src="../../assets/icon/secondToolList/mindNetwork.png"
  3634. alt
  3635. />
  3636. <div style="margin: 5px 0">思维网格</div>
  3637. </div>
  3638. <div class="check" @click="chapAddTools(7)">
  3639. <img
  3640. src="../../assets/icon/checkNo.png"
  3641. alt
  3642. v-if="itemTools.tools.indexOf(7) == -1"
  3643. />
  3644. <div class="checkDiv" v-else>
  3645. <img src="../../assets/icon/checkedIs.png" alt /><span
  3646. >已选择</span
  3647. >
  3648. </div>
  3649. </div>
  3650. </div>
  3651. <div class="tool">
  3652. <div class="whiteBIcon" @click="chapAddTools(1)">
  3653. <img
  3654. src="../../assets/icon/secondToolList/whiteBoard.png"
  3655. alt
  3656. />
  3657. <div style="margin: 5px 0">电子白板</div>
  3658. </div>
  3659. <div class="check" @click="chapAddTools(1)">
  3660. <img
  3661. src="../../assets/icon/checkNo.png"
  3662. alt
  3663. v-if="itemTools.tools.indexOf(1) == -1"
  3664. />
  3665. <div class="checkDiv" v-else>
  3666. <img src="../../assets/icon/checkedIs.png" alt /><span
  3667. >已选择</span
  3668. >
  3669. </div>
  3670. </div>
  3671. </div>
  3672. <div class="tool">
  3673. <div class="whiteBIcon" @click="chapAddTools(2)">
  3674. <img src="../../assets/icon/secondToolList/note.png" alt />
  3675. <div style="margin: 5px 0">便签</div>
  3676. </div>
  3677. <div class="check" @click="chapAddTools(2)">
  3678. <img
  3679. src="../../assets/icon/checkNo.png"
  3680. alt
  3681. v-if="itemTools.tools.indexOf(2) == -1"
  3682. />
  3683. <div class="checkDiv" v-else>
  3684. <img src="../../assets/icon/checkedIs.png" alt /><span
  3685. >已选择</span
  3686. >
  3687. </div>
  3688. </div>
  3689. </div>
  3690. <div class="tool">
  3691. <div class="whiteBIcon" @click="chapAddTools(6)">
  3692. <img src="../../assets/icon/secondToolList/doc.png" alt />
  3693. <div style="margin: 5px 0">协同文档</div>
  3694. </div>
  3695. <div class="check" @click="chapAddTools(6)">
  3696. <img
  3697. src="../../assets/icon/checkNo.png"
  3698. alt
  3699. v-if="itemTools.tools.indexOf(6) == -1"
  3700. />
  3701. <div class="checkDiv" v-else>
  3702. <img src="../../assets/icon/checkedIs.png" alt /><span
  3703. >已选择</span
  3704. >
  3705. </div>
  3706. </div>
  3707. </div>
  3708. <div class="tool">
  3709. <div class="whiteBIcon" @click="chapAddTools(3)">
  3710. <img
  3711. src="../../assets/icon/secondToolList/mindMapping.png"
  3712. alt
  3713. />
  3714. <div style="margin: 5px 0">思维导图</div>
  3715. </div>
  3716. <div class="check" @click="chapAddTools(3)">
  3717. <img
  3718. src="../../assets/icon/checkNo.png"
  3719. alt
  3720. v-if="itemTools.tools.indexOf(3) == -1"
  3721. />
  3722. <div class="checkDiv" v-else>
  3723. <img src="../../assets/icon/checkedIs.png" alt /><span
  3724. >已选择</span
  3725. >
  3726. </div>
  3727. </div>
  3728. </div>
  3729. <div class="tool">
  3730. <div class="whiteBIcon" @click="chapAddTools(31)">
  3731. <img
  3732. src="../../assets/icon/secondToolList/networkPanel.png"
  3733. alt
  3734. />
  3735. <div style="margin: 5px 0">数学画板</div>
  3736. </div>
  3737. <div class="check" @click="chapAddTools(31)">
  3738. <img
  3739. src="../../assets/icon/checkNo.png"
  3740. alt
  3741. v-if="itemTools.tools.indexOf(31) == -1"
  3742. />
  3743. <div class="checkDiv" v-else>
  3744. <img src="../../assets/icon/checkedIs.png" alt /><span
  3745. >已选择</span
  3746. >
  3747. </div>
  3748. </div>
  3749. </div>
  3750. </div>
  3751. <div class="toolSort" v-if="chapToolsType == 2">
  3752. <div class="tool">
  3753. <div class="whiteBIcon" @click="chapAddTools(5)">
  3754. <img src="../../assets/icon/thirdToolList/score.png" alt />
  3755. <div style="margin: 5px 0">量规评分</div>
  3756. </div>
  3757. <div class="check" @click="chapAddTools(5)">
  3758. <img
  3759. src="../../assets/icon/checkNo.png"
  3760. alt
  3761. v-if="itemTools.tools.indexOf(5) == -1"
  3762. />
  3763. <div class="checkDiv" v-else>
  3764. <img src="../../assets/icon/checkedIs.png" alt /><span
  3765. >已选择</span
  3766. >
  3767. </div>
  3768. </div>
  3769. </div>
  3770. <div class="tool">
  3771. <div
  3772. class="whiteBIcon"
  3773. @click="openTools(chapCount, 4, null)"
  3774. >
  3775. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  3776. <div style="margin: 5px 0">问卷调查</div>
  3777. </div>
  3778. <div class="check" @click="chapAddTools(4)">
  3779. <img
  3780. src="../../assets/icon/checkNo.png"
  3781. alt
  3782. v-if="itemTools.tools.indexOf(4) == -1"
  3783. />
  3784. <div class="checkDiv" v-else>
  3785. <img src="../../assets/icon/checkedIs.png" alt /><span
  3786. >已选择</span
  3787. >
  3788. </div>
  3789. </div>
  3790. </div>
  3791. </div>
  3792. </div>
  3793. <div>
  3794. <input
  3795. type="text"
  3796. placeholder="添加工具描述"
  3797. class="binfo_input"
  3798. style="margin: 20px 0; width: 71.5% !important"
  3799. v-model="itemTools.toolDetail"
  3800. />
  3801. </div>
  3802. </div>
  3803. </div>
  3804. </div>
  3805. <span slot="footer" class="dialog-footer">
  3806. <el-button @click="dialogVisible4 = false">取 消</el-button>
  3807. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  3808. </span>
  3809. </el-dialog>
  3810. <el-dialog
  3811. title="添加问答"
  3812. :visible.sync="dialogVisible8"
  3813. :append-to-body="true"
  3814. width="500px"
  3815. :before-close="handleClose"
  3816. class="dialog_diy"
  3817. >
  3818. <div>
  3819. <div
  3820. class="a_add_title"
  3821. style="
  3822. display: flex;
  3823. flex-direction: column;
  3824. align-items: flex-start;
  3825. justify-content: center;
  3826. "
  3827. >
  3828. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  3829. <el-input
  3830. v-model="answerQ"
  3831. placeholder="请输入您要问的问题"
  3832. ></el-input>
  3833. </div>
  3834. </div>
  3835. <span slot="footer" class="dialog-footer">
  3836. <el-button @click="dialogVisible8 = false">取 消</el-button>
  3837. <el-button type="primary" @click="addAnswer">确 定</el-button>
  3838. </span>
  3839. </el-dialog>
  3840. <el-dialog
  3841. title="添加问题"
  3842. :visible.sync="dialogVisibleMp3"
  3843. :append-to-body="true"
  3844. width="500px"
  3845. :before-close="handleClose"
  3846. class="dialog_diy"
  3847. >
  3848. <div>
  3849. <div
  3850. class="a_add_title"
  3851. style="
  3852. display: flex;
  3853. flex-direction: column;
  3854. align-items: flex-start;
  3855. justify-content: center;
  3856. "
  3857. >
  3858. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  3859. <el-input
  3860. v-model="answerQ"
  3861. placeholder="请输入您想要回答的问题"
  3862. ></el-input>
  3863. </div>
  3864. </div>
  3865. <span slot="footer" class="dialog-footer">
  3866. <el-button @click="dialogVisibleMp3 = false">取 消</el-button>
  3867. <el-button type="primary" @click="addMp3Answer">确 定</el-button>
  3868. </span>
  3869. </el-dialog>
  3870. <el-dialog
  3871. title="上传图片"
  3872. :visible.sync="choosePicVisible"
  3873. :append-to-body="true"
  3874. width="500px"
  3875. :before-close="handleClose"
  3876. class="dialog_diy"
  3877. >
  3878. <div>
  3879. <div class="fileCss" style="padding-top: 20px">
  3880. <div>
  3881. <button class="info_btn" @click="addImg($event)">
  3882. 选择本地文件
  3883. <input
  3884. type="file"
  3885. accept="image/*"
  3886. style="display: none"
  3887. @change="beforeUpload1"
  3888. />
  3889. </button>
  3890. </div>
  3891. <div>
  3892. <el-button
  3893. @click="getAllBanner"
  3894. v-if="isSysPic == false && cover.length == 0"
  3895. >选择系统文件</el-button
  3896. >
  3897. <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
  3898. <img :src="cover[0].url" alt="" />
  3899. <div class="deletePic" @click="deleteSysPic">
  3900. <img src="../../assets/icon/delete.png" alt="" />
  3901. </div>
  3902. </div>
  3903. </div>
  3904. </div>
  3905. <div class="fileCss">
  3906. <div>选择本地文件</div>
  3907. <div>选择系统文件</div>
  3908. </div>
  3909. </div>
  3910. <span slot="footer" class="dialog-footer">
  3911. <el-button @click="choosePicVisible = false">取 消</el-button>
  3912. <el-button type="primary" @click="choosePicVisible = false"
  3913. >确 定</el-button
  3914. >
  3915. </span>
  3916. </el-dialog>
  3917. <el-dialog
  3918. title="选择系统文件"
  3919. :visible.sync="sysPicVisible"
  3920. :append-to-body="true"
  3921. width="710px"
  3922. :before-close="handleClose"
  3923. class="dialog_diy"
  3924. >
  3925. <div class="cru_selectBox" style="margin: 0">
  3926. <div
  3927. @click="getChoosePic(1)"
  3928. class="cru_select"
  3929. :class="chooseType == 1 ? 'cru_selected' : ''"
  3930. >
  3931. 绘画
  3932. </div>
  3933. <div
  3934. @click="getChoosePic(2)"
  3935. class="cru_select"
  3936. :class="chooseType == 2 ? 'cru_selected' : ''"
  3937. >
  3938. 科技
  3939. </div>
  3940. <div
  3941. @click="getChoosePic(3)"
  3942. class="cru_select"
  3943. :class="chooseType == 3 ? 'cru_selected' : ''"
  3944. >
  3945. 人文
  3946. </div>
  3947. <div
  3948. @click="getChoosePic(4)"
  3949. class="cru_select"
  3950. :class="chooseType == 4 ? 'cru_selected' : ''"
  3951. >
  3952. 艺术
  3953. </div>
  3954. </div>
  3955. <div class="sysPicBox">
  3956. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  3957. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  3958. </div>
  3959. </div>
  3960. <span slot="footer" class="dialog-footer">
  3961. <el-button @click="sysPicVisible = false">取 消</el-button>
  3962. <el-button type="primary">确 定</el-button>
  3963. </span>
  3964. </el-dialog>
  3965. <el-dialog
  3966. title="选择填空"
  3967. :visible.sync="dialogVisibleSelect"
  3968. :append-to-body="true"
  3969. width="800px"
  3970. :before-close="handleClose"
  3971. class="dialog_diy dialog_diy3"
  3972. >
  3973. <div v-if="selectJson">
  3974. <div class="select_box1" v-if="selectSteps == 1">
  3975. <div class="select_box1_img">
  3976. <div class="select_box1_title">
  3977. <span>上传题目图片</span
  3978. ><span>提示:请将题目以图片的方式上传</span>
  3979. </div>
  3980. <div class="select_box1_add_img">
  3981. <div
  3982. class="uploadFm"
  3983. @click="addImg($event)"
  3984. v-if="!selectJson.url"
  3985. >
  3986. <input
  3987. type="file"
  3988. accept="image/*"
  3989. style="display: none"
  3990. @change="beforeUploadSelect"
  3991. />
  3992. <img src="../../assets/icon/addPoster.png" alt="" />
  3993. </div>
  3994. <div class="isSysPic" v-else>
  3995. <img :src="selectJson.url" alt="" />
  3996. <div class="deletePic" @click="deleteSelectPic">
  3997. <img src="../../assets/icon/delete.png" alt="" />
  3998. </div>
  3999. </div>
  4000. </div>
  4001. </div>
  4002. <div class="select_box1_select">
  4003. <div class="select_box1_title">
  4004. <span>添加选项</span><span>提示:请输入题目选项</span>
  4005. </div>
  4006. <div class="select_box1_select_box">
  4007. <el-input
  4008. v-for="(item2, checkIndex) in selectJson.select"
  4009. :key="checkIndex"
  4010. v-model="selectJson.select[checkIndex]"
  4011. placeholder="请输入选项..."
  4012. style="width: 150px; margin: 10px 10px 0 0"
  4013. ></el-input>
  4014. <div class="select_box1_select_box_add">
  4015. <el-button
  4016. style="margin: 10px 0px 0 0"
  4017. type="primary"
  4018. size="small"
  4019. @click="addSelectList(selectJson)"
  4020. >
  4021. 添加</el-button
  4022. >
  4023. <el-button
  4024. type="primary"
  4025. size="small"
  4026. style="margin: 10px 0 0 0"
  4027. @click="deleteSelectList(selectJson)"
  4028. v-if="selectJson.select && selectJson.select.length > 0"
  4029. >删除</el-button
  4030. >
  4031. </div>
  4032. </div>
  4033. </div>
  4034. </div>
  4035. <div v-if="selectSteps == 2">
  4036. <div class="select_box2">
  4037. <div class="select_box2_title">设置答案</div>
  4038. <div class="select_box2_box">
  4039. <div class="select_box2_img">
  4040. <img :src="selectJson.url" alt="" />
  4041. </div>
  4042. <div class="select_box2_answer">
  4043. <div class="select_answer_title">根据题目选择对应答案</div>
  4044. <div
  4045. class="select_box2_answer_box"
  4046. v-for="(item2, checkIndex) in selectJson.select"
  4047. :key="checkIndex"
  4048. >
  4049. <span>{{ checkIndex + 1 }}、</span>
  4050. <el-select
  4051. v-model="selectJson.answer[checkIndex]"
  4052. placeholder="请选择正确答案"
  4053. >
  4054. <el-option
  4055. v-for="(e, eIndex) in selectJson.select"
  4056. :key="eIndex"
  4057. :label="e"
  4058. :value="eIndex"
  4059. >
  4060. </el-option>
  4061. </el-select>
  4062. </div>
  4063. </div>
  4064. </div>
  4065. </div>
  4066. </div>
  4067. </div>
  4068. <span slot="footer" class="dialog-footer">
  4069. <el-button
  4070. type="primary"
  4071. @click="nextSelectSteps()"
  4072. v-if="selectSteps == 1"
  4073. >下一步</el-button
  4074. >
  4075. <el-button @click="selectSteps--" v-if="selectSteps == 2"
  4076. >上一步</el-button
  4077. >
  4078. <el-button
  4079. type="primary"
  4080. @click="addSelectAnswer"
  4081. v-if="selectSteps == 2"
  4082. >确 定</el-button
  4083. >
  4084. </span>
  4085. </el-dialog>
  4086. <el-dialog
  4087. title="添加评价"
  4088. :visible.sync="dialogVisibleRate"
  4089. :append-to-body="true"
  4090. width="650px"
  4091. :before-close="handleClose"
  4092. class="dialog_diy"
  4093. >
  4094. <div style="background: #fff; padding: 15px; box-sizing: border-box">
  4095. <div style="font-size: 18px; color: #a9a9a9">请输入个人评价指标:</div>
  4096. <div class="pjCss" style="width: 100%">
  4097. <div
  4098. v-if="rateJson.length"
  4099. class="elist_input"
  4100. style="height: 360px; overflow: auto"
  4101. >
  4102. <div
  4103. v-for="(eItem, eIndex) in rateJson"
  4104. :key="eIndex"
  4105. class="elist_input_box"
  4106. >
  4107. <span style="min-width: 100px; text-align: right"
  4108. >个人评价指标:</span
  4109. >
  4110. <input
  4111. type="input"
  4112. v-model="eItem.value"
  4113. placeholder="填写评价名称"
  4114. />
  4115. <div class="remove" @click="deletRateList(eIndex)"></div>
  4116. <div style="width: 100%; display: flex">
  4117. <span style="min-width: 100px; text-align: right"
  4118. >评星等级:</span
  4119. >
  4120. <el-rate v-model="eItem.score" disabled></el-rate>
  4121. </div>
  4122. <div class="elist_inptu_text" style="align-items: flex-start">
  4123. <span style="min-width: 100px; text-align: right">描述:</span>
  4124. <textarea
  4125. class="rate_textarea"
  4126. :rows="3"
  4127. v-model="eItem.detail"
  4128. placeholder="填写评价描述"
  4129. ></textarea>
  4130. </div>
  4131. </div>
  4132. </div>
  4133. <div class="addToolFun" @click="addRateList()">
  4134. <div class="addToolImg">
  4135. <img src="../../assets/icon/add.png" alt />
  4136. </div>
  4137. <div>添加</div>
  4138. </div>
  4139. </div>
  4140. </div>
  4141. <span slot="footer" class="dialog-footer">
  4142. <el-button @click="dialogVisibleRate = false">取 消</el-button>
  4143. <el-button type="primary" @click="addRateAnswer">确 定</el-button>
  4144. </span>
  4145. </el-dialog>
  4146. <el-dialog
  4147. title="连词成句设置"
  4148. :visible.sync="dialogVisibleSentence"
  4149. :append-to-body="true"
  4150. width="1000px"
  4151. :before-close="handleClose"
  4152. class="dialog_diy dialog_diy3"
  4153. >
  4154. <div>
  4155. <div class="sentenBox">
  4156. <div class="addSen" @click="addSt">添加题目</div>
  4157. <div
  4158. v-for="(st, stIndex) in sentenceList"
  4159. :key="stIndex"
  4160. style="padding-bottom: 20px"
  4161. >
  4162. <div class="sentenTopBox">
  4163. <div class="sentenTop">
  4164. <div>题目设置</div>
  4165. <div>
  4166. <el-input
  4167. placeholder="请输入卡片内容"
  4168. v-model="st.sentenceTitle"
  4169. ></el-input>
  4170. </div>
  4171. <div @click="addSen(stIndex)">添加</div>
  4172. </div>
  4173. <div
  4174. class="remove1"
  4175. v-if="sentenceList.length > 1"
  4176. @click="deleteSentence(stIndex)"
  4177. ></div>
  4178. </div>
  4179. <div class="cardList">
  4180. <div v-if="st.addSentence.length > 0" class="cardBox">
  4181. <div
  4182. class="isCard"
  4183. v-for="(s, sIndex) in st.addSentence"
  4184. :key="sIndex"
  4185. @click="setRightAnswer(s, stIndex, sIndex)"
  4186. >
  4187. <el-tooltip
  4188. class="item"
  4189. effect="light"
  4190. :content="s"
  4191. placement="top"
  4192. >
  4193. <div>{{ s }}</div>
  4194. </el-tooltip>
  4195. <div
  4196. class="deleteWord"
  4197. @click.stop="deleteS(s, stIndex, sIndex)"
  4198. >
  4199. <img src="../../assets/icon/delete.png" alt="" />
  4200. </div>
  4201. </div>
  4202. </div>
  4203. <div class="card">
  4204. <img src="../../assets/icon/conSentences/noTitle.png" alt="" />
  4205. </div>
  4206. </div>
  4207. <div class="rightCardBox">
  4208. <div>正确顺序</div>
  4209. <div class="rightCardList">
  4210. <div v-if="st.rightAnswer.length > 0" class="cardBox">
  4211. <div
  4212. v-for="(r, rIndex) in st.rightAnswer"
  4213. :key="rIndex"
  4214. class="cardCss"
  4215. >
  4216. <div
  4217. class="isCard1"
  4218. @click="returnCard(r, stIndex, rIndex)"
  4219. >
  4220. <el-tooltip
  4221. class="item"
  4222. effect="light"
  4223. :content="r"
  4224. placement="top"
  4225. >
  4226. <div>{{ r }}</div>
  4227. </el-tooltip>
  4228. </div>
  4229. <div>{{ rIndex + 1 }}</div>
  4230. </div>
  4231. </div>
  4232. <div class="card" v-if="st.rightAnswer.length == 0">
  4233. <img
  4234. src="../../assets/icon/conSentences/noAnswer.png"
  4235. alt=""
  4236. />
  4237. </div>
  4238. </div>
  4239. </div>
  4240. </div>
  4241. </div>
  4242. </div>
  4243. <span slot="footer" class="dialog-footer">
  4244. <el-button @click="dialogVisibleSentence = false">取 消</el-button>
  4245. <el-button type="primary" @click="addSentenceTool">确 定</el-button>
  4246. </span>
  4247. </el-dialog>
  4248. <el-dialog
  4249. title="添加表格"
  4250. :visible.sync="dialogVisibleTable"
  4251. :append-to-body="true"
  4252. width="95%"
  4253. :before-close="handleClose"
  4254. class="dialog_diy"
  4255. >
  4256. <el-form>
  4257. <!-- <el-form-item label="文本标题">
  4258. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  4259. </el-form-item> -->
  4260. <div>表格内容</div>
  4261. <Table v-model="tableJson.text" @change="change"></Table>
  4262. </el-form>
  4263. <span slot="footer" class="dialog-footer">
  4264. <el-button @click="dialogVisibleTable = false">取 消</el-button>
  4265. <el-button type="primary" @click="addTableJson">确定</el-button>
  4266. </span>
  4267. </el-dialog>
  4268. <el-dialog
  4269. title="添加文档"
  4270. :visible.sync="dialogVisibleWord"
  4271. :append-to-body="true"
  4272. width="800px"
  4273. :before-close="handleClose"
  4274. class="dialog_diy"
  4275. >
  4276. <el-form>
  4277. <!-- <el-form-item label="文本标题">
  4278. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  4279. </el-form-item> -->
  4280. <div>文档内容</div>
  4281. <editor-bar v-model="wordJson.text"></editor-bar>
  4282. </el-form>
  4283. <span slot="footer" class="dialog-footer">
  4284. <el-button @click="dialogVisibleWord = false">取 消</el-button>
  4285. <el-button type="primary" @click="addWordJson">确定</el-button>
  4286. </span>
  4287. </el-dialog>
  4288. <el-dialog
  4289. title="添加班级"
  4290. :visible.sync="dialogVisibleMoreUpload"
  4291. :append-to-body="true"
  4292. width="30%"
  4293. :before-close="handleClose"
  4294. class="dialog_diy"
  4295. >
  4296. <div
  4297. style="
  4298. width: 100%;
  4299. display: flex;
  4300. flex-direction: row;
  4301. flex-wrap: nowrap;
  4302. align-items: center;
  4303. justify-content: center;
  4304. "
  4305. >
  4306. <div>班级:</div>
  4307. <el-select multiple v-model="uploadJson" placeholder="请选择">
  4308. <el-option
  4309. v-for="item in classJuri"
  4310. :key="item.id"
  4311. :label="item.name"
  4312. :value="item.id"
  4313. >
  4314. </el-option>
  4315. </el-select>
  4316. </div>
  4317. <span slot="footer" class="dialog-footer">
  4318. <el-button @click="dialogVisibleMoreUpload = false">取 消</el-button>
  4319. <el-button type="primary" @click="addMoreUpload">确定</el-button>
  4320. </span>
  4321. </el-dialog>
  4322. <el-dialog
  4323. title="添加预设时间"
  4324. :visible.sync="dialogVisiblePreTime"
  4325. :append-to-body="true"
  4326. width="30%"
  4327. :before-close="handleClose"
  4328. class="dialog_diy"
  4329. >
  4330. <div>
  4331. <Time
  4332. :preTime="preTime"
  4333. @updateTimeNum="updateTime"
  4334. v-if="dialogVisiblePreTime"
  4335. ></Time>
  4336. </div>
  4337. <span slot="footer" class="dialog-footer">
  4338. <el-button @click="dialogVisiblePreTime = false">取 消</el-button>
  4339. <el-button type="primary" @click="addPreTime">确定</el-button>
  4340. </span>
  4341. </el-dialog>
  4342. <el-dialog
  4343. title="导入目标"
  4344. :visible.sync="dialogVisiblemb"
  4345. :append-to-body="true"
  4346. width="70%"
  4347. :before-close="handleClose"
  4348. class="dialog_diy"
  4349. >
  4350. <div>
  4351. <div
  4352. style="
  4353. width: 100%;
  4354. display: flex;
  4355. flex-direction: row;
  4356. flex-wrap: nowrap;
  4357. align-content: center;
  4358. align-items: center;
  4359. justify-content: space-between;
  4360. "
  4361. >
  4362. <div
  4363. style="
  4364. display: flex;
  4365. flex-flow: row nowrap;
  4366. align-items: flex-start;
  4367. width: 100%;
  4368. flex-direction: column;
  4369. flex-wrap: nowrap;
  4370. position: relative;
  4371. "
  4372. >
  4373. <div class="e_box">
  4374. <div class="e_card" v-for="(item, index) in evaJuri" :key="index">
  4375. <div class="e_card_picture">
  4376. <img src="../../assets/e_picture.png" />
  4377. </div>
  4378. <div class="e_card_name">
  4379. <span>{{ item.title }}</span>
  4380. </div>
  4381. <div class="e_card_btn">
  4382. <span @click="checkEva(item.id, 2)">导入</span>
  4383. </div>
  4384. </div>
  4385. <div class="addEva" @click="openT">
  4386. <img src="../../assets/icon/addEva.png" alt="" />
  4387. </div>
  4388. <div
  4389. v-if="evaJuri.length === 0"
  4390. style="margin: 0 auto; color: #6e6e6e"
  4391. >
  4392. 暂无数据
  4393. </div>
  4394. </div>
  4395. </div>
  4396. </div>
  4397. </div>
  4398. <span slot="footer" class="dialog-footer">
  4399. <el-button @click="dialogVisiblemb = false">取 消</el-button>
  4400. </span>
  4401. </el-dialog>
  4402. <el-dialog
  4403. title="分组设置"
  4404. :visible.sync="dialogVisibleGroup"
  4405. :append-to-body="true"
  4406. width="650px"
  4407. :before-close="handleClose"
  4408. class="dialog_diy"
  4409. >
  4410. <div class="groupBox">
  4411. <div v-if="groupJson.group" class="groupContent">
  4412. <div class="groupTitle">请设置小组数量</div>
  4413. <div
  4414. v-for="(item, index) in groupJson.group"
  4415. :key="index"
  4416. class="groupName"
  4417. >
  4418. <span class="groupn">组{{ index + 1 }}名称:</span>
  4419. <el-input
  4420. v-model="item.name"
  4421. placeholder="请输入名称..."
  4422. style="width: 250px"
  4423. ></el-input>
  4424. <div class="groupBtn">
  4425. <el-button type="primary" size="small" @click="addGroup(index)">
  4426. 添加</el-button
  4427. >
  4428. <el-button
  4429. type="primary"
  4430. size="small"
  4431. @click="deleteGroup(index)"
  4432. v-if="groupJson.group && groupJson.group.length > 1"
  4433. >删除</el-button
  4434. >
  4435. </div>
  4436. </div>
  4437. </div>
  4438. <div class="groupContent">
  4439. <div class="groupTitle">请设置每组人数数量</div>
  4440. <!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
  4441. style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
  4442. <el-input-number
  4443. v-model="groupJson.number"
  4444. :controls="false"
  4445. :min="2"
  4446. :max="10"
  4447. placeholder="2-10人以内"
  4448. ></el-input-number>
  4449. </div>
  4450. </div>
  4451. <span slot="footer" class="dialog-footer">
  4452. <el-button @click="dialogVisibleGroup = false">取 消</el-button>
  4453. <el-button type="primary" @click="addGroupJson">确定</el-button>
  4454. </span>
  4455. </el-dialog>
  4456. </div>
  4457. </template>
  4458. <script>
  4459. import "../../common/aws-sdk-2.235.1.min.js";
  4460. // import "../../common/aws-sdk-2.99.0.min.js";
  4461. import $ from "jquery";
  4462. import EditorBar from "../../components/tools/wangEnduit";
  4463. import Table from "../../components/tools/table";
  4464. import Mind from "../tools/jsmind2";
  4465. import Time from "../tools/time.vue";
  4466. import Sunburst from "../tools/sunburst";
  4467. import SeeBoard from "../tools/seeBoard";
  4468. export default {
  4469. components: { EditorBar, Mind, Time, Sunburst, SeeBoard, Table },
  4470. data() {
  4471. return {
  4472. checkAll: false,
  4473. chooseType: 1,
  4474. checkedCities: [],
  4475. isIndeterminate: true,
  4476. isSysPic: false,
  4477. steps: 1,
  4478. nbOrder: 0,
  4479. courseId: "",
  4480. chapToolsType: 0,
  4481. chapTools: [
  4482. {
  4483. tools: [],
  4484. toolDetail: "",
  4485. },
  4486. ],
  4487. line: "",
  4488. lineTitle: "",
  4489. sysPic: [],
  4490. sentenceList: [{ sentenceTitle: "", addSentence: [], rightAnswer: [] }],
  4491. isPushTitleList: [],
  4492. lineCount: 0,
  4493. lineType: 0,
  4494. chapCount: 0,
  4495. courseName: "",
  4496. isTeacherSee: true,
  4497. courseText: "",
  4498. preTime: 0,
  4499. formLabelWidth: "100px",
  4500. choosePicVisible: false,
  4501. sysPicVisible: false,
  4502. uploadLoading1: false,
  4503. noneBtnImg: false,
  4504. updateBoolean2: false,
  4505. unitIndex: 0,
  4506. taskCount: 0,
  4507. dialogVisible: false,
  4508. dialogVisible1: false,
  4509. dialogVisible2: false,
  4510. dialogVisible3: false,
  4511. dialogVisible4: false,
  4512. dialogVisible5: false,
  4513. dialogVisible6: false,
  4514. dialogVisible7: false,
  4515. dialogVisible8: false,
  4516. dialogVisible9: false,
  4517. dialogVisibleClass: false,
  4518. dialogVisibleMember: false,
  4519. dialogVisibleMp3: false,
  4520. dialogVisibleSelect: false,
  4521. dialogVisibleSentence: false,
  4522. dialogVisibleRate: false,
  4523. dialogVisibleChoice: false,
  4524. dialogVisiblemb: false,
  4525. isClickColor: 0,
  4526. publicTool: 0,
  4527. searchPeople: "",
  4528. searchTN: "",
  4529. userid: this.$route.query.userid,
  4530. oid: this.$route.query.oid,
  4531. org: this.$route.query.org,
  4532. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  4533. dialogVisibleTable: false,
  4534. dialogVisibleWord: false,
  4535. tableJson: { text: "" },
  4536. wordJson: { text: "" },
  4537. dialogVisibleMoreUpload: false,
  4538. dialogVisiblePreTime: false,
  4539. uploadJson: [],
  4540. classJuri: [],
  4541. cover: [], //课程封面
  4542. myWord: [],
  4543. evaJuri: [],
  4544. evalua: "",
  4545. targetArray: [],
  4546. eTitle: "",
  4547. eJson: {},
  4548. fid: "", //一级
  4549. sid: "", //二级
  4550. tid: "", //二级
  4551. typeMode: 1,
  4552. eJSONNum: 0,
  4553. data: {
  4554. meta: {
  4555. name: "example",
  4556. author: "dd@163.com",
  4557. version: "0.2",
  4558. },
  4559. format: "node_array",
  4560. data: [{ id: "root", isroot: true, topic: "" }],
  4561. },
  4562. askJson: {
  4563. askCount: 1,
  4564. askTitle: "",
  4565. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4566. },
  4567. testJson: {},
  4568. selectJson: {},
  4569. rateJson: [],
  4570. unitJson2: [],
  4571. unitJson: [
  4572. {
  4573. dyName: "", //单元标题
  4574. chapterInfo: [
  4575. {
  4576. isread: false,
  4577. chapterid: this.guid(),
  4578. title: "",
  4579. courseName: "",
  4580. taskJson: [
  4581. {
  4582. task: "",
  4583. taskDetail: "",
  4584. chapterData: [],
  4585. toolText: "",
  4586. toolChoose: [
  4587. {
  4588. tool: [],
  4589. toolDetail: "",
  4590. toolType: 0,
  4591. askCount: 1,
  4592. askTitle: "",
  4593. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4594. },
  4595. ],
  4596. isShowTools: false,
  4597. askCount: 1,
  4598. isFold: 0,
  4599. askTitle: "",
  4600. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4601. checkJson: [{ checkCount: [], checkPerent: [] }],
  4602. homeworkList: [],
  4603. },
  4604. ],
  4605. itemCount: 1,
  4606. fileList1: [],
  4607. video: [],
  4608. testData: [],
  4609. pData: [],
  4610. templateArray: [],
  4611. },
  4612. ],
  4613. },
  4614. ],
  4615. studentJuri: [],
  4616. teacherJuri: [],
  4617. checkboxList: [],
  4618. checkboxList2: [],
  4619. checkboxList3: [],
  4620. classSearch: "",
  4621. number: "",
  4622. tTitle: "",
  4623. tdetail: "",
  4624. templateC: {},
  4625. AttText: {},
  4626. AttTextType: 0,
  4627. AttTextIndex: 0,
  4628. cTemplate: "",
  4629. CourseType: [],
  4630. CourseType2: [],
  4631. CourseTypeJson: {},
  4632. courseTypeId: [],
  4633. courseTypeSon: [],
  4634. clearArray: [],
  4635. pTypeCheck: [],
  4636. loading: false,
  4637. toolType: 0,
  4638. inputShow: true,
  4639. inputShow2: true,
  4640. toolIndex: 0,
  4641. cidType: 0,
  4642. answerQ: "",
  4643. grade: [],
  4644. grade2: [],
  4645. courseUserid: "",
  4646. timer: null,
  4647. timer2: null,
  4648. checkId: "",
  4649. isDelete: 1,
  4650. addindex: 0,
  4651. selectSteps: 1,
  4652. groupJson: {},
  4653. dialogVisibleGroup: false,
  4654. rightBoxHeight: 0,
  4655. ManAarray: [],
  4656. checkBoolean: false,
  4657. };
  4658. },
  4659. computed: {
  4660. // rightBoxHeight: function () {
  4661. // return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
  4662. // },
  4663. offsetLetfPx: function () {
  4664. //addnum可以直接在模板语法里面用,相当于data内的值
  4665. return (
  4666. $(".cru_select")[this.unitIndex] &&
  4667. $(".cru_select")[this.unitIndex].offsetLeft
  4668. );
  4669. },
  4670. getMan2() {
  4671. return function (people) {
  4672. let _people = people;
  4673. let _people2 = "";
  4674. if (this.ManAarray.length) {
  4675. for (var i = 0; i < this.ManAarray.length; i++) {
  4676. if (this.ManAarray[i].userid == people) {
  4677. _people2 = this.ManAarray[i].name;
  4678. break;
  4679. }
  4680. }
  4681. }
  4682. if (people == this.courseUserid) {
  4683. return "";
  4684. }
  4685. return this.ManAarray.length ? _people2 : "";
  4686. };
  4687. },
  4688. getClassC() {
  4689. return function (c) {
  4690. let _c2 = "";
  4691. if (this.grade.length) {
  4692. for (var i = 0; i < this.grade.length; i++) {
  4693. if (this.grade[i].id == c) {
  4694. _c2 = this.grade[i].name;
  4695. break;
  4696. }
  4697. }
  4698. }
  4699. return this.grade.length ? _c2 : "";
  4700. };
  4701. },
  4702. },
  4703. watch: {
  4704. unitIndex(newValue, oldValue) {
  4705. if (this.isDelete == 2) {
  4706. this.isDelete = 1;
  4707. return;
  4708. }
  4709. if (this.cid != "") {
  4710. let _unitIndex = oldValue;
  4711. if (
  4712. JSON.stringify(this.unitJson2[_unitIndex]) ==
  4713. JSON.stringify(this.unitJson[_unitIndex])
  4714. ) {
  4715. this.$refs.rightboxR.scrollTop = 0;
  4716. return;
  4717. }
  4718. let cPan = 1;
  4719. for (
  4720. var j = 0;
  4721. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  4722. j++
  4723. ) {
  4724. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  4725. j
  4726. ].proVisible = false;
  4727. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  4728. j
  4729. ].proVisible2 = false;
  4730. if (
  4731. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4732. .length > 1
  4733. ) {
  4734. for (
  4735. var z = 0;
  4736. z <
  4737. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4738. .length;
  4739. z++
  4740. ) {
  4741. if (
  4742. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  4743. .toolChoose[z].tool.length
  4744. ) {
  4745. this.$message.error("请把工具添加完整");
  4746. cPan = 2;
  4747. break;
  4748. }
  4749. }
  4750. }
  4751. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  4752. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  4753. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  4754. (ele) => {
  4755. return ele.value != "";
  4756. }
  4757. );
  4758. }
  4759. }
  4760. if (cPan == 2) {
  4761. this.unitIndex = oldValue;
  4762. return;
  4763. }
  4764. for (var i = 0; i < this.unitJson.length; i++) {
  4765. if (this.addindex != i) {
  4766. delete this.unitJson[i].isUpdate;
  4767. }
  4768. }
  4769. this.$refs.rightboxR.scrollTop = 0;
  4770. this.addindex = -1;
  4771. let params = [
  4772. {
  4773. cid: this.cid,
  4774. chapters: JSON.stringify(this.unitJson),
  4775. uid: this.userid,
  4776. unitIndex: _unitIndex,
  4777. },
  4778. ];
  4779. this.ajax
  4780. .post(this.$store.state.api + "updateWorkNew4", params)
  4781. .then((res) => {
  4782. // this.$message({
  4783. // message: "修改成功",
  4784. // type: "success",
  4785. // });
  4786. // this.courseId = this.cid;
  4787. })
  4788. .catch((err) => {
  4789. this.$message.error("网络不佳");
  4790. console.error(err);
  4791. });
  4792. }
  4793. },
  4794. },
  4795. methods: {
  4796. setMan() {
  4797. // let teacherJuri = this.teacherJuri2;
  4798. this.ManAarray = [];
  4799. if (this.checkboxList3.indexOf(this.courseUserid || this.userid) == -1) {
  4800. this.checkboxList3.push(this.courseUserid || this.userid);
  4801. }
  4802. let params = {
  4803. uid: this.checkboxList3.join(","),
  4804. };
  4805. this.ajax
  4806. .get(this.$store.state.api + "getAllUserById", params)
  4807. .then((res) => {
  4808. let teacherJuri = res.data[0];
  4809. this.ManAarray = teacherJuri;
  4810. })
  4811. .catch((err) => {
  4812. console.error(err);
  4813. });
  4814. },
  4815. previewImg(url) {
  4816. this.$hevueImgPreview(url);
  4817. },
  4818. scrollChange() {
  4819. this.rightBoxHeight = $(".rightBox")[0].scrollHeight;
  4820. },
  4821. handleCheckAllChange(val) {
  4822. this.checkedCities = val ? cityOptions : [];
  4823. this.isIndeterminate = false;
  4824. },
  4825. handleCheckedCitiesChange(value) {
  4826. let checkedCount = value.length;
  4827. this.checkAll = checkedCount === this.cities.length;
  4828. this.isIndeterminate =
  4829. checkedCount > 0 && checkedCount < this.cities.length;
  4830. },
  4831. addHw(e) {
  4832. var el = e.currentTarget;
  4833. el.getElementsByTagName("input")[0].click();
  4834. },
  4835. change(val) {
  4836. console.log(val);
  4837. },
  4838. change2(val) {
  4839. console.log(val);
  4840. this.$forceUpdate();
  4841. },
  4842. handleClose(done) {
  4843. done();
  4844. },
  4845. imgChange2(i, j) {
  4846. var _tmp = this.testJson.testJson[i].checkList[j];
  4847. this.noneBtnImg = _tmp.length >= 1;
  4848. },
  4849. imgChange3(i) {
  4850. var _tmp = this.testJson.testJson[i];
  4851. this.noneBtnImg = _tmp.length >= 1;
  4852. },
  4853. imgChange1(file, fileList, type, itemTaskIndex) {
  4854. if (type == 1) {
  4855. var _tmp = this.cover;
  4856. } else if (
  4857. type == 2 ||
  4858. type == 3 ||
  4859. type == 6 ||
  4860. type == 7 ||
  4861. type == 8
  4862. ) {
  4863. var _tmp =
  4864. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4865. .chapterData;
  4866. } else if (type == 4) {
  4867. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  4868. } else {
  4869. var _tmp =
  4870. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4871. .homeworkList;
  4872. }
  4873. this.noneBtnImg = _tmp.length >= 1;
  4874. },
  4875. goTo(path) {
  4876. this.$router.push(path);
  4877. },
  4878. guid() {
  4879. var _num,
  4880. i,
  4881. _guid = "";
  4882. for (i = 0; i < 32; i++) {
  4883. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  4884. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  4885. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  4886. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  4887. _guid += "-";
  4888. }
  4889. }
  4890. return _guid;
  4891. },
  4892. lastSteps() {
  4893. if (this.steps == 4) {
  4894. this.goTo(
  4895. "/course?userid=" +
  4896. this.userid +
  4897. "&oid=" +
  4898. this.oid +
  4899. "&org=" +
  4900. this.org
  4901. );
  4902. } else {
  4903. if (this.cidType == 0) {
  4904. this.steps--;
  4905. if (this.steps == 1) {
  4906. setTimeout(() => {
  4907. this.checkEva(this.checkId);
  4908. }, 0);
  4909. }
  4910. } else {
  4911. if (this.steps == 3) {
  4912. this.steps = 1;
  4913. setTimeout(() => {
  4914. this.checkEva(this.checkId);
  4915. }, 0);
  4916. }
  4917. }
  4918. }
  4919. },
  4920. navSteps(s) {
  4921. if (this.courseName == "") {
  4922. this.$message.error("请将信息填写完整");
  4923. return;
  4924. }
  4925. if (this.cidType == 0) {
  4926. if (this.steps == 1) {
  4927. if (this.cid == "" || this.cid == undefined) {
  4928. this.addWork();
  4929. } else {
  4930. if (this.userid != this.courseUserid) {
  4931. // this.updateWork2();
  4932. } else {
  4933. this.updateWork();
  4934. }
  4935. }
  4936. }
  4937. if (s == 1) {
  4938. this.steps = 1;
  4939. setTimeout(() => {
  4940. this.checkEva(this.checkId);
  4941. }, 0);
  4942. }
  4943. if (s == 2) {
  4944. this.steps = 2;
  4945. }
  4946. if (s == 3) {
  4947. this.cTemplate = this.templateC.content;
  4948. this.dialogVisible2 = false;
  4949. this.steps = 3;
  4950. setTimeout(() => {
  4951. this.checkEva(this.checkId);
  4952. }, 1000);
  4953. }
  4954. } else {
  4955. if (this.steps == 1) {
  4956. if (this.cid == "" || this.cid == undefined) {
  4957. this.addWork();
  4958. } else {
  4959. if (this.userid != this.courseUserid) {
  4960. // this.updateWork2();
  4961. } else {
  4962. this.updateWork();
  4963. }
  4964. }
  4965. }
  4966. if (s == 1) {
  4967. this.steps = 1;
  4968. setTimeout(() => {
  4969. this.checkEva(this.checkId);
  4970. }, 0);
  4971. }
  4972. if (s == 3) {
  4973. this.cTemplate = this.templateC.content;
  4974. this.dialogVisible2 = false;
  4975. this.steps = 3;
  4976. setTimeout(() => {
  4977. this.checkEva(this.checkId);
  4978. }, 1000);
  4979. }
  4980. }
  4981. this.$refs.stepBox.scrollTop = 0;
  4982. },
  4983. nextSteps() {
  4984. if (this.cidType == 1) {
  4985. if (this.steps == 1) {
  4986. if (this.courseName != "") {
  4987. this.steps = 3;
  4988. setTimeout(() => {
  4989. this.checkEva(this.checkId);
  4990. }, 1000);
  4991. if (this.cid == "" || this.cid == undefined) {
  4992. this.addWork();
  4993. } else {
  4994. if (this.userid != this.courseUserid) {
  4995. // this.updateWork2();
  4996. } else {
  4997. this.updateWork();
  4998. }
  4999. }
  5000. } else {
  5001. this.$message.error("请将信息填写完整");
  5002. return;
  5003. }
  5004. } else if (this.steps == 3) {
  5005. if (this.cid == "" || this.cid == undefined) {
  5006. if (this.courseName == "") {
  5007. this.$message.error("请将信息填写完整");
  5008. return;
  5009. } else {
  5010. this.addWork();
  5011. this.steps++;
  5012. }
  5013. } else {
  5014. if (this.courseName == "") {
  5015. this.$message.error("请将信息填写完整");
  5016. return;
  5017. } else {
  5018. if (this.userid != this.courseUserid) {
  5019. this.updateWork2();
  5020. } else {
  5021. this.updateWork();
  5022. }
  5023. this.steps++;
  5024. }
  5025. }
  5026. }
  5027. } else {
  5028. if (this.steps == 1) {
  5029. if (this.courseName != "") {
  5030. if (this.cid == "" || this.cid == undefined) {
  5031. this.addWork();
  5032. } else {
  5033. if (this.userid != this.courseUserid) {
  5034. // this.updateWork2();
  5035. } else {
  5036. this.updateWork();
  5037. }
  5038. }
  5039. this.steps++;
  5040. } else {
  5041. this.$message.error("请将信息填写完整");
  5042. return;
  5043. }
  5044. } else if (this.steps == 2) {
  5045. if (this.templateC.id != "" || this.templateC.id != undefined) {
  5046. this.cTemplate = this.templateC.content;
  5047. }
  5048. this.dialogVisible2 = false;
  5049. this.steps++;
  5050. setTimeout(() => {
  5051. this.checkEva(this.checkId);
  5052. }, 1000);
  5053. } else if (this.steps == 3) {
  5054. if (this.cid == "" || this.cid == undefined) {
  5055. if (this.courseName == "") {
  5056. this.$message.error("请将信息填写完整");
  5057. return;
  5058. } else {
  5059. this.addWork();
  5060. this.steps++;
  5061. }
  5062. } else {
  5063. if (this.courseName == "") {
  5064. this.$message.error("请将信息填写完整");
  5065. return;
  5066. } else {
  5067. if (this.userid != this.courseUserid) {
  5068. this.updateWork2();
  5069. } else {
  5070. this.updateWork();
  5071. }
  5072. this.steps++;
  5073. }
  5074. }
  5075. }
  5076. }
  5077. this.$refs.stepBox.scrollTop = 0;
  5078. },
  5079. unitSet(i) {
  5080. this.unitIndex = i;
  5081. // this.$refs.rightboxR.scrollTop = 0;
  5082. },
  5083. time() {
  5084. if (!this.now) {
  5085. this.now = new Date().getTime();
  5086. return true;
  5087. } else {
  5088. let time = new Date().getTime();
  5089. if (time - this.now > 3000) {
  5090. this.now = time;
  5091. return true;
  5092. } else {
  5093. return false;
  5094. }
  5095. }
  5096. },
  5097. deleteUnit(i) {
  5098. var _this = this;
  5099. if (_this.time()) {
  5100. _this
  5101. .$confirm("确定删除此单元吗?", "提示", {
  5102. confirmButtonText: "确定",
  5103. cancelButtonText: "取消",
  5104. type: "warning",
  5105. })
  5106. .then(() => {
  5107. _this.isDelete = 2;
  5108. // _this.unitIndex = _this.unitIndex - 1;
  5109. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  5110. // _this.$message.success("删除成功");
  5111. })
  5112. .catch(() => {
  5113. return;
  5114. });
  5115. }
  5116. },
  5117. deleteWork(chapid) {
  5118. let params = [
  5119. {
  5120. cid: this.cid,
  5121. chapters: JSON.stringify(this.unitJson),
  5122. uid: this.userid,
  5123. chapid: chapid,
  5124. },
  5125. ];
  5126. this.ajax
  5127. .post(this.$store.state.api + "deleteWork", params)
  5128. .then((res) => {
  5129. this.$message({
  5130. message: "删除成功",
  5131. type: "success",
  5132. });
  5133. this.unitJson.splice(this.unitIndex, 1);
  5134. this.unitIndex = this.unitIndex - 1;
  5135. })
  5136. .catch((err) => {
  5137. this.$message.error("网络不佳");
  5138. console.error(err);
  5139. });
  5140. },
  5141. deleteTool(itemTaskIndex, i) {
  5142. var _this = this;
  5143. if (_this.time()) {
  5144. _this
  5145. .$confirm("确定删除此工具吗?", "提示", {
  5146. confirmButtonText: "确定",
  5147. cancelButtonText: "取消",
  5148. type: "warning",
  5149. })
  5150. .then(() => {
  5151. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5152. itemTaskIndex
  5153. ].toolChoose.splice(i, 1);
  5154. _this.$message.success("删除成功");
  5155. })
  5156. .catch(() => {
  5157. return;
  5158. });
  5159. }
  5160. },
  5161. deleteSentence(i) {
  5162. var _this = this;
  5163. if (_this.time()) {
  5164. _this
  5165. .$confirm("确定删除此题目吗?", "提示", {
  5166. confirmButtonText: "确定",
  5167. cancelButtonText: "取消",
  5168. type: "warning",
  5169. })
  5170. .then(() => {
  5171. _this.sentenceList.splice(i, 1);
  5172. _this.$message.success("删除成功");
  5173. })
  5174. .catch(() => {
  5175. return;
  5176. });
  5177. }
  5178. },
  5179. deleteS(s, i, j) {
  5180. this.sentenceList[i].addSentence.splice(j, 1);
  5181. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  5182. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  5183. this.sentenceList[i].rightAnswer.splice(a, 1);
  5184. }
  5185. },
  5186. openT() {
  5187. window.parent.postMessage({ tools: "25" }, "*");
  5188. },
  5189. deleteTask(i) {
  5190. var _this = this;
  5191. if (_this.time()) {
  5192. _this
  5193. .$confirm("确定删除此任务吗?", "提示", {
  5194. confirmButtonText: "确定",
  5195. cancelButtonText: "取消",
  5196. type: "warning",
  5197. })
  5198. .then(() => {
  5199. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  5200. i,
  5201. 1
  5202. );
  5203. _this.$message.success("删除成功");
  5204. })
  5205. .catch(() => {
  5206. return;
  5207. });
  5208. }
  5209. },
  5210. handlePictureCardPreview(file) {
  5211. this.dialogImageUrl = file.url;
  5212. },
  5213. clean(i, c) {
  5214. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  5215. },
  5216. handle_remove1(file, fileList, type) {
  5217. var _tmp = this.cover;
  5218. // for (var i = 0, len = _tmp.length; i < len; i++) {
  5219. // if (_tmp[i].uid == file.uid) {
  5220. // _tmp.splice(i, 1);
  5221. // break;
  5222. // }
  5223. // this.cover = _tmp;
  5224. // }
  5225. this.cover = [];
  5226. this.noneBtnImg = this.cover.length >= 1;
  5227. this.isSysPic = false;
  5228. this.$forceUpdate();
  5229. },
  5230. addImg(e) {
  5231. var el = e.currentTarget;
  5232. el.getElementsByTagName("input")[0].click();
  5233. e.target.value = "";
  5234. },
  5235. addChaptersTools(i) {
  5236. this.chapTools = [
  5237. {
  5238. tools: [],
  5239. toolDetail: "",
  5240. },
  5241. ];
  5242. this.chapCount = i;
  5243. this.dialogVisible4 = true;
  5244. },
  5245. isNoFinsh() {
  5246. this.$message.warning("功能正在开发中");
  5247. },
  5248. addAttText(i) {
  5249. this.AttText = {
  5250. title: "",
  5251. text: "",
  5252. };
  5253. this.taskCount = i;
  5254. this.AttTextType = 0;
  5255. this.$forceUpdate();
  5256. this.dialogVisible6 = true;
  5257. },
  5258. openLine(i) {
  5259. this.line = "";
  5260. this.lineCount = i;
  5261. this.lineType = 0;
  5262. this.$forceUpdate();
  5263. this.dialogVisible7 = true;
  5264. },
  5265. deleteM(i, j) {
  5266. this.testJson.testJson[i].timuList.splice(j, 1);
  5267. },
  5268. beforeUploadTiMu(event, i) {
  5269. const loading = this.openLoading();
  5270. var file = event.target.files[0];
  5271. var credentials = {
  5272. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5273. secretAccessKey: "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",
  5274. }; //秘钥形式的登录上传
  5275. window.AWS.config.update(credentials);
  5276. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5277. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5278. var _this = this;
  5279. if (file) {
  5280. var params = {
  5281. Key:
  5282. file.name.split(".")[0] +
  5283. new Date().getTime() +
  5284. "." +
  5285. file.name.split(".")[file.name.split(".").length - 1],
  5286. ContentType: file.type,
  5287. Body: file,
  5288. "Access-Control-Allow-Credentials": "*",
  5289. ACL: "public-read",
  5290. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5291. var options = {
  5292. partSize: 2048 * 1024 * 1024,
  5293. queueSize: 2,
  5294. leavePartsOnError: true,
  5295. };
  5296. bucket
  5297. .upload(params, options)
  5298. .on("httpUploadProgress", function (evt) {
  5299. //这里可以写进度条
  5300. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5301. })
  5302. .send(function (err, data) {
  5303. loading.close();
  5304. if (err) {
  5305. _this.$message.error("上传失败");
  5306. } else {
  5307. if (_this.testJson.testJson[i].timuList) {
  5308. _this.testJson.testJson[i].timuList.push({
  5309. src: data.Location,
  5310. });
  5311. } else {
  5312. _this.testJson.testJson[i].timuList = [];
  5313. _this.testJson.testJson[i].timuList.push({
  5314. src: data.Location,
  5315. });
  5316. }
  5317. _this.imgChange3(i);
  5318. _this.$forceUpdate();
  5319. }
  5320. });
  5321. }
  5322. },
  5323. beforeUploadTi(event, i, j) {
  5324. const loading = this.openLoading();
  5325. var file = event.target.files[0];
  5326. var credentials = {
  5327. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5328. secretAccessKey: "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",
  5329. }; //秘钥形式的登录上传
  5330. window.AWS.config.update(credentials);
  5331. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5332. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5333. var _this = this;
  5334. if (file) {
  5335. var params = {
  5336. Key:
  5337. file.name.split(".")[0] +
  5338. new Date().getTime() +
  5339. "." +
  5340. file.name.split(".")[file.name.split(".").length - 1],
  5341. ContentType: file.type,
  5342. Body: file,
  5343. "Access-Control-Allow-Credentials": "*",
  5344. ACL: "public-read",
  5345. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5346. var options = {
  5347. partSize: 2048 * 1024 * 1024,
  5348. queueSize: 2,
  5349. leavePartsOnError: true,
  5350. };
  5351. bucket
  5352. .upload(params, options)
  5353. .on("httpUploadProgress", function (evt) {
  5354. //这里可以写进度条
  5355. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5356. })
  5357. .send(function (err, data) {
  5358. loading.close();
  5359. if (err) {
  5360. _this.$message.error("上传失败");
  5361. } else {
  5362. _this.testJson.testJson[i].checkList[j] = {};
  5363. _this.testJson.testJson[i].checkList[j].src = data.Location;
  5364. _this.testJson.testJson[i].checkList[j].imgType = 1;
  5365. _this.imgChange2(i, j);
  5366. _this.$forceUpdate();
  5367. }
  5368. });
  5369. }
  5370. },
  5371. beforeUpload1(event, type) {
  5372. // const loading = this.openLoading();
  5373. var file = event.target.files[0];
  5374. var credentials = {
  5375. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5376. secretAccessKey: "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",
  5377. }; //秘钥形式的登录上传
  5378. window.AWS.config.update(credentials);
  5379. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5380. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5381. var _this = this;
  5382. if (file) {
  5383. var params = {
  5384. Key:
  5385. file.name.split(".")[0] +
  5386. new Date().getTime() +
  5387. "." +
  5388. file.name.split(".")[file.name.split(".").length - 1],
  5389. ContentType: file.type,
  5390. Body: file,
  5391. "Access-Control-Allow-Credentials": "*",
  5392. ACL: "public-read",
  5393. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5394. var options = {
  5395. partSize: 2048 * 1024 * 1024,
  5396. queueSize: 2,
  5397. leavePartsOnError: true,
  5398. };
  5399. bucket
  5400. .upload(params, options)
  5401. .on("httpUploadProgress", function (evt) {
  5402. //这里可以写进度条
  5403. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5404. })
  5405. .send(function (err, data) {
  5406. // loading.close();
  5407. if (err) {
  5408. var a = _this.$refs.upload1.uploadFiles;
  5409. a.splice(a.length - 1, a.length);
  5410. _this.$message.error("上传失败");
  5411. } else {
  5412. _this.cover.push({
  5413. name: file.name,
  5414. url: data.Location,
  5415. uid: file.uid,
  5416. });
  5417. _this.imgChange1(null, null, 1, null);
  5418. _this.choosePicVisible = false;
  5419. console.log(data.Location);
  5420. }
  5421. });
  5422. }
  5423. },
  5424. beforeUploadSelect(event, type) {
  5425. // const loading = this.openLoading();
  5426. var file = event.target.files[0];
  5427. var credentials = {
  5428. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5429. secretAccessKey: "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",
  5430. }; //秘钥形式的登录上传
  5431. window.AWS.config.update(credentials);
  5432. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5433. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5434. var _this = this;
  5435. if (file) {
  5436. var params = {
  5437. Key:
  5438. file.name.split(".")[0] +
  5439. new Date().getTime() +
  5440. "." +
  5441. file.name.split(".")[file.name.split(".").length - 1],
  5442. ContentType: file.type,
  5443. Body: file,
  5444. "Access-Control-Allow-Credentials": "*",
  5445. ACL: "public-read",
  5446. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5447. var options = {
  5448. partSize: 2048 * 1024 * 1024,
  5449. queueSize: 2,
  5450. leavePartsOnError: true,
  5451. };
  5452. bucket
  5453. .upload(params, options)
  5454. .on("httpUploadProgress", function (evt) {
  5455. //这里可以写进度条
  5456. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5457. })
  5458. .send(function (err, data) {
  5459. // loading.close();
  5460. if (err) {
  5461. _this.$message.error("上传失败");
  5462. } else {
  5463. _this.selectJson.url = data.Location;
  5464. console.log(data.Location);
  5465. }
  5466. });
  5467. }
  5468. },
  5469. chooseSysPic(p) {
  5470. this.cover.push({
  5471. name: "系统图片.png",
  5472. url: p,
  5473. });
  5474. this.imgChange1(null, null, 1, null);
  5475. this.isSysPic = true;
  5476. this.sysPicVisible = false;
  5477. },
  5478. beforeUpload(data) {
  5479. this.$refs.upload1.uploadFiles;
  5480. this.uploadLoading1 = true;
  5481. var file = data.file;
  5482. var credentials = {
  5483. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5484. secretAccessKey: "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",
  5485. }; //秘钥形式的登录上传
  5486. window.AWS.config.update(credentials);
  5487. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5488. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5489. var _this = this;
  5490. if (file) {
  5491. var params = {
  5492. Key:
  5493. file.name.split(".")[0] +
  5494. new Date().getTime() +
  5495. "." +
  5496. file.name.split(".")[file.name.split(".").length - 1],
  5497. ContentType: file.type,
  5498. Body: file,
  5499. "Access-Control-Allow-Credentials": "*",
  5500. ACL: "public-read",
  5501. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5502. var options = {
  5503. partSize: 2048 * 1024 * 1024,
  5504. queueSize: 2,
  5505. leavePartsOnError: true,
  5506. };
  5507. bucket
  5508. .upload(params, options)
  5509. .on("httpUploadProgress", function (evt) {
  5510. //这里可以写进度条
  5511. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5512. })
  5513. .send(function (err, data) {
  5514. _this.uploadLoading1 = false;
  5515. if (err) {
  5516. var a = _this.$refs.upload1.uploadFiles;
  5517. a.splice(a.length - 1, a.length);
  5518. _this.$message.error("上传失败");
  5519. } else {
  5520. //上传成功处理
  5521. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  5522. name: file.name,
  5523. url: data.Location,
  5524. uid: file.uid,
  5525. });
  5526. _this.imgChange();
  5527. console.log(data.Location);
  5528. }
  5529. });
  5530. }
  5531. },
  5532. onExceed() {
  5533. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  5534. },
  5535. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  5536. // const loading = this.openLoading();
  5537. var file = event.target.files[0];
  5538. var credentials = {
  5539. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5540. secretAccessKey: "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",
  5541. }; //秘钥形式的登录上传
  5542. window.AWS.config.update(credentials);
  5543. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5544. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5545. var _this = this;
  5546. if (type == 3) {
  5547. var b = [
  5548. "DOC",
  5549. "DOCX",
  5550. "DOCM",
  5551. "DOTM",
  5552. "DOTX",
  5553. "PPTX",
  5554. "PPSX",
  5555. "PPT",
  5556. "PPS",
  5557. "PPTM",
  5558. "POTM",
  5559. "PPAM",
  5560. "POTX",
  5561. "PPSM",
  5562. ];
  5563. if (
  5564. b.indexOf(
  5565. file.name
  5566. .split(".")
  5567. [file.name.split(".").length - 1].toLocaleUpperCase()
  5568. ) != -1
  5569. ) {
  5570. if (file.size / 1024 / 1024 > 80) {
  5571. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5572. this.inputShow = true;
  5573. var a = _this.$refs.upload1.uploadFiles;
  5574. a.splice(a.length - 1, a.length);
  5575. // loading.close();
  5576. return;
  5577. }
  5578. } else if (
  5579. file.name
  5580. .split(".")
  5581. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5582. ) {
  5583. if (file.size / 1024 / 1024 > 80) {
  5584. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5585. this.inputShow = true;
  5586. var a = _this.$refs.upload1.uploadFiles;
  5587. a.splice(a.length - 1, a.length);
  5588. // loading.close();
  5589. return;
  5590. }
  5591. }
  5592. }
  5593. this.inputShow = false;
  5594. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5595. itemTaskIndex
  5596. ].progress = 0;
  5597. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5598. itemTaskIndex
  5599. ].proVisible = true;
  5600. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5601. itemTaskIndex
  5602. ].isFinishSize = 0;
  5603. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5604. itemTaskIndex
  5605. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5606. _this.$forceUpdate();
  5607. if (file) {
  5608. var params = {
  5609. Key:
  5610. file.name.split(".")[0] +
  5611. new Date().getTime() +
  5612. "." +
  5613. file.name.split(".")[file.name.split(".").length - 1],
  5614. ContentType: file.type,
  5615. Body: file,
  5616. "Access-Control-Allow-Credentials": "*",
  5617. ACL: "public-read",
  5618. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5619. var options = {
  5620. partSize: 2048 * 1024 * 1024,
  5621. queueSize: 2,
  5622. leavePartsOnError: true,
  5623. };
  5624. bucket
  5625. .upload(params, options)
  5626. .on("httpUploadProgress", function (evt) {
  5627. //这里可以写进度条
  5628. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5629. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5630. itemTaskIndex
  5631. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5632. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5633. itemTaskIndex
  5634. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5635. _this.$forceUpdate();
  5636. })
  5637. .send(function (err, data) {
  5638. // loading.close();
  5639. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5640. itemTaskIndex
  5641. ].progress = 100;
  5642. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5643. itemTaskIndex
  5644. ].isFinishSize =
  5645. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5646. itemTaskIndex
  5647. ].isAllSize;
  5648. _this.$forceUpdate();
  5649. setTimeout(() => {
  5650. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5651. itemTaskIndex
  5652. ].proVisible = false;
  5653. _this.$forceUpdate();
  5654. }, 1000);
  5655. _this.inputShow = true;
  5656. if (err) {
  5657. var a = _this.$refs.upload1.uploadFiles;
  5658. a.splice(a.length - 1, a.length);
  5659. _this.$message.error("上传失败");
  5660. } else {
  5661. if (type == 2 || type == 3) {
  5662. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5663. itemTaskIndex
  5664. ].chapterData.push({
  5665. name: file.name,
  5666. url: data.Location,
  5667. uid: file.uid,
  5668. type: type,
  5669. });
  5670. _this.imgChange1(null, null, type, itemTaskIndex);
  5671. } else if (type == 4) {
  5672. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5673. itemTaskIndex
  5674. ].fileList1.push({
  5675. name: file.name,
  5676. url: data.Location,
  5677. uid: file.uid,
  5678. });
  5679. _this.imgChange1(null, null, type, itemTaskIndex);
  5680. } else if (type == 5) {
  5681. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5682. itemTaskIndex
  5683. ].homeworkList.push({
  5684. name: file.name,
  5685. url: data.Location,
  5686. uid: file.uid,
  5687. });
  5688. _this.imgChange1(null, null, type, itemTaskIndex);
  5689. }
  5690. console.log(data.Location);
  5691. }
  5692. });
  5693. }
  5694. },
  5695. beforeUpload3(event, unitIndex, type, itemTaskIndex, string) {
  5696. // const loading = this.openLoading();
  5697. var file = event.target.files[0];
  5698. var credentials = {
  5699. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5700. secretAccessKey: "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",
  5701. }; //秘钥形式的登录上传
  5702. window.AWS.config.update(credentials);
  5703. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5704. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5705. var _this = this;
  5706. if (type == 3) {
  5707. var b = [
  5708. "DOC",
  5709. "DOCX",
  5710. "DOCM",
  5711. "DOTM",
  5712. "DOTX",
  5713. "PPTX",
  5714. "PPSX",
  5715. "PPT",
  5716. "PPS",
  5717. "PPTM",
  5718. "POTM",
  5719. "PPAM",
  5720. "POTX",
  5721. "PPSM",
  5722. ];
  5723. if (
  5724. b.indexOf(
  5725. file.name
  5726. .split(".")
  5727. [file.name.split(".").length - 1].toLocaleUpperCase()
  5728. ) != -1
  5729. ) {
  5730. if (file.size / 1024 / 1024 > 80) {
  5731. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5732. this.inputShow = true;
  5733. var a = _this.$refs.upload1.uploadFiles;
  5734. a.splice(a.length - 1, a.length);
  5735. // loading.close();
  5736. return;
  5737. }
  5738. } else if (
  5739. file.name
  5740. .split(".")
  5741. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5742. ) {
  5743. if (file.size / 1024 / 1024 > 80) {
  5744. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5745. this.inputShow = true;
  5746. var a = _this.$refs.upload1.uploadFiles;
  5747. a.splice(a.length - 1, a.length);
  5748. // loading.close();
  5749. return;
  5750. }
  5751. }
  5752. }
  5753. this.inputShow = false;
  5754. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5755. itemTaskIndex
  5756. ].progress = 0;
  5757. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5758. itemTaskIndex
  5759. ].proVisible = true;
  5760. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5761. itemTaskIndex
  5762. ].isFinishSize = 0;
  5763. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5764. itemTaskIndex
  5765. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5766. _this.$forceUpdate();
  5767. if (file) {
  5768. var params = {
  5769. Key:
  5770. file.name.split(".")[0] +
  5771. new Date().getTime() +
  5772. "." +
  5773. file.name.split(".")[file.name.split(".").length - 1],
  5774. ContentType: file.type,
  5775. Body: file,
  5776. "Access-Control-Allow-Credentials": "*",
  5777. ACL: "public-read",
  5778. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5779. var options = {
  5780. partSize: 2048 * 1024 * 1024,
  5781. queueSize: 2,
  5782. leavePartsOnError: true,
  5783. };
  5784. bucket
  5785. .upload(params, options)
  5786. .on("httpUploadProgress", function (evt) {
  5787. //这里可以写进度条
  5788. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5789. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5790. itemTaskIndex
  5791. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5792. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5793. itemTaskIndex
  5794. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5795. _this.$forceUpdate();
  5796. })
  5797. .send(function (err, data) {
  5798. // loading.close();
  5799. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5800. itemTaskIndex
  5801. ].progress = 100;
  5802. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5803. itemTaskIndex
  5804. ].isFinishSize =
  5805. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5806. itemTaskIndex
  5807. ].isAllSize;
  5808. _this.$forceUpdate();
  5809. setTimeout(() => {
  5810. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5811. itemTaskIndex
  5812. ].proVisible = false;
  5813. _this.$forceUpdate();
  5814. }, 1000);
  5815. _this.inputShow = true;
  5816. if (err) {
  5817. var a = _this.$refs.upload1.uploadFiles;
  5818. a.splice(a.length - 1, a.length);
  5819. _this.$message.error("上传失败");
  5820. } else {
  5821. if (type == 2 || type == 3) {
  5822. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5823. itemTaskIndex
  5824. ].chapterData.push({
  5825. // name: file.name,
  5826. name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5827. itemTaskIndex
  5828. ].chapterData.length+1),
  5829. url: data.Location,
  5830. uid: file.uid,
  5831. type: type,
  5832. text: string,
  5833. });
  5834. _this.imgChange1(null, null, type, itemTaskIndex);
  5835. } else if (type == 4) {
  5836. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5837. itemTaskIndex
  5838. ].fileList1.push({
  5839. // name: file.name,
  5840. name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5841. itemTaskIndex
  5842. ].chapterData.length+1),
  5843. url: data.Location,
  5844. uid: file.uid,
  5845. });
  5846. _this.imgChange1(null, null, type, itemTaskIndex);
  5847. } else if (type == 5) {
  5848. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5849. itemTaskIndex
  5850. ].homeworkList.push({
  5851. // name: file.name,
  5852. name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5853. itemTaskIndex
  5854. ].chapterData.length+1),
  5855. url: data.Location,
  5856. uid: file.uid,
  5857. });
  5858. _this.imgChange1(null, null, type, itemTaskIndex);
  5859. }
  5860. console.log(data.Location);
  5861. }
  5862. });
  5863. }
  5864. },
  5865. addunit() {
  5866. this.unitJson.push({
  5867. dyName: "", //单元标题
  5868. isUpdate: 1,
  5869. easy: this.unitJson[this.unitJson.length - 1].easy ? 1 : 0,
  5870. chapterInfo: [
  5871. {
  5872. isread: false,
  5873. chapterid: this.guid(),
  5874. title: "",
  5875. courseName: "",
  5876. taskJson: [
  5877. {
  5878. task: "",
  5879. taskDetail: "",
  5880. chapterData: [],
  5881. toolText: "",
  5882. toolChoose: [
  5883. {
  5884. tool: [],
  5885. toolDetail: "",
  5886. toolType: 0,
  5887. askCount: 1,
  5888. askTitle: "",
  5889. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5890. },
  5891. ],
  5892. isShowTools: false,
  5893. askCount: 1,
  5894. isFold: 0,
  5895. askTitle: "",
  5896. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5897. checkJson: [{ checkCount: [], checkPerent: [] }],
  5898. homeworkList: [],
  5899. },
  5900. ],
  5901. itemCount: 1,
  5902. fileList1: [],
  5903. video: [],
  5904. testData: [],
  5905. pData: [],
  5906. templateArray: [],
  5907. },
  5908. ],
  5909. });
  5910. this.addindex = this.unitJson.length - 1;
  5911. setTimeout(() => {
  5912. this.unitIndex = this.unitJson.length - 1;
  5913. this.unitSet(this.unitIndex);
  5914. }, 0);
  5915. },
  5916. addToolFun(itemTaskIndex) {
  5917. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5918. itemTaskIndex
  5919. ].toolChoose.push({
  5920. tool: [],
  5921. toolDetail: "",
  5922. toolType: 0,
  5923. askCount: 1,
  5924. askTitle: "",
  5925. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5926. });
  5927. },
  5928. addTaskBorder() {
  5929. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  5930. task: "",
  5931. taskDetail: "",
  5932. chapterData: [],
  5933. toolText: "",
  5934. toolChoose: [
  5935. {
  5936. tool: [],
  5937. toolDetail: "",
  5938. toolType: 0,
  5939. askCount: 1,
  5940. askTitle: "",
  5941. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5942. },
  5943. ],
  5944. isShowTools: false,
  5945. askCount: 1,
  5946. isFold: 0,
  5947. askTitle: "",
  5948. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5949. checkJson: [{ checkCount: [], checkPerent: [] }],
  5950. homeworkList: [],
  5951. });
  5952. },
  5953. add(e, i) {
  5954. var el = e.currentTarget;
  5955. el.getElementsByTagName("input")[0].click();
  5956. },
  5957. fold(i, e, type) {
  5958. var a = e.currentTarget.parentElement.parentElement;
  5959. var b = e.currentTarget.parentElement;
  5960. if (type == 1) {
  5961. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  5962. a.className += " smallTaskBorder";
  5963. b.className += " funBlockTop";
  5964. } else {
  5965. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  5966. a.className = "taskBorder";
  5967. b.className = "funBlock";
  5968. }
  5969. console.log(e);
  5970. },
  5971. deleteHomeworkBox(unitIndex, index, i) {
  5972. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  5973. this.taskCount
  5974. ].homeworkList.splice(i, 1);
  5975. },
  5976. getStudent() {
  5977. let params = {
  5978. oid: this.oid,
  5979. cu: "",
  5980. cn: this.searchPeople,
  5981. };
  5982. this.ajax
  5983. .get(this.$store.state.api + "selectStudentAdd", params)
  5984. .then((res) => {
  5985. this.studentJuri = res.data[0];
  5986. })
  5987. .catch((err) => {
  5988. this.isLoading = false;
  5989. console.error(err);
  5990. });
  5991. },
  5992. getTeacher() {
  5993. let params = {
  5994. oid:
  5995. this.org && this.org != "undefined" && this.org != "null"
  5996. ? this.org
  5997. : this.oid,
  5998. cu: "",
  5999. cn: this.searchTN,
  6000. };
  6001. this.ajax
  6002. .get(
  6003. this.$store.state.api +
  6004. (this.org && this.org != "undefined" && this.org != "null"
  6005. ? "selectTeacherAddOrg"
  6006. : "selectTeacherAdd"),
  6007. params
  6008. )
  6009. .then((res) => {
  6010. let teacherJuri = res.data[0];
  6011. for (var i = 0; i < teacherJuri.length; i++) {
  6012. if (teacherJuri[i].userid == this.userid) {
  6013. teacherJuri.splice(i, 1);
  6014. break;
  6015. }
  6016. }
  6017. this.teacherJuri = teacherJuri;
  6018. })
  6019. .catch((err) => {
  6020. console.error(err);
  6021. });
  6022. },
  6023. searchStudent() {
  6024. this.getStudent();
  6025. },
  6026. //获取班级列表
  6027. getClass() {
  6028. let params = {
  6029. oid: this.oid,
  6030. cn: this.classSearch,
  6031. };
  6032. this.ajax
  6033. .get(this.$store.state.api + "selectClassBySchoolSearch", params)
  6034. .then((res) => {
  6035. if (!this.grade.length) {
  6036. this.grade = res.data[0];
  6037. }
  6038. this.grade2 = res.data[0];
  6039. this.classJuri = res.data[0];
  6040. })
  6041. .catch((err) => {
  6042. this.isLoading = false;
  6043. console.error(err);
  6044. });
  6045. },
  6046. getChapterData(e, i, j, ic, type) {
  6047. e.stopPropagation();
  6048. this.updataC = true;
  6049. this.icc = ic;
  6050. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  6051. console.log("还不能下载图片喔");
  6052. }
  6053. },
  6054. deleteChapterData(e, i, j, ic, taskI) {
  6055. e.stopPropagation();
  6056. this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  6057. },
  6058. updataVideoT(e, i, j, ic) {
  6059. e.stopPropagation();
  6060. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6061. ic
  6062. ].name = e.target.value;
  6063. },
  6064. upCd(e, i, j, taskCount, ic) {
  6065. e.stopPropagation();
  6066. if (ic == 0) {
  6067. return;
  6068. }
  6069. var a =
  6070. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1];
  6071. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1] =
  6072. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic];
  6073. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  6074. this.$forceUpdate();
  6075. },
  6076. downCd(e, i, j, taskCount, ic) {
  6077. e.stopPropagation();
  6078. if (
  6079. ic ==
  6080. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData.length -
  6081. 1
  6082. ) {
  6083. return;
  6084. }
  6085. var a =
  6086. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1];
  6087. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1] =
  6088. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic];
  6089. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  6090. this.$forceUpdate();
  6091. },
  6092. addWork() {
  6093. let cPan = 1;
  6094. for (var i = 0; i < this.unitJson.length; i++) {
  6095. for (
  6096. var j = 0;
  6097. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6098. j++
  6099. ) {
  6100. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  6101. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  6102. if (
  6103. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  6104. ) {
  6105. for (
  6106. var z = 0;
  6107. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  6108. z++
  6109. ) {
  6110. if (
  6111. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  6112. .length
  6113. ) {
  6114. this.$message.error("请把工具添加完整");
  6115. cPan = 2;
  6116. break;
  6117. }
  6118. }
  6119. }
  6120. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6121. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6122. i
  6123. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6124. return ele.value != "";
  6125. });
  6126. }
  6127. }
  6128. }
  6129. if (cPan == 2) {
  6130. this.steps--;
  6131. return;
  6132. }
  6133. for (var i = 0; i < this.unitJson.length; i++) {
  6134. delete this.unitJson[i].isUpdate;
  6135. }
  6136. let params = [
  6137. {
  6138. uid: this.userid,
  6139. title: this.courseName.replace(/%/g, "%25"),
  6140. brief: this.courseText.replace(/%/g, "%25"),
  6141. cover:
  6142. this.cover.length > 0
  6143. ? JSON.stringify(this.cover)
  6144. : JSON.stringify([
  6145. {
  6146. name: "noBanner.jpg",
  6147. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6148. uid: 1656409780264,
  6149. status: "success",
  6150. },
  6151. ]),
  6152. evaId: this.evalua,
  6153. astudent:
  6154. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6155. see: this.isTeacherSee == true ? 1 : 0,
  6156. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6157. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  6158. courseType: JSON.stringify(this.courseTypeId),
  6159. ateacher:
  6160. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6161. },
  6162. ];
  6163. this.ajax
  6164. .post(this.$store.state.api + "addWorkNew2", params)
  6165. .then((res) => {
  6166. console.log(this.steps);
  6167. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  6168. this.$message({
  6169. message: "新增成功",
  6170. type: "success",
  6171. });
  6172. }
  6173. this.number = res.data.ordernumber;
  6174. this.courseId = res.data.courseId;
  6175. this.cid = res.data.courseId;
  6176. this.courseUserid = this.userid;
  6177. this.islogin = true;
  6178. })
  6179. .catch((err) => {
  6180. this.$message.error("网络不佳");
  6181. console.error(err);
  6182. });
  6183. },
  6184. goCourse() {
  6185. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  6186. },
  6187. updateWork2() {
  6188. let _unitIndex = this.unitIndex;
  6189. let cPan = 1;
  6190. for (
  6191. var j = 0;
  6192. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  6193. j++
  6194. ) {
  6195. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].proVisible = false;
  6196. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  6197. j
  6198. ].proVisible2 = false;
  6199. if (
  6200. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  6201. .length > 1
  6202. ) {
  6203. for (
  6204. var z = 0;
  6205. z <
  6206. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  6207. .length;
  6208. z++
  6209. ) {
  6210. if (
  6211. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose[
  6212. z
  6213. ].tool.length
  6214. ) {
  6215. this.$message.error("请把工具添加完整");
  6216. cPan = 2;
  6217. break;
  6218. }
  6219. }
  6220. }
  6221. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  6222. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  6223. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  6224. (ele) => {
  6225. return ele.value != "";
  6226. }
  6227. );
  6228. }
  6229. }
  6230. if (cPan == 2) {
  6231. this.steps--;
  6232. return;
  6233. }
  6234. let params = [
  6235. {
  6236. cid: this.cid,
  6237. chapters: JSON.stringify(this.unitJson),
  6238. uid: this.userid,
  6239. unitIndex: _unitIndex,
  6240. },
  6241. ];
  6242. this.ajax
  6243. .post(this.$store.state.api + "updateWorkNew4", params)
  6244. .then((res) => {
  6245. this.$message({
  6246. message: "修改成功",
  6247. type: "success",
  6248. });
  6249. this.courseId = this.cid;
  6250. })
  6251. .catch((err) => {
  6252. this.$message.error("网络不佳");
  6253. console.error(err);
  6254. });
  6255. },
  6256. updateWork() {
  6257. let cPan = 1;
  6258. for (var i = 0; i < this.unitJson.length; i++) {
  6259. for (
  6260. var j = 0;
  6261. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6262. j++
  6263. ) {
  6264. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  6265. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  6266. if (
  6267. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  6268. ) {
  6269. for (
  6270. var z = 0;
  6271. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  6272. z++
  6273. ) {
  6274. if (
  6275. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  6276. .length
  6277. ) {
  6278. this.$message.error("请把工具添加完整");
  6279. cPan = 2;
  6280. break;
  6281. }
  6282. }
  6283. }
  6284. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6285. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6286. i
  6287. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6288. return ele.value != "";
  6289. });
  6290. }
  6291. }
  6292. }
  6293. if (cPan == 2) {
  6294. this.steps--;
  6295. return;
  6296. }
  6297. for (var i = 0; i < this.unitJson.length; i++) {
  6298. delete this.unitJson[i].isUpdate;
  6299. }
  6300. let params = [
  6301. {
  6302. cid: this.cid,
  6303. title: this.courseName.replace(/%/g, "%25"),
  6304. brief: this.courseText.replace(/%/g, "%25"),
  6305. cover:
  6306. this.cover.length > 0
  6307. ? JSON.stringify(this.cover)
  6308. : JSON.stringify([
  6309. {
  6310. name: "noBanner.jpg",
  6311. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6312. uid: 1656409780264,
  6313. status: "success",
  6314. },
  6315. ]),
  6316. evaId: this.evalua,
  6317. astudent:
  6318. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6319. see: this.isTeacherSee == true ? 1 : 0,
  6320. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6321. template: this.myWord != "undefined" ? this.myWord : [],
  6322. uid: this.userid,
  6323. courseType: JSON.stringify(this.courseTypeId),
  6324. ateacher:
  6325. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6326. },
  6327. ];
  6328. this.ajax
  6329. .post(this.$store.state.api + "updateWorkNew2", params)
  6330. .then((res) => {
  6331. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  6332. if (this.cidType == 1) {
  6333. this.$message({
  6334. message: "修改成功",
  6335. type: "success",
  6336. });
  6337. } else {
  6338. this.$message({
  6339. message: "新增成功",
  6340. type: "success",
  6341. });
  6342. }
  6343. }
  6344. this.number = this.nbOrder;
  6345. this.courseId = this.cid;
  6346. })
  6347. .catch((err) => {
  6348. this.$message.error("网络不佳");
  6349. console.error(err);
  6350. });
  6351. },
  6352. guid() {
  6353. var _num,
  6354. i,
  6355. _guid = "";
  6356. for (i = 0; i < 32; i++) {
  6357. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  6358. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  6359. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  6360. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  6361. _guid += "-";
  6362. }
  6363. }
  6364. return _guid;
  6365. },
  6366. insertWord() {
  6367. this.dialogVisible1 = true;
  6368. this.updateBoolean2 = false;
  6369. this.tTitle = "";
  6370. this.tdetail = "";
  6371. },
  6372. addWord() {
  6373. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  6374. name: this.tTitle,
  6375. content: this.tdetail,
  6376. uid: this.guid(),
  6377. });
  6378. this.dialogVisible1 = false;
  6379. },
  6380. upWord() {},
  6381. selectWord(uid, i, c) {
  6382. this.dialogVisible1 = true;
  6383. this.updateBoolean2 = true;
  6384. if (
  6385. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  6386. ) {
  6387. this.tTitle =
  6388. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  6389. this.tdetail =
  6390. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  6391. }
  6392. },
  6393. isAddPP() {
  6394. if (this.checkboxList.length > 0) {
  6395. this.$message({
  6396. message: "添加成功",
  6397. type: "success",
  6398. });
  6399. this.dialogVisible3 = false;
  6400. } else {
  6401. this.$message({
  6402. message: "请添加课程成员",
  6403. type: "error",
  6404. });
  6405. }
  6406. },
  6407. isAddClass() {
  6408. this.dialogVisibleClass = false;
  6409. },
  6410. isAddPPTeacher() {
  6411. this.dialogVisibleMember = false;
  6412. this.setMan();
  6413. },
  6414. getTemplate() {
  6415. this.ajax
  6416. .get(this.$store.state.api + "getCourseTemplateT", "")
  6417. .then((res) => {
  6418. this.templateArray = res.data[0];
  6419. this.$forceUpdate();
  6420. })
  6421. .catch((err) => {});
  6422. },
  6423. clearChoose() {
  6424. this.clearArray.splice(this.templateC.id, 1);
  6425. this.dialogVisible2 = false;
  6426. },
  6427. clearAttText() {
  6428. this.AttText = {
  6429. title: "",
  6430. text: "",
  6431. };
  6432. this.dialogVisible6 = false;
  6433. },
  6434. clearLine() {
  6435. this.line = "";
  6436. this.dialogVisible7 = false;
  6437. },
  6438. checkTemplate(res) {
  6439. let _this = this;
  6440. _this
  6441. .$confirm("确定选择此模板吗?", "提示", {
  6442. confirmButtonText: "确定",
  6443. cancelButtonText: "取消",
  6444. type: "warning",
  6445. })
  6446. .then(() => {
  6447. _this.unitJson = JSON.parse(res.chapters);
  6448. _this.steps++;
  6449. setTimeout(() => {
  6450. this.checkEva(this.checkId);
  6451. }, 1000);
  6452. })
  6453. .catch(() => {
  6454. return;
  6455. });
  6456. },
  6457. checkTemplate1(w) {
  6458. this.steps++;
  6459. },
  6460. checkTemplate2() {
  6461. let _this = this;
  6462. _this
  6463. .$confirm("确定选择空模板吗?", "提示", {
  6464. confirmButtonText: "确定",
  6465. cancelButtonText: "取消",
  6466. type: "warning",
  6467. })
  6468. .then(() => {
  6469. _this.unitIndex = 0;
  6470. _this.unitJson = [
  6471. {
  6472. dyName: "", //单元标题
  6473. chapterInfo: [
  6474. {
  6475. isread: false,
  6476. chapterid: this.guid(),
  6477. title: "",
  6478. courseName: "",
  6479. taskJson: [
  6480. {
  6481. task: "",
  6482. taskDetail: "",
  6483. chapterData: [],
  6484. toolText: "",
  6485. toolChoose: [
  6486. {
  6487. tool: [],
  6488. toolDetail: "",
  6489. toolType: 0,
  6490. askCount: 1,
  6491. askTitle: "",
  6492. askJson: [
  6493. { askstitle: "", askItem: 1, checkList: [] },
  6494. ],
  6495. },
  6496. ],
  6497. isShowTools: false,
  6498. askCount: 1,
  6499. isFold: 0,
  6500. askTitle: "",
  6501. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6502. checkJson: [{ checkCount: [], checkPerent: [] }],
  6503. homeworkList: [],
  6504. },
  6505. ],
  6506. itemCount: 1,
  6507. fileList1: [],
  6508. video: [],
  6509. testData: [],
  6510. pData: [],
  6511. templateArray: [],
  6512. },
  6513. ],
  6514. },
  6515. ];
  6516. this.steps++;
  6517. this.updateWork();
  6518. })
  6519. .catch(() => {
  6520. return;
  6521. });
  6522. },
  6523. checkTemplate3() {
  6524. let _this = this;
  6525. _this
  6526. .$confirm("确定选择简易模式吗?", "提示", {
  6527. confirmButtonText: "确定",
  6528. cancelButtonText: "取消",
  6529. type: "warning",
  6530. })
  6531. .then(() => {
  6532. _this.unitIndex = 0;
  6533. _this.unitJson = [
  6534. {
  6535. dyName: "", //单元标题
  6536. easy: 1,
  6537. chapterInfo: [
  6538. {
  6539. isread: false,
  6540. chapterid: this.guid(),
  6541. title: "",
  6542. courseName: "",
  6543. taskJson: [
  6544. {
  6545. task: "",
  6546. taskDetail: "",
  6547. chapterData: [],
  6548. toolText: "",
  6549. toolChoose: [
  6550. {
  6551. tool: [],
  6552. toolDetail: "",
  6553. toolType: 0,
  6554. askCount: 1,
  6555. askTitle: "",
  6556. askJson: [
  6557. { askstitle: "", askItem: 1, checkList: [] },
  6558. ],
  6559. },
  6560. ],
  6561. isShowTools: false,
  6562. askCount: 1,
  6563. isFold: 0,
  6564. askTitle: "",
  6565. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6566. checkJson: [{ checkCount: [], checkPerent: [] }],
  6567. homeworkList: [],
  6568. },
  6569. ],
  6570. itemCount: 1,
  6571. fileList1: [],
  6572. video: [],
  6573. testData: [],
  6574. pData: [],
  6575. templateArray: [],
  6576. },
  6577. ],
  6578. },
  6579. ];
  6580. this.steps++;
  6581. this.updateWork();
  6582. })
  6583. .catch(() => {
  6584. return;
  6585. });
  6586. },
  6587. wordNext() {
  6588. this.dialogVisible2 = false;
  6589. },
  6590. isAddOrUpdateAttText() {
  6591. if (this.AttTextType == 0) {
  6592. this.addAttTextMessage();
  6593. } else {
  6594. this.updateAttText();
  6595. }
  6596. },
  6597. isAddOrUpdateLine() {
  6598. if (!this.lineTitle) {
  6599. this.$message.error("请填写链接标题");
  6600. return;
  6601. }
  6602. if (this.lineType == 0) {
  6603. this.addLine();
  6604. } else {
  6605. this.updateLine();
  6606. }
  6607. },
  6608. addAttTextMessage() {
  6609. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6610. this.taskCount
  6611. ].chapterData.push({
  6612. name: this.AttText.title,
  6613. url: this.AttText.text,
  6614. type: 6,
  6615. });
  6616. this.imgChange1(null, null, 6, this.taskCount);
  6617. this.dialogVisible6 = false;
  6618. },
  6619. selectAttText(itemTaskIndex, i) {
  6620. this.AttText.title =
  6621. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6622. itemTaskIndex
  6623. ].chapterData[i].name;
  6624. this.AttText.text =
  6625. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6626. itemTaskIndex
  6627. ].chapterData[i].url;
  6628. this.taskCount = itemTaskIndex;
  6629. this.AttTextIndex = i;
  6630. this.AttTextType = 1;
  6631. this.dialogVisible6 = true;
  6632. },
  6633. updateAttText() {
  6634. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6635. this.taskCount
  6636. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  6637. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6638. this.taskCount
  6639. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  6640. this.dialogVisible6 = false;
  6641. },
  6642. addLine() {
  6643. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6644. this.lineCount
  6645. ].chapterData.push({
  6646. name: "链接",
  6647. title: this.lineTitle,
  6648. url: this.line,
  6649. type: 8,
  6650. });
  6651. this.imgChange1(null, null, 8, this.lineCount);
  6652. this.dialogVisible7 = false;
  6653. },
  6654. selectLine(itemTaskIndex, i) {
  6655. this.line =
  6656. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6657. itemTaskIndex
  6658. ].chapterData[i].url;
  6659. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6660. itemTaskIndex
  6661. ].chapterData[i].title
  6662. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6663. .chapterData[i].title
  6664. : "";
  6665. this.taskCount = itemTaskIndex;
  6666. this.lineCount = i;
  6667. this.lineType = 1;
  6668. this.dialogVisible7 = true;
  6669. },
  6670. updateLine() {
  6671. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6672. this.taskCount
  6673. ].chapterData[this.lineCount].url = this.line;
  6674. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6675. this.taskCount
  6676. ].chapterData[this.lineCount].title = this.lineTitle;
  6677. this.dialogVisible7 = false;
  6678. },
  6679. addPP() {
  6680. this.dialogVisible3 = true;
  6681. },
  6682. goTo(path) {
  6683. this.$router.push(path);
  6684. },
  6685. openTools(itemTaskIndex, i, toolIndex) {
  6686. this.toolIndex = toolIndex;
  6687. this.taskCount = itemTaskIndex;
  6688. if (i == 4) {
  6689. if (toolIndex == null) {
  6690. var a =
  6691. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6692. .chapterData;
  6693. for (var i = 0; i < a.length; i++) {
  6694. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  6695. this.askJson =
  6696. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6697. itemTaskIndex
  6698. ].chapterData[i].askJson;
  6699. }
  6700. }
  6701. } else {
  6702. this.askJson = JSON.parse(
  6703. JSON.stringify(
  6704. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6705. itemTaskIndex
  6706. ].toolChoose[toolIndex]
  6707. )
  6708. );
  6709. }
  6710. this.dialogVisible5 = true;
  6711. } else if (i == 45) {
  6712. if (
  6713. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6714. .toolChoose[toolIndex].testJson
  6715. ) {
  6716. this.testJson = JSON.parse(
  6717. JSON.stringify(
  6718. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6719. itemTaskIndex
  6720. ].toolChoose[toolIndex].testJson
  6721. )
  6722. );
  6723. } else {
  6724. var testJson = {
  6725. testCount: 1,
  6726. testTitle: "",
  6727. testJson: [
  6728. {
  6729. teststitle: "",
  6730. testItem: 1,
  6731. checkList: [],
  6732. timuList: [],
  6733. answer: [],
  6734. type: "1",
  6735. },
  6736. ],
  6737. };
  6738. this.testJson = testJson;
  6739. }
  6740. this.dialogVisibleChoice = true;
  6741. } else if (i == 47) {
  6742. if (
  6743. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6744. .toolChoose[toolIndex].sentenceList
  6745. ) {
  6746. this.sentenceList = JSON.parse(
  6747. JSON.stringify(
  6748. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6749. itemTaskIndex
  6750. ].toolChoose[toolIndex].sentenceList
  6751. )
  6752. );
  6753. } else {
  6754. var sentenceList = [
  6755. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  6756. ];
  6757. this.sentenceList = sentenceList;
  6758. }
  6759. this.dialogVisibleSentence = true;
  6760. } else if (i == 48) {
  6761. if (
  6762. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6763. .toolChoose[toolIndex].tableJson
  6764. ) {
  6765. this.tableJson = JSON.parse(
  6766. JSON.stringify(
  6767. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6768. itemTaskIndex
  6769. ].toolChoose[toolIndex].tableJson
  6770. )
  6771. );
  6772. } else {
  6773. var tableJson = { text: "" };
  6774. this.tableJson = tableJson;
  6775. }
  6776. this.dialogVisibleTable = true;
  6777. } else if (i == 52) {
  6778. if (
  6779. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6780. .toolChoose[toolIndex].wordJson
  6781. ) {
  6782. this.wordJson = JSON.parse(
  6783. JSON.stringify(
  6784. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6785. itemTaskIndex
  6786. ].toolChoose[toolIndex].wordJson
  6787. )
  6788. );
  6789. } else {
  6790. var wordJson = { text: "" };
  6791. this.wordJson = wordJson;
  6792. }
  6793. this.dialogVisibleWord = true;
  6794. } else if (i == 50) {
  6795. if (
  6796. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6797. .toolChoose[toolIndex].uploadJson
  6798. ) {
  6799. this.uploadJson = JSON.parse(
  6800. JSON.stringify(
  6801. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6802. itemTaskIndex
  6803. ].toolChoose[toolIndex].uploadJson
  6804. )
  6805. );
  6806. } else {
  6807. var uploadJson = [];
  6808. this.uploadJson = uploadJson;
  6809. }
  6810. this.dialogVisibleMoreUpload = true;
  6811. } else if (i == 10) {
  6812. if (
  6813. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6814. .toolChoose[toolIndex].preTime
  6815. ) {
  6816. this.preTime = JSON.parse(
  6817. JSON.stringify(
  6818. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6819. itemTaskIndex
  6820. ].toolChoose[toolIndex].preTime
  6821. )
  6822. );
  6823. } else {
  6824. var preTime = 0;
  6825. this.preTime = preTime;
  6826. }
  6827. this.dialogVisiblePreTime = true;
  6828. } else if (i == 49) {
  6829. if (
  6830. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6831. .toolChoose[toolIndex].groupJson
  6832. ) {
  6833. this.groupJson = JSON.parse(
  6834. JSON.stringify(
  6835. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6836. itemTaskIndex
  6837. ].toolChoose[toolIndex].groupJson
  6838. )
  6839. );
  6840. } else {
  6841. var groupJson = {
  6842. group: [{ name: "第1组" }],
  6843. number: undefined,
  6844. islock: 1,
  6845. };
  6846. this.groupJson = groupJson;
  6847. }
  6848. this.dialogVisibleGroup = true;
  6849. } else if (i == 15) {
  6850. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6851. itemTaskIndex
  6852. ].toolChoose[toolIndex].answerQ
  6853. ? JSON.parse(
  6854. JSON.stringify(
  6855. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6856. itemTaskIndex
  6857. ].toolChoose[toolIndex].answerQ
  6858. )
  6859. )
  6860. : "";
  6861. this.dialogVisible8 = true;
  6862. } else if (i == 40) {
  6863. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6864. itemTaskIndex
  6865. ].toolChoose[toolIndex].rateJson
  6866. ? JSON.parse(
  6867. JSON.stringify(
  6868. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6869. itemTaskIndex
  6870. ].toolChoose[toolIndex].rateJson
  6871. )
  6872. )
  6873. : [{ detail: "", score: 5, value: "" }]; //{detail:"",score:5,value:""}
  6874. this.selectSteps = 1;
  6875. this.dialogVisibleRate = true;
  6876. } else if (i == 42) {
  6877. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6878. itemTaskIndex
  6879. ].toolChoose[toolIndex].answerQ
  6880. ? JSON.parse(
  6881. JSON.stringify(
  6882. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6883. itemTaskIndex
  6884. ].toolChoose[toolIndex].answerQ
  6885. )
  6886. )
  6887. : "";
  6888. this.dialogVisibleMp3 = true;
  6889. } else if (i == 41) {
  6890. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6891. itemTaskIndex
  6892. ].toolChoose[toolIndex].selectJson
  6893. ? JSON.parse(
  6894. JSON.stringify(
  6895. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6896. itemTaskIndex
  6897. ].toolChoose[toolIndex].selectJson
  6898. )
  6899. )
  6900. : { url: "", select: [], answer: [] };
  6901. this.selectSteps = 1;
  6902. this.dialogVisibleSelect = true;
  6903. } else if (i == 3) {
  6904. window.parent.postMessage(
  6905. {
  6906. tools: "3y",
  6907. cid: this.cid,
  6908. stage: this.unitIndex,
  6909. task: itemTaskIndex,
  6910. tool: toolIndex,
  6911. },
  6912. "*"
  6913. );
  6914. } else if (i == 1) {
  6915. window.parent.postMessage(
  6916. {
  6917. tools: "1y",
  6918. cid: this.cid,
  6919. stage: this.unitIndex,
  6920. task: itemTaskIndex,
  6921. tool: toolIndex,
  6922. },
  6923. "*"
  6924. );
  6925. }
  6926. },
  6927. chapAddTools(i) {
  6928. if (this.chapTools[0].tools.length == 0) {
  6929. this.chapTools[0].tools.push(i);
  6930. } else {
  6931. if (this.chapTools[0].tools.indexOf(i) != -1) {
  6932. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  6933. } else {
  6934. this.chapTools[0].tools.push(i);
  6935. }
  6936. }
  6937. this.$forceUpdate();
  6938. },
  6939. addChaptersDataTools() {
  6940. if (this.chapTools[0].tools.indexOf(4) != -1) {
  6941. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6942. this.chapCount
  6943. ].chapterData.push({
  6944. name: this.chapTools[0].toolDetail,
  6945. url: this.chapTools[0].tools,
  6946. type: 7,
  6947. askJson: this.askJson,
  6948. });
  6949. } else {
  6950. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6951. this.chapCount
  6952. ].chapterData.push({
  6953. name: this.chapTools[0].toolDetail,
  6954. url: this.chapTools[0].tools,
  6955. type: 7,
  6956. });
  6957. }
  6958. this.imgChange1(null, null, 7, this.chapCount);
  6959. this.dialogVisible4 = false;
  6960. },
  6961. addTools(i, itemTaskIndex, toolIndex) {
  6962. // if (
  6963. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6964. // .toolChoose[toolIndex].tool.length == 0
  6965. // ) {
  6966. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6967. // itemTaskIndex
  6968. // ].toolChoose[toolIndex].tool.push(i);
  6969. // } else {
  6970. // if (
  6971. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6972. // itemTaskIndex
  6973. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  6974. // ) {
  6975. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6976. // itemTaskIndex
  6977. // ].toolChoose[toolIndex].tool.splice(
  6978. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6979. // itemTaskIndex
  6980. // ].toolChoose[toolIndex].tool.indexOf(i),
  6981. // 1
  6982. // );
  6983. // } else {
  6984. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6985. // itemTaskIndex
  6986. // ].toolChoose[toolIndex].tool.push(i);
  6987. // }
  6988. // console.log(
  6989. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6990. // .toolChoose[toolIndex].tool
  6991. // );
  6992. // }
  6993. if (i == 4) {
  6994. if (
  6995. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6996. .toolChoose[toolIndex].askJson.askTitle == "" ||
  6997. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6998. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  6999. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7000. .toolChoose[toolIndex].askJson[0].checkList < 2
  7001. ) {
  7002. this.openTools(itemTaskIndex, 4, toolIndex);
  7003. // this.$message({
  7004. // message: "请填写完整问卷内容",
  7005. // type: "error",
  7006. // });
  7007. return;
  7008. }
  7009. }
  7010. if (i == 45) {
  7011. if (
  7012. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7013. .toolChoose[toolIndex].testJson ||
  7014. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7015. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  7016. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7017. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  7018. ) {
  7019. this.openTools(itemTaskIndex, 45, toolIndex);
  7020. // this.$message({
  7021. // message: "请填写完整问卷内容",
  7022. // type: "error",
  7023. // });
  7024. return;
  7025. }
  7026. }
  7027. if (i == 47) {
  7028. if (
  7029. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7030. .toolChoose[toolIndex].sentenceList ||
  7031. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7032. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  7033. ) {
  7034. this.openTools(itemTaskIndex, 47, toolIndex);
  7035. return;
  7036. }
  7037. }
  7038. // if (i == 48) {
  7039. // if (
  7040. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7041. // .toolChoose[toolIndex].tableJson
  7042. // ) {
  7043. // this.openTools(itemTaskIndex, 48, toolIndex);
  7044. // return;
  7045. // }
  7046. // }
  7047. if (i == 50) {
  7048. if (
  7049. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7050. .toolChoose[toolIndex].uploadJson
  7051. ) {
  7052. this.openTools(itemTaskIndex, 50, toolIndex);
  7053. return;
  7054. }
  7055. }
  7056. if (i == 49) {
  7057. if (
  7058. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7059. .toolChoose[toolIndex].groupJson
  7060. ) {
  7061. this.openTools(itemTaskIndex, 49, toolIndex);
  7062. return;
  7063. }
  7064. }
  7065. if (i == 15) {
  7066. if (
  7067. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7068. .toolChoose[toolIndex].answerQ ||
  7069. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7070. .toolChoose[toolIndex].answerQ == ""
  7071. ) {
  7072. this.openTools(itemTaskIndex, 15, toolIndex);
  7073. // this.$message({
  7074. // message: "请填写问答内容",
  7075. // type: "error",
  7076. // });
  7077. return;
  7078. }
  7079. }
  7080. if (i == 40) {
  7081. if (
  7082. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7083. .toolChoose[toolIndex].rateJson ||
  7084. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7085. .toolChoose[toolIndex].rateJson.length
  7086. ) {
  7087. this.openTools(itemTaskIndex, 40, toolIndex);
  7088. return;
  7089. }
  7090. }
  7091. if (i == 41) {
  7092. if (
  7093. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7094. .toolChoose[toolIndex].selectJson ||
  7095. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7096. .toolChoose[toolIndex].selectJson.url == "" ||
  7097. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7098. .toolChoose[toolIndex].selectJson.select.length ||
  7099. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7100. .toolChoose[toolIndex].selectJson.answer.length
  7101. ) {
  7102. this.openTools(itemTaskIndex, 41, toolIndex);
  7103. return;
  7104. }
  7105. }
  7106. if (i == 42) {
  7107. if (
  7108. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7109. .toolChoose[toolIndex].answerQ ||
  7110. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7111. .toolChoose[toolIndex].answerQ == ""
  7112. ) {
  7113. this.openTools(itemTaskIndex, 42, toolIndex);
  7114. return;
  7115. }
  7116. }
  7117. if (
  7118. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7119. .toolChoose[toolIndex].tool.length > 0
  7120. ) {
  7121. if (
  7122. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7123. itemTaskIndex
  7124. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  7125. ) {
  7126. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7127. itemTaskIndex
  7128. ].toolChoose[toolIndex].tool.splice(
  7129. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7130. itemTaskIndex
  7131. ].toolChoose[toolIndex].tool.indexOf(i),
  7132. 1
  7133. );
  7134. } else {
  7135. // this.$message({
  7136. // message: "每个工具只能添加一个",
  7137. // type: "error",
  7138. // });
  7139. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7140. itemTaskIndex
  7141. ].toolChoose[toolIndex].tool = [];
  7142. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7143. itemTaskIndex
  7144. ].toolChoose[toolIndex].tool.push(i);
  7145. }
  7146. } else {
  7147. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7148. itemTaskIndex
  7149. ].toolChoose[toolIndex].tool.push(i);
  7150. }
  7151. this.$forceUpdate();
  7152. },
  7153. addAskList() {
  7154. this.askJson.askJson.push({
  7155. askstitle: "",
  7156. askItem: 1,
  7157. checkList: [],
  7158. });
  7159. this.askJson.askCount++;
  7160. },
  7161. addTestList() {
  7162. this.testJson.testJson.push({
  7163. teststitle: "",
  7164. testItem: 1,
  7165. checkList: [],
  7166. timuList: [],
  7167. answer: [],
  7168. type: "1",
  7169. });
  7170. this.testJson.testCount++;
  7171. },
  7172. deleteAskList(index) {
  7173. this.askJson.askJson.splice(index, 1);
  7174. this.askJson.askCount--;
  7175. },
  7176. deleteTestList(index) {
  7177. this.testJson.testJson.splice(index, 1);
  7178. this.testJson.testCount--;
  7179. },
  7180. addcheckList(json) {
  7181. json.checkList.length++;
  7182. json.askItem++;
  7183. },
  7184. deletecheckList(json) {
  7185. json.checkList.length--;
  7186. json.askItem--;
  7187. },
  7188. addTcheckList(json) {
  7189. json.checkList.length++;
  7190. json.testItem++;
  7191. },
  7192. deleteTcheckList(json) {
  7193. json.checkList.length--;
  7194. json.testItem--;
  7195. },
  7196. checkTestType(type, json) {
  7197. json.type = type;
  7198. json.answer = [];
  7199. },
  7200. addSelectList(json) {
  7201. json.select.push("");
  7202. json.answer.push("");
  7203. },
  7204. deleteSelectList(json) {
  7205. // json.select.length--;
  7206. // json.answer.length--;
  7207. json.select.splice(json.select.length - 1, 1);
  7208. json.answer.splice(json.answer.length - 1, 1);
  7209. },
  7210. addAsk() {
  7211. if (this.askJson.askTitle === "") {
  7212. this.$message.error("标题不能为空!");
  7213. return;
  7214. }
  7215. var aj = this.askJson.askJson;
  7216. var b = 1;
  7217. for (var i = 0; i < aj.length; i++) {
  7218. if (aj[i].askstitle === "") {
  7219. var a = 1;
  7220. for (let index = 0; index < aj[i].askItem; index++) {
  7221. const element = aj[i].checkList[index]
  7222. ? aj[i].checkList[index]
  7223. : "";
  7224. if (element != "") {
  7225. b++;
  7226. this.$message.error("填写了选项,题目不能为空!");
  7227. return;
  7228. } else {
  7229. a++;
  7230. }
  7231. }
  7232. if (b == 1) {
  7233. this.$message.error("至少填写一个问题");
  7234. return;
  7235. }
  7236. } else if (aj[i].askstitle != "") {
  7237. for (let index = 0; index < aj[i].askItem; index++) {
  7238. const element = aj[i].checkList[index]
  7239. ? aj[i].checkList[index]
  7240. : "";
  7241. var index = 0;
  7242. for (var z = 0; z < aj[i].checkList.length; z++) {
  7243. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7244. if (checkC != "") {
  7245. index++;
  7246. } else {
  7247. this.$message.error("选项不能为空!");
  7248. return;
  7249. }
  7250. }
  7251. b++;
  7252. if (index < 2) {
  7253. this.$message.error("填写了的题目,选项至少要有两项!");
  7254. return;
  7255. }
  7256. }
  7257. }
  7258. }
  7259. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  7260. var elc = el.checkList.filter((element) => {
  7261. return element != "";
  7262. });
  7263. return el.askstitle != "" && elc.length != 0;
  7264. });
  7265. if (!this.dialogVisible4) {
  7266. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7267. this.taskCount
  7268. ].toolChoose[this.toolIndex] = this.askJson;
  7269. }
  7270. this.dialogVisible5 = false;
  7271. if (
  7272. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7273. .toolChoose[this.toolIndex].tool != 4
  7274. ) {
  7275. this.addTools(4, this.taskCount, this.toolIndex);
  7276. }
  7277. },
  7278. addTest() {
  7279. // if (this.testJson.testTitle === "") {
  7280. // this.$message.error("标题不能为空!");
  7281. // return;
  7282. // }
  7283. var aj = this.testJson.testJson;
  7284. var b = 1;
  7285. for (var i = 0; i < aj.length; i++) {
  7286. if (aj[i].teststitle === "" && aj[i].timuList.length == 0) {
  7287. var a = 1;
  7288. for (let index = 0; index < aj[i].testItem; index++) {
  7289. const element = aj[i].checkList[index]
  7290. ? aj[i].checkList[index]
  7291. : "";
  7292. if (element != "") {
  7293. b++;
  7294. this.$message.error("填写了选项,题目不能为空!");
  7295. return;
  7296. } else {
  7297. a++;
  7298. }
  7299. }
  7300. if (b == 1) {
  7301. this.$message.error("至少填写一个问题");
  7302. return;
  7303. }
  7304. } else if (aj[i].teststitle != "" || aj[i].timuList.length > 0) {
  7305. for (let index = 0; index < aj[i].testItem; index++) {
  7306. const element = aj[i].checkList[index]
  7307. ? aj[i].checkList[index]
  7308. : "";
  7309. var index = 0;
  7310. for (var z = 0; z < aj[i].checkList.length; z++) {
  7311. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7312. if (checkC != "") {
  7313. index++;
  7314. } else {
  7315. this.$message.error("选项不能为空!");
  7316. return;
  7317. }
  7318. }
  7319. b++;
  7320. if (index < 2) {
  7321. this.$message.error("填写了的题目,选项至少要有两项!");
  7322. return;
  7323. }
  7324. if (
  7325. (aj[i].type == "2" && !aj[i].answer.length) ||
  7326. (aj[i].type == "1" && aj[i].answer !== 0 && !aj[i].answer)
  7327. ) {
  7328. this.$message.error("有题目未选择答案请选择答案");
  7329. return;
  7330. }
  7331. }
  7332. }
  7333. }
  7334. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  7335. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  7336. var elc = el.checkList.filter((element) => {
  7337. return element != "";
  7338. });
  7339. return (
  7340. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  7341. );
  7342. });
  7343. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7344. this.taskCount
  7345. ].toolChoose[this.toolIndex].testJson = isTestJson;
  7346. this.dialogVisibleChoice = false;
  7347. if (
  7348. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7349. .toolChoose[this.toolIndex].tool != 45
  7350. ) {
  7351. this.addTools(45, this.taskCount, this.toolIndex);
  7352. }
  7353. },
  7354. addAnswer() {
  7355. if (this.answerQ == "") {
  7356. this.$message.error("请输入您想要问的问题");
  7357. return;
  7358. }
  7359. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7360. this.taskCount
  7361. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7362. this.dialogVisible8 = false;
  7363. if (
  7364. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7365. .toolChoose[this.toolIndex].tool != 15
  7366. ) {
  7367. this.addTools(15, this.taskCount, this.toolIndex);
  7368. }
  7369. },
  7370. addMp3Answer() {
  7371. if (this.answerQ == "") {
  7372. this.$message.error("请输入您想要回答的问题");
  7373. return;
  7374. }
  7375. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7376. this.taskCount
  7377. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7378. this.dialogVisibleMp3 = false;
  7379. },
  7380. addRateAnswer() {
  7381. var a = 1;
  7382. for (var i = 0; i < this.rateJson.length; i++) {
  7383. if (this.rateJson[i].value == "") {
  7384. a = 2;
  7385. break;
  7386. }
  7387. }
  7388. if (a == 2) {
  7389. this.$message.error("请把评价信息填写完整");
  7390. return;
  7391. }
  7392. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7393. this.taskCount
  7394. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  7395. this.dialogVisibleRate = false;
  7396. if (
  7397. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7398. .toolChoose[this.toolIndex].tool != 40
  7399. ) {
  7400. this.addTools(40, this.taskCount, this.toolIndex);
  7401. }
  7402. },
  7403. addSelectAnswer() {
  7404. if (this.selectJson.url == "") {
  7405. this.$message.error("请上传题目");
  7406. return;
  7407. }
  7408. if (!this.selectJson.select.length) {
  7409. this.$message.error("请添加选项");
  7410. return;
  7411. }
  7412. if (!this.selectJson.answer.length) {
  7413. this.$message.error("请设置答案");
  7414. return;
  7415. }
  7416. var a = 1;
  7417. for (var i = 0; i < this.selectJson.answer.length; i++) {
  7418. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  7419. a = 2;
  7420. }
  7421. }
  7422. if (a == 2) {
  7423. this.$message.error("请设置答案");
  7424. return;
  7425. }
  7426. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7427. this.taskCount
  7428. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  7429. this.dialogVisibleSelect = false;
  7430. if (
  7431. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7432. .toolChoose[this.toolIndex].tool != 41
  7433. ) {
  7434. this.addTools(41, this.taskCount, this.toolIndex);
  7435. }
  7436. },
  7437. nextSelectSteps() {
  7438. if (this.selectJson.url == "") {
  7439. this.$message.error("请上传题目");
  7440. return;
  7441. }
  7442. if (!this.selectJson.select.length) {
  7443. this.$message.error("请添加选项");
  7444. return;
  7445. }
  7446. var a = 1;
  7447. for (var i = 0; i < this.selectJson.select.length; i++) {
  7448. if (!this.selectJson.select[i]) {
  7449. a = 2;
  7450. }
  7451. }
  7452. if (a == 2) {
  7453. this.$message.error("添加的选项不能为空");
  7454. return;
  7455. }
  7456. this.selectSteps++;
  7457. },
  7458. selectCourseDetail() {
  7459. if (this.cid == "" || this.cid == undefined) {
  7460. console.log("这是新增课程");
  7461. this.selectAllType();
  7462. } else {
  7463. this.cidType = 1;
  7464. let params = {
  7465. cid: this.cid,
  7466. };
  7467. this.ajax
  7468. .get(this.$store.state.api + "select_course_detail", params)
  7469. .then((res) => {
  7470. this.loading = true;
  7471. this.unitJson = JSON.parse(res.data[0][0].chapters);
  7472. for (var j = 0; j < this.unitJson.length; j++) {
  7473. for (
  7474. var k = 0;
  7475. k < this.unitJson[j].chapterInfo[0].taskJson.length;
  7476. k++
  7477. ) {
  7478. this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose = this
  7479. .unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7480. ? this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7481. : [];
  7482. let _chapterData = [];
  7483. for (
  7484. var c = 0;
  7485. c <
  7486. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData
  7487. .length;
  7488. c++
  7489. ) {
  7490. if (
  7491. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7492. ) {
  7493. _chapterData.push(
  7494. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7495. );
  7496. }
  7497. }
  7498. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData =
  7499. _chapterData;
  7500. }
  7501. }
  7502. this.$forceUpdate();
  7503. this.courseName = res.data[0][0].title;
  7504. this.courseText = res.data[0][0].brief;
  7505. this.evalua = res.data[0][0].evaId;
  7506. this.cover = JSON.parse(res.data[0][0].cover);
  7507. this.noneBtnImg = this.cover.length >= 1;
  7508. // this.checkboxList =
  7509. // res.data[0][0].course_student.length > 0
  7510. // ? JSON.parse(res.data[0][0].course_student)
  7511. // : [];
  7512. this.checkboxList2 = res.data[0][0].juri
  7513. ? res.data[0][0].juri.split(",")
  7514. : [];
  7515. this.checkboxList3 = res.data[0][0].course_teacher
  7516. ? res.data[0][0].course_teacher.split(",")
  7517. : [];
  7518. // this.isTeacherSee =
  7519. // res.data[0][0].is_teacher_look == 0 ? true : false;
  7520. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  7521. this.myWord = res.data[0][0].template;
  7522. this.templateC.id = "123";
  7523. this.courseUserid = res.data[0][0].userid;
  7524. this.nbOrder = res.data[0][0].ordernumber;
  7525. this.courseTypeId = [];
  7526. for (var i = 0; i < res.data[1].length; i++) {
  7527. this.courseTypeId.push(res.data[1][i].typeid);
  7528. }
  7529. console.log(this.courseTypeId);
  7530. // if (this.timer) clearInterval(this.timer);
  7531. if (this.timer) clearTimeout(this.timer);
  7532. this.timer = null;
  7533. // this.timer = setInterval(() => {
  7534. this.seleteCourseUpdate();
  7535. this.setMan();
  7536. this.selectAllType();
  7537. // }, 5000);
  7538. this.$forceUpdate();
  7539. setTimeout(() => {
  7540. this.checkEva(this.evalua);
  7541. }, 0);
  7542. })
  7543. .catch((err) => {
  7544. console.error(err);
  7545. });
  7546. }
  7547. },
  7548. seleteCourseUpdate() {
  7549. let params = {
  7550. cid: this.cid,
  7551. };
  7552. this.ajax
  7553. .get(this.$store.state.api + "select_course_detail", params)
  7554. .then((res) => {
  7555. // console.log(this.unitJson);
  7556. let unitJson = JSON.parse(res.data[0][0].chapters);
  7557. this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  7558. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  7559. let _unitJson = [];
  7560. let _chapAarry = [];
  7561. let _unitIndex = JSON.parse(JSON.stringify(this.unitIndex));
  7562. let _unitIndex2 = JSON.parse(JSON.stringify(this.unitIndex));
  7563. let index = 1;
  7564. let chapindex;
  7565. if (_unitJson2.length > unitJson.length) {
  7566. for (let c = 0; c < _unitJson2.length; c++) {
  7567. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  7568. }
  7569. for (let j = 0; j < unitJson.length; j++) {
  7570. let count = 0;
  7571. for (let k = 0; k < _unitJson2.length; k++) {
  7572. if (
  7573. unitJson[j].chapterInfo[0].chapterid ==
  7574. _unitJson2[k].chapterInfo[0].chapterid
  7575. ) {
  7576. count++;
  7577. _chapAarry.splice(
  7578. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7579. 1
  7580. );
  7581. _unitJson.push(unitJson[j]);
  7582. break;
  7583. }
  7584. }
  7585. // if(count === 0){
  7586. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7587. // }
  7588. }
  7589. for (let k = 0; k < _unitJson2.length; k++) {
  7590. if (_unitJson2[k].isUpdate == 1) {
  7591. _chapAarry.splice(
  7592. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7593. 1
  7594. );
  7595. _unitJson.push(_unitJson2[k]);
  7596. }
  7597. }
  7598. console.log(_chapAarry);
  7599. for (let d = 0; d < _unitJson2.length; d++) {
  7600. if (
  7601. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  7602. ) {
  7603. if (_unitIndex == d) {
  7604. index = 2;
  7605. }
  7606. chapindex = d;
  7607. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7608. }
  7609. }
  7610. } else {
  7611. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  7612. }
  7613. for (let i = 0; i < unitJson.length; i++) {
  7614. if (
  7615. (i < _unitJson.length - 1 || i == _unitJson.length - 1) &&
  7616. _unitJson[i].chapterInfo[0].chapterid !=
  7617. unitJson[i].chapterInfo[0].chapterid
  7618. ) {
  7619. if (i == _unitJson.length - 1) {
  7620. // this.unitIndex++
  7621. _unitIndex2++;
  7622. }
  7623. _unitJson.splice(i, 0, unitJson[i]);
  7624. } else if (i > _unitJson.length - 1) {
  7625. _unitJson.push(unitJson[i]);
  7626. } else if (
  7627. _unitJson[i].chapterInfo[0].chapterid ==
  7628. unitJson[i].chapterInfo[0].chapterid
  7629. ) {
  7630. _unitJson[i] = unitJson[i];
  7631. }
  7632. // if (i == _unitIndex) {
  7633. // continue;
  7634. // } else
  7635. }
  7636. if (_chapAarry.length && index != 2) {
  7637. if (chapindex < _unitIndex) {
  7638. this.isDelete = 2;
  7639. // this.unitIndex--;
  7640. _unitIndex2--;
  7641. } else if (
  7642. _unitJson2[_unitIndex].chapterInfo[0].chapterid !=
  7643. _unitJson[_unitIndex].chapterInfo[0].chapterid
  7644. ) {
  7645. this.isDelete = 2;
  7646. for (let n = 0; n < _unitJson.length; n++) {
  7647. if (
  7648. _unitJson2[_unitIndex].chapterInfo[0].chapterid ==
  7649. _unitJson[n].chapterInfo[0].chapterid
  7650. ) {
  7651. // this.unitIndex = n;
  7652. _unitIndex2 = n;
  7653. _unitJson[n] = _unitJson2[_unitIndex];
  7654. break;
  7655. }
  7656. }
  7657. }
  7658. } else if (index != 2) {
  7659. // _unitJson[this.unitIndex] = _unitJson2[_unitIndex];
  7660. _unitJson2[_unitIndex];
  7661. for (
  7662. var ci = 0;
  7663. ci < _unitJson2[_unitIndex].chapterInfo[0].taskJson.length;
  7664. ci++
  7665. ) {
  7666. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose =
  7667. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose
  7668. ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7669. .toolChoose
  7670. : [];
  7671. let _chapterData = [];
  7672. for (
  7673. var c = 0;
  7674. c <
  7675. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData
  7676. .length;
  7677. c++
  7678. ) {
  7679. if (
  7680. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7681. .chapterData[c]
  7682. ) {
  7683. _chapterData.push(
  7684. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7685. .chapterData[c]
  7686. );
  7687. }
  7688. }
  7689. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
  7690. _chapterData;
  7691. }
  7692. _unitJson[_unitIndex2] = _unitJson2[_unitIndex];
  7693. }
  7694. if (index == 1) {
  7695. this.unitJson = _unitJson;
  7696. this.$forceUpdate();
  7697. setTimeout(() => {
  7698. if (this.unitIndex != _unitIndex2) {
  7699. this.isDelete = 2;
  7700. this.unitIndex = _unitIndex2;
  7701. }
  7702. }, 0);
  7703. this.timer = setTimeout(() => {
  7704. this.seleteCourseUpdate();
  7705. }, 1000);
  7706. } else if (index == 2) {
  7707. let _this = this;
  7708. _this
  7709. .$confirm(
  7710. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  7711. "提示",
  7712. {
  7713. confirmButtonText: "需要",
  7714. cancelButtonText: "取消",
  7715. type: "warning",
  7716. }
  7717. )
  7718. .then(() => {
  7719. if (_this.time()) {
  7720. _this.restoreWork(
  7721. _chapAarry[0],
  7722. _unitJson,
  7723. chapindex,
  7724. _unitJson2,
  7725. _unitIndex2
  7726. );
  7727. }
  7728. })
  7729. .catch(() => {
  7730. _this.unitJson = _unitJson;
  7731. _this.$forceUpdate();
  7732. setTimeout(() => {
  7733. if (this.unitIndex != _unitIndex2) {
  7734. this.isDelete = 2;
  7735. this.unitIndex = _unitIndex2;
  7736. }
  7737. }, 0);
  7738. _this.timer = setTimeout(() => {
  7739. _this.seleteCourseUpdate();
  7740. }, 1000);
  7741. });
  7742. }
  7743. })
  7744. .catch((err) => {
  7745. console.error(err);
  7746. });
  7747. },
  7748. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  7749. let params = [
  7750. {
  7751. cid: this.cid,
  7752. chapters: JSON.stringify(this.unitJson),
  7753. uid: this.userid,
  7754. chapid: chapid,
  7755. },
  7756. ];
  7757. this.ajax
  7758. .post(this.$store.state.api + "restoreWork", params)
  7759. .then((res) => {
  7760. this.$message({
  7761. message: "恢复成功",
  7762. type: "success",
  7763. });
  7764. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  7765. this.unitJson = unitJson;
  7766. this.$forceUpdate();
  7767. setTimeout(() => {
  7768. if (this.unitIndex != unitIndex2) {
  7769. this.isDelete = 2;
  7770. this.unitIndex = unitIndex2;
  7771. }
  7772. }, 0);
  7773. this.timer = setTimeout(() => {
  7774. this.seleteCourseUpdate();
  7775. }, 1000);
  7776. })
  7777. .catch((err) => {
  7778. this.$message.error("网络不佳");
  7779. console.error(err);
  7780. });
  7781. },
  7782. getTypeName() {
  7783. console.log(this.courseTypeId);
  7784. this.$forceUpdate();
  7785. },
  7786. selectAllType() {
  7787. let params = {
  7788. org: this.org && this.org != "" ? this.org : "",
  7789. oid: this.oid && this.oid != "" ? this.oid : "",
  7790. };
  7791. this.ajax
  7792. .get(this.$store.state.api + "selectAllType", params)
  7793. .then((res) => {
  7794. this.CourseType = res.data;
  7795. this.CourseType2 = [
  7796. { name: "学科" },
  7797. { name: "主题" },
  7798. { name: "未来" },
  7799. ];
  7800. for (var cti = 0; cti < res.data[0].length; cti++) {
  7801. if (res.data[0][cti].name == "年级") {
  7802. this.CourseType2[1].id = res.data[0][cti].id;
  7803. } else if (res.data[0][cti].name == "主题") {
  7804. this.CourseType2[2].id = res.data[0][cti].id;
  7805. } else if (res.data[0][cti].name == "学科") {
  7806. this.CourseType2[0].id = res.data[0][cti].id;
  7807. }
  7808. }
  7809. let _courseTypeId = [];
  7810. for (var i = 0; i < res.data[0].length; i++) {
  7811. if (!this.cid) {
  7812. this.courseTypeId[res.data[0][i].id] = [];
  7813. }
  7814. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  7815. // }
  7816. this.CourseTypeJson[res.data[0][i].id] = [];
  7817. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7818. if (res.data[0][i].name == "栏目") {
  7819. this.CourseType[0][i].name = "主题";
  7820. }
  7821. }
  7822. if (res.data[2].length == 0 && res.data[3].length == 0) {
  7823. for (var j = 0; j < res.data[1].length; j++) {
  7824. if (
  7825. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  7826. _courseTypeId.indexOf(res.data[1][j].id) == -1
  7827. ) {
  7828. _courseTypeId.push(res.data[1][j].id);
  7829. }
  7830. if (res.data[0][i].id == res.data[1][j].pid) {
  7831. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  7832. }
  7833. }
  7834. } else {
  7835. if (res.data[2].length > 0) {
  7836. for (var j = 0; j < res.data[2].length; j++) {
  7837. if (
  7838. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  7839. _courseTypeId.indexOf(res.data[2][j].id) == -1
  7840. ) {
  7841. _courseTypeId.push(res.data[2][j].id);
  7842. }
  7843. if (res.data[0][i].id == res.data[2][j].pid) {
  7844. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  7845. }
  7846. }
  7847. }
  7848. if (res.data[3].length > 0) {
  7849. for (var j = 0; j < res.data[3].length; j++) {
  7850. if (
  7851. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  7852. _courseTypeId.indexOf(res.data[3][j].id) == -1
  7853. ) {
  7854. _courseTypeId.push(res.data[3][j].id);
  7855. }
  7856. if (res.data[0][i].id == res.data[3][j].pid) {
  7857. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  7858. }
  7859. }
  7860. }
  7861. }
  7862. }
  7863. this.courseTypeId = _courseTypeId;
  7864. })
  7865. .catch((err) => {
  7866. console.error(err);
  7867. });
  7868. },
  7869. selectType() {
  7870. this.ajax
  7871. .get(this.$store.state.api + "selectType")
  7872. .then((res) => {
  7873. this.CourseType = res.data;
  7874. for (var i = 0; i < res.data[0].length; i++) {
  7875. if (!this.cid) {
  7876. this.courseTypeId[res.data[0][i].id] = "";
  7877. }
  7878. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7879. if (res.data[0][i].name == "栏目") {
  7880. this.CourseType[0][i].name = "主题";
  7881. }
  7882. }
  7883. for (var j = 0; j < res.data[1].length; j++) {
  7884. if (res.data[0][i].id == res.data[1][j].pid) {
  7885. if (!this.CourseTypeJson[res.data[0][i].id]) {
  7886. this.CourseTypeJson[res.data[0][i].id] = [];
  7887. }
  7888. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  7889. }
  7890. }
  7891. }
  7892. this.selectTypeByOid();
  7893. this.selectTypeByOrg();
  7894. })
  7895. .catch((err) => {
  7896. console.error(err);
  7897. });
  7898. },
  7899. selectTypeByOid() {
  7900. let params = {
  7901. oid: this.oid,
  7902. };
  7903. this.ajax
  7904. .get(this.$store.state.api + "selectTypeByOid", params)
  7905. .then((res) => {
  7906. for (var i = 0; i < res.data[0].length; i++) {
  7907. for (var j = 0; j < res.data[1].length; j++) {
  7908. if (res.data[0][i].id == res.data[1][j].pid) {
  7909. if (!this.CourseTypeJson[res.data[0][i].id]) {
  7910. this.CourseTypeJson[res.data[0][i].id] = [];
  7911. }
  7912. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  7913. }
  7914. }
  7915. }
  7916. })
  7917. .catch((err) => {
  7918. console.error(err);
  7919. });
  7920. },
  7921. selectTypeByOrg() {
  7922. let params = {
  7923. oid: this.org,
  7924. };
  7925. this.ajax
  7926. .get(this.$store.state.api + "selectTypeByOrg", params)
  7927. .then((res) => {
  7928. for (var i = 0; i < res.data[0].length; i++) {
  7929. for (var j = 0; j < res.data[1].length; j++) {
  7930. if (res.data[0][i].id == res.data[1][j].pid) {
  7931. if (!this.CourseTypeJson[res.data[0][i].id]) {
  7932. this.CourseTypeJson[res.data[0][i].id] = [];
  7933. }
  7934. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  7935. }
  7936. }
  7937. }
  7938. this.$forceUpdate();
  7939. })
  7940. .catch((err) => {
  7941. console.error(err);
  7942. });
  7943. },
  7944. OtherMb(type) {
  7945. this.typeMode = type;
  7946. setTimeout(() => {
  7947. this.checkEva(this.checkId);
  7948. }, 0);
  7949. },
  7950. openMember() {
  7951. this.searchTN = "";
  7952. this.getTeacher();
  7953. this.dialogVisibleMember = true;
  7954. },
  7955. checkEva(id, type) {
  7956. this.dialogVisiblemb = false;
  7957. this.selectEva();
  7958. if (this.evalua != id && type == 2) {
  7959. this.$message.success("导入成功");
  7960. }
  7961. this.evalua = id;
  7962. this.checkId = id;
  7963. if (this.evalua != "") {
  7964. for (var i = 0; i < this.evaJuri.length; i++) {
  7965. if (this.evalua == this.evaJuri[i].id) {
  7966. this.eTitle = this.evaJuri[i].title;
  7967. this.eJson = JSON.parse(this.evaJuri[i].content);
  7968. }
  7969. }
  7970. this.data.data = [];
  7971. this.$forceUpdate();
  7972. setTimeout(() => {
  7973. this.setMindData();
  7974. }, 500);
  7975. }
  7976. },
  7977. deleteEva() {
  7978. let _this = this;
  7979. if (_this.evalua == "") {
  7980. this.$message.warning("内容已经清空了,请勿重复清空");
  7981. return;
  7982. }
  7983. _this
  7984. .$confirm("确定删除此目标吗?", "提示", {
  7985. confirmButtonText: "确定",
  7986. cancelButtonText: "取消",
  7987. type: "warning",
  7988. })
  7989. .then(() => {
  7990. _this.evalua = "";
  7991. _this.checkId = "";
  7992. _this.eTitle = "";
  7993. let _unitJson = _this.unitJson;
  7994. for (var i = 0; i < _unitJson.length; i++) {
  7995. let _task = _unitJson[i].chapterInfo[0].taskJson;
  7996. for (var j = 0; j < _task.length; j++) {
  7997. let _eList = _task[j].eList;
  7998. for (var k = 0; k < _eList.length; k++) {
  7999. delete _eList[k].target;
  8000. }
  8001. }
  8002. }
  8003. _this.$forceUpdate();
  8004. if (_this.cid) {
  8005. _this.updateWork();
  8006. }
  8007. })
  8008. .catch(() => {
  8009. return;
  8010. });
  8011. },
  8012. selectEva() {
  8013. let params = {
  8014. oid: this.oid,
  8015. };
  8016. this.ajax
  8017. .get(this.$store.state.api + "selectAllEvaluation", params)
  8018. .then((res) => {
  8019. this.evaJuri = res.data[0];
  8020. })
  8021. .catch((err) => {
  8022. console.error(err);
  8023. });
  8024. },
  8025. setMindData() {
  8026. let targetArray = [];
  8027. this.data.data = [];
  8028. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  8029. let _eJson = Object.keys(this.eJson);
  8030. let _e = this.eJson;
  8031. for (let i = 0; i < _eJson.length; i++) {
  8032. let element = _e[_eJson[i]];
  8033. this.data.data.push({
  8034. id: element.id,
  8035. parentid: "root",
  8036. topic: element.name,
  8037. });
  8038. // targetArray.push({
  8039. // id: element.id,
  8040. // parentid: "root",
  8041. // name: element.name,
  8042. // });
  8043. targetArray.push({
  8044. value: element.name,
  8045. label: element.name,
  8046. children: [],
  8047. });
  8048. let _eJsonc = Object.keys(element.child);
  8049. let _e2 = element.child;
  8050. for (let j = 0; j < _eJsonc.length; j++) {
  8051. let _ec = _e2[_eJsonc[j]];
  8052. this.data.data.push({
  8053. id: _ec.id,
  8054. parentid: element.id,
  8055. topic: _ec.name,
  8056. });
  8057. // targetArray.push({
  8058. // id: _ec.id,
  8059. // parentid: element.id,
  8060. // name: _ec.name,
  8061. // });
  8062. targetArray[i].children.push({
  8063. value: _ec.name,
  8064. label: _ec.name,
  8065. children: [],
  8066. });
  8067. let _eJsonz = Object.keys(_ec.child);
  8068. let _e3 = _ec.child;
  8069. for (let z = 0; z < _eJsonz.length; z++) {
  8070. let _ez = _e3[_eJsonz[z]];
  8071. this.data.data.push({
  8072. id: _ez.id,
  8073. parentid: _ec.id,
  8074. topic: _ez.name,
  8075. });
  8076. // targetArray.push({
  8077. // id: _ez.id,
  8078. // parentid: _ec.id,
  8079. // name: _ez.name,
  8080. // });
  8081. targetArray[i].children[j].children.push({
  8082. value: _ez.name,
  8083. label: _ez.name,
  8084. });
  8085. }
  8086. }
  8087. }
  8088. this.targetArray = targetArray;
  8089. this.$forceUpdate();
  8090. },
  8091. /*添加评价 */
  8092. addEList(index, tIndex) {
  8093. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  8094. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  8095. value: "",
  8096. detail: "",
  8097. score: 5,
  8098. })
  8099. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  8100. { value: "", detail: "", score: 5 },
  8101. ]);
  8102. this.$forceUpdate();
  8103. },
  8104. forceUpdate() {
  8105. this.$forceUpdate();
  8106. },
  8107. deletEList(index, tIndex, eIndex) {
  8108. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  8109. eIndex,
  8110. 1
  8111. );
  8112. this.$forceUpdate();
  8113. },
  8114. getChoosePic(t) {
  8115. this.chooseType = t;
  8116. this.getAllBanner();
  8117. },
  8118. getAllBanner() {
  8119. this.sysPicVisible = true;
  8120. let params = {
  8121. t: this.chooseType,
  8122. };
  8123. this.ajax
  8124. .get(this.$store.state.api + "selectAllBanner", params)
  8125. .then((res) => {
  8126. this.sysPic = res.data[0];
  8127. })
  8128. .catch((err) => {
  8129. console.error(err);
  8130. });
  8131. },
  8132. // getClass() {
  8133. // let params = {
  8134. // oid: this.oid,
  8135. // };
  8136. // this.ajax
  8137. // .get(this.$store.state.api + "selectClassBySchool", params)
  8138. // .then((res) => {
  8139. // this.classJuri = res.data[0];
  8140. // })
  8141. // .catch((err) => {
  8142. // console.error(err);
  8143. // });
  8144. // },
  8145. deleteSysPic() {
  8146. this.cover = [];
  8147. this.isSysPic = false;
  8148. },
  8149. deleteSelectPic() {
  8150. this.selectJson.url = "";
  8151. },
  8152. setEListStar() {
  8153. this.$forceUpdate();
  8154. },
  8155. deletRateList(i) {
  8156. this.rateJson.splice(i, 1);
  8157. },
  8158. addRateList() {
  8159. this.rateJson.push({ detail: "", score: 5, value: "" });
  8160. },
  8161. addSt() {
  8162. this.sentenceList.push({
  8163. sentenceTitle: "",
  8164. addSentence: [],
  8165. rightAnswer: [],
  8166. });
  8167. },
  8168. addSen(i) {
  8169. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  8170. // this.isPushTitleList.push(this.sentenceTitle);
  8171. this.sentenceList[i].sentenceTitle = "";
  8172. },
  8173. setRightAnswer(s, i, j) {
  8174. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  8175. this.sentenceList[i].rightAnswer.push(s);
  8176. }
  8177. },
  8178. returnCard(r, i, j) {
  8179. this.sentenceList[i].rightAnswer.splice(j, 1);
  8180. },
  8181. addSentenceTool() {
  8182. for (var i = 0; i < this.sentenceList.length; i++) {
  8183. if (this.sentenceList[i].rightAnswer.length == 0) {
  8184. this.$message.error("请将信息填写完整!");
  8185. return;
  8186. }
  8187. if (
  8188. this.sentenceList[i].addSentence.length !=
  8189. this.sentenceList[i].rightAnswer.length
  8190. ) {
  8191. this.$message.error("请将信息填写完整!");
  8192. return;
  8193. }
  8194. }
  8195. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8196. this.taskCount
  8197. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  8198. this.sentenceList = [
  8199. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  8200. ];
  8201. this.dialogVisibleSentence = false;
  8202. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8203. // itemTaskIndex
  8204. // ].toolChoose[toolIndex].tool = [];
  8205. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8206. // itemTaskIndex
  8207. // ].toolChoose[toolIndex].tool.push(i);
  8208. if (
  8209. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8210. .toolChoose[this.toolIndex].tool != 47
  8211. ) {
  8212. this.addTools(47, this.taskCount, this.toolIndex);
  8213. }
  8214. },
  8215. addTableJson() {
  8216. // if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  8217. // this.$message.error("请将信息填写完整!");
  8218. // return;
  8219. // }
  8220. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8221. this.taskCount
  8222. ].toolChoose[this.toolIndex].tableJson = this.tableJson;
  8223. this.tableJson = [{ text: "" }];
  8224. this.dialogVisibleTable = false;
  8225. if (
  8226. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8227. .toolChoose[this.toolIndex].tool != 48
  8228. ) {
  8229. this.addTools(48, this.taskCount, this.toolIndex);
  8230. }
  8231. },
  8232. addWordJson() {
  8233. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8234. this.taskCount
  8235. ].toolChoose[this.toolIndex].wordJson = this.wordJson;
  8236. this.wordJson = [{ text: "" }];
  8237. this.dialogVisibleWord = false;
  8238. if (
  8239. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8240. .toolChoose[this.toolIndex].tool != 52
  8241. ) {
  8242. this.addTools(52, this.taskCount, this.toolIndex);
  8243. }
  8244. },
  8245. addMoreUpload() {
  8246. if (this.uploadJson.length == 0) {
  8247. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8248. this.taskCount
  8249. ].toolChoose[this.toolIndex].uploadJson = [];
  8250. } else {
  8251. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8252. this.taskCount
  8253. ].toolChoose[this.toolIndex].uploadJson = this.uploadJson;
  8254. }
  8255. this.uploadJson = [];
  8256. this.dialogVisibleMoreUpload = false;
  8257. if (
  8258. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8259. .toolChoose[this.toolIndex].tool != 50
  8260. ) {
  8261. this.addTools(50, this.taskCount, this.toolIndex);
  8262. }
  8263. },
  8264. addPreTime() {
  8265. if (this.preTime == 0) {
  8266. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8267. this.taskCount
  8268. ].toolChoose[this.toolIndex].preTime = 0;
  8269. } else {
  8270. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8271. this.taskCount
  8272. ].toolChoose[this.toolIndex].preTime = this.preTime;
  8273. }
  8274. this.preTime = 0;
  8275. this.dialogVisiblePreTime = false;
  8276. if (
  8277. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8278. .toolChoose[this.toolIndex].tool != 10
  8279. ) {
  8280. this.addTools(10, this.taskCount, this.toolIndex);
  8281. }
  8282. },
  8283. goToTask(i) {
  8284. document.getElementsByClassName("rightBox")[0].scrollTop =
  8285. document.getElementsByClassName("taskBorder")[i].offsetTop - 100;
  8286. this.isClickColor = i + 1;
  8287. },
  8288. taskMove(type, index) {
  8289. if (type == 1) {
  8290. if (index > 0) {
  8291. let a = JSON.parse(
  8292. JSON.stringify(
  8293. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1]
  8294. )
  8295. );
  8296. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  8297. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8298. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8299. }
  8300. } else {
  8301. if (
  8302. index <
  8303. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  8304. ) {
  8305. let a = JSON.parse(
  8306. JSON.stringify(
  8307. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1]
  8308. )
  8309. );
  8310. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  8311. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8312. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8313. }
  8314. }
  8315. this.$forceUpdate();
  8316. },
  8317. addGroup(i) {
  8318. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  8319. this.groupJson.group.push({
  8320. name: "第" + (this.groupJson.group.length + 1) + "组",
  8321. });
  8322. },
  8323. deleteGroup(i) {
  8324. this.groupJson.group.splice(i, 1);
  8325. },
  8326. addGroupJson() {
  8327. for (var i = 0; i < this.groupJson.group.length; i++) {
  8328. if (!this.groupJson.group[i].name) {
  8329. this.$message.error("请将信息填写完整!");
  8330. return;
  8331. }
  8332. }
  8333. if (!this.groupJson.number) {
  8334. this.$message.error("请将信息填写完整!");
  8335. return;
  8336. }
  8337. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8338. this.taskCount
  8339. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  8340. JSON.stringify(this.groupJson)
  8341. );
  8342. this.dialogVisibleGroup = false;
  8343. this.groupJson = {};
  8344. if (
  8345. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8346. .toolChoose[this.toolIndex].tool != 49
  8347. ) {
  8348. this.addTools(49, this.taskCount, this.toolIndex);
  8349. }
  8350. },
  8351. updateTime(preTime) {
  8352. this.preTime = preTime;
  8353. },
  8354. },
  8355. beforeDestroy() {
  8356. clearTimeout(this.timer);
  8357. this.timer = null;
  8358. clearInterval(this.timer2);
  8359. this.timer2 = null;
  8360. },
  8361. beforeRouteLeave(to, from, next) {
  8362. clearTimeout(this.timer);
  8363. this.timer = null;
  8364. clearInterval(this.timer2);
  8365. this.timer2 = null;
  8366. next();
  8367. },
  8368. created() {
  8369. this.getStudent();
  8370. this.getTeacher();
  8371. this.getClass();
  8372. this.getTemplate();
  8373. // this.selectType();
  8374. this.selectEva();
  8375. this.loading = false;
  8376. this.timer2 = setInterval(() => {
  8377. this.selectEva();
  8378. }, 5000);
  8379. setTimeout(() => {
  8380. this.selectCourseDetail();
  8381. }, 500);
  8382. },
  8383. };
  8384. </script>
  8385. <style scoped>
  8386. @media screen and (max-width: 1280px) {
  8387. .mbCss {
  8388. flex-direction: column !important;
  8389. }
  8390. .pjCss {
  8391. width: 100% !important;
  8392. }
  8393. .evaCss {
  8394. width: 100% !important;
  8395. }
  8396. }
  8397. .dialog_diy >>> .el-dialog__header {
  8398. background: #3c3c3c !important;
  8399. padding: 15px 20px;
  8400. }
  8401. .dialog_diy >>> .el-dialog__title {
  8402. color: #fff;
  8403. }
  8404. .dialog_diy >>> .el-dialog__headerbtn {
  8405. top: 19px;
  8406. }
  8407. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  8408. color: #fff;
  8409. }
  8410. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  8411. color: #fff;
  8412. }
  8413. .dialog_diy >>> .el-dialog__body,
  8414. .dialog_diy >>> .el-dialog__footer {
  8415. background: #fafafa;
  8416. }
  8417. .dialog_diy3 >>> .el-dialog__body,
  8418. .dialog_diy3 >>> .el-dialog__footer {
  8419. background: #eee !important;
  8420. }
  8421. .dialog_diy3 >>> .el-dialog__body {
  8422. padding: 20px 20px;
  8423. }
  8424. .left {
  8425. border-right: 1px solid rgb(60, 94, 143);
  8426. display: flex;
  8427. flex-direction: column;
  8428. align-items: center;
  8429. min-height: 600px;
  8430. width: 385px;
  8431. height: 80%;
  8432. }
  8433. .tips {
  8434. color: rgb(128, 128, 128);
  8435. font-size: 12px;
  8436. width: 270px;
  8437. margin: 40px;
  8438. }
  8439. .pb_content {
  8440. height: 100% !important;
  8441. /* margin: 0 20px 0 20px; */
  8442. }
  8443. .pb_content_body {
  8444. width: 100% !important;
  8445. height: 100%;
  8446. }
  8447. .info_solid {
  8448. width: 270px;
  8449. height: 30px;
  8450. border-left: 1px solid #bdbdbd;
  8451. margin: 10px 0px 10px 30px;
  8452. }
  8453. .info_steps {
  8454. width: 270px;
  8455. font-size: 0.875rem;
  8456. display: flex;
  8457. align-items: center;
  8458. }
  8459. .info_steps span:nth-child(1) {
  8460. width: 30px;
  8461. height: 30px;
  8462. background: rgba(0, 0, 0, 0.38);
  8463. display: block;
  8464. color: #fff;
  8465. border-radius: 40px;
  8466. text-align: center;
  8467. line-height: 30px;
  8468. }
  8469. .steps_active {
  8470. background: #3d67bc !important;
  8471. }
  8472. .info_steps span:nth-child(2) {
  8473. margin-left: 5px;
  8474. }
  8475. .right {
  8476. height: 100%;
  8477. width: 100%;
  8478. display: flex;
  8479. overflow: hidden;
  8480. }
  8481. .basic_box {
  8482. margin: 0 auto;
  8483. position: relative;
  8484. padding: 0 20px 0 20px;
  8485. }
  8486. .basic_box_success {
  8487. width: 100%;
  8488. min-height: 455px;
  8489. padding: 50px 0;
  8490. position: relative;
  8491. text-align: center;
  8492. border-bottom: 1px solid #bfbfbf;
  8493. box-sizing: border-box;
  8494. display: flex;
  8495. align-items: center;
  8496. flex-direction: column;
  8497. justify-content: center;
  8498. }
  8499. .info_title {
  8500. font-size: 1.5em;
  8501. margin-right: 25px;
  8502. /* margin: 20px 30px 20px 30px; */
  8503. }
  8504. .bInfo_title {
  8505. text-align: left;
  8506. margin: 10px 0;
  8507. }
  8508. .small_title {
  8509. font-size: 14px;
  8510. line-height: 40px;
  8511. }
  8512. .chapter_beizhu {
  8513. font-size: 12px;
  8514. font-weight: bold;
  8515. float: right;
  8516. color: rgb(128, 128, 128);
  8517. margin-top: 5px;
  8518. }
  8519. .chapter_uploadBox1 {
  8520. text-align: left;
  8521. background-color: rgb(242, 242, 242);
  8522. width: 100%;
  8523. height: 67px;
  8524. padding: 0px 15px;
  8525. border-radius: 8px;
  8526. overflow: hidden;
  8527. font-size: 16px;
  8528. box-sizing: border-box;
  8529. position: relative;
  8530. }
  8531. .chapter_add {
  8532. width: 100%;
  8533. height: 32px;
  8534. margin-top: 15px;
  8535. cursor: pointer;
  8536. }
  8537. .chapter_add_l {
  8538. margin-left: 5px;
  8539. width: 30px;
  8540. height: 30px;
  8541. float: left;
  8542. border: 1px solid #aaa;
  8543. color: #aaa;
  8544. border-radius: 50%;
  8545. font-size: 25px;
  8546. text-align: center;
  8547. }
  8548. .chapter_add_r {
  8549. font-size: 18px;
  8550. height: 40px;
  8551. line-height: 30px;
  8552. text-indent: 10px;
  8553. color: #aaa;
  8554. }
  8555. .chapter_add_r span {
  8556. font-size: 12px;
  8557. color: rgb(204, 204, 204);
  8558. }
  8559. .chapter_add_input {
  8560. display: none;
  8561. }
  8562. .line {
  8563. width: 85%;
  8564. margin: 0 auto;
  8565. border-top: 1px solid #e5e5e5;
  8566. margin-top: 20px;
  8567. }
  8568. .info_btnBox {
  8569. width: 100%;
  8570. display: flex;
  8571. justify-content: space-evenly;
  8572. margin: 10px 0 10px 0;
  8573. }
  8574. .info_btn,
  8575. .teacherWord {
  8576. color: #fff;
  8577. background-color: #0f7eff;
  8578. padding: 8px 24px;
  8579. font-size: 0.9375rem;
  8580. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  8581. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  8582. min-width: 64px;
  8583. font-weight: 500;
  8584. border-radius: 4px;
  8585. box-sizing: border-box;
  8586. border: none;
  8587. cursor: pointer;
  8588. }
  8589. .teacherWord {
  8590. width: 105px !important;
  8591. text-align: center !important;
  8592. line-height: 36px !important;
  8593. padding: 0 !important;
  8594. font-size: 14px !important;
  8595. margin: 10px 0 !important;
  8596. }
  8597. .wordTeacher {
  8598. display: flex;
  8599. flex-direction: column;
  8600. width: 20%;
  8601. text-align: center;
  8602. font-size: 14px;
  8603. margin: 30px 30px 0 10px;
  8604. background: #fff;
  8605. position: relative;
  8606. border-radius: 5px;
  8607. padding: 25px 0px;
  8608. }
  8609. .wordPic {
  8610. margin: 0 auto;
  8611. width: 60px;
  8612. height: 60px;
  8613. cursor: pointer;
  8614. }
  8615. .deleteWord {
  8616. width: 22px;
  8617. height: 22px;
  8618. position: absolute;
  8619. right: 5px;
  8620. top: -15px;
  8621. cursor: pointer;
  8622. display: none;
  8623. z-index: 999;
  8624. }
  8625. .wordPic > img,
  8626. .deleteWord > img,
  8627. .addToolImg > img {
  8628. width: 100%;
  8629. height: 100%;
  8630. }
  8631. .info_btn:hover {
  8632. background-color: #4f7cd5 !important;
  8633. }
  8634. .cru_selectBox {
  8635. display: flex;
  8636. margin: 24px 0 10px;
  8637. flex-wrap: nowrap;
  8638. white-space: nowrap;
  8639. overflow: auto;
  8640. position: relative;
  8641. height: 47px;
  8642. }
  8643. .cru_selectBox::-webkit-scrollbar {
  8644. /*滚动条整体样式*/
  8645. width: 6px;
  8646. /*高宽分别对应横竖滚动条的尺寸*/
  8647. height: 6px;
  8648. }
  8649. /*定义滚动条轨道 内阴影+圆角*/
  8650. .cru_selectBox::-webkit-scrollbar-track {
  8651. border-radius: 10px;
  8652. background-color: #eee;
  8653. }
  8654. /*定义滑块 内阴影+圆角*/
  8655. .cru_selectBox::-webkit-scrollbar-thumb {
  8656. border-radius: 10px;
  8657. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  8658. background-color: rgba(0, 0, 0, 0.1);
  8659. }
  8660. .cru_line {
  8661. position: absolute;
  8662. bottom: 0px;
  8663. transition: all 0.5s;
  8664. left: 0px;
  8665. width: 125px;
  8666. margin-left: -25px;
  8667. }
  8668. .cru_select {
  8669. font-size: 21px;
  8670. margin-right: 37px;
  8671. margin-left: 5px;
  8672. cursor: pointer;
  8673. color: #a6a6a6;
  8674. }
  8675. .cru_selected {
  8676. color: #0b7fc2 !important;
  8677. }
  8678. .chapter_contentbox {
  8679. display: flex;
  8680. align-items: center;
  8681. margin-top: 15px;
  8682. }
  8683. .chapter_contentbox div:nth-child(1) {
  8684. /* width: 150px; */
  8685. margin: 0px;
  8686. /* font-size: 2em; */
  8687. color: black;
  8688. display: block;
  8689. white-space: nowrap;
  8690. overflow: hidden;
  8691. text-overflow: ellipsis;
  8692. /* font-weight: 600; */
  8693. margin-right: 20px;
  8694. font-size: 18px;
  8695. }
  8696. .chapter_contentbox div:nth-child(2) {
  8697. width: 380px;
  8698. }
  8699. .chapter_contentbox div:nth-child(3),
  8700. .remove {
  8701. background-image: url("../../assets/remove.png");
  8702. cursor: pointer;
  8703. opacity: 0.5;
  8704. width: 40px;
  8705. height: 50px;
  8706. background-repeat: no-repeat;
  8707. background-position: 5px 10px;
  8708. }
  8709. .remove1 {
  8710. background-image: url("../../assets/remove1.png");
  8711. background-repeat: no-repeat;
  8712. background-position: 5px 10px;
  8713. width: 40px;
  8714. height: 50px;
  8715. cursor: pointer;
  8716. }
  8717. .binfo_input {
  8718. font: inherit;
  8719. color: currentColor;
  8720. width: 100%;
  8721. margin: 0;
  8722. /* padding: 15px 14px; */
  8723. padding: 8px 14px;
  8724. display: block;
  8725. min-width: 0;
  8726. outline: none;
  8727. box-sizing: content-box;
  8728. background: none;
  8729. border: 1px solid rgba(0, 0, 0, 0.23);
  8730. border-radius: 4px;
  8731. box-sizing: border-box;
  8732. background: #fff;
  8733. font-size: 18px;
  8734. }
  8735. .binfo_input:focus-visible {
  8736. border: 1px solid rgba(61, 103, 188);
  8737. }
  8738. .time {
  8739. display: flex;
  8740. margin: 35px 0 80px 0;
  8741. }
  8742. .chapter_btnbox {
  8743. width: 160px;
  8744. border-radius: 5px;
  8745. border: 2px dashed gray;
  8746. display: flex;
  8747. padding: 8px 50px;
  8748. align-items: center;
  8749. justify-content: center;
  8750. margin: 30px auto 0;
  8751. cursor: pointer;
  8752. }
  8753. .icon_add {
  8754. position: relative;
  8755. width: 24px;
  8756. padding-top: 20px;
  8757. border-radius: 100%;
  8758. border-width: 2px;
  8759. border-style: solid;
  8760. border-color: gray;
  8761. }
  8762. .icon_add i:nth-child(1) {
  8763. position: absolute;
  8764. left: 50%;
  8765. top: 50%;
  8766. height: 60%;
  8767. transform: translate(-50%, -50%);
  8768. border-width: 1px;
  8769. border-style: solid;
  8770. border-color: inherit;
  8771. }
  8772. .icon_add i:nth-child(2) {
  8773. position: absolute;
  8774. top: 50%;
  8775. left: 50%;
  8776. width: 60%;
  8777. transform: translate(-50%, -50%);
  8778. border-width: 1px;
  8779. border-style: solid;
  8780. border-color: inherit;
  8781. }
  8782. .chapter_btn_w {
  8783. font-size: 0.9375rem;
  8784. font-weight: bold;
  8785. color: gray;
  8786. margin-left: 20px;
  8787. }
  8788. .disUoloadSty >>> .el-icon-plus {
  8789. display: none !important;
  8790. /* 上传按钮隐藏 */
  8791. }
  8792. .imgLeft {
  8793. margin: 15px 0;
  8794. }
  8795. .add_info_box {
  8796. margin: 20px 0;
  8797. }
  8798. .add_info_box button {
  8799. margin: 0 10px 10px 0;
  8800. }
  8801. .add_info_box2 {
  8802. display: flex;
  8803. align-items: center;
  8804. flex-wrap: wrap;
  8805. }
  8806. .add_info_box2::after {
  8807. content: "提示:支持上传10M以内的PPT和Word文件、5M以内的Excel文件, PDF文件不限制大小。";
  8808. color: red;
  8809. font-size: 14px;
  8810. margin-bottom: 10px;
  8811. }
  8812. .add_chapters_box {
  8813. text-align: left;
  8814. background-color: rgb(232 234 237);
  8815. width: 100%;
  8816. padding: 0px 15px;
  8817. border-radius: 15px;
  8818. font-size: 16px;
  8819. box-sizing: border-box;
  8820. position: relative;
  8821. padding: 0 10px 5px 10px;
  8822. height: 185px;
  8823. overflow-y: auto;
  8824. overflow-x: hidden;
  8825. }
  8826. .homework_box {
  8827. display: flex;
  8828. align-items: flex-start;
  8829. flex-wrap: wrap;
  8830. margin: 15px 0 0 0;
  8831. flex-direction: column;
  8832. align-content: flex-start;
  8833. }
  8834. .course_homework {
  8835. display: flex;
  8836. justify-content: center;
  8837. flex-direction: row;
  8838. align-items: center;
  8839. margin: 0 10px 0 0;
  8840. }
  8841. .course_homework >>> .el-input__inner {
  8842. width: 140px;
  8843. margin-left: 15px;
  8844. }
  8845. .chapter_upload_move {
  8846. position: relative;
  8847. background-color: #fff;
  8848. position: absolute;
  8849. width: 100%;
  8850. top: 0px;
  8851. left: 0px;
  8852. border: 1px solid #eee;
  8853. border-radius: 5px;
  8854. transition: width 2s;
  8855. -moz-transition: width 2s;
  8856. -webkit-transition: width 2s;
  8857. -o-transition: width 2s;
  8858. }
  8859. .chapter_upload_l_i {
  8860. background-image: url("../../assets/icon.png");
  8861. background-position: 3px -165px;
  8862. width: 30px;
  8863. height: 30px;
  8864. margin: 10px auto 0 auto;
  8865. }
  8866. .left_first {
  8867. display: flex;
  8868. flex-direction: column;
  8869. flex-wrap: nowrap;
  8870. }
  8871. .right_first {
  8872. width: 100%;
  8873. height: 100%;
  8874. margin-top: 15px;
  8875. }
  8876. .right_title {
  8877. height: 30px;
  8878. padding: 15px 0 15px 20px;
  8879. border-bottom: 1px solid #f2f2f2;
  8880. font-size: 1.5em;
  8881. font-weight: bold;
  8882. color: #0f7eff;
  8883. margin: 0 auto;
  8884. }
  8885. .people {
  8886. border: 1px solid rgb(229 229 229);
  8887. height: 495px;
  8888. border-radius: 5px;
  8889. width: 100%;
  8890. overflow: auto;
  8891. }
  8892. .people_top {
  8893. display: flex;
  8894. width: 100%;
  8895. /* justify-content: space-between; */
  8896. /* align-items: center; */
  8897. flex-direction: column;
  8898. padding: 10px 25px 0;
  8899. box-sizing: border-box;
  8900. }
  8901. .people_nav,
  8902. .people_top_right {
  8903. /* padding: 20px 0 0 20px; */
  8904. }
  8905. .people_top_right {
  8906. height: 40px;
  8907. margin-bottom: 10px;
  8908. }
  8909. .people_search {
  8910. display: flex;
  8911. position: relative;
  8912. }
  8913. .people_search >>> .el-input__inner {
  8914. /* height: 25px; */
  8915. width: 95%;
  8916. }
  8917. .search_img {
  8918. width: 20px;
  8919. height: 20px;
  8920. position: absolute;
  8921. right: 30px;
  8922. top: 50%;
  8923. transform: translateY(-50%);
  8924. }
  8925. .search_img > img {
  8926. width: 100%;
  8927. height: 100%;
  8928. }
  8929. .people_name {
  8930. display: flex;
  8931. justify-content: flex-start;
  8932. padding: 20px 0 0 25px;
  8933. flex-direction: column;
  8934. flex-wrap: wrap;
  8935. }
  8936. .people_name >>> .el-checkbox {
  8937. width: 100%;
  8938. display: flex;
  8939. align-items: center;
  8940. margin-bottom: 10px;
  8941. }
  8942. .people_name >>> .el-checkbox__label {
  8943. text-overflow: ellipsis;
  8944. overflow: hidden;
  8945. width: 100%;
  8946. }
  8947. .right_img {
  8948. width: 150px;
  8949. height: 150px;
  8950. margin: 0 auto;
  8951. }
  8952. .right_img > img {
  8953. width: 100%;
  8954. height: 100%;
  8955. }
  8956. .number {
  8957. margin-top: 20px;
  8958. color: #4aa6ff;
  8959. text-decoration: underline;
  8960. }
  8961. .success_button {
  8962. display: flex;
  8963. text-align: center;
  8964. margin: 5% 0 auto;
  8965. flex-direction: row;
  8966. justify-content: center;
  8967. }
  8968. .look_course {
  8969. margin-right: 40px;
  8970. background: #3d67bc;
  8971. width: 200px;
  8972. height: 35px;
  8973. line-height: 35px;
  8974. color: #fff;
  8975. text-align: center;
  8976. font-size: 14px;
  8977. border-radius: 5px;
  8978. cursor: pointer;
  8979. }
  8980. .attend_others {
  8981. width: 250px;
  8982. background: #4fb13c;
  8983. height: 35px;
  8984. line-height: 35px;
  8985. color: #fff;
  8986. text-align: center;
  8987. font-size: 14px;
  8988. border-radius: 5px;
  8989. cursor: pointer;
  8990. }
  8991. .dialog_diy2 >>> .el-dialog__body {
  8992. text-align: center;
  8993. }
  8994. .write_togother {
  8995. position: absolute;
  8996. right: 45px;
  8997. display: flex;
  8998. top: 5%;
  8999. }
  9000. .write_people {
  9001. font-size: 14px;
  9002. line-height: 50px;
  9003. padding-right: 10px;
  9004. }
  9005. .end_write {
  9006. background: #3d67bc;
  9007. color: #fff;
  9008. width: 100px;
  9009. height: 35px;
  9010. line-height: 35px;
  9011. text-align: center;
  9012. font-size: 14px;
  9013. border-radius: 5px;
  9014. cursor: pointer;
  9015. }
  9016. .chapter_upload {
  9017. height: 50px;
  9018. margin-top: 12px;
  9019. position: relative;
  9020. display: flex;
  9021. align-items: center;
  9022. width: 100%;
  9023. min-height: 50px;
  9024. }
  9025. .chapter_upload_t {
  9026. background-color: #fff;
  9027. position: absolute;
  9028. height: 100%;
  9029. top: 0px;
  9030. left: 0px;
  9031. border-radius: 40px;
  9032. box-sizing: border-box;
  9033. box-shadow: 0 0 3px 3px #dfdfdf;
  9034. }
  9035. .chapter_upload_o {
  9036. width: 100%;
  9037. height: 100%;
  9038. position: relative;
  9039. z-index: 1;
  9040. }
  9041. .chapter_upload_ic {
  9042. height: 30px;
  9043. float: right;
  9044. }
  9045. .chapter_upload_ic_l {
  9046. width: 50px;
  9047. height: 50px;
  9048. float: left;
  9049. }
  9050. .chapter_upload_ic_l div {
  9051. width: 30px;
  9052. height: 35px;
  9053. background: url("../../assets/icon/icon.png");
  9054. }
  9055. .chapter_upload_ic_r {
  9056. width: 50px;
  9057. height: 50px;
  9058. float: left;
  9059. margin-left: 0px;
  9060. display: flex;
  9061. align-items: center;
  9062. }
  9063. .chapter_upload_ic_r div {
  9064. width: 25px;
  9065. height: 25px;
  9066. background-image: url("../../assets/delete.png");
  9067. background-size: 100% 100%;
  9068. }
  9069. .chapter_upload_n {
  9070. display: flex;
  9071. text-indent: 10px;
  9072. text-decoration: none;
  9073. text-overflow: ellipsis;
  9074. white-space: nowrap;
  9075. overflow: hidden;
  9076. width: 55%;
  9077. margin-left: 10px;
  9078. cursor: pointer;
  9079. margin-top: 2px;
  9080. align-items: center;
  9081. }
  9082. .chapter_upload_l_i1 {
  9083. background-image: url("../../assets/icon/video.png");
  9084. width: 28px;
  9085. height: 28px;
  9086. background-size: 100% 100%;
  9087. }
  9088. .chapter_upload_l_i5 {
  9089. background-image: url("../../assets/icon/word.png");
  9090. width: 24px;
  9091. height: 24px;
  9092. background-size: 100% 100%;
  9093. }
  9094. .chapter_upload_l_i8 {
  9095. background-image: url("../../assets/icon/line.png");
  9096. width: 24px;
  9097. height: 24px;
  9098. background-size: 100% 100%;
  9099. }
  9100. .chapter_upload_ud {
  9101. display: flex;
  9102. flex-direction: column;
  9103. margin-left: 5px;
  9104. justify-content: center;
  9105. }
  9106. .chapter_upload_up {
  9107. background-image: url("../../assets/icon/up.png");
  9108. width: 17px;
  9109. height: 15px;
  9110. background-size: 100% 100%;
  9111. cursor: pointer;
  9112. }
  9113. .chapter_upload_down {
  9114. background-image: url("../../assets/icon/down.png");
  9115. width: 17px;
  9116. height: 15px;
  9117. margin: 2px auto 0 auto;
  9118. background-size: 100% 100%;
  9119. cursor: pointer;
  9120. }
  9121. .addWordStyle {
  9122. display: flex;
  9123. flex-direction: row;
  9124. justify-content: flex-start;
  9125. overflow-x: auto;
  9126. white-space: nowrap;
  9127. flex-wrap: wrap;
  9128. }
  9129. /* table 样式 */
  9130. .cont >>> table {
  9131. border-top: 1px solid #ccc;
  9132. border-left: 1px solid #ccc;
  9133. }
  9134. .cont >>> table td,
  9135. .cont >>> table th {
  9136. border-bottom: 1px solid #ccc;
  9137. border-right: 1px solid #ccc;
  9138. /* padding: 20px 5px; */
  9139. padding: 5px 10px;
  9140. max-width: 0px;
  9141. height: 30px;
  9142. vertical-align: baseline;
  9143. }
  9144. .cont >>> table th {
  9145. border-bottom: 2px solid #ccc;
  9146. text-align: center;
  9147. }
  9148. /* blockquote 样式 */
  9149. .cont >>> blockquote {
  9150. display: block;
  9151. border-left: 8px solid #d0e5f2;
  9152. padding: 5px 10px;
  9153. margin: 10px 0;
  9154. line-height: 1.4;
  9155. font-size: 100%;
  9156. background-color: #f1f1f1;
  9157. }
  9158. /* code 样式 */
  9159. .cont >>> code {
  9160. display: inline-block;
  9161. *display: inline;
  9162. *zoom: 1;
  9163. background-color: #f1f1f1;
  9164. border-radius: 3px;
  9165. padding: 3px 5px;
  9166. margin: 0 3px;
  9167. }
  9168. .cont >>> pre code {
  9169. display: block;
  9170. }
  9171. /* ul ol 样式 */
  9172. .cont >>> ul,
  9173. ol {
  9174. margin: 10px 0 10px 20px;
  9175. }
  9176. .wordbox {
  9177. display: flex;
  9178. flex-wrap: wrap;
  9179. cursor: pointer;
  9180. width: 100%;
  9181. }
  9182. .checkword {
  9183. width: 22px;
  9184. height: 22px;
  9185. margin: 10px auto 0;
  9186. cursor: pointer;
  9187. }
  9188. .checkword img {
  9189. width: 100%;
  9190. }
  9191. .stepBg {
  9192. display: flex;
  9193. flex-direction: column;
  9194. justify-content: space-between;
  9195. align-items: center;
  9196. background: #fff;
  9197. width: 300px;
  9198. margin: 0 25px 0 0;
  9199. }
  9200. .stepTop {
  9201. min-width: 300px;
  9202. width: 300px;
  9203. /* border-radius: 10px; */
  9204. display: flex;
  9205. flex-direction: column;
  9206. justify-content: flex-start;
  9207. align-items: center;
  9208. flex-wrap: nowrap;
  9209. background: #fff;
  9210. /* top: 18%; */
  9211. }
  9212. .stepTop > div {
  9213. height: 80px;
  9214. width: 85%;
  9215. cursor: pointer;
  9216. margin: 10px 0;
  9217. border-radius: 10px;
  9218. }
  9219. .first,
  9220. .second,
  9221. .third,
  9222. .four {
  9223. background: #4a83d0;
  9224. height: 90px;
  9225. color: #fff;
  9226. display: flex;
  9227. flex-direction: row;
  9228. align-items: center;
  9229. justify-content: center;
  9230. }
  9231. .first > div:nth-child(1),
  9232. .second > div:nth-child(1),
  9233. .third > div:nth-child(1),
  9234. .four > div:nth-child(1) {
  9235. margin: 5px 10px 0 0;
  9236. width: 2rem;
  9237. }
  9238. .firstNo,
  9239. .secondNo,
  9240. .thirdNo,
  9241. .fourNo {
  9242. background: #e7e7e7;
  9243. color: #adadad;
  9244. display: flex;
  9245. flex-direction: row;
  9246. align-items: center;
  9247. justify-content: center;
  9248. }
  9249. .firstNo > div:nth-child(1),
  9250. .secondNo > div:nth-child(1),
  9251. .thirdNo > div:nth-child(1),
  9252. .fourNo > div:nth-child(1) {
  9253. margin: 5px 10px 0 0;
  9254. width: 2rem;
  9255. }
  9256. .uploadWidth >>> .el-upload {
  9257. width: 60px;
  9258. height: 60px;
  9259. position: relative;
  9260. }
  9261. .addPeople {
  9262. background: #fa6060;
  9263. width: 150px;
  9264. height: 40px;
  9265. color: #fff;
  9266. border-radius: 5px;
  9267. text-align: center;
  9268. line-height: 40px;
  9269. font-size: 14px;
  9270. cursor: pointer;
  9271. margin-top: 20px;
  9272. }
  9273. .kcImg {
  9274. width: 60px;
  9275. margin-left: 10px;
  9276. }
  9277. .zyImg {
  9278. width: 55px;
  9279. margin: 0 10px;
  9280. }
  9281. .deleteZy {
  9282. width: 20px;
  9283. position: absolute;
  9284. top: 5px;
  9285. right: 5px;
  9286. cursor: pointer;
  9287. }
  9288. .kcImg > img,
  9289. .zyImg > img,
  9290. .deleteZy > img {
  9291. width: 100%;
  9292. height: 100%;
  9293. }
  9294. .zyBox {
  9295. display: flex;
  9296. flex-direction: row;
  9297. align-items: center;
  9298. background: #67d37d;
  9299. color: #fff;
  9300. width: 210px;
  9301. margin: 20px 20px 0 0;
  9302. border-radius: 10px;
  9303. height: 70px;
  9304. position: relative;
  9305. }
  9306. .upCss {
  9307. display: flex;
  9308. flex-direction: row;
  9309. justify-content: flex-start;
  9310. }
  9311. .upCss >>> .el-icon-plus {
  9312. position: none !important;
  9313. width: 200px;
  9314. height: 100px;
  9315. display: flex;
  9316. flex-wrap: nowrap;
  9317. flex-direction: column;
  9318. align-items: center;
  9319. justify-content: center;
  9320. border: 1px dashed #ccc;
  9321. min-width: 78px;
  9322. min-height: 100px;
  9323. z-index: 999;
  9324. }
  9325. .upCss >>> .el-upload-list__item-name {
  9326. width: 100px;
  9327. white-space: nowrap;
  9328. overflow: hidden;
  9329. text-overflow: ellipsis;
  9330. }
  9331. .addStageImg {
  9332. min-width: 25px;
  9333. min-height: 25px;
  9334. width: 25px;
  9335. height: 25px;
  9336. cursor: pointer;
  9337. }
  9338. .addHW {
  9339. width: 28px;
  9340. height: 28px;
  9341. cursor: pointer;
  9342. }
  9343. .addStageImg > img,
  9344. .addHW > img {
  9345. width: 100%;
  9346. height: 100%;
  9347. }
  9348. .addNewPP >>> .el-dialog__body {
  9349. padding: 5px 20px;
  9350. }
  9351. .isHeight {
  9352. height: 680px;
  9353. }
  9354. .toolChoose {
  9355. display: flex;
  9356. /* width: 100%; */
  9357. flex-direction: row;
  9358. flex-wrap: wrap;
  9359. }
  9360. .tool {
  9361. display: flex;
  9362. flex-direction: column;
  9363. flex-wrap: nowrap;
  9364. width: fit-content;
  9365. margin: 10px 0 10px 0;
  9366. align-items: center;
  9367. }
  9368. .tool + .tool {
  9369. margin-right: 45px;
  9370. }
  9371. .whiteBIcon {
  9372. width: 80px;
  9373. cursor: pointer;
  9374. display: flex;
  9375. flex-direction: column;
  9376. flex-wrap: nowrap;
  9377. align-items: center;
  9378. }
  9379. .whiteBIcon > img,
  9380. .toolIcon > img,
  9381. .arrow > img {
  9382. width: 100%;
  9383. height: 100%;
  9384. }
  9385. .check img {
  9386. width: 20px;
  9387. height: 20px;
  9388. }
  9389. .whiteBIcon > img {
  9390. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  9391. border-radius: 15px;
  9392. }
  9393. .check {
  9394. /* width: 20px;
  9395. height: 20px; */
  9396. cursor: pointer;
  9397. margin: 10px 0;
  9398. }
  9399. .checkDiv {
  9400. display: flex;
  9401. align-items: center;
  9402. }
  9403. .checkDiv span {
  9404. margin-left: 5px;
  9405. color: #858585;
  9406. }
  9407. .customWidth >>> .el-dialog {
  9408. min-width: 500px !important;
  9409. }
  9410. .a_addBox {
  9411. margin: 10px 0;
  9412. background: #fff;
  9413. padding: 15px;
  9414. max-height: 600px;
  9415. overflow: auto;
  9416. }
  9417. .a_add_box {
  9418. border-bottom: 2px solid #eee;
  9419. padding-bottom: 25px;
  9420. }
  9421. .a_add_head {
  9422. display: flex;
  9423. align-items: center;
  9424. justify-content: space-between;
  9425. margin: 10px 0 0 0;
  9426. font-size: 18px;
  9427. }
  9428. .a_add_checkType {
  9429. margin-top: 10px;
  9430. display: flex;
  9431. font-size: 16px;
  9432. }
  9433. .a_add_checkType span {
  9434. box-sizing: border-box;
  9435. padding: 0 0 5px 0;
  9436. cursor: pointer;
  9437. }
  9438. .a_add_checkType span + span {
  9439. margin-left: 10px;
  9440. }
  9441. .a_add_checkType .active {
  9442. border-bottom: 2px solid #409eff;
  9443. color: #409eff;
  9444. }
  9445. .a_add_head .a_add_head_input {
  9446. width: 300px;
  9447. }
  9448. .a_add_head .a_add_head_div {
  9449. display: flex;
  9450. align-items: center;
  9451. justify-content: space-between;
  9452. }
  9453. .a_add_body {
  9454. display: flex;
  9455. /* align-items: center; */
  9456. align-items: flex-end;
  9457. }
  9458. .a_add_input {
  9459. display: flex;
  9460. align-items: center;
  9461. flex-wrap: wrap;
  9462. }
  9463. .a_add_input_choice {
  9464. flex-direction: column;
  9465. margin-right: 10px;
  9466. }
  9467. .a_add_input_choice >>> .el-radio {
  9468. display: flex;
  9469. align-items: center;
  9470. flex-direction: row-reverse;
  9471. margin: 30px 0 0 0;
  9472. }
  9473. .a_add_input_choice >>> .el-checkbox {
  9474. display: flex;
  9475. align-items: center;
  9476. flex-direction: row-reverse;
  9477. margin: 30px 0 0 0;
  9478. }
  9479. .width100 {
  9480. width: 100%;
  9481. }
  9482. .a_add_input .a_add_persent {
  9483. width: 100%;
  9484. }
  9485. .a_add_persent_div {
  9486. width: 100%;
  9487. display: flex;
  9488. align-items: center;
  9489. }
  9490. .a_add_persent_div span {
  9491. margin: 5px 0;
  9492. }
  9493. .a_add_persent_div span:nth-child(1) {
  9494. width: 30%;
  9495. }
  9496. .a_add_persent_div span:nth-child(2) {
  9497. width: 7%;
  9498. }
  9499. .a_add_persent_div span:nth-child(3) {
  9500. width: 40%;
  9501. }
  9502. .a_add_body_div {
  9503. display: flex;
  9504. align-items: center;
  9505. justify-content: center;
  9506. /* flex-direction: column; */
  9507. }
  9508. .all_choose {
  9509. display: flex;
  9510. flex-direction: row;
  9511. align-items: flex-start;
  9512. width: 100%;
  9513. }
  9514. .all_choose > span {
  9515. min-width: 100px;
  9516. display: block;
  9517. letter-spacing: 14px;
  9518. white-space: nowrap;
  9519. overflow: hidden;
  9520. text-overflow: ellipsis;
  9521. }
  9522. .all_choose >>> .el-checkbox-group {
  9523. display: flex;
  9524. flex-direction: row;
  9525. width: 100%;
  9526. flex-wrap: wrap;
  9527. align-content: center;
  9528. justify-content: flex-start;
  9529. align-items: center;
  9530. margin-top: 3px;
  9531. }
  9532. .all_choose > .el-checkbox-group >>> .el-checkbox {
  9533. margin-bottom: 10px;
  9534. display: flex;
  9535. flex-direction: row;
  9536. align-items: center;
  9537. }
  9538. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label {
  9539. min-width: 80px;
  9540. overflow: hidden;
  9541. width: 80px;
  9542. text-overflow: ellipsis;
  9543. white-space: nowrap;
  9544. }
  9545. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label:hover {
  9546. width: auto;
  9547. }
  9548. .choose > div:nth-child(3) > span {
  9549. /* letter-spacing: 0 !important; */
  9550. }
  9551. .choose {
  9552. display: flex;
  9553. flex-direction: column;
  9554. flex-wrap: nowrap;
  9555. height: 100%;
  9556. justify-content: space-evenly;
  9557. align-items: flex-start;
  9558. }
  9559. .both {
  9560. display: flex;
  9561. flex-direction: row;
  9562. flex-wrap: wrap;
  9563. width: 100%;
  9564. align-items: center;
  9565. justify-content: flex-start;
  9566. margin: 15px 0;
  9567. }
  9568. .notice >>> .el-dialog {
  9569. width: 500px !important;
  9570. text-align: center;
  9571. }
  9572. .notice >>> .el-button {
  9573. margin-top: 20px;
  9574. }
  9575. .whiteBg {
  9576. background: #fff;
  9577. border-radius: 10px;
  9578. }
  9579. .chooseWho {
  9580. display: flex;
  9581. width: 380px;
  9582. flex-direction: row;
  9583. flex-wrap: nowrap;
  9584. justify-content: space-between;
  9585. padding-bottom: 10px;
  9586. }
  9587. .chooseWho > div {
  9588. cursor: pointer;
  9589. padding-bottom: 10px;
  9590. font-weight: bold;
  9591. }
  9592. .isChooseActive {
  9593. color: #3e88f4;
  9594. border-bottom: 2px solid #2f80f3;
  9595. }
  9596. .toolSort {
  9597. display: flex;
  9598. flex-direction: row;
  9599. flex-wrap: wrap;
  9600. justify-content: flex-start;
  9601. align-items: flex-start;
  9602. }
  9603. .toolSort > div {
  9604. margin-right: 45px;
  9605. }
  9606. .tools {
  9607. width: 100%;
  9608. display: flex;
  9609. flex-direction: column;
  9610. flex-wrap: nowrap;
  9611. align-items: flex-start;
  9612. }
  9613. .leftTools,
  9614. .rightTools {
  9615. width: 50%;
  9616. }
  9617. .rightTools {
  9618. display: flex;
  9619. flex-direction: row;
  9620. flex-wrap: nowrap;
  9621. justify-content: space-around;
  9622. }
  9623. .firstToolList {
  9624. display: flex;
  9625. flex-direction: column;
  9626. flex-wrap: nowrap;
  9627. align-items: center;
  9628. }
  9629. .iconList {
  9630. display: flex;
  9631. flex-direction: row;
  9632. flex-wrap: wrap;
  9633. justify-content: flex-start;
  9634. align-items: center;
  9635. margin: 20px 0 5px 0;
  9636. width: 240px;
  9637. min-width: 240px;
  9638. }
  9639. .iconTool {
  9640. display: flex;
  9641. flex-direction: column;
  9642. flex-wrap: nowrap;
  9643. align-items: center;
  9644. justify-content: flex-start;
  9645. margin: 15px 10px;
  9646. }
  9647. .toolIcon {
  9648. width: 50px;
  9649. }
  9650. .taskBorder {
  9651. border: 1px solid #e1e1e1;
  9652. border-radius: 10px;
  9653. margin-top: 20px;
  9654. min-height: 1160px;
  9655. position: relative;
  9656. background: #fbfbfb;
  9657. }
  9658. .smallTaskBorder {
  9659. height: 170px;
  9660. min-height: 170px !important;
  9661. overflow: hidden;
  9662. }
  9663. .taskBorder > div {
  9664. padding: 30px 0 10px 30px;
  9665. }
  9666. .addTaskBorder {
  9667. border: 2px solid #e1e1e1;
  9668. border-radius: 10px;
  9669. margin-top: 25px;
  9670. cursor: pointer;
  9671. }
  9672. .addTaskBorder > div {
  9673. margin: 0 auto;
  9674. display: flex;
  9675. align-items: center;
  9676. justify-content: center;
  9677. }
  9678. .addTaskBorder > div > img {
  9679. width: 100px;
  9680. }
  9681. .addTaskBorder > div > span {
  9682. font-size: 23px;
  9683. color: #dbdbdb;
  9684. }
  9685. .funBlock {
  9686. display: flex;
  9687. padding: 15px 0;
  9688. flex-direction: row;
  9689. justify-content: flex-end;
  9690. align-items: center;
  9691. position: absolute;
  9692. right: 15px;
  9693. bottom: 35px;
  9694. }
  9695. .fold {
  9696. display: flex;
  9697. margin: 0 10px;
  9698. flex-direction: row;
  9699. align-items: center;
  9700. cursor: pointer;
  9701. }
  9702. .arrow {
  9703. width: 15px;
  9704. height: 15px;
  9705. margin-left: 10px;
  9706. }
  9707. .addToolFun {
  9708. display: flex;
  9709. width: 150px;
  9710. flex-direction: row;
  9711. align-items: center;
  9712. justify-content: center;
  9713. border: 1px dashed;
  9714. border-radius: 5px;
  9715. height: 50px;
  9716. margin: 35px auto 0;
  9717. cursor: pointer;
  9718. }
  9719. .addToolImg {
  9720. width: 30px;
  9721. height: 30px;
  9722. margin-right: 20px;
  9723. }
  9724. .addToolsDia >>> .el-dialog__body {
  9725. padding: 20px;
  9726. }
  9727. .addToolsDia >>> .el-dialog__body > .toolChoose {
  9728. padding: 0;
  9729. }
  9730. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools {
  9731. padding: 0;
  9732. border-bottom: none;
  9733. margin-bottom: 0;
  9734. }
  9735. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools > .chooseWho {
  9736. width: 100%;
  9737. }
  9738. .lineCss >>> .el-form-item__label {
  9739. width: auto !important;
  9740. }
  9741. .lineCss >>> .el-form-item__content {
  9742. margin-left: 50px !important;
  9743. }
  9744. .newSteps {
  9745. display: flex;
  9746. width: 100% !important;
  9747. height: 80px;
  9748. cursor: pointer;
  9749. margin: 10px 0;
  9750. border-radius: 10px;
  9751. flex-direction: row;
  9752. align-content: center;
  9753. justify-content: center;
  9754. align-items: center;
  9755. margin: 0 !important;
  9756. }
  9757. /* 评价样式 */
  9758. .elist_css {
  9759. padding-bottom: 60px !important;
  9760. }
  9761. .elist_title {
  9762. margin-bottom: 10px;
  9763. }
  9764. .elist_input {
  9765. }
  9766. .elist_input_box {
  9767. display: flex;
  9768. align-items: center;
  9769. flex-wrap: wrap;
  9770. }
  9771. .elist_input_box + .elist_input_box {
  9772. margin-top: 30px;
  9773. }
  9774. .elist_input .elist_input_box input {
  9775. font: inherit;
  9776. color: currentColor;
  9777. /* width: 200px; */
  9778. max-width: 200px;
  9779. padding: 8px 14px;
  9780. display: block;
  9781. min-width: 0;
  9782. outline: none;
  9783. border: 1px solid rgba(0, 0, 0, 0.23);
  9784. border-radius: 4px;
  9785. box-sizing: border-box;
  9786. background: #fff;
  9787. margin: 0 20px 0 0;
  9788. }
  9789. .elist_input .elist_input_box span {
  9790. height: 36px;
  9791. line-height: 36px;
  9792. color: rgb(82, 82, 82);
  9793. min-width: 80px;
  9794. }
  9795. .elist_input .elist_input_box .remove {
  9796. height: 20px;
  9797. width: 20px;
  9798. background-size: 100% 100%;
  9799. background-position: unset;
  9800. margin-left: 5px;
  9801. }
  9802. .elist_input_box >>> .el-rate {
  9803. display: flex;
  9804. height: 36px;
  9805. align-items: center;
  9806. }
  9807. .elist_input_box .elist_inptu_text {
  9808. width: 100%;
  9809. display: flex;
  9810. align-items: center;
  9811. margin-top: 10px;
  9812. }
  9813. .elist_input_box .elist_inptu_text input {
  9814. /* width: 500px; */
  9815. width: 100%;
  9816. max-width: unset;
  9817. }
  9818. .elist_input_box >>> .el-rate__icon {
  9819. font-size: 24px;
  9820. }
  9821. .elist_btn {
  9822. margin-top: 10px;
  9823. }
  9824. .lineTitle {
  9825. margin-top: 15px;
  9826. width: 110px;
  9827. }
  9828. .courseTop {
  9829. display: flex;
  9830. flex-direction: row;
  9831. justify-content: flex-start;
  9832. align-items: center;
  9833. /* width: 100%; */
  9834. width: calc(100% - 20px);
  9835. /* background: rgb(255, 255, 255); */
  9836. /* border-radius: 10px; */
  9837. padding: 20px 0;
  9838. }
  9839. .stepsNav {
  9840. display: flex;
  9841. flex-direction: row;
  9842. justify-content: flex-start;
  9843. align-items: center;
  9844. }
  9845. .stepsWord {
  9846. font-size: 18px;
  9847. color: #fff;
  9848. font-weight: bold;
  9849. margin-left: auto;
  9850. background: rgb(15, 126, 255);
  9851. border-radius: 5px;
  9852. padding: 3px 25px;
  9853. box-sizing: border-box;
  9854. }
  9855. .rightBox {
  9856. width: calc(100% - 20px);
  9857. background: rgb(255, 255, 255);
  9858. border-radius: 10px;
  9859. overflow: auto;
  9860. height: calc(100% - 130px);
  9861. position: relative;
  9862. }
  9863. .e_add_top {
  9864. display: flex;
  9865. justify-content: space-between;
  9866. padding: 20px 20px 0 20px;
  9867. border-radius: 3px;
  9868. background: #fff;
  9869. }
  9870. .e_add_title2 {
  9871. display: flex;
  9872. align-items: center;
  9873. }
  9874. .e_add_title2 span {
  9875. width: 40px;
  9876. }
  9877. .e_add_title {
  9878. display: flex;
  9879. align-items: center;
  9880. color: #b8b8b8;
  9881. font-size: 18px;
  9882. position: relative;
  9883. height: 40px;
  9884. }
  9885. .e_add_title span {
  9886. margin-right: 10px;
  9887. }
  9888. .e_add_title .el_input {
  9889. width: 300px;
  9890. }
  9891. .e_add_title >>> .el-input__inner {
  9892. width: 400px;
  9893. }
  9894. .e_add_btn {
  9895. }
  9896. .e_add_content {
  9897. display: flex;
  9898. width: 100%;
  9899. }
  9900. .e_add_list {
  9901. background: #fff;
  9902. height: 500px;
  9903. width: 210px;
  9904. position: relative;
  9905. margin: 15px 5px 0 0;
  9906. flex-shrink: 0;
  9907. display: flex;
  9908. flex-direction: column;
  9909. }
  9910. .e_add_list_title {
  9911. font-size: 20px;
  9912. width: 100%;
  9913. box-sizing: border-box;
  9914. padding: 15px 40px;
  9915. text-align: center;
  9916. border-bottom: 1px solid #eaeaea;
  9917. position: relative;
  9918. display: flex;
  9919. align-items: center;
  9920. justify-content: center;
  9921. height: 57px;
  9922. background: #f6f6f6;
  9923. }
  9924. .e_add_list_title span {
  9925. overflow: hidden;
  9926. white-space: nowrap;
  9927. text-overflow: ellipsis;
  9928. }
  9929. .e_add_list_title img {
  9930. position: absolute;
  9931. right: 15px;
  9932. width: 25px;
  9933. cursor: pointer;
  9934. top: 50%;
  9935. transform: translateY(-50%);
  9936. }
  9937. .e_add_list_body {
  9938. height: calc(100% - 187px);
  9939. overflow: auto;
  9940. }
  9941. .e_add_list_child {
  9942. width: 100%;
  9943. display: flex;
  9944. align-items: center;
  9945. justify-content: center;
  9946. position: relative;
  9947. box-sizing: border-box;
  9948. padding: 15px 40px;
  9949. text-align: center;
  9950. }
  9951. .e_add_list_child span {
  9952. overflow: hidden;
  9953. white-space: nowrap;
  9954. text-overflow: ellipsis;
  9955. cursor: pointer;
  9956. }
  9957. .e_add_list_child img {
  9958. position: absolute;
  9959. right: 10px;
  9960. width: 21px;
  9961. cursor: pointer;
  9962. top: 50%;
  9963. transform: translateY(-50%);
  9964. }
  9965. .e_add_list_child + .e_add_list_child {
  9966. border-top: 1px solid #eaeaea;
  9967. }
  9968. .e_add_list_child .active {
  9969. color: #409eff;
  9970. }
  9971. .e_add_list_btn {
  9972. position: absolute;
  9973. bottom: 0;
  9974. height: 50px;
  9975. background: rgb(120, 120, 254);
  9976. width: 100%;
  9977. color: #fff;
  9978. font-size: 16px;
  9979. text-align: center;
  9980. line-height: 50px;
  9981. cursor: pointer;
  9982. }
  9983. .e_add_list_detail {
  9984. position: absolute;
  9985. bottom: 0;
  9986. height: 130px;
  9987. background: rgb(120, 120, 254);
  9988. width: 100%;
  9989. color: #fff;
  9990. font-size: 16px;
  9991. display: flex;
  9992. align-items: center;
  9993. justify-content: center;
  9994. }
  9995. .e_add_list_detail textarea {
  9996. height: 90%;
  9997. width: 95%;
  9998. border: none;
  9999. resize: none;
  10000. outline: none;
  10001. padding: 5px;
  10002. box-sizing: border-box;
  10003. }
  10004. .e_add_list_pbox {
  10005. width: 100%;
  10006. }
  10007. .e_add_list_pbox_title {
  10008. height: 50px;
  10009. background: #fff;
  10010. display: flex;
  10011. align-items: center;
  10012. width: 100%;
  10013. box-sizing: border-box;
  10014. padding: 0 20px;
  10015. flex-direction: row;
  10016. flex-wrap: wrap;
  10017. }
  10018. .type_title {
  10019. font-size: 18px;
  10020. font-weight: 700;
  10021. }
  10022. .type_content {
  10023. font-size: 16px;
  10024. margin-left: 30px;
  10025. }
  10026. .type_content span + span {
  10027. margin-left: 20px;
  10028. }
  10029. .type_content span {
  10030. cursor: pointer;
  10031. padding-bottom: 5px;
  10032. box-sizing: border-box;
  10033. }
  10034. .type_content .active {
  10035. color: #409eff;
  10036. border-bottom: 2px solid #409eff;
  10037. }
  10038. .e_add_list_pbox_content {
  10039. height: calc(100% - 50px);
  10040. display: flex;
  10041. align-items: center;
  10042. width: 100%;
  10043. background: #fff;
  10044. }
  10045. .mbCss {
  10046. width: 100%;
  10047. display: flex;
  10048. flex-direction: row;
  10049. flex-wrap: nowrap;
  10050. align-content: center;
  10051. align-items: flex-start;
  10052. justify-content: flex-start;
  10053. }
  10054. .pjCss {
  10055. /* width: 42%; */
  10056. width: calc(100% - 55%);
  10057. display: flex;
  10058. flex-direction: column;
  10059. flex-wrap: nowrap;
  10060. align-items: flex-start;
  10061. margin-top: 1.5%;
  10062. }
  10063. .e_box {
  10064. display: flex;
  10065. flex-wrap: wrap;
  10066. max-height: 500px;
  10067. align-items: flex-start;
  10068. overflow: auto;
  10069. }
  10070. .e_card {
  10071. border: 1px solid #ccc;
  10072. background: #fff;
  10073. margin-right: 20px;
  10074. width: 270px;
  10075. display: flex;
  10076. flex-direction: column;
  10077. align-items: center;
  10078. border-radius: 5px;
  10079. margin-top: 10px;
  10080. text-align: center;
  10081. }
  10082. .e_card_picture {
  10083. margin: 10px 0;
  10084. }
  10085. .e_card_picture > img {
  10086. width: 50px;
  10087. }
  10088. .e_card_name {
  10089. width: 100%;
  10090. padding: 0 10px;
  10091. box-sizing: border-box;
  10092. margin-bottom: 10px;
  10093. overflow: hidden;
  10094. text-overflow: ellipsis;
  10095. white-space: nowrap;
  10096. }
  10097. .e_card_time {
  10098. width: 100%;
  10099. padding: 0 10px;
  10100. box-sizing: border-box;
  10101. font-size: 15px;
  10102. color: #c3c3c3;
  10103. margin-bottom: 10px;
  10104. }
  10105. .e_card_btn {
  10106. height: 40px;
  10107. display: flex;
  10108. align-items: center;
  10109. width: 100%;
  10110. background: rgb(244, 244, 244);
  10111. }
  10112. .e_card_btn:hover {
  10113. background: rgb(221 221 221);
  10114. }
  10115. .e_card_btn span {
  10116. flex: 1 1 auto;
  10117. text-align: center;
  10118. cursor: pointer;
  10119. }
  10120. .addEva {
  10121. border: 1px solid #ccc;
  10122. background: #fff;
  10123. margin-right: 20px;
  10124. width: 270px;
  10125. height: 149px;
  10126. display: flex;
  10127. flex-direction: column;
  10128. align-items: center;
  10129. border-radius: 5px;
  10130. margin-top: 10px;
  10131. text-align: center;
  10132. cursor: pointer;
  10133. justify-content: center;
  10134. }
  10135. .addEva > img {
  10136. width: 50px;
  10137. object-fit: cover;
  10138. }
  10139. .uploadFm {
  10140. border: 1px dashed #ccc;
  10141. width: 202px;
  10142. height: 102px;
  10143. position: relative;
  10144. cursor: pointer;
  10145. }
  10146. .uploadFm > img {
  10147. position: absolute;
  10148. top: 25px;
  10149. left: 35%;
  10150. width: 50px;
  10151. }
  10152. .fileCss {
  10153. width: 100%;
  10154. display: flex;
  10155. flex-direction: row;
  10156. flex-wrap: nowrap;
  10157. justify-content: space-around;
  10158. align-items: center;
  10159. padding-top: 15px;
  10160. }
  10161. .sysPicBox {
  10162. display: flex;
  10163. flex-direction: row;
  10164. flex-wrap: wrap;
  10165. align-content: flex-start;
  10166. height: 435px;
  10167. overflow: auto;
  10168. }
  10169. .sysPic {
  10170. width: 200px;
  10171. height: 115px;
  10172. margin: 0 20px 20px 0;
  10173. cursor: pointer;
  10174. }
  10175. .sysPic > img,
  10176. .isSysPic > img,
  10177. .deletePic > img {
  10178. width: 100%;
  10179. height: 100%;
  10180. object-fit: cover;
  10181. }
  10182. .isSysPic {
  10183. width: 200px;
  10184. height: 115px;
  10185. position: relative;
  10186. }
  10187. .deletePic {
  10188. width: 20px;
  10189. height: 20px;
  10190. position: absolute;
  10191. top: 0;
  10192. right: 0;
  10193. cursor: pointer;
  10194. }
  10195. .select_box1 {
  10196. }
  10197. .select_box1_img {
  10198. background: #fff;
  10199. border-radius: 5px;
  10200. padding: 15px;
  10201. box-sizing: border-box;
  10202. margin-bottom: 20px;
  10203. }
  10204. .select_box1_title {
  10205. padding: 0 0 15px 0;
  10206. border-bottom: 1px solid #eee;
  10207. margin-bottom: 15px;
  10208. }
  10209. .select_box1_title span:nth-child(1) {
  10210. font-size: 16px;
  10211. margin-right: 20px;
  10212. color: #000;
  10213. }
  10214. .select_box1_title span:nth-child(2) {
  10215. font-size: 14px;
  10216. color: rgb(112, 112, 112);
  10217. }
  10218. .select_box1_add_img {
  10219. }
  10220. .select_box1_select {
  10221. background: #fff;
  10222. border-radius: 5px;
  10223. padding: 15px;
  10224. box-sizing: border-box;
  10225. }
  10226. .select_box2 {
  10227. }
  10228. .select_box2_title {
  10229. background: #fff;
  10230. border-radius: 5px;
  10231. padding: 5px 10px;
  10232. box-sizing: border-box;
  10233. margin-bottom: 10px;
  10234. }
  10235. .select_box2_box {
  10236. display: flex;
  10237. height: 500px;
  10238. }
  10239. .select_box2_img {
  10240. width: calc(100% - 310px);
  10241. height: 100%;
  10242. overflow: auto;
  10243. background: #fff;
  10244. border-radius: 5px;
  10245. }
  10246. .select_box2_img img {
  10247. width: 100%;
  10248. }
  10249. .select_box2_answer {
  10250. background: #fff;
  10251. margin-left: 10px;
  10252. border-radius: 5px;
  10253. width: 300px;
  10254. overflow: auto;
  10255. height: 100%;
  10256. display: flex;
  10257. flex-direction: column;
  10258. align-items: center;
  10259. padding-top: 10px;
  10260. box-sizing: border-box;
  10261. }
  10262. .select_box2_answer_box {
  10263. margin: 0 0 10px 0;
  10264. width: 85%;
  10265. }
  10266. .rate_textarea {
  10267. font: inherit;
  10268. color: currentColor;
  10269. width: 100%;
  10270. padding: 8px 14px;
  10271. display: block;
  10272. min-width: 0;
  10273. outline: none;
  10274. border: 1px solid rgba(0, 0, 0, 0.23);
  10275. border-radius: 4px;
  10276. box-sizing: border-box;
  10277. background: #fff;
  10278. margin: 0 20px 0 0;
  10279. resize: none;
  10280. }
  10281. .select_answer_title {
  10282. text-align: left;
  10283. width: 85%;
  10284. margin-bottom: 10px;
  10285. font-size: 18px;
  10286. color: #8e8e8e;
  10287. }
  10288. .mask {
  10289. background-color: rgb(0 0 0 / 30%);
  10290. /* position: fixed; */
  10291. position: absolute;
  10292. top: 0;
  10293. left: 0;
  10294. width: 100%;
  10295. height: 100%;
  10296. z-index: 90;
  10297. display: flex;
  10298. align-items: center;
  10299. justify-content: center;
  10300. }
  10301. .progressBox {
  10302. width: 300px;
  10303. height: 150px;
  10304. background: #fff;
  10305. border-radius: 10px;
  10306. box-shadow: 0 0 6px 1px #bfbfbf;
  10307. display: flex;
  10308. align-items: center;
  10309. justify-content: center;
  10310. flex-direction: column;
  10311. position: relative;
  10312. color: #6c6c6c;
  10313. }
  10314. .progressBox >>> .el-progress-bar__outer {
  10315. background-color: #d1dfff !important;
  10316. }
  10317. .progressBox .lbox {
  10318. height: 50px;
  10319. font-size: 19px;
  10320. display: flex;
  10321. align-items: center;
  10322. color: #747474;
  10323. }
  10324. .progressBox .lbox img {
  10325. width: 40px;
  10326. margin-right: 20px;
  10327. }
  10328. .closeCss {
  10329. position: absolute;
  10330. top: 8px;
  10331. right: 8px;
  10332. cursor: pointer;
  10333. width: 20px;
  10334. height: 20px;
  10335. }
  10336. .closeCss > img {
  10337. width: 100%;
  10338. height: 100%;
  10339. }
  10340. .updateTips::after {
  10341. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  10342. font-size: 14px;
  10343. margin-left: 20px;
  10344. font-weight: 400;
  10345. color: #ff3a3a;
  10346. }
  10347. .updateMask {
  10348. width: 100%;
  10349. z-index: 3;
  10350. top: 0;
  10351. position: absolute;
  10352. /* background-color: rgba(0,0,0,.3); */
  10353. }
  10354. .t_j_box {
  10355. display: flex;
  10356. }
  10357. .t_j_box span:nth-child(1) {
  10358. width: 15%;
  10359. overflow: hidden;
  10360. margin-right: 10px;
  10361. text-overflow: ellipsis;
  10362. white-space: nowrap;
  10363. }
  10364. .t_j_box span:nth-child(2) {
  10365. width: 30%;
  10366. overflow: hidden;
  10367. text-overflow: ellipsis;
  10368. margin-right: 10px;
  10369. }
  10370. .t_j_box span:nth-child(3) {
  10371. max-width: calc(55% - 20px);
  10372. overflow: hidden;
  10373. text-overflow: ellipsis;
  10374. }
  10375. .sentenBox {
  10376. background: #fff;
  10377. height: 600px;
  10378. overflow: auto;
  10379. background-image: url("../../assets/icon/conSentences/csBg.png");
  10380. background-position: 102%;
  10381. background-repeat: no-repeat;
  10382. background-size: 60%;
  10383. }
  10384. .addSen {
  10385. background: #409efe;
  10386. width: 90px;
  10387. color: #fff;
  10388. height: 35px;
  10389. text-align: center;
  10390. line-height: 35px;
  10391. border-radius: 5px;
  10392. float: right;
  10393. margin: 10px 20px 0 0;
  10394. cursor: pointer;
  10395. }
  10396. .sentenTop {
  10397. display: flex;
  10398. flex-direction: row;
  10399. flex-wrap: nowrap;
  10400. align-items: center;
  10401. }
  10402. .sentenTop > div:nth-child(2) {
  10403. width: 300px;
  10404. margin: 0 15px;
  10405. }
  10406. .sentenTop > div:nth-child(3) {
  10407. background: #409efe;
  10408. color: #fff;
  10409. width: 65px;
  10410. height: 35px;
  10411. text-align: center;
  10412. line-height: 35px;
  10413. border-radius: 5px;
  10414. cursor: pointer;
  10415. }
  10416. .cardList {
  10417. padding: 30px 0 20px 0;
  10418. display: flex;
  10419. flex-direction: row;
  10420. flex-wrap: wrap;
  10421. align-items: center;
  10422. box-sizing: border-box;
  10423. border-bottom: 1px solid #f4f4f4;
  10424. width: 98%;
  10425. margin: 0 auto;
  10426. }
  10427. .cardBox {
  10428. display: flex;
  10429. flex-direction: row;
  10430. flex-wrap: wrap;
  10431. align-items: center;
  10432. align-content: center;
  10433. }
  10434. .isCard,
  10435. .isCard1 {
  10436. width: 140px;
  10437. height: 65px;
  10438. text-align: center;
  10439. line-height: 65px;
  10440. font-size: 20px;
  10441. cursor: pointer;
  10442. background-image: url("../../assets/icon/conSentences/titleBorder.png");
  10443. background-size: cover;
  10444. position: relative;
  10445. z-index: 99;
  10446. }
  10447. .isCard1 {
  10448. background-image: url("../../assets/icon/conSentences/answerBorder.png");
  10449. }
  10450. .isCard:hover .deleteWord {
  10451. display: block;
  10452. }
  10453. .isCard > div:nth-child(1),
  10454. .isCard1 > div:nth-child(1) {
  10455. white-space: nowrap;
  10456. overflow: hidden;
  10457. text-overflow: ellipsis;
  10458. width: 80%;
  10459. margin: 0 auto;
  10460. }
  10461. .card {
  10462. width: 140px;
  10463. height: 65px;
  10464. }
  10465. .card > img {
  10466. width: 100%;
  10467. height: 100%;
  10468. }
  10469. .rightCardBox {
  10470. margin: 10px 0 0 10px;
  10471. }
  10472. .rightCardBox > div:nth-child(1) {
  10473. margin-bottom: 10px;
  10474. }
  10475. .cardCss {
  10476. display: flex;
  10477. flex-direction: column;
  10478. flex-wrap: nowrap;
  10479. align-items: center;
  10480. border-bottom: 3px solid #b4c3d3;
  10481. padding: 0 0 5px 0;
  10482. margin-right: 10px;
  10483. }
  10484. .cardCss > div:nth-child(2) {
  10485. background: #5b7b9d;
  10486. color: #fff;
  10487. width: 20px;
  10488. height: 20px;
  10489. border-radius: 50%;
  10490. text-align: center;
  10491. line-height: 20px;
  10492. }
  10493. .sentenTopBox {
  10494. display: flex;
  10495. flex-direction: row;
  10496. flex-wrap: nowrap;
  10497. align-items: center;
  10498. justify-content: space-between;
  10499. padding: 55px 0 0 20px;
  10500. box-sizing: border-box;
  10501. width: 85%;
  10502. }
  10503. .stepsBottom {
  10504. width: 85%;
  10505. margin-bottom: 20px;
  10506. box-shadow: 0 0 10px 10px #f7f7f7;
  10507. background: #f7f7f7;
  10508. border-radius: 10px;
  10509. overflow: hidden;
  10510. }
  10511. .navTop {
  10512. background: #53749b;
  10513. color: #fff;
  10514. height: 40px;
  10515. line-height: 40px;
  10516. padding-left: 15px;
  10517. font-size: 18px;
  10518. }
  10519. .navBottom {
  10520. background: #6b91b7;
  10521. height: 180px;
  10522. overflow: auto;
  10523. }
  10524. .navTask {
  10525. display: flex;
  10526. flex-direction: row;
  10527. flex-wrap: nowrap;
  10528. align-items: center;
  10529. padding: 5px 5px 5px 0;
  10530. cursor: pointer;
  10531. background: #ffffff;
  10532. width: 95%;
  10533. margin: 10px auto;
  10534. box-sizing: border-box;
  10535. border-radius: 5px;
  10536. }
  10537. .isNavTask {
  10538. /* background: #7e9ebd; */
  10539. }
  10540. .navTask > div:nth-child(1) {
  10541. background: #468fe4;
  10542. color: #fff;
  10543. width: 65px;
  10544. height: 25px;
  10545. line-height: 25px;
  10546. text-align: center;
  10547. border-radius: 5px;
  10548. margin: 0 10px 0 5px;
  10549. font-size: 14px;
  10550. }
  10551. .navTask > div:nth-child(2) {
  10552. /* color: #fff; */
  10553. /* max-width: 130px; */
  10554. width: 130px;
  10555. white-space: nowrap;
  10556. overflow: hidden;
  10557. text-overflow: ellipsis;
  10558. font-size: 15px;
  10559. }
  10560. .groupBox {
  10561. }
  10562. .groupContent + .groupContent {
  10563. margin-top: 30px;
  10564. }
  10565. .groupTitle {
  10566. font-size: 24px;
  10567. color: rgb(80, 80, 80);
  10568. margin-bottom: 20px;
  10569. }
  10570. .groupName {
  10571. display: flex;
  10572. align-items: center;
  10573. }
  10574. .groupn {
  10575. font-size: 15px;
  10576. margin-right: 10px;
  10577. }
  10578. .groupName + .groupName {
  10579. margin-top: 15px;
  10580. }
  10581. .groupBtn {
  10582. margin-left: 10px;
  10583. }
  10584. .groupContent >>> .el-input-number.is-without-controls .el-input__inner {
  10585. text-align: left;
  10586. }
  10587. .radioBox > div {
  10588. margin: 10px 0 0 10px;
  10589. }
  10590. .radioBox >>> .el-radio__input,
  10591. .radioBox >>> .el-checkbox__inner {
  10592. margin-left: 10px;
  10593. }
  10594. .radioBox >>> .el-radio__label,
  10595. .radioBox >>> .el-checkbox__label {
  10596. display: flex;
  10597. align-items: center;
  10598. }
  10599. .inImg {
  10600. width: 50px;
  10601. }
  10602. .inImg > img {
  10603. width: 100%;
  10604. height: 100%;
  10605. object-fit: cover;
  10606. }
  10607. .upCss >>> .el-upload-list--picture .el-upload-list__item {
  10608. height: auto;
  10609. }
  10610. .upCss >>> .el-upload-list--picture .el-upload-list__item-thumbnail {
  10611. width: 200px;
  10612. height: 100px;
  10613. object-fit: contain;
  10614. background: unset;
  10615. }
  10616. .upCss
  10617. >>> .el-upload-list--picture
  10618. .el-upload-list__item.is-success
  10619. .el-upload-list__item-name {
  10620. display: none;
  10621. }
  10622. .tcMember + .tcMember::before {
  10623. content: "、";
  10624. }
  10625. .xzUpImg {
  10626. width: 25px;
  10627. height: 25px;
  10628. cursor: pointer;
  10629. }
  10630. .xzUpImg > img {
  10631. width: 100%;
  10632. height: 100%;
  10633. }
  10634. .closeCss {
  10635. position: absolute;
  10636. top: 8px;
  10637. right: 8px;
  10638. cursor: pointer;
  10639. width: 20px;
  10640. height: 20px;
  10641. }
  10642. .closeCss > img {
  10643. width: 100%;
  10644. height: 100%;
  10645. }
  10646. .moveBtn {
  10647. display: flex;
  10648. flex-direction: column;
  10649. align-items: flex-end;
  10650. width: 40px;
  10651. }
  10652. .timuUpImg {
  10653. display: flex;
  10654. flex-direction: row;
  10655. align-items: center;
  10656. }
  10657. .timuUpImg > div:nth-child(1) {
  10658. margin-right: 10px;
  10659. }
  10660. .timuImgBox {
  10661. margin: 10px 0;
  10662. display: flex;
  10663. flex-direction: column;
  10664. flex-wrap: wrap;
  10665. align-items: flex-start;
  10666. }
  10667. .timuImg {
  10668. width: auto;
  10669. margin: 5px 0;
  10670. cursor: pointer;
  10671. position: relative;
  10672. }
  10673. .timuImg:hover .deleteWord {
  10674. display: block;
  10675. }
  10676. .deleteWord {
  10677. width: 25px;
  10678. height: 25px;
  10679. position: absolute;
  10680. right: -5px;
  10681. top: -5px;
  10682. cursor: pointer;
  10683. display: none;
  10684. }
  10685. .timuImg > img,
  10686. .deleteWord > img {
  10687. width: 100%;
  10688. height: 100%;
  10689. object-fit: cover;
  10690. }
  10691. .e_add_delete {
  10692. cursor: pointer;
  10693. margin-left: 10px;
  10694. }
  10695. .pType_box {
  10696. margin-top: 30px;
  10697. }
  10698. .noneBox {
  10699. height: 100%;
  10700. width: 100%;
  10701. display: flex;
  10702. align-items: center;
  10703. justify-content: center;
  10704. margin-top: 150px;
  10705. }
  10706. .noneBox > img {
  10707. width: 300px;
  10708. }
  10709. </style>