addCourse.vue 427 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627
  1. <template>
  2. <div class="pb_content" style="background: #F0F2F5;">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="courseTop">
  6. <div class="stepsNav">
  7. <el-breadcrumb separator-class="el-icon-arrow-right">
  8. <el-breadcrumb-item :to="{
  9. path:
  10. '/course?userid=' +
  11. userid +
  12. '&oid=' +
  13. oid +
  14. '&org=' +
  15. org +
  16. '&role=' +
  17. role,
  18. }">课程管理</el-breadcrumb-item>
  19. <el-breadcrumb-item>
  20. <span style="color: rgb(15, 126, 255)">添加课程</span>
  21. </el-breadcrumb-item>
  22. </el-breadcrumb>
  23. </div>
  24. <div class="r_pub_button_retrun" @click="retrunCourse">返回</div>
  25. </div>
  26. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  27. <div ref="stepBox" class="stepBox">
  28. <div class="stepBg" v-if="false">
  29. <div :class="{ stepTop: isStepDisplay, stepTop2: !isStepDisplay }" @mouseenter="stepDisplay(true)"
  30. @mouseleave="stepDisplay(false)">
  31. <div v-if="steps > 0 && isStepDisplay" class="first" @click="navSteps(1)">
  32. <div>
  33. <img src="../../assets/icon/first.png" alt />
  34. </div>
  35. <div>填写基本信息</div>
  36. </div>
  37. <div v-else-if="isStepDisplay" class="firstNo" @click="navSteps(1)">
  38. <div>
  39. <img src="../../assets/icon/firstNo.png" alt />
  40. </div>
  41. <div>填写基本信息</div>
  42. </div>
  43. <div class="stepBorder" :class="{ 'border-active': steps > 1 }" v-if="cidType === 0 && isStepDisplay"></div>
  44. <div v-if="steps > 1 && cidType === 0 && isStepDisplay" class="second" @click="navSteps(2)">
  45. <div style="margin: 5px 10px 0 0; width: 2rem">
  46. <img src="../../assets/icon/second.png" alt />
  47. </div>
  48. <div>选择课程模版</div>
  49. </div>
  50. <div v-else-if="cidType === 0 && isStepDisplay" class="secondNo" @click="navSteps(2)">
  51. <div>
  52. <img src="../../assets/icon/secondNo.png" alt />
  53. </div>
  54. <div>选择课程模版</div>
  55. </div>
  56. <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 2 }"></div>
  57. <div v-if="steps > 2 && isStepDisplay" class="third" @click="navSteps(3)">
  58. <div>
  59. <img src="../../assets/icon/third.png" alt />
  60. </div>
  61. <div>上传课程内容</div>
  62. </div>
  63. <div v-else-if="isStepDisplay" class="thirdNo" @click="navSteps(3)">
  64. <div>
  65. <img src="../../assets/icon/thirdNo.png" alt />
  66. </div>
  67. <div>上传课程内容</div>
  68. </div>
  69. <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 3 }"></div>
  70. <div v-if="steps > 3 && isStepDisplay" class="four">
  71. <div>
  72. <img src="../../assets/icon/four.png" alt />
  73. </div>
  74. <div>上传完成</div>
  75. </div>
  76. <div v-else-if="isStepDisplay" class="fourNo">
  77. <div>
  78. <img src="../../assets/icon/fourNo.png" alt />
  79. </div>
  80. <div>上传完成</div>
  81. </div>
  82. </div>
  83. </div>
  84. <div class="rightBox" v-if="this.steps == 1" @mousewheel="scrollChange" style="padding:0;"
  85. :style="{ height: (!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 20px)' : 'calc(100% - 100px)' }">
  86. <div class="updateMask" :style="{
  87. height: rightBoxHeight ? rightBoxHeight + 'px' : '100%',
  88. }" v-if="cid && userid != courseUserid && role != '1'"></div>
  89. <div class="whiteBg" style="background:unset;padding: 0;">
  90. <div>
  91. <div class="basic_box" style="padding: 0;">
  92. <div class="big_box">
  93. <div class="left_first">
  94. <div :class="{
  95. updateTips: cid && userid != courseUserid && role != '1',
  96. }">
  97. <div style="width: 100%;">
  98. <div class="course_input_box">
  99. <div class="bb_courseIcon"><img src="../../assets/icon/new/course.png" /></div>
  100. <input type="text" placeholder="请输入课程名称" class="binfo_input" v-model="courseName"
  101. style="border: 1.5px solid rgb(202, 209, 220);margin: 0px 10px 0px 0px;border-radius: 5px;font-weight: 600;padding: 12px 14px 12px 71px;" />
  102. <el-switch v-model="isTeacherSee" active-text="是否公开此课程" style="justify-content: center;width: 200px;"></el-switch>
  103. </div>
  104. </div>
  105. </div>
  106. <div class="pType_box all_choose" v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
  107. <span>类型</span>
  108. <!-- 学科+ 主题+ 未来+ -->
  109. <el-radio-group @change="CourseType2Change" v-model="pTypeCheckName"
  110. style="display: flex; align-items: center">
  111. <div class="all_choose" style="width: 100px" v-for="(item, index) in CourseType2" :key="index">
  112. <el-radio :label="item.name">{{
  113. item.name
  114. }}</el-radio>
  115. </div>
  116. </el-radio-group>
  117. </div>
  118. <div class="both">
  119. <div class="choose">
  120. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
  121. <span v-if="CourseTypeJson[item.id].length > 0 &&
  122. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  123. ? pTypeCheck.indexOf(item.id) != -1
  124. : true)
  125. ">{{ item.name }}:</span>
  126. <el-checkbox-group v-model="courseTypeId" v-if="CourseTypeJson[item.id].length > 0 &&
  127. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  128. ? pTypeCheck.indexOf(item.id) != -1
  129. : true)
  130. ">
  131. <el-checkbox v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.id">{{
  132. item1.name }}</el-checkbox>
  133. </el-checkbox-group>
  134. <!-- <div
  135. v-else
  136. style="font-size: 14px; margin-left: -8px"
  137. >
  138. 暂无
  139. </div> -->
  140. </div>
  141. </div>
  142. </div>
  143. </div>
  144. <div class="right_first">
  145. <!-- <div class="ai_box">
  146. <div class="ai_content" @click="openAI"><img src="../../assets/icon/new/ai.png"/><span>AI共创</span></div>
  147. </div> -->
  148. <div class="c_info_title" style="padding: 0 0 15px;margin: 0 auto 0 0;">上传封面</div>
  149. <div style="width: 100%;">
  150. <div class="uploadFm" @click="choosePicVisible = true" v-if="cover.length == 0">
  151. <img src="../../assets/icon/addPoster.png" alt="" />
  152. <div>点击添加封面</div>
  153. </div>
  154. <el-upload :class="{ disUoloadSty: noneBtnImg }" class="upCss" action="#" list-type="picture"
  155. v-loading="uploadLoading1" :http-request="beforeUpload1" ref="upload1"
  156. :on-preview="handlePictureCardPreview" :on-remove="handle_remove1" :show-file-list="true"
  157. :file-list="cover" accept="image/*" :limit="1" :on-exceed="onExceed" v-else>
  158. <i class="el-icon-plus"></i>
  159. </el-upload>
  160. </div>
  161. </div>
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. <div class="whiteBg" style="background:#fff;margin: 10px 0;">
  167. <div class="whiteBg" style="border-radius: 0">
  168. <div class="c_info_title">课程权限设置</div>
  169. <div class="wb_j_box">
  170. <div class="wb_j_box_content">
  171. <!-- <button class="c_pub_button_add pub_btn_add_img" @click="
  172. (dialogVisibleClass = true),
  173. (classSearch = ''),
  174. (gradeId = ''),
  175. getClass()
  176. ">添加班级</button>
  177. <div v-if="checkboxList2.length" class="wb_j_box_p_box">
  178. <span :class="{ tcMember: getClassC(tc) }" v-for="(tc, tcIndex) in checkboxList2" :key="tcIndex">{{
  179. getClassC(tc) }}</span>
  180. </div> -->
  181. <div class="wb_j_box_btn" @click="
  182. (dialogVisibleClass = true),
  183. (classSearch = ''),
  184. (gradeId = ''),
  185. getClass()
  186. ">
  187. <div class="wb_j_box_title">授课班级</div>
  188. <div class="wb_j_box_btn_c">
  189. <el-tooltip effect="dark" :content="getListClassC(checkboxList2)" placement="top" v-if="checkboxList2.length" popper-class="text_tooltip2">
  190. <div class="wb_j_box_span">{{getListClassC(checkboxList2)}}</div>
  191. </el-tooltip>
  192. <div v-else class="wb_j_box_span">请选择授课班级</div>
  193. <div class="wb_j_box_arrow"></div>
  194. </div>
  195. </div>
  196. </div>
  197. <div class="wb_j_box_content">
  198. <!-- <button class="c_pub_button_add pub_btn_add_img" @click="openMember">添加协同成员</button>
  199. <div v-if="checkboxList3.length" class="wb_j_box_p_box" @click="checkBoolean = !checkBoolean">
  200. <span :class="{ tcMember: getMan2(tc) }" v-for="(tc, tcIndex) in checkboxList3.length > 6 &&
  201. checkBoolean
  202. ? checkboxList3
  203. : checkboxList3.slice(0, 6)" :key="tcIndex">{{ getMan2(tc) }}</span><span class="tcMember"
  204. v-if="checkboxList3.length > 6 && !checkBoolean">更多...</span>
  205. </div> -->
  206. <div class="wb_j_box_btn" @click="openMember">
  207. <div class="wb_j_box_title">协同人员</div>
  208. <div class="wb_j_box_btn_c">
  209. <el-tooltip effect="dark" :content="getListMan2(checkboxList3)" placement="top" v-if="checkboxList3.length" popper-class="text_tooltip2">
  210. <div class="wb_j_box_span">{{getListMan2(checkboxList3)}}</div>
  211. </el-tooltip>
  212. <div v-else class="wb_j_box_span">请选择协同人员</div>
  213. <div class="wb_j_box_arrow"></div>
  214. </div>
  215. </div>
  216. </div>
  217. </div>
  218. </div>
  219. <div class="whiteBg" style="border-radius: 0; margin-top: 15px">
  220. <div class="c_info_title">课程简要描述</div>
  221. <div style="width: 95%; padding: 0 0px 0 20px">
  222. <div style="width: 55%">
  223. <textarea rows="6" class="binfo_input binfo_textarea" cols v-model="courseText"></textarea>
  224. </div>
  225. </div>
  226. </div>
  227. <div class="whiteBg" style="border-radius: 0; margin-top: 15px; padding-bottom: 20px">
  228. <div class="c_info_title">目标管理</div>
  229. <div style="margin: 0 auto;padding:0 20px">
  230. <div style="
  231. width: 95%;
  232. min-height: 200px;
  233. border: 1px solid #CAD1DC;
  234. border-radius: 4px;
  235. position: relative;
  236. ">
  237. <div class="e_add_top">
  238. <div class="e_add_title">
  239. <button class="c_pub_button_delete pub_btn_delete_img" @click="deleteEva()"
  240. v-if="evalua">清除</button>
  241. <button class="c_pub_button_confirm pub_btn_add_img2" @click="dialogVisiblemb = true">添加</button>
  242. <!-- <span>当前使用目标管理</span>
  243. <span>{{ eTitle ? eTitle : "请添加目标" }}</span>
  244. <img
  245. src="../../assets/line.png"
  246. class="cru_line"
  247. style="
  248. width: 125px;
  249. height: 20px;
  250. bottom: -10px;
  251. left: 155px;
  252. "
  253. /> -->
  254. </div>
  255. <div style="
  256. display: flex;
  257. flex-direction: row;
  258. align-items: center;
  259. ">
  260. <!-- <el-button
  261. type="primary"
  262. size="small"
  263. @click="dialogVisiblemb = true"
  264. >添加目标管理</el-button
  265. >
  266. <el-button
  267. type="primary"
  268. size="small"
  269. @click="deleteEva()"
  270. >清除内容</el-button
  271. > -->
  272. <!-- <div class="e_add_delete" @click="deleteEva()">
  273. <img src="../../assets/icon/delete.png" alt="" />
  274. </div> -->
  275. </div>
  276. </div>
  277. <div v-if="evalua == ''">
  278. <div class="noneBox">
  279. <img src="../../assets/icon/new/eva_none.png" />
  280. <span>请添加目标管理</span>
  281. </div>
  282. </div>
  283. <div class="e_add_content" v-else>
  284. <div class="e_add_list_pbox">
  285. <div class="e_add_list_pbox_title">
  286. <span class="type_title">切换模式</span>
  287. <div class="type_content">
  288. <span :class="{ active: typeMode == 1 }" @click="OtherMb(1)">目标树</span>
  289. <span :class="{ active: typeMode == 2 }" @click="OtherMb(2)">目标罗盘</span>
  290. <span :class="{ active: typeMode == 3 }" @click="OtherMb(3)">目标看板</span>
  291. </div>
  292. </div>
  293. <div class="e_add_list_pbox_content">
  294. <Mind :showBar="false" :mindData="data" v-show="typeMode == 1"></Mind>
  295. <Sunburst :Josn="eJson" :num="eJSONNum" style="width: 100%" v-if="typeMode == 2"></Sunburst>
  296. <SeeBoard :Josn="eJson" :num="eJSONNum" :ename="eTitle" style="width: 100%"
  297. v-if="typeMode == 3">
  298. </SeeBoard>
  299. </div>
  300. </div>
  301. </div>
  302. </div>
  303. </div>
  304. </div>
  305. </div>
  306. <div class="info_btnBox3">
  307. <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1" @click="
  308. goTo(
  309. '/course?userid=' +
  310. userid +
  311. '&oid=' +
  312. oid +
  313. '&org=' +
  314. org +
  315. '&role=' +
  316. role
  317. )
  318. ">
  319. 返回课程
  320. </button>
  321. <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5" @click="lastSteps">
  322. {{ steps == 4 ? "返回课程" : "上一步" }}
  323. </button>
  324. <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps"
  325. :class="{ pub_btn_next_img: steps != 3, pub_btn_finish_img: steps == 3 }">
  326. {{ steps == 3 ? "确认上传" : "下一步" }}
  327. </button>
  328. </div>
  329. </div>
  330. <div class="rightBox" v-if="this.steps == 2"
  331. :style="{ height: (!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 40px)' : 'calc(100% - 100px)' }">
  332. <div class="basic_box"
  333. style="padding: 20px 30px 0px !important; box-sizing: border-box;height: calc(100% - 80px);overflow: auto;background:#fff">
  334. <!-- <div
  335. style="
  336. color: #b8b8b8;
  337. background: #fff;
  338. width: 26%;
  339. height: 40px;
  340. border-radius: 15px;
  341. padding-left: 20px;
  342. line-height: 40px;
  343. font-size: 17px;
  344. box-shadow: 0px 1px 2px 2px #e0e0e0;
  345. "
  346. >-->
  347. <div class="right_title" style="border: none; margin: 0; padding: 0">
  348. 请选择合适的课程模板
  349. </div>
  350. <div class="wordbox">
  351. <div class="wordTeacher" @click="checkTemplate2()">
  352. <div class="wordPic">
  353. <img src="../../assets/icon/new/template_none.png" alt />
  354. </div>
  355. <div style="
  356. margin-top: 10px;
  357. line-height: 19px;
  358. overflow: hidden;
  359. text-overflow: ellipsis;
  360. white-space: nowrap;
  361. padding: 0 20px;
  362. ">
  363. 空白模板
  364. </div>
  365. </div>
  366. <div class="wordTeacher" v-for="(aa, indexF) in templateArray" :key="indexF" @click="checkTemplate(aa)">
  367. <div class="wordPic">
  368. <img src="../../assets/icon/new/template.png" alt />
  369. </div>
  370. <div style="
  371. margin-top: 10px;
  372. line-height: 19px;
  373. overflow: hidden;
  374. text-overflow: ellipsis;
  375. white-space: nowrap;
  376. padding: 0 20px;
  377. ">
  378. {{ aa.title }}
  379. </div>
  380. </div>
  381. <div class="wordTeacher" @click="checkTemplate3()" v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
  382. <div class="wordPic">
  383. <img src="../../assets/icon/new/template.png" alt />
  384. </div>
  385. <div style="
  386. margin-top: 10px;
  387. line-height: 19px;
  388. overflow: hidden;
  389. text-overflow: ellipsis;
  390. white-space: nowrap;
  391. padding: 0 20px;
  392. ">
  393. 简易模板
  394. </div>
  395. </div>
  396. <div class="wordTeacher" @click="pasteStage()" v-if="isPasteStage">
  397. <div class="wordPic">
  398. <img src="../../assets/icon/new/template.png" alt />
  399. </div>
  400. <div style="
  401. margin-top: 10px;
  402. line-height: 19px;
  403. overflow: hidden;
  404. text-overflow: ellipsis;
  405. white-space: nowrap;
  406. padding: 0 20px;
  407. ">
  408. 智能粘贴模式
  409. </div>
  410. </div>
  411. <!-- <div class="wordTeacher" @click="checkTemplate4()">
  412. <div class="wordPic">
  413. <img src="../../assets/icon/wordMub.png" alt />
  414. </div>
  415. <div style="
  416. margin-top: 10px;
  417. line-height: 19px;
  418. overflow: hidden;
  419. text-overflow: ellipsis;
  420. white-space: nowrap;
  421. padding: 0 20px;
  422. ">
  423. 未来小学课程设计
  424. </div>
  425. </div> -->
  426. <!-- <div class="wordTeacher" @click="checkTemplate1()">
  427. <div class="wordPic">
  428. <img src="../../assets/icon/wordMub.png" alt />
  429. </div>
  430. <div style="
  431. margin-top: 10px;
  432. line-height: 19px;
  433. overflow: hidden;
  434. text-overflow: ellipsis;
  435. white-space: nowrap;
  436. padding: 0 20px;
  437. ">
  438. 我的课程
  439. </div>
  440. </div> -->
  441. </div>
  442. </div>
  443. <div class="info_btnBox3" style="position: absolute;bottom: 0;">
  444. <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1" @click="
  445. goTo(
  446. '/course?userid=' +
  447. userid +
  448. '&oid=' +
  449. oid +
  450. '&org=' +
  451. org +
  452. '&role=' +
  453. role
  454. )
  455. ">
  456. 返回课程
  457. </button>
  458. <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5" @click="lastSteps">
  459. {{ steps == 4 ? "返回课程" : "上一步" }}
  460. </button>
  461. <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps"
  462. :class="{ pub_btn_next_img: steps != 3, pub_btn_finish_img: steps == 3 }">
  463. {{ steps == 3 ? "确认上传" : "下一步" }}
  464. </button>
  465. </div>
  466. </div>
  467. <div class="rightBox" v-if="this.steps == 3" ref="rightboxR"
  468. :style="{ height: (!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 40px)' : 'calc(100% - 100px)' }">
  469. <div class="rb_c_box">
  470. <div class="rb_c_box_left" v-if="steps == 3 && unitJson[unitIndex].easy != 1">
  471. <div class="stepsBottom">
  472. <!-- <div class="navTop">辅助导航</div> -->
  473. <div class="navBottom">
  474. <div class="navTask noImage" v-if="unitJson[unitIndex].dyName">
  475. <div class="nt_taskBox" style="width: 100%;">
  476. <div class="nt_taskTitle"
  477. style="font-size: 16px;min-width: fit-content;margin-right: 10px;font-weight: 700;">阶段 {{
  478. unitIndex + 1 }}</div>
  479. <div class="nt_taskName" style="font-size: 16px;font-weight: 700;">
  480. <el-tooltip effect="light" :content="unitJson[unitIndex].dyName" placement="top">
  481. <span>{{ unitJson[unitIndex].dyName }}</span>
  482. </el-tooltip>
  483. </div>
  484. </div>
  485. </div>
  486. <div v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
  487. .taskJson" :key="tIndex">
  488. <div @click="goToTask(tIndex)" class="navTask" :class="{
  489. isNavTask:
  490. isClickColor > 0 && isClickColor == tIndex + 1,
  491. isNavOpen:t.toolOpen
  492. }">
  493. <div class="nt_taskBox">
  494. <div class="nt_taskTitle">任务{{ tIndex + 1 }}</div>
  495. <div class="nt_taskName">
  496. <el-tooltip effect="light" :content="t.task" placement="top">
  497. <span>{{ t.task }}</span>
  498. </el-tooltip>
  499. </div>
  500. </div>
  501. <div class="moveBtn" v-if="unitJson[unitIndex].chapterInfo[0].taskJson.length >
  502. 1
  503. ">
  504. <div class="chapter_upload_up" style="margin: 0 5px 0 0;width: 25px;height: 25px;"
  505. @click.stop="taskMove(1, tIndex)"></div>
  506. <div class="chapter_upload_down" style="width: 25px;height: 25px;"
  507. @click.stop="taskMove(2, tIndex)"></div>
  508. </div>
  509. </div>
  510. <div class="gjBox" v-if="t.toolChoose.length && t.toolOpen">
  511. <div v-for="(tool, toolIndex2) in t.toolChoose" :key="toolIndex2" @click="jumpGj(tIndex,toolIndex2)">
  512. <div
  513. class="gjCss"
  514. :class="{isGjCss: toolIndexType == `gj${tIndex}${toolIndex2}`}"
  515. >
  516. <div>工具{{ toolIndex2 + 1 }}:</div>
  517. <div>{{ toolsData[tool.tool[0]] && toolsData[tool.tool[0]].name }}</div>
  518. </div>
  519. </div>
  520. </div>
  521. </div>
  522. </div>
  523. </div>
  524. </div>
  525. <div class="rb_c_box_right">
  526. <!-- <div class="rb_c_box_btn">
  527. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3">智能粘贴</button>
  528. </div> -->
  529. <div class="basic_box" ref="unitBox">
  530. <div style="
  531. display: flex;
  532. flex-direction: row;
  533. align-items: center;
  534. position: sticky;
  535. top: 0;
  536. z-index: 99;
  537. width: 100%;
  538. padding: 0 20px 0 20px;
  539. box-sizing: border-box;
  540. background: #fff;
  541. border-radius: 8px;
  542. ">
  543. <!-- :style="{ maxWidth: (userid == courseUserid || role == '1') ? 'calc(100% - 300px)' : 'calc(100% - 175px)' }" -->
  544. <div class="cru_selectBox"
  545. :style="{ maxWidth: isPasteTask ? 'calc(100% - 175px)' : 'calc(100% - 40px)' }">
  546. <div v-for="(item, index) in unitJson" :key="index" class="cru_select"
  547. :class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
  548. <!-- item.dyName ? item.dyName : -->
  549. <span v-if="unitJson[unitJson.length - 1].easy == 4 ||
  550. unitJson[unitJson.length - 1].easy == 6
  551. ">{{
  552. item.dyName ? item.dyName : "第" + (index + 1) + "阶段"
  553. }}</span>
  554. <span v-else>{{ "第" + (index + 1) + "阶段" }}</span>
  555. </div>
  556. <div class="cru_line" :style="{
  557. left: offsetLetfPx + 'px',
  558. }"></div>
  559. </div>
  560. <div class="addStageImg" @click="addunit()" v-if="!(unitJson[unitJson.length - 1].easy == 4) &&
  561. !(unitJson[unitJson.length - 1].easy == 6)
  562. ">
  563. <img src="../../assets/icon/new/addStage.png" alt />
  564. </div>
  565. <!-- v-if="steps == 3 && (userid == courseUserid || role == '1')" -->
  566. <button class="c_pub_button_add" @click="openStageBox" v-show="false"
  567. style="margin: 0 0 0 auto;">阶段顺序</button>
  568. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3 && isPasteTask"
  569. style="margin: 0 0 0 auto;">智能粘贴</button>
  570. </div>
  571. <div style="margin: 0 0 10px 0; padding: 0;"
  572. v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
  573. <div class="chapter_box">
  574. <div class="chapter_contentbox">
  575. <!-- <div>第{{ unitIndex + 1 }}阶段</div> -->
  576. <div class="cc_input">
  577. <input ref="dyInput" type="text" placeholder="请输入阶段标题" class="binfo_input"
  578. v-model="unitJson[unitIndex].dyName" />
  579. </div>
  580. <div class="remove" v-if="unitJson.length > 1 &&
  581. !(unitJson[unitJson.length - 1].easy == 4) &&
  582. !(unitJson[unitJson.length - 1].easy == 6)
  583. " @click="deleteUnit(unitIndex)"></div>
  584. </div>
  585. </div>
  586. <!-- <div v-if="!unitJson[unitIndex].easy" style="
  587. margin: 50px 0px 10px;
  588. font-size: 1.5em;
  589. font-weight: 700;
  590. color: #0f7eff;
  591. ">
  592. 添加任务
  593. </div> -->
  594. <div class="taskBorder" :style="{ minHeight: unitJson[unitIndex].easy && 'unset' }"
  595. :class="{ smallTaskBorder: itemTask.isFold === 1 }"
  596. v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
  597. <div style="background: #fff;border-radius: 5px;">
  598. <!-- padding: 20px; -->
  599. <div v-if="unitJson[unitIndex].easy != 1">
  600. <div :style="{
  601. marginBottom:
  602. unitJson[unitIndex].easy == 3 ||
  603. (unitJson[unitIndex].easy == 5 &&
  604. itemTask.taskType == 1)
  605. ? '75px'
  606. : '0',
  607. }">
  608. <div style="
  609. display: flex;
  610. margin: 0px 0 20px;
  611. flex-direction: row;
  612. justify-content: flex-start;
  613. align-items: center;
  614. ">
  615. <div class="lineTitle">任务{{itemTaskIndex+1}}概述</div>
  616. </div>
  617. <div :id="'task' + itemTaskIndex" class="chapter_contentbox" style="
  618. flex-direction: row;
  619. justify-content: flex-start;
  620. align-items: center;
  621. margin:0;
  622. ">
  623. <!-- <div class="cc_title">
  624. 任务{{ itemTaskIndex + 1 }}
  625. </div> -->
  626. <div class="cc_input">
  627. <input type="text" placeholder="输入任务名称" class="binfo_input" style="border-radius: 4px"
  628. v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  629. itemTaskIndex
  630. ].task
  631. " />
  632. </div>
  633. <div class="remove" v-if="item.taskJson.length > 1 &&
  634. (!unitJson[unitIndex].easy ||
  635. unitJson[unitIndex].easy == 6)
  636. " @click="deleteTask(itemTaskIndex)"></div>
  637. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2"
  638. class="show_taskD show" @click="fold2(itemTaskIndex)"><img
  639. src="../../assets/icon/new/icon-slide.png" />收起任务描述</div>
  640. <div v-else-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" class="show_taskD"
  641. @click="fold2(itemTaskIndex)"><img src="../../assets/icon/new/icon-slide.png" />展开任务描述
  642. </div>
  643. </div>
  644. <!-- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="
  645. display: flex;
  646. margin: 20px 0;
  647. flex-direction: row;
  648. justify-content: flex-start;
  649. align-items: center;
  650. ">
  651. <div class="lineTitle">任务描述</div>
  652. </div> -->
  653. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="margin-top: 20px;">
  654. <editor-bar class="addEditor" style="margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  655. itemTaskIndex
  656. ].taskDetail
  657. " @change="change"></editor-bar>
  658. <!-- <textarea
  659. rows="6"
  660. class="binfo_input"
  661. placeholder="请输入任务描述"
  662. cols
  663. style="width: 70.5% !important; height: 120px"
  664. v-model="
  665. unitJson[unitIndex].chapterInfo[0].taskJson[
  666. itemTaskIndex
  667. ].taskDetail
  668. "
  669. ></textarea>-->
  670. </div>
  671. </div>
  672. </div>
  673. <div style="position:relative" v-if="!unitJson[unitIndex].easy ||
  674. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  675. ">
  676. <div style="
  677. display: flex;
  678. flex-direction: row;
  679. justify-content: space-between;
  680. align-items: center;
  681. " :style="{ margin: !itemTask.isFoldchapter ? '20px 0 0' : '20px 0 0' }">
  682. <div style="margin-bottom:10px" class="lineTitle">学习内容</div>
  683. <div class="add_info_box">
  684. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  685. 添加文件
  686. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="
  687. beforeUpload2($event, unitIndex, 13, itemTaskIndex)
  688. " />
  689. </button>
  690. <button class="c_pub_button_add pub_btn_add_img" @click="addAttText(itemTaskIndex)">
  691. 添加图文
  692. </button>
  693. <button class="c_pub_button_add pub_btn_add_img" @click="openLine(itemTaskIndex)">
  694. 添加链接
  695. </button>
  696. <button class="c_pub_button_add pub_btn_add_img" @click="pasteLine(itemTaskIndex)">
  697. 嵌入代码
  698. </button>
  699. <button class="c_pub_button_add pub_btn_add_img" @click="openSource(itemTaskIndex)">
  700. 添加资源
  701. </button>
  702. <!-- <button class="info_btn" @click="addImg($event)">
  703. 其他附件
  704. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 12, itemTaskIndex)
  705. " />
  706. </button> -->
  707. </div>
  708. <div style="margin-bottom:10px" v-if="!itemTask.isFoldchapter" class="show_taskD show" @click="foldC(itemTaskIndex)"><img
  709. src="../../assets/icon/new/icon-slide.png" />收起学习内容</div>
  710. <div style="margin-bottom:10px" v-else class="show_taskD" @click="foldC(itemTaskIndex)"><img
  711. src="../../assets/icon/new/icon-slide.png" />展开学习内容</div>
  712. <!-- <div class="line"></div> -->
  713. </div>
  714. <div v-if="!itemTask.isFoldchapter">
  715. <div class="add_chapters_box add_c_none" v-if="itemTask.chapterData &&
  716. itemTask.chapterData.length == 0
  717. "><img src="../../assets/icon/new/c_none.png" alt /><span>请添加学习内容</span></div>
  718. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  719. <div @dragstart="dragStart(item1, index1,index)"
  720. @dragover.prevent="dragOver(index1)"
  721. @dragend="dragEnd()"
  722. draggable class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  723. @click="
  724. getChapterData(
  725. $event,
  726. unitIndex,
  727. index,
  728. index1,
  729. item1.type
  730. )
  731. ">
  732. <div
  733. class="chapter_upload_drag"
  734. ></div>
  735. <div class="chapter_upload_o" style="
  736. position: relative;
  737. display: flex;
  738. align-items: center;
  739. ">
  740. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  741. <div v-if="item1.type == 2" class="chapter_upload_l_i2"></div>
  742. <div v-if="item1.type == 3" class="chapter_upload_l_i3" style="margin-left: 1px">
  743. </div>
  744. <div v-if="item1.type == 6" class="chapter_upload_l_i6" style="margin-left: 1px">
  745. </div>
  746. <!-- <div v-if="item1.type == 7" class="chapter_upload_l_i8" style="margin-left: 1px"></div> -->
  747. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px">
  748. </div>
  749. <div v-if="item1.type == 14" class="chapter_upload_l_i14" style="margin-left: 1px">
  750. </div>
  751. <div v-if="item1.type == 12" class="chapter_upload_l_i12" style="margin-left: 1px">
  752. </div>
  753. <div v-if="item1.type == 13" class="chapter_upload_l_i13" style="margin-left: 1px">
  754. </div>
  755. </div>
  756. <div class="chapter_upload_n">
  757. <input readonly="true" v-if="item1.type == 2 ||
  758. item1.type == 3 ||
  759. item1.type == 12 ||
  760. item1.type == 13 ||
  761. item1.type == 7
  762. " :placeholder="item1.name" @click="
  763. updataVideoT(
  764. $event,
  765. unitIndex,
  766. itemTaskIndex,
  767. index1
  768. )
  769. " style="
  770. border: none;
  771. outline: none;
  772. width: 80%;
  773. minwidth: 215px;
  774. z-index: 99;
  775. font-size: 14px;
  776. white-space: nowrap;
  777. overflow: hidden;
  778. text-overflow: ellipsis;
  779. " />
  780. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  781. border: none;
  782. outline: none;
  783. width: 80%;
  784. white-space: nowrap;
  785. overflow: hidden;
  786. text-overflow: ellipsis;
  787. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  788. <input :placeholder="item1.title ? item1.title : '链接'
  789. " v-if="item1.type == 8" style="
  790. border: none;
  791. outline: none;
  792. width: 80%;
  793. white-space: nowrap;
  794. overflow: hidden;
  795. text-overflow: ellipsis;
  796. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  797. <input :placeholder="item1.title ? item1.title : '链接'
  798. " v-if="item1.type == 14" style="
  799. border: none;
  800. outline: none;
  801. width: 80%;
  802. white-space: nowrap;
  803. overflow: hidden;
  804. text-overflow: ellipsis;
  805. " readonly="true" @click="openUpdateSource(itemTaskIndex, index1)" />
  806. </div>
  807. <div class="chapter_upload_ic">
  808. <div class="chapter_upload_noSee" v-if="item1.type == 12">
  809. </div>
  810. <div class="chapter_upload_ud" style="z-index: 99">
  811. <div class="chapter_upload_up" @click="
  812. upCd(
  813. $event,
  814. unitIndex,
  815. index,
  816. itemTaskIndex,
  817. index1
  818. )
  819. "></div>
  820. <div class="chapter_upload_down" @click="
  821. downCd(
  822. $event,
  823. unitIndex,
  824. index,
  825. itemTaskIndex,
  826. index1
  827. )
  828. "></div>
  829. </div>
  830. <div class="chapter_upload_ic_edit" v-if="item1.type == 2 ||
  831. item1.type == 3 ||
  832. item1.type == 12 ||
  833. item1.type == 13 ||
  834. item1.type == 7
  835. " @click.stop="
  836. updataVideoT(
  837. $event,
  838. unitIndex,
  839. itemTaskIndex,
  840. index1
  841. )
  842. ">
  843. <div></div>
  844. </div>
  845. <div class="chapter_upload_ic_edit" v-if="item1.type == 6"
  846. @click="selectAttText(itemTaskIndex, index1)">
  847. <div></div>
  848. </div>
  849. <div class="chapter_upload_ic_edit" v-if="item1.type == 8"
  850. @click="selectLine(itemTaskIndex, index1)">
  851. <div></div>
  852. </div>
  853. <div class="chapter_upload_ic_edit" v-if="item1.type == 14"
  854. @click="openUpdateSource(itemTaskIndex, index1)">
  855. <div></div>
  856. </div>
  857. <div class="chapter_upload_ic_r" @click.stop="
  858. deleteChapterData(
  859. $event,
  860. unitIndex,
  861. index,
  862. index1,
  863. itemTaskIndex
  864. )
  865. ">
  866. <div></div>
  867. </div>
  868. </div>
  869. </div>
  870. </div>
  871. </div>
  872. </div>
  873. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  874. itemTaskIndex
  875. ].proVisible
  876. " class="mask">
  877. <div class="progressBox">
  878. <!-- <div id="closePro" class="closeCss">
  879. <img src="../../../assets/icon/close.png" alt />
  880. </div> -->
  881. <div class="lbox">
  882. <img src="../../assets/loading.gif" />上传中,请稍后
  883. </div>
  884. <div style="margin-bottom: 10px">
  885. <span>{{
  886. unitJson[unitIndex].chapterInfo[0].taskJson[
  887. itemTaskIndex
  888. ].isFinishSize
  889. }}M</span>
  890. /
  891. <span>{{
  892. unitJson[unitIndex].chapterInfo[0].taskJson[
  893. itemTaskIndex
  894. ].isAllSize
  895. }}M</span>
  896. </div>
  897. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  898. itemTaskIndex
  899. ].progress
  900. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  901. itemTaskIndex
  902. ].progress
  903. : 0
  904. " style="width: 80%"></el-progress>
  905. </div>
  906. </div>
  907. </div>
  908. <div v-if="unitJson[unitIndex].easy == 1 ||
  909. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  910. ">
  911. <div>
  912. <div class="add_chapters_box add_c_none" v-if="itemTask.chapterData &&
  913. itemTask.chapterData.length == 0
  914. "><img src="../../assets/icon/new/c_none.png" alt /></div>
  915. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  916. <div @dragstart="dragStart(item1, index1,index)"
  917. @dragover.prevent="dragOver(index1)"
  918. @dragend="dragEnd()"
  919. draggable class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  920. @click="
  921. getChapterData(
  922. $event,
  923. unitIndex,
  924. index,
  925. index1,
  926. item1.type
  927. )
  928. ">
  929. <div
  930. class="chapter_upload_drag"
  931. ></div>
  932. <div class="chapter_upload_t" style="width: 100%"></div>
  933. <div class="chapter_upload_o" style="
  934. position: relative;
  935. display: flex;
  936. align-items: center;
  937. ">
  938. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  939. <div v-if="item1.type == 2" class="chapter_upload_l_i2"></div>
  940. <div v-if="item1.type == 3" class="chapter_upload_l_i3" style="margin-left: 1px">
  941. </div>
  942. <div v-if="item1.type == 6" class="chapter_upload_l_i6" style="margin-left: 1px">
  943. </div>
  944. <!-- <div v-if="item1.type == 7" class="chapter_upload_l_i8" style="margin-left: 1px"></div> -->
  945. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px">
  946. </div>
  947. <div v-if="item1.type == 14" class="chapter_upload_l_i14" style="margin-left: 1px">
  948. </div>
  949. <div v-if="item1.type == 12" class="chapter_upload_l_i12" style="margin-left: 1px">
  950. </div>
  951. <div v-if="item1.type == 13" class="chapter_upload_l_i13" style="margin-left: 1px">
  952. </div>
  953. </div>
  954. <div class="chapter_upload_n">
  955. <span style="
  956. font-size: 14px;
  957. color: rgb(109, 109, 109);
  958. height: 14px;
  959. line-height: 14px;
  960. " v-if="item1.type == 2 ||
  961. item1.type == 3 ||
  962. item1.type == 7
  963. ">{{ item1.text }}-</span>
  964. <input readonly="true" v-if="item1.type == 2 ||
  965. item1.type == 3 ||
  966. item1.type == 7
  967. " :placeholder="item1.name" @click="
  968. updataVideoT(
  969. $event,
  970. unitIndex,
  971. itemTaskIndex,
  972. index1
  973. )
  974. " style="
  975. border: none;
  976. outline: none;
  977. width: 80%;
  978. minwidth: 215px;
  979. z-index: 99;
  980. font-size: 14px;
  981. white-space: nowrap;
  982. overflow: hidden;
  983. text-overflow: ellipsis;
  984. " />
  985. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  986. border: none;
  987. outline: none;
  988. width: 80%;
  989. white-space: nowrap;
  990. overflow: hidden;
  991. text-overflow: ellipsis;
  992. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  993. <input :placeholder="item1.title ? item1.title : '链接'
  994. " v-if="item1.type == 8 || item1.type == 14" style="
  995. border: none;
  996. outline: none;
  997. width: 80%;
  998. white-space: nowrap;
  999. overflow: hidden;
  1000. text-overflow: ellipsis;
  1001. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  1002. </div>
  1003. <div class="chapter_upload_ic">
  1004. <div class="chapter_upload_noSee" v-if="item1.type == 12">
  1005. </div>
  1006. <div class="chapter_upload_ud" style="z-index: 99">
  1007. <div class="chapter_upload_up" @click="
  1008. upCd(
  1009. $event,
  1010. unitIndex,
  1011. index,
  1012. itemTaskIndex,
  1013. index1
  1014. )
  1015. "></div>
  1016. <div class="chapter_upload_down" @click="
  1017. downCd(
  1018. $event,
  1019. unitIndex,
  1020. index,
  1021. itemTaskIndex,
  1022. index1
  1023. )
  1024. "></div>
  1025. </div>
  1026. <div class="chapter_upload_ic_edit" v-if="item1.type == 2 ||
  1027. item1.type == 3 ||
  1028. item1.type == 12 ||
  1029. item1.type == 13 ||
  1030. item1.type == 7
  1031. " @click.stop="
  1032. updataVideoT(
  1033. $event,
  1034. unitIndex,
  1035. itemTaskIndex,
  1036. index1
  1037. )
  1038. ">
  1039. <div></div>
  1040. </div>
  1041. <div class="chapter_upload_ic_edit" v-if="item1.type == 6"
  1042. @click="selectAttText(itemTaskIndex, index1)">
  1043. <div></div>
  1044. </div>
  1045. <div class="chapter_upload_ic_edit" v-if="item1.type == 8"
  1046. @click="selectLine(itemTaskIndex, index1)">
  1047. <div></div>
  1048. </div>
  1049. <div class="chapter_upload_ic_edit" v-if="item1.type == 14"
  1050. @click="openUpdateSource(itemTaskIndex, index1)">
  1051. <div></div>
  1052. </div>
  1053. <div class="chapter_upload_ic_r" @click.stop="
  1054. deleteChapterData(
  1055. $event,
  1056. unitIndex,
  1057. index,
  1058. index1,
  1059. itemTaskIndex
  1060. )
  1061. ">
  1062. <div></div>
  1063. </div>
  1064. </div>
  1065. </div>
  1066. </div>
  1067. </div>
  1068. </div>
  1069. <div class="add_info_box" style="margin: 10px 0 0">
  1070. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  1071. <span style="color: red">*</span>
  1072. 教学设计
  1073. <input type="file"
  1074. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1075. style="display: none" v-if="inputShow" @change="
  1076. beforeUpload3(
  1077. $event,
  1078. unitIndex,
  1079. 3,
  1080. itemTaskIndex,
  1081. '教学设计'
  1082. )
  1083. " />
  1084. </button>
  1085. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  1086. <span style="color: red">*</span>
  1087. 教学课件
  1088. <input type="file"
  1089. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1090. style="display: none" v-if="inputShow" @change="
  1091. beforeUpload3(
  1092. $event,
  1093. unitIndex,
  1094. 3,
  1095. itemTaskIndex,
  1096. '教学课件'
  1097. )
  1098. " />
  1099. </button>
  1100. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  1101. 教学视频
  1102. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo"
  1103. style="display: none" v-if="inputShow" @change="
  1104. beforeUpload3(
  1105. $event,
  1106. unitIndex,
  1107. 2,
  1108. itemTaskIndex,
  1109. '教学视频'
  1110. )
  1111. " />
  1112. </button>
  1113. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  1114. 教学音频
  1115. <input type="file" accept="audio/*" style="display: none" v-if="inputShow" @change="
  1116. beforeUpload3(
  1117. $event,
  1118. unitIndex,
  1119. 2,
  1120. itemTaskIndex,
  1121. '教学音频'
  1122. )
  1123. " />
  1124. </button>
  1125. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  1126. 学习单
  1127. <input type="file"
  1128. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1129. style="display: none" v-if="inputShow" @change="
  1130. beforeUpload3(
  1131. $event,
  1132. unitIndex,
  1133. 3,
  1134. itemTaskIndex,
  1135. '学习单'
  1136. )
  1137. " />
  1138. </button>
  1139. </div>
  1140. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  1141. itemTaskIndex
  1142. ].proVisible
  1143. " class="mask">
  1144. <div class="progressBox">
  1145. <!-- <div id="closePro" class="closeCss">
  1146. <img src="../../../assets/icon/close.png" alt />
  1147. </div> -->
  1148. <div class="lbox">
  1149. <img src="../../assets/loading.gif" />上传中,请稍后
  1150. </div>
  1151. <div style="margin-bottom: 10px">
  1152. <span>{{
  1153. unitJson[unitIndex].chapterInfo[0].taskJson[
  1154. itemTaskIndex
  1155. ].isFinishSize
  1156. }}M</span>
  1157. /
  1158. <span>{{
  1159. unitJson[unitIndex].chapterInfo[0].taskJson[
  1160. itemTaskIndex
  1161. ].isAllSize
  1162. }}M</span>
  1163. </div>
  1164. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  1165. itemTaskIndex
  1166. ].progress
  1167. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  1168. itemTaskIndex
  1169. ].progress
  1170. : 0
  1171. " style="width: 80%"></el-progress>
  1172. </div>
  1173. </div>
  1174. </div>
  1175. </div>
  1176. <!-- padding: 20px; -->
  1177. <div style="background: #fff;border-radius: 5px;margin-top: 15px;">
  1178. <div v-if="unitJson[unitIndex].easy != 3 &&
  1179. !(unitJson[unitIndex].easy == 5 && itemTask.taskType == 1)
  1180. " style="
  1181. flex-direction: row;
  1182. justify-content: flex-start;
  1183. align-items: center;
  1184. ">
  1185. <div style="
  1186. display: flex;
  1187. flex-direction: row;
  1188. align-items: center;
  1189. margin: 5px 0 20px;
  1190. ">
  1191. <div class="lineTitle">
  1192. {{
  1193. !unitJson[unitIndex].easy ||
  1194. unitJson[unitIndex].easy == 6 ||
  1195. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  1196. ? "练习内容"
  1197. : "评价内容"
  1198. }}
  1199. </div>
  1200. <!-- <div class="line" style="width: 90%"></div> -->
  1201. </div>
  1202. </div>
  1203. <div v-if="unitJson[unitIndex].easy == 6 || !unitJson[unitIndex].easy
  1204. " class="toolChoose">
  1205. <div class="tools">
  1206. <div class="leftTools" style="
  1207. width: 100%;
  1208. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  1209. <div style="
  1210. display: flex;
  1211. flex-direction: row;
  1212. align-items: baseline;
  1213. flex-wrap: nowrap;
  1214. justify-content: flex-start;
  1215. position: relative;
  1216. ">
  1217. <div style="margin-right: 20px; font-weight: bold" :id="'gj'+itemTaskIndex + '' + toolIndex">
  1218. 步骤 {{ toolIndex + 1 }} :
  1219. </div>
  1220. <div class="chooseWho">
  1221. <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
  1222. " @click="(itemTool.toolType = 0), (itemTool.isFold3 = true), $forceUpdate()">
  1223. 互动类
  1224. </div>
  1225. <div :class="itemTool.toolType == 1 ? 'isChooseActive' : ''
  1226. " @click="(itemTool.toolType = 1), (itemTool.isFold3 = true), $forceUpdate()">
  1227. 思维类
  1228. </div>
  1229. <div :class="itemTool.toolType == 6 ? 'isChooseActive' : ''
  1230. " @click="(itemTool.toolType = 6), (itemTool.isFold3 = true), $forceUpdate()">
  1231. 协作类
  1232. </div>
  1233. <div :class="itemTool.toolType == 2 ? 'isChooseActive' : ''
  1234. " @click="(itemTool.toolType = 2), (itemTool.isFold3 = true), $forceUpdate()">
  1235. 测评类
  1236. </div>
  1237. <div :class="itemTool.toolType == 7 ? 'isChooseActive' : ''
  1238. " @click="(itemTool.toolType = 7), (itemTool.isFold3 = true), $forceUpdate()">
  1239. 评价类
  1240. </div>
  1241. <div :class="itemTool.toolType == 3 ? 'isChooseActive' : ''
  1242. " @click="(itemTool.toolType = 3), (itemTool.isFold3 = true), $forceUpdate()">
  1243. 编程类
  1244. </div>
  1245. <div :class="itemTool.toolType == 5 ? 'isChooseActive' : ''
  1246. " @click="(itemTool.toolType = 5), (itemTool.isFold3 = true), $forceUpdate()">
  1247. 学科类
  1248. </div>
  1249. <!-- <div :class="itemTool.toolType == 4 ? 'isChooseActive' : ''
  1250. " @click="(itemTool.toolType = 4), $forceUpdate()">
  1251. 其他
  1252. </div> -->
  1253. </div>
  1254. <div v-if="itemTool.isFold3" class="show_toolD show"
  1255. @click="fold3(itemTaskIndex, toolIndex)"
  1256. :style="{ right: itemTask.toolChoose.length > 1 ? '45px' : '0px' }"><img
  1257. src="../../assets/icon/new/icon-slide.png" />收起工具栏</div>
  1258. <div v-else class="show_toolD" @click="fold3(itemTaskIndex, toolIndex)"
  1259. :style="{ right: itemTask.toolChoose.length > 1 ? '45px' : '0px' }"><img
  1260. src="../../assets/icon/new/icon-slide.png" />展开工具栏</div>
  1261. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  1262. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 0"></div>
  1263. </div>
  1264. <div style="min-height: 163px" v-show="itemTool.isFold3">
  1265. <div class="toolSort" v-if="itemTool.toolType == 0">
  1266. <!-- <div class="tool">
  1267. <div
  1268. class="whiteBIcon"
  1269. @click="addTools(8, itemTaskIndex, toolIndex)"
  1270. >
  1271. <img src="../../assets/icon/secondToolList/library.png" alt />
  1272. <div style="margin: 5px 0">素材库</div>
  1273. </div>
  1274. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  1275. <img
  1276. src="../../assets/icon/checkNo.png"
  1277. alt
  1278. v-if="itemTool.tool.indexOf(8) == -1"
  1279. />
  1280. <div class="checkDiv" v-else><img src="../../assets/icon/checkedIs.png"
  1281. alt /><span>已选择</span></div>
  1282. </div>
  1283. </div>-->
  1284. <!-- <div class="tool">
  1285. <div
  1286. class="whiteBIcon"
  1287. @click="addTools(17, itemTaskIndex, toolIndex)"
  1288. >
  1289. <img
  1290. src="../../assets/icon/secondToolList/library.png"
  1291. alt
  1292. />
  1293. <div style="margin: 5px 0">学习资料</div>
  1294. </div>
  1295. <div
  1296. class="check"
  1297. @click="addTools(17, itemTaskIndex, toolIndex)"
  1298. >
  1299. <img
  1300. src="../../assets/icon/checkNo.png"
  1301. alt
  1302. v-if="itemTool.tool.indexOf(17) == -1"
  1303. />
  1304. <img
  1305. src="../../assets/icon/checkedIs.png"
  1306. alt
  1307. v-else
  1308. />
  1309. </div>10
  1310. </div> -->
  1311. <div class="tool">
  1312. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 10, toolIndex)">
  1313. <img src="../../assets/icon/thirdToolList/time.png" alt />
  1314. <div style="margin: 5px 0">倒计时</div>
  1315. </div>
  1316. <div class="check" @click="addTools(10, itemTaskIndex, toolIndex)">
  1317. <img src="../../assets/icon/checkNo.png" alt
  1318. v-if="itemTool.tool.indexOf(10) == -1" />
  1319. <div class="checkDiv" v-else>
  1320. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1321. </div>
  1322. </div>
  1323. </div>
  1324. <div class="tool">
  1325. <div class="whiteBIcon" @click="addTools(65, itemTaskIndex, toolIndex)">
  1326. <img src="../../assets/icon/firstToolList/pickPeople.png" alt />
  1327. <div style="margin: 5px 0">挑人</div>
  1328. </div>
  1329. <div class="check" @click="addTools(65, itemTaskIndex, toolIndex)">
  1330. <img src="../../assets/icon/checkNo.png" alt
  1331. v-if="itemTool.tool.indexOf(65) == -1" />
  1332. <div class="checkDiv" v-else>
  1333. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1334. </div>
  1335. </div>
  1336. </div>
  1337. <!-- <div class="tool">
  1338. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 49, toolIndex)">
  1339. <img src="../../assets/icon/fourthToolList/group.png" alt />
  1340. <div style="margin: 5px 0">学生分组</div>
  1341. </div>
  1342. <div class="check" @click="addTools(49, itemTaskIndex, toolIndex)">
  1343. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(49) == -1" />
  1344. <div class="checkDiv" v-else>
  1345. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1346. </div>
  1347. </div>
  1348. </div> -->
  1349. <!-- <div class="tool">
  1350. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 62, toolIndex)">
  1351. <img src="../../assets/icon/fourthToolList/interVideo.png" alt />
  1352. <div style="margin: 5px 0">交互视频</div>
  1353. </div>
  1354. <div class="check" @click="addTools(62, itemTaskIndex, toolIndex)">
  1355. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(62) == -1" />
  1356. <div class="checkDiv" v-else>
  1357. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1358. </div>
  1359. </div>
  1360. </div> -->
  1361. </div>
  1362. <div class="toolSort" v-if="itemTool.toolType == 1">
  1363. <div class="tool">
  1364. <div class="whiteBIcon" @click="addTools(7, itemTaskIndex, toolIndex)">
  1365. <img src="../../assets/icon/secondToolList/mindNetwork.png" alt />
  1366. <div style="margin: 5px 0">思维网格</div>
  1367. </div>
  1368. <div class="check" @click="addTools(7, itemTaskIndex, toolIndex)">
  1369. <img src="../../assets/icon/checkNo.png" alt
  1370. v-if="itemTool.tool.indexOf(7) == -1" />
  1371. <div class="checkDiv" v-else>
  1372. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1373. </div>
  1374. </div>
  1375. </div>
  1376. <div class="tool">
  1377. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  1378. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  1379. <div style="margin: 5px 0">电子白板</div>
  1380. </div>
  1381. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  1382. <img src="../../assets/icon/checkNo.png" alt
  1383. v-if="itemTool.tool.indexOf(1) == -1" />
  1384. <div class="checkDiv" v-else>
  1385. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1386. </div>
  1387. </div>
  1388. </div>
  1389. <!-- <div class="tool">
  1390. <div
  1391. class="whiteBIcon"
  1392. @click="addTools(2, itemTaskIndex, toolIndex)"
  1393. >
  1394. <img
  1395. src="../../assets/icon/secondToolList/note.png"
  1396. alt
  1397. />
  1398. <div style="margin: 5px 0">便签</div>
  1399. </div>
  1400. <div
  1401. class="check"
  1402. @click="addTools(2, itemTaskIndex, toolIndex)"
  1403. >
  1404. <img
  1405. src="../../assets/icon/checkNo.png"
  1406. alt
  1407. v-if="itemTool.tool.indexOf(2) == -1"
  1408. />
  1409. <div class="checkDiv" v-else>
  1410. <img
  1411. src="../../assets/icon/checkedIs.png"
  1412. alt
  1413. /><span>已选择</span>
  1414. </div>
  1415. </div>
  1416. </div> -->
  1417. <!-- <div class="tool">
  1418. <div class="whiteBIcon" @click="addTools(6, itemTaskIndex, toolIndex)">
  1419. <img src="../../assets/icon/secondToolList/doc.png" alt />
  1420. <div style="margin: 5px 0">协同文档</div>
  1421. </div>
  1422. <div
  1423. class="check"
  1424. @click="addTools(6, itemTaskIndex, toolIndex)"
  1425. >
  1426. <img
  1427. src="../../assets/icon/checkNo.png"
  1428. alt
  1429. v-if="itemTool.tool.indexOf(6) == -1"
  1430. />
  1431. <div class="checkDiv" v-else>
  1432. <img
  1433. src="../../assets/icon/checkedIs.png"
  1434. alt
  1435. /><span>已选择</span>
  1436. </div>
  1437. </div>
  1438. </div> -->
  1439. <div class="tool">
  1440. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  1441. <img src="../../assets/icon/fourthToolList/text.png" alt />
  1442. <div style="margin: 5px 0">文档</div>
  1443. </div>
  1444. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  1445. <img src="../../assets/icon/checkNo.png" alt
  1446. v-if="itemTool.tool.indexOf(52) == -1" />
  1447. <div class="checkDiv" v-else>
  1448. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1449. </div>
  1450. </div>
  1451. </div>
  1452. <div class="tool">
  1453. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  1454. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  1455. <div style="margin: 5px 0">思维导图</div>
  1456. </div>
  1457. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  1458. <img src="../../assets/icon/checkNo.png" alt
  1459. v-if="itemTool.tool.indexOf(3) == -1" />
  1460. <div class="checkDiv" v-else>
  1461. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1462. </div>
  1463. </div>
  1464. </div>
  1465. <div class="tool">
  1466. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  1467. <img src="../../assets/icon/fourthToolList/table.png" alt />
  1468. <div style="margin: 5px 0">表格</div>
  1469. </div>
  1470. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  1471. <img src="../../assets/icon/checkNo.png" alt
  1472. v-if="itemTool.tool.indexOf(48) == -1" />
  1473. <div class="checkDiv" v-else>
  1474. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1475. </div>
  1476. </div>
  1477. </div>
  1478. </div>
  1479. <div class="toolSort" v-if="itemTool.toolType == 6">
  1480. <div class="tool">
  1481. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 49, toolIndex)">
  1482. <img src="../../assets/icon/fourthToolList/group.png" alt />
  1483. <div style="margin: 5px 0">学生分组</div>
  1484. </div>
  1485. <div class="check" @click="addTools(49, itemTaskIndex, toolIndex)">
  1486. <img src="../../assets/icon/checkNo.png" alt
  1487. v-if="itemTool.tool.indexOf(49) == -1" />
  1488. <div class="checkDiv" v-else>
  1489. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1490. </div>
  1491. </div>
  1492. </div>
  1493. </div>
  1494. <div class="toolSort" v-if="itemTool.toolType == 2">
  1495. <!-- <div class="tool">
  1496. <div
  1497. class="whiteBIcon"
  1498. @click="addTools(5, itemTaskIndex, toolIndex)"
  1499. >
  1500. <img
  1501. src="../../assets/icon/thirdToolList/score.png"
  1502. alt
  1503. />
  1504. <div style="margin: 5px 0">量规评分</div>
  1505. </div>
  1506. <div
  1507. class="check"
  1508. @click="addTools(5, itemTaskIndex, toolIndex)"
  1509. >
  1510. <img
  1511. src="../../assets/icon/checkNo.png"
  1512. alt
  1513. v-if="itemTool.tool.indexOf(5) == -1"
  1514. />
  1515. <img
  1516. src="../../assets/icon/checkedIs.png"
  1517. alt
  1518. v-else
  1519. />
  1520. </div>
  1521. </div>-->
  1522. <div class="tool">
  1523. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  1524. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  1525. <div style="margin: 5px 0">问卷调查</div>
  1526. </div>
  1527. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  1528. <img src="../../assets/icon/checkNo.png" alt
  1529. v-if="itemTool.tool.indexOf(4) == -1" />
  1530. <div class="checkDiv" v-else>
  1531. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1532. </div>
  1533. </div>
  1534. </div>
  1535. <div class="tool">
  1536. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  1537. <img src="../../assets/icon/thirdToolList/choose.png" alt />
  1538. <div style="margin: 5px 0">选择题</div>
  1539. </div>
  1540. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  1541. <img src="../../assets/icon/checkNo.png" alt
  1542. v-if="itemTool.tool.indexOf(45) == -1" />
  1543. <div class="checkDiv" v-else>
  1544. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1545. </div>
  1546. </div>
  1547. </div>
  1548. <div class="tool">
  1549. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  1550. <img src="../../assets/icon/thirdToolList/answer.png" alt />
  1551. <div style="margin: 5px 0">问答</div>
  1552. </div>
  1553. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  1554. <img src="../../assets/icon/checkNo.png" alt
  1555. v-if="itemTool.tool.indexOf(15) == -1" />
  1556. <div class="checkDiv" v-else>
  1557. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1558. </div>
  1559. </div>
  1560. </div>
  1561. <div class="tool">
  1562. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  1563. <img src="../../assets/icon/thirdToolList/work.png" alt />
  1564. <div style="margin: 5px 0">作业提交</div>
  1565. </div>
  1566. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  1567. <img src="../../assets/icon/checkNo.png" alt
  1568. v-if="itemTool.tool.indexOf(16) == -1" />
  1569. <div class="checkDiv" v-else>
  1570. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1571. </div>
  1572. </div>
  1573. </div>
  1574. <div class="tool">
  1575. <div class="whiteBIcon" @click="addTools(50, itemTaskIndex, toolIndex)">
  1576. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  1577. <div style="margin: 5px 0">批量上传</div>
  1578. </div>
  1579. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  1580. <img src="../../assets/icon/checkNo.png" alt
  1581. v-if="itemTool.tool.indexOf(50) == -1" />
  1582. <div class="checkDiv" v-else>
  1583. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1584. </div>
  1585. </div>
  1586. </div>
  1587. <!-- <div class="tool">
  1588. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
  1589. <img src="../../assets/icon/thirdToolList/eval.png" alt />
  1590. <div style="margin: 5px 0">个人评价</div>
  1591. </div>
  1592. <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
  1593. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(40) == -1" />
  1594. <div class="checkDiv" v-else>
  1595. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1596. </div>
  1597. </div>
  1598. </div> -->
  1599. <div class="tool">
  1600. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  1601. <img src="../../assets/icon/thirdToolList/select.png" alt />
  1602. <div style="margin: 5px 0">选择匹配</div>
  1603. </div>
  1604. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  1605. <img src="../../assets/icon/checkNo.png" alt
  1606. v-if="itemTool.tool.indexOf(41) == -1" />
  1607. <div class="checkDiv" v-else>
  1608. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1609. </div>
  1610. </div>
  1611. </div>
  1612. <div class="tool">
  1613. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  1614. <img src="../../assets/icon/fourthToolList/conSentences.png" alt />
  1615. <div style="margin: 5px 0">排序</div>
  1616. </div>
  1617. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  1618. <img src="../../assets/icon/checkNo.png" alt
  1619. v-if="itemTool.tool.indexOf(47) == -1" />
  1620. <div class="checkDiv" v-else>
  1621. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1622. </div>
  1623. </div>
  1624. </div>
  1625. <!-- <div class="tool">
  1626. <div
  1627. class="whiteBIcon"
  1628. @click="openTools(itemTaskIndex, 42, toolIndex)"
  1629. >
  1630. <img
  1631. src="../../assets/icon/thirdToolList/mp3.png"
  1632. alt
  1633. />
  1634. <div style="margin: 5px 0">上传音频</div>
  1635. </div>
  1636. <div
  1637. class="check"
  1638. @click="addTools(42, itemTaskIndex, toolIndex)"
  1639. >
  1640. <img
  1641. src="../../assets/icon/checkNo.png"
  1642. alt
  1643. v-if="itemTool.tool.indexOf(42) == -1"
  1644. />
  1645. <img
  1646. src="../../assets/icon/checkedIs.png"
  1647. alt
  1648. v-else
  1649. />
  1650. </div>
  1651. </div> -->
  1652. </div>
  1653. <div class="toolSort" v-if="itemTool.toolType == 3">
  1654. <div class="tool">
  1655. <div class="whiteBIcon" @click="addTools(18, itemTaskIndex, toolIndex)">
  1656. <img src="../../assets/icon/thirdToolList/trainPlatform.png" alt />
  1657. <div style="margin: 5px 0">训练平台</div>
  1658. </div>
  1659. <div class="check" @click="addTools(18, itemTaskIndex, toolIndex)">
  1660. <img src="../../assets/icon/checkNo.png" alt
  1661. v-if="itemTool.tool.indexOf(18) == -1" />
  1662. <div class="checkDiv" v-else>
  1663. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1664. </div>
  1665. </div>
  1666. </div>
  1667. <div class="tool">
  1668. <div class="whiteBIcon" @click="addTools(21, itemTaskIndex, toolIndex)">
  1669. <img src="../../assets/icon/fourthToolList/program.png" alt />
  1670. <div style="margin: 5px 0">AIoT Blockly</div>
  1671. </div>
  1672. <div class="check" @click="addTools(21, itemTaskIndex, toolIndex)">
  1673. <img src="../../assets/icon/checkNo.png" alt
  1674. v-if="itemTool.tool.indexOf(21) == -1" />
  1675. <div class="checkDiv" v-else>
  1676. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1677. </div>
  1678. </div>
  1679. </div>
  1680. <!-- <div class="tool">
  1681. <div class="whiteBIcon" @click="addTools(22, itemTaskIndex, toolIndex)">
  1682. <img src="../../assets/icon/fourthToolList/AIprogram2.png" alt />
  1683. <div style="margin: 5px 0">AI体验</div>
  1684. </div>
  1685. <div class="check" @click="addTools(22, itemTaskIndex, toolIndex)">
  1686. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(22) == -1" />
  1687. <div class="checkDiv" v-else>
  1688. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1689. </div>
  1690. </div>
  1691. </div> -->
  1692. <div class="tool">
  1693. <div class="whiteBIcon" @click="addTools(23, itemTaskIndex, toolIndex)">
  1694. <img src="../../assets/icon/fourthToolList/Pythonprogram.png" alt />
  1695. <div style="margin: 5px 0">AI Python</div>
  1696. </div>
  1697. <div class="check" @click="addTools(23, itemTaskIndex, toolIndex)">
  1698. <img src="../../assets/icon/checkNo.png" alt
  1699. v-if="itemTool.tool.indexOf(23) == -1" />
  1700. <div class="checkDiv" v-else>
  1701. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1702. </div>
  1703. </div>
  1704. </div>
  1705. <div class="tool">
  1706. <div class="whiteBIcon" @click="addTools(24, itemTaskIndex, toolIndex)">
  1707. <img src="../../assets/icon/fourthToolList/AIprogram.png" alt />
  1708. <div style="margin: 5px 0">AI Blockly</div>
  1709. </div>
  1710. <div class="check" @click="addTools(24, itemTaskIndex, toolIndex)">
  1711. <img src="../../assets/icon/checkNo.png" alt
  1712. v-if="itemTool.tool.indexOf(24) == -1" />
  1713. <div class="checkDiv" v-else>
  1714. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1715. </div>
  1716. </div>
  1717. </div>
  1718. <div class="tool">
  1719. <div class="whiteBIcon" @click="addTools(32, itemTaskIndex, toolIndex)">
  1720. <img src="../../assets/icon/thirdToolList/code.png" alt />
  1721. <div style="margin: 5px 0">源码编辑</div>
  1722. </div>
  1723. <div class="check" @click="addTools(32, itemTaskIndex, toolIndex)">
  1724. <img src="../../assets/icon/checkNo.png" alt
  1725. v-if="itemTool.tool.indexOf(32) == -1" />
  1726. <div class="checkDiv" v-else>
  1727. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1728. </div>
  1729. </div>
  1730. </div>
  1731. <div class="tool">
  1732. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 57, toolIndex)">
  1733. <img src="../../assets/icon/fourthToolList/cocopi.png" alt />
  1734. <div style="margin: 5px 0">CocoPi</div>
  1735. </div>
  1736. <div class="check" @click="addTools(57, itemTaskIndex, toolIndex)">
  1737. <img src="../../assets/icon/checkNo.png" alt
  1738. v-if="itemTool.tool.indexOf(57) == -1" />
  1739. <div class="checkDiv" v-else>
  1740. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1741. </div>
  1742. </div>
  1743. </div>
  1744. <div class="tool">
  1745. <div class="whiteBIcon" @click="addTools(63, itemTaskIndex, toolIndex)">
  1746. <img src="../../assets/icon/fourthToolList/Wood.png" alt />
  1747. <div style="margin: 5px 0">海龟编程</div>
  1748. </div>
  1749. <div class="check" @click="addTools(63, itemTaskIndex, toolIndex)">
  1750. <img src="../../assets/icon/checkNo.png" alt
  1751. v-if="itemTool.tool.indexOf(63) == -1" />
  1752. <div class="checkDiv" v-else>
  1753. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1754. </div>
  1755. </div>
  1756. </div>
  1757. </div>
  1758. <div class="toolSort" v-if="itemTool.toolType == 7">
  1759. <div class="tool">
  1760. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
  1761. <img src="../../assets/icon/thirdToolList/eval.png" alt />
  1762. <div style="margin: 5px 0">个人评价</div>
  1763. </div>
  1764. <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
  1765. <img src="../../assets/icon/checkNo.png" alt
  1766. v-if="itemTool.tool.indexOf(40) == -1" />
  1767. <div class="checkDiv" v-else>
  1768. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1769. </div>
  1770. </div>
  1771. </div>
  1772. </div>
  1773. <div class="toolSort" v-if="itemTool.toolType == 5">
  1774. <div class="tool">
  1775. <div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
  1776. <img src="../../assets/icon/secondToolList/translation.png" alt />
  1777. <div style="margin: 5px 0">翻译</div>
  1778. </div>
  1779. <div class="check" @click="addTools(28, itemTaskIndex, toolIndex)">
  1780. <img src="../../assets/icon/checkNo.png" alt
  1781. v-if="itemTool.tool.indexOf(28) == -1" />
  1782. <div class="checkDiv" v-else>
  1783. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1784. </div>
  1785. </div>
  1786. </div>
  1787. <div class="tool">
  1788. <div class="whiteBIcon" @click="addTools(31, itemTaskIndex, toolIndex)">
  1789. <img src="../../assets/icon/secondToolList/networkPanel.png" alt />
  1790. <div style="margin: 5px 0">数字画板</div>
  1791. </div>
  1792. <div class="check" @click="addTools(31, itemTaskIndex, toolIndex)">
  1793. <img src="../../assets/icon/checkNo.png" alt
  1794. v-if="itemTool.tool.indexOf(31) == -1" />
  1795. <div class="checkDiv" v-else>
  1796. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1797. </div>
  1798. </div>
  1799. </div>
  1800. <div class="tool">
  1801. <div class="whiteBIcon" @click="addTools(39, itemTaskIndex, toolIndex)">
  1802. <img src="../../assets/icon/secondToolList/GeoGebra.png" alt />
  1803. <div style="margin: 5px 0">GeoGebra</div>
  1804. </div>
  1805. <div class="check" @click="addTools(39, itemTaskIndex, toolIndex)">
  1806. <img src="../../assets/icon/checkNo.png" alt
  1807. v-if="itemTool.tool.indexOf(39) == -1" />
  1808. <div class="checkDiv" v-else>
  1809. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1810. </div>
  1811. </div>
  1812. </div>
  1813. <div class="tool">
  1814. <div class="whiteBIcon" @click="addTools(66, itemTaskIndex, toolIndex)">
  1815. <img src="../../assets/icon/secondToolList/formulaEdi.png" alt />
  1816. <div style="margin: 5px 0">公式编辑</div>
  1817. </div>
  1818. <div class="check" @click="addTools(66, itemTaskIndex, toolIndex)">
  1819. <img src="../../assets/icon/checkNo.png" alt
  1820. v-if="itemTool.tool.indexOf(66) == -1" />
  1821. <div class="checkDiv" v-else>
  1822. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1823. </div>
  1824. </div>
  1825. </div>
  1826. <!-- <div class="tool">
  1827. <div class="whiteBIcon" @click="addTools(67, itemTaskIndex, toolIndex)">
  1828. <img src="../../assets/icon/secondToolList/molStr.png" alt />
  1829. <div style="margin: 5px 0">分子结构</div>
  1830. </div>
  1831. <div class="check" @click="addTools(67, itemTaskIndex, toolIndex)">
  1832. <img src="../../assets/icon/checkNo.png" alt
  1833. v-if="itemTool.tool.indexOf(67) == -1" />
  1834. <div class="checkDiv" v-else>
  1835. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1836. </div>
  1837. </div>
  1838. </div> -->
  1839. <div class="tool">
  1840. <div class="whiteBIcon" @click="addTools(68, itemTaskIndex, toolIndex)">
  1841. <img src="../../assets/icon/secondToolList/timeAxis.png" alt />
  1842. <div style="margin: 5px 0">时间轴</div>
  1843. </div>
  1844. <div class="check" @click="addTools(68, itemTaskIndex, toolIndex)">
  1845. <img src="../../assets/icon/checkNo.png" alt
  1846. v-if="itemTool.tool.indexOf(68) == -1" />
  1847. <div class="checkDiv" v-else>
  1848. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1849. </div>
  1850. </div>
  1851. </div>
  1852. <!-- <div class="tool">
  1853. <div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
  1854. <img src="../../assets/icon/secondToolList/translation.png" alt />
  1855. <div style="margin: 5px 0">翻译</div>
  1856. </div>
  1857. <div class="check" @click="addTools(28, itemTaskIndex, toolIndex)">
  1858. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(28) == -1" />
  1859. <div class="checkDiv" v-else>
  1860. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1861. </div>
  1862. </div>
  1863. </div>
  1864. <div class="tool">
  1865. <div class="whiteBIcon" @click="addTools(37, itemTaskIndex, toolIndex)">
  1866. <img src="../../assets/icon/secondToolList/mohe.png" alt />
  1867. <div style="margin: 5px 0">魔盒识字</div>
  1868. </div>
  1869. <div class="check" @click="addTools(37, itemTaskIndex, toolIndex)">
  1870. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(37) == -1" />
  1871. <div class="checkDiv" v-else>
  1872. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1873. </div>
  1874. </div>
  1875. </div>
  1876. <div class="tool">
  1877. <div class="whiteBIcon" @click="addTools(38, itemTaskIndex, toolIndex)">
  1878. <img src="../../assets/icon/secondToolList/24game.png" alt />
  1879. <div style="margin: 5px 0">24点</div>
  1880. </div>
  1881. <div class="check" @click="addTools(38, itemTaskIndex, toolIndex)">
  1882. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(38) == -1" />
  1883. <div class="checkDiv" v-else>
  1884. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1885. </div>
  1886. </div>
  1887. </div>
  1888. <div class="tool">
  1889. <div class="whiteBIcon" @click="addTools(31, itemTaskIndex, toolIndex)">
  1890. <img src="../../assets/icon/secondToolList/networkPanel.png" alt />
  1891. <div style="margin: 5px 0">数学画板</div>
  1892. </div>
  1893. <div class="check" @click="addTools(31, itemTaskIndex, toolIndex)">
  1894. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(31) == -1" />
  1895. <div class="checkDiv" v-else>
  1896. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1897. </div>
  1898. </div>
  1899. </div>
  1900. <div class="tool">
  1901. <div class="whiteBIcon" @click="addTools(39, itemTaskIndex, toolIndex)">
  1902. <img src="../../assets/icon/secondToolList/GeoGebra.png" alt />
  1903. <div style="margin: 5px 0">GeoGebra</div>
  1904. </div>
  1905. <div class="check" @click="addTools(39, itemTaskIndex, toolIndex)">
  1906. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(39) == -1" />
  1907. <div class="checkDiv" v-else>
  1908. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1909. </div>
  1910. </div>
  1911. </div>
  1912. <div class="tool">
  1913. <div class="whiteBIcon" @click="addTools(58, itemTaskIndex, toolIndex)">
  1914. <img src="../../assets/icon/fourthToolList/car.png" alt />
  1915. <div style="margin: 5px 0">模拟驾驶</div>
  1916. </div>
  1917. <div class="check" @click="addTools(58, itemTaskIndex, toolIndex)">
  1918. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(58) == -1" />
  1919. <div class="checkDiv" v-else>
  1920. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1921. </div>
  1922. </div>
  1923. </div>
  1924. <div class="tool">
  1925. <div class="whiteBIcon" @click="addTools(59, itemTaskIndex, toolIndex)">
  1926. <img src="../../assets/icon/fourthToolList/lineSearch.png" alt />
  1927. <div style="margin: 5px 0">路径搜索</div>
  1928. </div>
  1929. <div class="check" @click="addTools(59, itemTaskIndex, toolIndex)">
  1930. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(59) == -1" />
  1931. <div class="checkDiv" v-else>
  1932. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1933. </div>
  1934. </div>
  1935. </div>
  1936. <div class="tool">
  1937. <div class="whiteBIcon" @click="addTools(60, itemTaskIndex, toolIndex)">
  1938. <img src="../../assets/icon/fourthToolList/deepLearning.png" alt />
  1939. <div style="margin: 5px 0">深度学习</div>
  1940. </div>
  1941. <div class="check" @click="addTools(60, itemTaskIndex, toolIndex)">
  1942. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(60) == -1" />
  1943. <div class="checkDiv" v-else>
  1944. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1945. </div>
  1946. </div>
  1947. </div>
  1948. <div class="tool">
  1949. <div class="whiteBIcon" @click="addTools(61, itemTaskIndex, toolIndex)">
  1950. <img src="../../assets/icon/fourthToolList/allHistory.png" alt />
  1951. <div style="margin: 5px 0">全历史</div>
  1952. </div>
  1953. <div class="check" @click="addTools(61, itemTaskIndex, toolIndex)">
  1954. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(61) == -1" />
  1955. <div class="checkDiv" v-else>
  1956. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1957. </div>
  1958. </div>
  1959. </div>
  1960. </div>
  1961. <div class="toolSort" v-if="itemTool.toolType == 4">
  1962. <div class="tool">
  1963. <div class="whiteBIcon" @click="addTools(26, itemTaskIndex, toolIndex)">
  1964. <img src="../../assets/icon/thirdToolList/courseDesign.png" alt />
  1965. <div style="margin: 5px 0">课程设计</div>
  1966. </div>
  1967. <div class="check" @click="addTools(26, itemTaskIndex, toolIndex)">
  1968. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(26) == -1" />
  1969. <div class="checkDiv" v-else>
  1970. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1971. </div>
  1972. </div>
  1973. </div>
  1974. <div class="tool">
  1975. <div class="whiteBIcon" @click="addTools(25, itemTaskIndex, toolIndex)">
  1976. <img src="../../assets/icon/thirdToolList/evalua.png" alt />
  1977. <div style="margin: 5px 0">目标管理</div>
  1978. </div>
  1979. <div class="check" @click="addTools(25, itemTaskIndex, toolIndex)">
  1980. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(25) == -1" />
  1981. <div class="checkDiv" v-else>
  1982. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1983. </div>
  1984. </div>
  1985. </div> -->
  1986. <!-- <div class="tool">
  1987. <div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
  1988. <img src="../../assets/icon/thirdToolList/hanClass.png" alt />
  1989. <div style="margin: 5px 0">汉字宫</div>
  1990. </div>
  1991. <div class="check" @click="addTools(44, itemTaskIndex, toolIndex)">
  1992. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(44) == -1" />
  1993. <div class="checkDiv" v-else>
  1994. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1995. </div>
  1996. </div>
  1997. </div> -->
  1998. </div>
  1999. </div>
  2000. <div v-show="itemTool.isFold3">
  2001. <textarea rows="2" v-autoHeight="70" type="text" placeholder="添加工具描述" class="binfo_input"
  2002. style="margin: 0 0 20px 0; width: 100% !important"
  2003. v-model="itemTool.toolDetail"></textarea>
  2004. </div>
  2005. </div>
  2006. <div class="addToolFun2" @click="addToolFun(itemTaskIndex)">
  2007. <div class="addToolImg">
  2008. <img src="../../assets/icon/add.png" alt />
  2009. </div>
  2010. <div>添加工具</div>
  2011. </div>
  2012. </div>
  2013. </div>
  2014. <div v-else-if="unitJson[unitIndex].easy == 2 ||
  2015. unitJson[unitIndex].easy == 4
  2016. " class="toolChoose" style="padding: 0 0 40px;">
  2017. <div class="tools">
  2018. <div class="leftTools" style="width: 100%"
  2019. v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  2020. <div>
  2021. <textarea rows="3" type="text" placeholder="添加工具描述" class="binfo_input"
  2022. style="margin: 0 0 20px 0; width: 100% !important"
  2023. v-model="itemTool.toolDetail"></textarea>
  2024. </div>
  2025. <div style="
  2026. display: flex;
  2027. flex-direction: row;
  2028. align-items: baseline;
  2029. flex-wrap: nowrap;
  2030. justify-content: flex-start;
  2031. position: relative;
  2032. ">
  2033. <div style="margin-right: 20px; font-weight: bold" :id="'gj'+itemTaskIndex + '' + toolIndex">
  2034. 步骤 {{ toolIndex + 1 }} :
  2035. </div>
  2036. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  2037. v-if="itemTask.toolChoose.length > 1" style="right: 0"></div>
  2038. </div>
  2039. <div style="min-height: 163px">
  2040. <div class="toolSort">
  2041. <div class="tool">
  2042. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  2043. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  2044. <div style="margin: 5px 0">电子白板</div>
  2045. </div>
  2046. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  2047. <img src="../../assets/icon/checkNo.png" alt
  2048. v-if="itemTool.tool.indexOf(1) == -1" />
  2049. <div class="checkDiv" v-else>
  2050. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2051. </div>
  2052. </div>
  2053. </div>
  2054. <div class="tool">
  2055. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  2056. <img src="../../assets/icon/fourthToolList/text.png" alt />
  2057. <div style="margin: 5px 0">文档</div>
  2058. </div>
  2059. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  2060. <img src="../../assets/icon/checkNo.png" alt
  2061. v-if="itemTool.tool.indexOf(52) == -1" />
  2062. <div class="checkDiv" v-else>
  2063. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2064. </div>
  2065. </div>
  2066. </div>
  2067. <div class="tool">
  2068. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  2069. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  2070. <div style="margin: 5px 0">思维导图</div>
  2071. </div>
  2072. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  2073. <img src="../../assets/icon/checkNo.png" alt
  2074. v-if="itemTool.tool.indexOf(3) == -1" />
  2075. <div class="checkDiv" v-else>
  2076. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2077. </div>
  2078. </div>
  2079. </div>
  2080. <div class="tool">
  2081. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  2082. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  2083. <div style="margin: 5px 0">问卷调查</div>
  2084. </div>
  2085. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  2086. <img src="../../assets/icon/checkNo.png" alt
  2087. v-if="itemTool.tool.indexOf(4) == -1" />
  2088. <div class="checkDiv" v-else>
  2089. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2090. </div>
  2091. </div>
  2092. </div>
  2093. <div class="tool">
  2094. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  2095. <img src="../../assets/icon/thirdToolList/choose.png" alt />
  2096. <div style="margin: 5px 0">选择题</div>
  2097. </div>
  2098. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  2099. <img src="../../assets/icon/checkNo.png" alt
  2100. v-if="itemTool.tool.indexOf(45) == -1" />
  2101. <div class="checkDiv" v-else>
  2102. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2103. </div>
  2104. </div>
  2105. </div>
  2106. <div class="tool">
  2107. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  2108. <img src="../../assets/icon/thirdToolList/answer.png" alt />
  2109. <div style="margin: 5px 0">问答</div>
  2110. </div>
  2111. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  2112. <img src="../../assets/icon/checkNo.png" alt
  2113. v-if="itemTool.tool.indexOf(15) == -1" />
  2114. <div class="checkDiv" v-else>
  2115. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2116. </div>
  2117. </div>
  2118. </div>
  2119. <div class="tool">
  2120. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  2121. <img src="../../assets/icon/thirdToolList/work.png" alt />
  2122. <div style="margin: 5px 0">作业提交</div>
  2123. </div>
  2124. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  2125. <img src="../../assets/icon/checkNo.png" alt
  2126. v-if="itemTool.tool.indexOf(16) == -1" />
  2127. <div class="checkDiv" v-else>
  2128. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2129. </div>
  2130. </div>
  2131. </div>
  2132. <div class="tool">
  2133. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  2134. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  2135. <div style="margin: 5px 0">批量上传</div>
  2136. </div>
  2137. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  2138. <img src="../../assets/icon/checkNo.png" alt
  2139. v-if="itemTool.tool.indexOf(50) == -1" />
  2140. <div class="checkDiv" v-else>
  2141. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2142. </div>
  2143. </div>
  2144. </div>
  2145. <div class="tool">
  2146. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  2147. <img src="../../assets/icon/thirdToolList/select.png" alt />
  2148. <div style="margin: 5px 0">选择匹配</div>
  2149. </div>
  2150. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  2151. <img src="../../assets/icon/checkNo.png" alt
  2152. v-if="itemTool.tool.indexOf(41) == -1" />
  2153. <div class="checkDiv" v-else>
  2154. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2155. </div>
  2156. </div>
  2157. </div>
  2158. <div class="tool">
  2159. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  2160. <img src="../../assets/icon/fourthToolList/conSentences.png" alt />
  2161. <div style="margin: 5px 0">排序</div>
  2162. </div>
  2163. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  2164. <img src="../../assets/icon/checkNo.png" alt
  2165. v-if="itemTool.tool.indexOf(47) == -1" />
  2166. <div class="checkDiv" v-else>
  2167. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2168. </div>
  2169. </div>
  2170. </div>
  2171. <div class="tool">
  2172. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  2173. <img src="../../assets/icon/fourthToolList/table.png" alt />
  2174. <div style="margin: 5px 0">表格</div>
  2175. </div>
  2176. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  2177. <img src="../../assets/icon/checkNo.png" alt
  2178. v-if="itemTool.tool.indexOf(48) == -1" />
  2179. <div class="checkDiv" v-else>
  2180. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2181. </div>
  2182. </div>
  2183. </div>
  2184. </div>
  2185. </div>
  2186. </div>
  2187. <div class="addToolFun" style="margin-bottom: 20px" @click="addToolFun(itemTaskIndex)">
  2188. <div class="addToolImg">
  2189. <img src="../../assets/icon/add.png" alt />
  2190. </div>
  2191. <div>添加工具</div>
  2192. </div>
  2193. </div>
  2194. </div>
  2195. <div v-else-if="unitJson[unitIndex].easy == 1 ||
  2196. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  2197. " class="toolChoose" style="padding: 0 0 40px;">
  2198. <div class="tools">
  2199. <div class="leftTools" style="
  2200. width: 100%;
  2201. padding: 0 0 15px 0;
  2202. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  2203. <div style="min-height: 163px">
  2204. <div class="toolSort">
  2205. <div class="tool">
  2206. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  2207. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  2208. <div style="margin: 5px 0">批量上传</div>
  2209. </div>
  2210. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  2211. <img src="../../assets/icon/checkNo.png" alt
  2212. v-if="itemTool.tool.indexOf(50) == -1" />
  2213. <div class="checkDiv" v-else>
  2214. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2215. </div>
  2216. </div>
  2217. </div>
  2218. </div>
  2219. </div>
  2220. </div>
  2221. </div>
  2222. </div>
  2223. <div class="elist_css" v-if="!(unitJson[unitJson.length - 1].easy == 4)">
  2224. <div class="elist_title">
  2225. <div style="
  2226. display: flex;
  2227. flex-direction: row;
  2228. align-items: center;
  2229. margin: 20px 0;
  2230. ">
  2231. <div class="lineTitle">评价设置</div>
  2232. <!-- <div class="line" style="width: 90%"></div> -->
  2233. </div>
  2234. </div>
  2235. <div class="mbCss">
  2236. <div class="pjCss">
  2237. <div v-if="itemTask.eList && itemTask.eList.length" class="elist_input">
  2238. <div v-for="(eItem, eIndex) in itemTask.eList" :key="eIndex" class="elist_input_box">
  2239. <span>评价名称:</span>
  2240. <input type="input" v-model="itemTask.eList[eIndex].value" placeholder="填写评价名称" />
  2241. <span>评星等级:</span>
  2242. <el-rate v-model="itemTask.eList[eIndex].score" @change="setEListStar()"
  2243. disabled></el-rate>
  2244. <div class="remove" @click="
  2245. deletEList(unitIndex, itemTaskIndex, eIndex)
  2246. "></div>
  2247. <div class="elist_inptu_text">
  2248. <span>评价描述:</span>
  2249. <input type="input" v-model="itemTask.eList[eIndex].detail" placeholder="填写评价描述" />
  2250. </div>
  2251. <div class="elist_inptu_text" v-if="evalua">
  2252. <span>目标:</span>
  2253. <!-- <input type="input" v-model="itemTask.eList[eIndex].target" placeholder="填写评价描述" /> -->
  2254. <!-- <el-select v-model="itemTask.eList[eIndex].target" placeholder="请选择目标"
  2255. @change="forceUpdate()">
  2256. <el-option v-for="(e, eIndex) in targetArray" :key="eIndex" :label="e.name"
  2257. :value="e.name">
  2258. </el-option>
  2259. </el-select> -->
  2260. <el-cascader :options="targetArray" v-model="itemTask.eList[eIndex].target"
  2261. :props="{ checkStrictly: true }" :show-all-levels="false" clearable></el-cascader>
  2262. </div>
  2263. </div>
  2264. </div>
  2265. <div class="addToolFun" @click="addEList(unitIndex, itemTaskIndex)"
  2266. style="margin: 35px 35px 0 0">
  2267. <div class="addToolImg">
  2268. <img src="../../assets/icon/add.png" alt />
  2269. </div>
  2270. <div>添加</div>
  2271. </div>
  2272. </div>
  2273. <div v-if="evalua" style="
  2274. border: 1px solid #e5e5e5;
  2275. width: 55%;
  2276. box-shadow: 3px 1px 15px 3px #e0e0e0;
  2277. " class="evaCss">
  2278. <!-- <div class="e_add_top">
  2279. <div class="e_add_title">
  2280. <span>当前使用目标管理</span>
  2281. <span>{{ eTitle }}</span>
  2282. <img src="../../assets/line.png" class="cru_line" style="
  2283. width: 125px;
  2284. height: 20px;
  2285. bottom: -10px;
  2286. left: 155px;
  2287. " />
  2288. </div>
  2289. </div> -->
  2290. <div class="e_add_content" style="width: 100%">
  2291. <div class="e_add_list_pbox" style="width: 100%">
  2292. <div class="e_add_list_pbox_title">
  2293. <span class="type_title">切换模式</span>
  2294. <div class="type_content">
  2295. <span :class="{ active: typeMode == 1 }" @click="OtherMb(1)">目标树</span>
  2296. <span :class="{ active: typeMode == 2 }" @click="OtherMb(2)">目标罗盘</span>
  2297. <span :class="{ active: typeMode == 3 }" @click="OtherMb(3)">目标看板</span>
  2298. </div>
  2299. </div>
  2300. <div class="e_add_list_pbox_content">
  2301. <Mind :showBar="false" :mindData="data" style="width: 100%" :jsmindId="unitIndex + '-' + itemTaskIndex + 'mind'
  2302. " v-if="typeMode == 1"></Mind>
  2303. <Sunburst :Josn="eJson" :num="eJSONNum" style="width: 100%" v-if="typeMode == 2">
  2304. </Sunburst>
  2305. <SeeBoard :Josn="eJson" :num="eJSONNum" :ename="eTitle" style="width: 100%"
  2306. v-if="typeMode == 3"></SeeBoard>
  2307. </div>
  2308. </div>
  2309. </div>
  2310. </div>
  2311. </div>
  2312. </div>
  2313. <div class="funBlock" style="padding: 0">
  2314. <div class="fold" @click="fold(itemTaskIndex, $event)">
  2315. <div class="arrow" :class="{ arrowZ: !(itemTask.isFold === 1) }">
  2316. </div>
  2317. <div>{{ itemTask.isFold === 1 ? '展开任务' : '收起任务' }}</div>
  2318. </div>
  2319. <!-- <div class="fold" @click="fold(itemTaskIndex, $event, 0)">
  2320. <div>展开</div>
  2321. <div class="arrow">
  2322. <img src="../../assets/icon/expand.png" alt />
  2323. </div>
  2324. </div> -->
  2325. </div>
  2326. </div>
  2327. </div>
  2328. <div class="addTaskBorder" v-if="!unitJson[unitIndex].easy">
  2329. <!-- <div>
  2330. <img src="../../../assets/icon/new/addStage.png" alt />
  2331. <span>添加任务</span>
  2332. </div> -->
  2333. <button class="c_pub_button_confirm pub_btn_add_task_img" @click="addTaskBorder">
  2334. 添加任务
  2335. </button>
  2336. </div>
  2337. </div>
  2338. <div class="info_btnBox3">
  2339. <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1" @click="
  2340. goTo(
  2341. '/course?userid=' +
  2342. userid +
  2343. '&oid=' +
  2344. oid +
  2345. '&org=' +
  2346. org +
  2347. '&role=' +
  2348. role
  2349. )
  2350. ">
  2351. 返回课程
  2352. </button>
  2353. <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5" @click="lastSteps"
  2354. style="background:#dbdbdb">
  2355. {{ steps == 4 ? "返回课程" : "上一步" }}
  2356. </button>
  2357. <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps"
  2358. :class="{ pub_btn_next_img: steps != 3, pub_btn_finish_img: steps == 3 }">
  2359. {{ steps == 3 ? "确认上传" : "下一步" }}
  2360. </button>
  2361. </div>
  2362. </div>
  2363. </div>
  2364. </div>
  2365. </div>
  2366. <div style="
  2367. width: calc(100% - 20px);
  2368. background: rgb(255, 255, 255);
  2369. border-radius: 10px;
  2370. " v-if="this.steps == 4">
  2371. <div class="basic_box_success">
  2372. <div class="right_img">
  2373. <img src="../../assets/icon/right.png" alt />
  2374. </div>
  2375. <div style="font-weight: bold">成功</div>
  2376. <!-- <div>您的课程编号</div>
  2377. <div class="number">{{ number }}</div>-->
  2378. <!-- <div class="success_button">
  2379. <div class="look_course" @click="isNoFinsh">
  2380. 邀请老师协同编辑
  2381. </div>
  2382. <div class="attend_others" @click="goCourse">预览课程</div>
  2383. </div> -->
  2384. </div>
  2385. </div>
  2386. <div :class="{ info_btnBox: isBtnDisplay, info_btnBox2: !isBtnDisplay }" @mouseenter="btnDisplay(true)"
  2387. @mouseleave="btnDisplay(false)" v-if="false">
  2388. <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1 && isBtnDisplay" @click="
  2389. goTo(
  2390. '/course?userid=' +
  2391. userid +
  2392. '&oid=' +
  2393. oid +
  2394. '&org=' +
  2395. org +
  2396. '&role=' +
  2397. role
  2398. )
  2399. ">
  2400. 返回课程
  2401. </button>
  2402. <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5 && isBtnDisplay"
  2403. @click="lastSteps">
  2404. {{ steps == 4 ? "返回课程" : "上一步" }}
  2405. </button>
  2406. <button class="c_pub_button_confirm" v-if="steps < 4 && isBtnDisplay" @click="nextSteps"
  2407. :class="{ pub_btn_next_img: steps != 3, pub_btn_finish_img: steps == 3 }">
  2408. {{ steps == 3 ? "确认上传" : "下一步" }}
  2409. </button>
  2410. </div>
  2411. </div>
  2412. </div>
  2413. </div>
  2414. <el-dialog title="提示" :visible.sync="dialogVisible" :append-to-body="true" width="25%" :before-close="handleClose"
  2415. class="dialog_diy2 customWidth">
  2416. <div>请复制该链接邀请协同编辑</div>
  2417. <div>http://www.boomyon.com/index-zhang.com</div>
  2418. <span slot="footer" class="dialog-footer">
  2419. <el-button type="primary">复制链接分享</el-button>
  2420. <el-button @click="dialogVisible = false">取消</el-button>
  2421. </span>
  2422. </el-dialog>
  2423. <el-dialog :title="updateBoolean2 ? '查看文档' : '添加文档'" :visible.sync="dialogVisible1" :append-to-body="true" width="25%"
  2424. :before-close="handleClose" class="dialog_diy2 customWidth">
  2425. <el-form>
  2426. <el-form-item label="文档标题">
  2427. <el-input v-model="tTitle" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  2428. </el-form-item>
  2429. <div>文档简介</div>
  2430. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  2431. </el-form>
  2432. <span slot="footer" class="dialog-footer">
  2433. <el-button @click="dialogVisible1 = false">取 消</el-button>
  2434. <el-button type="primary" @click="addWord" v-if="!updateBoolean2">添加</el-button>
  2435. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  2436. </span>
  2437. </el-dialog>
  2438. <el-dialog title="添加文档" :visible.sync="dialogVisible2" :append-to-body="true" width="500px"
  2439. :before-close="handleClose" class="dialog_diy">
  2440. <el-form>
  2441. <el-form-item label="文档标题">
  2442. <el-input v-model="templateC.title" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  2443. </el-form-item>
  2444. <div>文档内容</div>
  2445. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  2446. </el-form>
  2447. <span slot="footer" class="dialog-footer">
  2448. <el-button @click="clearChoose">取 消</el-button>
  2449. <el-button type="primary" @click="wordNext()">确定</el-button>
  2450. </span>
  2451. </el-dialog>
  2452. <el-dialog title="添加富文本" :visible.sync="dialogVisible6" :append-to-body="true" width="500px"
  2453. :before-close="handleClose" class="dialog_diy">
  2454. <el-form>
  2455. <el-form-item label="文本标题">
  2456. <el-input ref="fuInput" v-model="AttText.title" auto-complete="off" @input="change2"
  2457. placeholder="请输入文本标题..."></el-input>
  2458. </el-form-item>
  2459. <!-- <div>富文本内容</div> -->
  2460. <editor-bar v-model="AttText.text" @change="change" v-if="dialogVisible6"></editor-bar>
  2461. </el-form>
  2462. <span slot="footer" class="dialog-footer">
  2463. <el-button @click="clearAttText">取 消</el-button>
  2464. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  2465. </span>
  2466. </el-dialog>
  2467. <el-dialog title="添加链接" :visible.sync="dialogVisible7" :append-to-body="true" width="500px"
  2468. :before-close="handleClose" class="dialog_diy lineCss">
  2469. <el-form>
  2470. <el-form-item label="标题" :label-width="formLabelWidth">
  2471. <span>
  2472. <el-input placeholder="请输入链接标题" clearable v-model="lineTitle" class="add_input"></el-input>
  2473. </span>
  2474. </el-form-item>
  2475. <el-form-item label="链接" :label-width="formLabelWidth">
  2476. <span>
  2477. <el-input placeholder="请输入链接" clearable v-model="line" class="add_input"></el-input>
  2478. </span>
  2479. </el-form-item>
  2480. </el-form>
  2481. <span slot="footer" class="dialog-footer">
  2482. <el-button @click="clearLine">取 消</el-button>
  2483. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  2484. </span>
  2485. </el-dialog>
  2486. <el-dialog :title="updateSourcePan ? '修改资源' : '添加资源'" :visible.sync="dialogVisibleSource" :append-to-body="true"
  2487. width="100%" :before-close="handleClose" class="dialog_diy source_diy">
  2488. <div>
  2489. <sourceDialog :sourceData.sync="sourceData" :updateSourcePan="updateSourcePan"></sourceDialog>
  2490. </div>
  2491. <span slot="footer" class="dialog-footer">
  2492. <el-button @click="dialogVisibleSource = false">取 消</el-button>
  2493. <el-button type="primary" @click="addSource" v-if="!updateSourcePan">确定</el-button>
  2494. <el-button type="primary" @click="updateSource" v-else>确定</el-button>
  2495. </span>
  2496. </el-dialog>
  2497. <el-dialog title="添加课程成员" :visible.sync="dialogVisible3" :append-to-body="true" width="25%" height="80%"
  2498. :before-close="handleClose" class="addNewPP customWidth">
  2499. <div class="people">
  2500. <div class="people_top">
  2501. <div class="people_nav">选择成员</div>
  2502. <div class="people_top_right">
  2503. <div class="people_search">
  2504. <el-input style="height: 100%" placeholder="搜索成员名称" v-model="searchPeople"></el-input>
  2505. <div class="search_img" @click="searchStudent">
  2506. <img src="../../assets/icon/search.png" alt />
  2507. </div>
  2508. </div>
  2509. </div>
  2510. </div>
  2511. <el-checkbox-group v-model="checkboxList" class="people_name">
  2512. <el-checkbox v-for="item in studentJuri" :key="item.userid" :label="item.userid">{{ item.name ? item.name :
  2513. "暂无学生可选" }}</el-checkbox>
  2514. </el-checkbox-group>
  2515. </div>
  2516. <span slot="footer" class="dialog-footer">
  2517. <el-button @click="dialogVisible3 = false">取 消</el-button>
  2518. <el-button type="primary" @click="isAddPP">确定</el-button>
  2519. </span>
  2520. </el-dialog>
  2521. <el-dialog title="选择授课班级" :visible.sync="dialogVisibleClass" :append-to-body="true" width="600px" height="80%"
  2522. :before-close="handleClose" class="addNewPP2">
  2523. <div class="check_classBox">
  2524. <div class="check_class_right">
  2525. <div class="check_class" :class="{activeX:gradeId == ''}" @click="gradeId = '',getClass()">
  2526. 全部
  2527. </div>
  2528. <el-tooltip placement="top" :content="item.name" v-for="(item, index) in gradeList" :key="index">
  2529. <div class="check_class" :class="{activeX:gradeId == item.id}" @click="gradeId = item.id,getClass()">
  2530. {{ item.name }}
  2531. </div>
  2532. </el-tooltip>
  2533. </div>
  2534. <div class="check_class_left">
  2535. <div class="check_class_left_title">选择班级</div>
  2536. <el-checkbox-group v-model="checkboxList2" class="check_class_item" @change="InviteChange"
  2537. v-if="grade2.length">
  2538. <div v-for="item in grade2" :key="item.id" class="class_item">
  2539. <el-checkbox :label="item.id">
  2540. {{ item.name }}
  2541. </el-checkbox>
  2542. </div>
  2543. </el-checkbox-group>
  2544. <div v-if="!grade2.length">暂无数据</div>
  2545. </div>
  2546. </div>
  2547. <span slot="footer" class="dialog-footer">
  2548. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  2549. <el-button type="primary" @click="isAddClass">确定</el-button>
  2550. </span>
  2551. </el-dialog>
  2552. <el-dialog title="添加协同成员" :visible.sync="dialogVisibleMember" :append-to-body="true" width="25%" height="80%"
  2553. :before-close="handleClose" class="addNewPP customWidth">
  2554. <div class="people">
  2555. <div class="people_top">
  2556. <div class="people_top_right">
  2557. <div class="people_search">
  2558. <el-input placeholder="搜索成员名称" v-model="searchTN" @keyup.enter.native="getTeacher"></el-input>
  2559. <div class="search_img" @click="getTeacher">
  2560. <img src="../../assets/icon/search.png" alt />
  2561. </div>
  2562. </div>
  2563. </div>
  2564. <div class="people_nav">选择成员</div>
  2565. </div>
  2566. <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="teacherJuri.length">
  2567. <el-checkbox v-for="item in teacherJuri" :key="item.userid" :label="item.userid">
  2568. <div class="t_j_box">
  2569. <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
  2570. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  2571. </el-tooltip>
  2572. <el-tooltip placement="top" :content="item.username">
  2573. <span>{{ item.username }}</span>
  2574. </el-tooltip>
  2575. <el-tooltip placement="top" :content="item.school">
  2576. <span>{{ item.school }}</span>
  2577. </el-tooltip>
  2578. </div>
  2579. </el-checkbox>
  2580. </el-checkbox-group>
  2581. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  2582. </div>
  2583. <span slot="footer" class="dialog-footer">
  2584. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  2585. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  2586. </span>
  2587. </el-dialog>
  2588. <el-dialog title="创建问卷" :visible.sync="dialogVisible5" :append-to-body="true" width="800px"
  2589. :before-close="(done) => { closePan(4) }" class="dialog_diy fullStyle">
  2590. <div style="height:100%">
  2591. <div class="a_add_title" style="
  2592. display: flex;
  2593. flex-direction: row;
  2594. align-items: center;
  2595. justify-content: center;
  2596. ">
  2597. <!-- <div style="margin-right: 20px; font-size: 20px">标题:</div> -->
  2598. <el-input v-model="askJson.askTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  2599. </div>
  2600. <div class="a_addBox" style="height:calc(100% - 50px)">
  2601. <!-- <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div> -->
  2602. <div class="a_add_box" v-for="(item1, index1) in askJson.askCount" :key="index1">
  2603. <div class="a_add_checkType">
  2604. <span :class="{
  2605. active:
  2606. askJson.askJson[index1].type == '1' ||
  2607. !askJson.askJson[index1].type,
  2608. }" @click="checkAskType('1', askJson.askJson[index1])">单选题</span>
  2609. <span :class="{ active: askJson.askJson[index1].type == '2' }"
  2610. @click="checkAskType('2', askJson.askJson[index1])">多选题</span>
  2611. </div>
  2612. <div class="a_add_head">
  2613. <div style="display: flex;align-items: center;width: 100%;margin-right: 20px;">
  2614. <span style="min-width:fit-content">{{ index1 + 1 + "、" }}</span>
  2615. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-model="askJson.askJson[index1].askstitle
  2616. " placeholder="请输入题目" @change="() => { $forceUpdate() }"></textarea>
  2617. </div>
  2618. <div class="moveBtn moveBtn2" style="margin: 0 20px 0 0px;" v-if="askJson.askCount != 1">
  2619. <div class="chapter_upload_up" @click.stop="askMove(1, index1)">
  2620. </div>
  2621. <div class="chapter_upload_down" @click.stop="askMove(2, index1)"></div>
  2622. </div>
  2623. <div class="a_add_head_div">
  2624. <el-button type="primary" size="small" @click="deleteAskList(index1)" v-if="askJson.askCount != 1">删除
  2625. </el-button>
  2626. <el-button type="primary" size="small" @click="addAskList(index1)">添加</el-button>
  2627. </div>
  2628. </div>
  2629. <div class="a_add_body">
  2630. <div class="a_add_input" style="flex-direction: column;">
  2631. <div v-for="(item2, checkIndex) in askJson.askJson[index1].askItem" :key="checkIndex"
  2632. style=" margin: 20px 10px 0 0;display: flex;align-items:center;position: relative;">
  2633. <div style="margin-right: 10px">
  2634. 选项{{ checkIndex + 1 }}
  2635. </div>
  2636. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-model="askJson.askJson[index1].checkList[checkIndex]
  2637. " placeholder="请输入选项" style="width: 300px;" @change="() => { $forceUpdate() }"></textarea>
  2638. <div class="moveBtn moveBtn2" style="margin: 0 0px 0 20px" v-if="askJson.askJson[index1].askItem != 1">
  2639. <div class="chapter_upload_up" @click.stop="checkMove(1, index1, checkIndex)">
  2640. </div>
  2641. <div class="chapter_upload_down" @click.stop="checkMove(2, index1, checkIndex)"></div>
  2642. </div>
  2643. <div class="a_add_body_div">
  2644. <el-button type="primary" size="small"
  2645. @click="addcheckList(askJson.askJson[index1], checkIndex)">添加</el-button>
  2646. <el-button type="primary" size="small" @click="deletecheckList(askJson.askJson[index1], checkIndex)"
  2647. v-if="askJson.askJson[index1].askItem != 1">删除
  2648. </el-button>
  2649. </div>
  2650. </div>
  2651. </div>
  2652. <!-- <div class="a_add_body_div">
  2653. <el-button style="margin: 10px 0px 0 0" type="primary" size="small"
  2654. @click="addcheckList(askJson.askJson[index1])">添加</el-button>
  2655. <el-button type="primary" size="small" style="margin: 10px 0 0 10px"
  2656. @click="deletecheckList(askJson.askJson[index1])" v-if="askJson.askJson[index1].askItem != 1">删除
  2657. </el-button>
  2658. </div> -->
  2659. </div>
  2660. </div>
  2661. </div>
  2662. </div>
  2663. <span slot="footer" class="dialog-footer">
  2664. <el-button @click="closePan(4)">取 消</el-button>
  2665. <el-button type="primary" @click="addAsk">确 定</el-button>
  2666. </span>
  2667. </el-dialog>
  2668. <el-dialog title="创建选择题" :visible.sync="dialogVisibleChoice" :append-to-body="true" width="800px"
  2669. :before-close="(done) => { closePan(45) }" class="dialog_diy fullStyle">
  2670. <div style="height:100%">
  2671. <!-- <div class="a_add_title" style="
  2672. display: flex;
  2673. flex-direction: row;
  2674. align-items: center;
  2675. justify-content: center;
  2676. ">
  2677. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  2678. <el-input v-model="testJson.testTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  2679. </div> -->
  2680. <div class="a_addBox" style="height:100%">
  2681. <div style="font-size: 16px; color: #c7c7c7;display: flex;align-items: center;">
  2682. <!-- 请输入题目内容 -->
  2683. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteOption" style="margin-left: 10px"
  2684. v-if="isPasteChoice">智能粘贴</button>
  2685. </div>
  2686. <div class="a_add_box" v-for="(item1, index1) in testJson.testCount" :key="index1">
  2687. <div class="a_add_checkType">
  2688. <span :class="{ active: testJson.testJson[index1].type == '1' }"
  2689. @click="checkTestType('1', testJson.testJson[index1])">单选题</span>
  2690. <span :class="{ active: testJson.testJson[index1].type == '2' }"
  2691. @click="checkTestType('2', testJson.testJson[index1])">多选题</span>
  2692. </div>
  2693. <div class="a_add_head">
  2694. <div class="timuUpImg">
  2695. <div style="display: flex;align-items: center;">
  2696. <span style="min-width:fit-content">{{ index1 + 1 + "、" }}</span>
  2697. <!-- <el-input class="a_add_head_input" v-autoHeight="40" resize="none" v-model="testJson.testJson[index1].teststitle" type="textarea"
  2698. placeholder="请输入题目">
  2699. </el-input> -->
  2700. <textarea class="a_add_head_input textarea_css" v-autoHeight="40"
  2701. v-model="testJson.testJson[index1].teststitle" placeholder="请输入题目"
  2702. @change="() => { $forceUpdate() }"></textarea>
  2703. </div>
  2704. <div class="moveBtn moveBtn2" v-if="testJson.testCount != 1">
  2705. <div class="chapter_upload_up" @click.stop="testMove(1, index1)">
  2706. </div>
  2707. <div class="chapter_upload_down" @click.stop="testMove(2, index1)"></div>
  2708. </div>
  2709. <div class="xzUpImg" @click.stop="addImg($event)" style="margin-right: 10px;">
  2710. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2711. <input type="file" accept="image/*" style="display: none" @change="beforeUploadTiMu($event, index1)" />
  2712. </div>
  2713. </div>
  2714. <div class="a_add_head_div">
  2715. <el-button type="primary" size="small" @click="deleteTestList(index1)" v-if="testJson.testCount != 1">删除
  2716. </el-button>
  2717. <el-button type="primary" size="small" @click="addTestList(index1)">添加</el-button>
  2718. </div>
  2719. </div>
  2720. <div class="timuImgBox" v-if="testJson.testJson[index1].timuList &&
  2721. testJson.testJson[index1].timuList.length
  2722. ">
  2723. <div v-for="(timg, tIndex) in testJson.testJson[index1].timuList" :key="tIndex" class="timuImg"
  2724. @click.stop="previewImg(timg.src)">
  2725. <img :src="timg.src" alt="" />
  2726. <div class="deleteWord" @click.stop="deleteM(index1, tIndex)">
  2727. <img src="../../assets/icon/delete.png" alt="" />
  2728. </div>
  2729. </div>
  2730. </div>
  2731. <div class="a_add_body">
  2732. <div class="a_add_input a_add_input_choice">
  2733. <el-radio-group v-model="testJson.testJson[index1].answer" v-if="testJson.testJson[index1].type == 1"
  2734. @change="() => { $forceUpdate() }">
  2735. <div class="radioBox">
  2736. <el-radio v-for="(item2, checkIndex) in testJson.testJson[index1]
  2737. .testItem" :key="checkIndex" :label="checkIndex">
  2738. <div style="margin-right: 10px">
  2739. 选项{{ checkIndex + 1 }}
  2740. </div>
  2741. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex] &&
  2742. testJson.testJson[index1].checkList[checkIndex]
  2743. .imgType &&
  2744. testJson.testJson[index1].checkList[checkIndex]
  2745. .imgType == 1
  2746. ">
  2747. <div class="inImg" @click.stop="
  2748. previewImg(
  2749. testJson.testJson[index1].checkList[checkIndex]
  2750. .src
  2751. )
  2752. ">
  2753. <el-image :src="testJson.testJson[index1].checkList[checkIndex]
  2754. .src
  2755. " lazy />
  2756. <!-- <img :src="
  2757. testJson.testJson[index1].checkList[checkIndex]
  2758. .src
  2759. " alt="" /> -->
  2760. </div>
  2761. </div>
  2762. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex]
  2763. " placeholder="请输入选项" style="width: 300px; margin-right: 10px"
  2764. @change="() => { $forceUpdate() }"></textarea>
  2765. <div class="xzUpImg" @click.stop="addImg($event)">
  2766. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2767. <input type="file" accept="image/*" style="display: none"
  2768. @change="beforeUploadTi($event, index1, checkIndex)" />
  2769. </div>
  2770. <div class="moveBtn moveBtn2" v-if="testJson.testJson[index1].testItem != 1">
  2771. <div class="chapter_upload_up" @click.stop="tcheckMove(1, index1, checkIndex)">
  2772. </div>
  2773. <div class="chapter_upload_down" @click.stop="tcheckMove(2, index1, checkIndex)"></div>
  2774. </div>
  2775. <div class="a_add_body_div">
  2776. <el-button type="primary" size="small"
  2777. @click.stop="addTcheckList(testJson.testJson[index1], checkIndex)">添加</el-button>
  2778. <el-button type="primary" size="small"
  2779. @click.stop="deleteTcheckList(testJson.testJson[index1], checkIndex)"
  2780. v-if="testJson.testJson[index1].testItem != 1">删除
  2781. </el-button>
  2782. </div>
  2783. </el-radio>
  2784. </div>
  2785. </el-radio-group>
  2786. <el-checkbox-group v-model="testJson.testJson[index1].answer" v-if="testJson.testJson[index1].type == '2'"
  2787. @change="() => { $forceUpdate() }">
  2788. <div class="radioBox">
  2789. <el-checkbox v-for="(item2, checkIndex1) in testJson.testJson[index1]
  2790. .testItem" :key="checkIndex1" :label="checkIndex1">
  2791. <div style="margin-right: 10px">
  2792. 选项{{ checkIndex1 + 1 }}
  2793. </div>
  2794. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex1] &&
  2795. testJson.testJson[index1].checkList[checkIndex1]
  2796. .imgType &&
  2797. testJson.testJson[index1].checkList[checkIndex1]
  2798. .imgType == 1
  2799. ">
  2800. <div class="inImg" @click.stop="
  2801. previewImg(
  2802. testJson.testJson[index1].checkList[checkIndex1]
  2803. .src
  2804. )
  2805. ">
  2806. <el-image :src="testJson.testJson[index1].checkList[checkIndex1]
  2807. .src
  2808. " lazy />
  2809. <!-- <img :src="
  2810. testJson.testJson[index1].checkList[checkIndex1]
  2811. .src
  2812. " alt="" /> -->
  2813. </div>
  2814. </div>
  2815. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
  2816. " placeholder="请输入选项" style="width: 300px; margin-right: 10px"
  2817. @change="() => { $forceUpdate() }"></textarea>
  2818. <div class="xzUpImg" @click.stop="addImg($event)">
  2819. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2820. <input type="file" accept="image/*" style="display: none"
  2821. @change="beforeUploadTi($event, index1, checkIndex1)" />
  2822. </div>
  2823. <div class="moveBtn moveBtn2" v-if="testJson.testJson[index1].testItem != 1">
  2824. <div class="chapter_upload_up" @click.stop="tcheckMove(1, index1, checkIndex1)">
  2825. </div>
  2826. <div class="chapter_upload_down" @click.stop="tcheckMove(2, index1, checkIndex1)"></div>
  2827. </div>
  2828. <div class="a_add_body_div">
  2829. <el-button type="primary" size="small"
  2830. @click.stop="addTcheckList(testJson.testJson[index1], checkIndex1)">添加</el-button>
  2831. <el-button type="primary" size="small"
  2832. @click.stop="deleteTcheckList(testJson.testJson[index1], checkIndex1)"
  2833. v-if="testJson.testJson[index1].testItem != 1">删除
  2834. </el-button>
  2835. </div>
  2836. </el-checkbox>
  2837. </div>
  2838. </el-checkbox-group>
  2839. </div>
  2840. <!-- <div class="a_add_body_div">
  2841. <el-button type="primary" size="small" @click="addTcheckList(testJson.testJson[index1])">添加</el-button>
  2842. <el-button type="primary" size="small" @click="deleteTcheckList(testJson.testJson[index1])"
  2843. v-if="testJson.testJson[index1].testItem != 1">删除
  2844. </el-button>
  2845. </div> -->
  2846. </div>
  2847. </div>
  2848. </div>
  2849. </div>
  2850. <span slot="footer" class="dialog-footer">
  2851. <el-button @click="closePan(45)">取 消</el-button>
  2852. <el-button type="primary" @click="addTest">确 定</el-button>
  2853. </span>
  2854. </el-dialog>
  2855. <el-dialog title="添加工具" :visible.sync="dialogVisible4" :append-to-body="true" width="600px"
  2856. :before-close="handleClose" class="dialog_diy addToolsDia">
  2857. <div class="toolChoose">
  2858. <div class="tools">
  2859. <div class="leftTools" style="
  2860. width: 100%;
  2861. padding: 0 0 15px 0;
  2862. " v-for="(itemTools, itemToolsIndex) in chapTools" :key="itemToolsIndex">
  2863. <div style="
  2864. display: flex;
  2865. flex-direction: row;
  2866. align-items: baseline;
  2867. flex-wrap: nowrap;
  2868. justify-content: flex-start;
  2869. position: relative;
  2870. ">
  2871. <div class="chooseWho">
  2872. <div :class="chapToolsType == 0 ? 'isChooseActive' : ''" @click="chapToolsType = 0">
  2873. 互动类
  2874. </div>
  2875. <div :class="chapToolsType == 1 ? 'isChooseActive' : ''" @click="chapToolsType = 1">
  2876. 思维类
  2877. </div>
  2878. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  2879. 评价类
  2880. </div>
  2881. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  2882. 其他
  2883. </div>
  2884. </div>
  2885. </div>
  2886. <div style="min-height: 163px">
  2887. <div class="toolSort" v-if="chapToolsType == 0">
  2888. <div class="tool">
  2889. <div class="whiteBIcon" @click="chapAddTools(8)">
  2890. <img src="../../assets/icon/secondToolList/library.png" alt />
  2891. <div style="margin: 5px 0">素材库</div>
  2892. </div>
  2893. <div class="check" @click="chapAddTools(8)">
  2894. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(8) == -1" />
  2895. <div class="checkDiv" v-else>
  2896. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2897. </div>
  2898. </div>
  2899. </div>
  2900. </div>
  2901. <div class="toolSort" v-if="chapToolsType == 1">
  2902. <div class="tool">
  2903. <div class="whiteBIcon" @click="chapAddTools(7)">
  2904. <img src="../../assets/icon/secondToolList/mindNetwork.png" alt />
  2905. <div style="margin: 5px 0">思维网格</div>
  2906. </div>
  2907. <div class="check" @click="chapAddTools(7)">
  2908. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(7) == -1" />
  2909. <div class="checkDiv" v-else>
  2910. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2911. </div>
  2912. </div>
  2913. </div>
  2914. <div class="tool">
  2915. <div class="whiteBIcon" @click="chapAddTools(1)">
  2916. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  2917. <div style="margin: 5px 0">电子白板</div>
  2918. </div>
  2919. <div class="check" @click="chapAddTools(1)">
  2920. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(1) == -1" />
  2921. <div class="checkDiv" v-else>
  2922. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2923. </div>
  2924. </div>
  2925. </div>
  2926. <div class="tool">
  2927. <div class="whiteBIcon" @click="chapAddTools(2)">
  2928. <img src="../../assets/icon/secondToolList/note.png" alt />
  2929. <div style="margin: 5px 0">便签</div>
  2930. </div>
  2931. <div class="check" @click="chapAddTools(2)">
  2932. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(2) == -1" />
  2933. <div class="checkDiv" v-else>
  2934. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2935. </div>
  2936. </div>
  2937. </div>
  2938. <div class="tool">
  2939. <div class="whiteBIcon" @click="chapAddTools(6)">
  2940. <img src="../../assets/icon/secondToolList/doc.png" alt />
  2941. <div style="margin: 5px 0">协同文档</div>
  2942. </div>
  2943. <div class="check" @click="chapAddTools(6)">
  2944. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(6) == -1" />
  2945. <div class="checkDiv" v-else>
  2946. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2947. </div>
  2948. </div>
  2949. </div>
  2950. <div class="tool">
  2951. <div class="whiteBIcon" @click="chapAddTools(3)">
  2952. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  2953. <div style="margin: 5px 0">思维导图</div>
  2954. </div>
  2955. <div class="check" @click="chapAddTools(3)">
  2956. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(3) == -1" />
  2957. <div class="checkDiv" v-else>
  2958. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2959. </div>
  2960. </div>
  2961. </div>
  2962. <div class="tool">
  2963. <div class="whiteBIcon" @click="chapAddTools(31)">
  2964. <img src="../../assets/icon/secondToolList/networkPanel.png" alt />
  2965. <div style="margin: 5px 0">数学画板</div>
  2966. </div>
  2967. <div class="check" @click="chapAddTools(31)">
  2968. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(31) == -1" />
  2969. <div class="checkDiv" v-else>
  2970. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2971. </div>
  2972. </div>
  2973. </div>
  2974. </div>
  2975. <div class="toolSort" v-if="chapToolsType == 2">
  2976. <div class="tool">
  2977. <div class="whiteBIcon" @click="chapAddTools(5)">
  2978. <img src="../../assets/icon/thirdToolList/score.png" alt />
  2979. <div style="margin: 5px 0">量规评分</div>
  2980. </div>
  2981. <div class="check" @click="chapAddTools(5)">
  2982. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(5) == -1" />
  2983. <div class="checkDiv" v-else>
  2984. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2985. </div>
  2986. </div>
  2987. </div>
  2988. <div class="tool">
  2989. <div class="whiteBIcon" @click="openTools(chapCount, 4, null)">
  2990. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  2991. <div style="margin: 5px 0">问卷调查</div>
  2992. </div>
  2993. <div class="check" @click="chapAddTools(4)">
  2994. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(4) == -1" />
  2995. <div class="checkDiv" v-else>
  2996. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2997. </div>
  2998. </div>
  2999. </div>
  3000. </div>
  3001. </div>
  3002. <div>
  3003. <input type="text" placeholder="添加工具描述" class="binfo_input" style="margin: 20px 0; width: 100% !important"
  3004. v-model="itemTools.toolDetail" />
  3005. </div>
  3006. </div>
  3007. </div>
  3008. </div>
  3009. <span slot="footer" class="dialog-footer">
  3010. <el-button @click="dialogVisible4 = false">取 消</el-button>
  3011. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  3012. </span>
  3013. </el-dialog>
  3014. <el-dialog title="添加问答" :visible.sync="dialogVisible8" :append-to-body="true" width="500px"
  3015. :before-close="(done) => { closePan(15) }" class="dialog_diy">
  3016. <div>
  3017. <div class="a_add_title" style="
  3018. display: flex;
  3019. flex-direction: column;
  3020. align-items: flex-start;
  3021. justify-content: center;
  3022. ">
  3023. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  3024. <!-- <el-input v-model="answerQ" placeholder="请输入您要问的问题"></el-input> -->
  3025. <textarea rows="1" v-autoHeight="40" type="text" placeholder="请输入您要问的问题" class="binfo_input"
  3026. style="width: 100% !important;border:1px solid #DCDFE6" v-model="answerQ"></textarea>
  3027. </div>
  3028. </div>
  3029. <span slot="footer" class="dialog-footer">
  3030. <el-button @click="closePan(15)">取 消</el-button>
  3031. <el-button type="primary" @click="addAnswer">确 定</el-button>
  3032. </span>
  3033. </el-dialog>
  3034. <el-dialog title="添加问题" :visible.sync="dialogVisibleMp3" :append-to-body="true" width="500px"
  3035. :before-close="handleClose" class="dialog_diy">
  3036. <div>
  3037. <div class="a_add_title" style="
  3038. display: flex;
  3039. flex-direction: column;
  3040. align-items: flex-start;
  3041. justify-content: center;
  3042. ">
  3043. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  3044. <el-input v-model="answerQ" placeholder="请输入您想要回答的问题"></el-input>
  3045. </div>
  3046. </div>
  3047. <span slot="footer" class="dialog-footer">
  3048. <el-button @click="dialogVisibleMp3 = false">取 消</el-button>
  3049. <el-button type="primary" @click="addMp3Answer">确 定</el-button>
  3050. </span>
  3051. </el-dialog>
  3052. <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="600px"
  3053. :before-close="handleClose" class="dialog_diy">
  3054. <div>
  3055. <div class="fileCss" style="padding-top: 20px">
  3056. <div>
  3057. <button class="info_btn" @click="addImg($event)">
  3058. 选择本地文件
  3059. <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
  3060. </button>
  3061. <div class="spanName">选择本地文件</div>
  3062. </div>
  3063. <div>
  3064. <el-button @click="getAllBanner" v-if="isSysPic == false">选择系统文件</el-button>
  3065. <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
  3066. <img :src="cover[0].url" alt="" />
  3067. <div class="deletePic" @click="deleteSysPic">
  3068. <img src="../../assets/icon/delete.png" alt="" />
  3069. </div>
  3070. </div>
  3071. <div class="spanName">选择系统文件</div>
  3072. </div>
  3073. <div>
  3074. <el-button @click="searchImageValue = courseName, resetImage()" v-if="isSysPic2 == false">选择网络文件</el-button>
  3075. <div class="isSysPic" v-if="isSysPic2 == true && cover.length > 0">
  3076. <img :src="cover[0].url" alt="" />
  3077. <div class="deletePic" @click="deleteSysPic">
  3078. <img src="../../assets/icon/delete.png" alt="" />
  3079. </div>
  3080. </div>
  3081. <div class="spanName">选择网络文件</div>
  3082. </div>
  3083. </div>
  3084. <!-- <div class="fileCss">
  3085. </div> -->
  3086. </div>
  3087. <span slot="footer" class="dialog-footer">
  3088. <el-button @click="choosePicVisible = false">取 消</el-button>
  3089. <el-button type="primary" @click="choosePicVisible = false">确 定</el-button>
  3090. </span>
  3091. </el-dialog>
  3092. <el-dialog title="选择系统文件" :visible.sync="sysPicVisible" :append-to-body="true" width="710px"
  3093. :before-close="handleClose" class="dialog_diy">
  3094. <div class="cru_selectBox" style="margin: 0">
  3095. <div @click="getChoosePic(1)" class="cru_select" :class="chooseType == 1 ? 'cru_selected' : ''">
  3096. 绘画
  3097. </div>
  3098. <div @click="getChoosePic(2)" class="cru_select" :class="chooseType == 2 ? 'cru_selected' : ''">
  3099. 科技
  3100. </div>
  3101. <div @click="getChoosePic(3)" class="cru_select" :class="chooseType == 3 ? 'cru_selected' : ''">
  3102. 人文
  3103. </div>
  3104. <div @click="getChoosePic(4)" class="cru_select" :class="chooseType == 4 ? 'cru_selected' : ''">
  3105. 艺术
  3106. </div>
  3107. </div>
  3108. <div class="sysPicBox">
  3109. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  3110. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  3111. </div>
  3112. </div>
  3113. </el-dialog>
  3114. <el-dialog title="选择网络文件" :visible.sync="sysPicVisible2" :append-to-body="true" width="710px"
  3115. :before-close="handleClose" class="dialog_diy">
  3116. <div>
  3117. <div class="people_top_right" style="display: flex;align-items: center;">
  3118. <div style="position: relative; width: 100%;">
  3119. <el-input style="height: 100%" placeholder="搜索图片关键字" v-model="searchImageValue"
  3120. @keyup.enter.native="resetImage()"></el-input>
  3121. <div class="search_img" @click="resetImage" style="right: 10px;">
  3122. <img src="../../assets/icon/search.png" alt />
  3123. </div>
  3124. </div>
  3125. <el-button type="primary" size="default" style="margin-left: 10px;" @click="changePicture">换一组</el-button>
  3126. </div>
  3127. <div class="sysPicBox" v-loading="imageloading">
  3128. <div class="picNone" v-if="!imageList.length">请输入关键词搜索图片</div>
  3129. <div v-for="(sys, sysIndex) in imageList" :key="sysIndex" class="sysPic">
  3130. <img :src="sys.url" alt="" @click="chooseSysPic2(sys.url)" />
  3131. </div>
  3132. </div>
  3133. </div>
  3134. </el-dialog>
  3135. <el-dialog title="选择匹配" :visible.sync="dialogVisibleSelect" :append-to-body="true" width="800px"
  3136. :before-close="(done) => { closePan(41) }" class="dialog_diy dialog_diy3 fullStyle">
  3137. <div v-if="selectJson" style="height:100%">
  3138. <div class="select_box1" v-if="selectSteps == 1">
  3139. <div class="select_box1_img">
  3140. <div class="select_box1_title">
  3141. <span>上传题目图片</span><span>提示:请将所有题目上传为一张图片。</span>
  3142. </div>
  3143. <div class="select_box1_add_img">
  3144. <div class="uploadFm" @click="addImg($event)" v-if="!selectJson.url">
  3145. <input type="file" accept="image/*" style="display: none" @change="beforeUploadSelect" />
  3146. <img src="../../assets/icon/addPoster.png" alt="" />
  3147. </div>
  3148. <div class="isSysPic" v-else>
  3149. <img :src="selectJson.url" alt="" @click="previewImg(selectJson.url)" />
  3150. <div class="deletePic" @click="deleteSelectPic">
  3151. <img src="../../assets/icon/delete.png" alt="" />
  3152. </div>
  3153. </div>
  3154. </div>
  3155. </div>
  3156. <div class="select_box1_select">
  3157. <div class="select_box1_title">
  3158. <span>添加选项</span><span>提示:请输入以上题目的选项内容,此选项为所有题目共享。</span>
  3159. </div>
  3160. <div class="select_box1_select_box">
  3161. <el-input v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex"
  3162. v-model="selectJson.select[checkIndex]" placeholder="请输入选项"
  3163. style="width: 150px; margin: 10px 10px 0 0"></el-input>
  3164. <div class="select_box1_select_box_add">
  3165. <el-button style="margin: 10px 0px 0 0" type="primary" size="small" @click="addSelectList(selectJson)">
  3166. 添加</el-button>
  3167. <el-button type="primary" size="small" style="margin: 10px 0 0 0" @click="deleteSelectList(selectJson)"
  3168. v-if="selectJson.select && selectJson.select.length > 0">删除</el-button>
  3169. </div>
  3170. </div>
  3171. </div>
  3172. </div>
  3173. <div v-if="selectSteps == 2" style="height:100%">
  3174. <div class="select_box2">
  3175. <div class="select_box2_title">设置每道题目的正确选项</div>
  3176. <div class="select_box2_box">
  3177. <div class="select_box2_img">
  3178. <img :src="selectJson.url" alt="" @click="previewImg(selectJson.url)" />
  3179. </div>
  3180. <div class="select_box2_answer">
  3181. <div class="select_answer_title">根据题目选择对应答案</div>
  3182. <div class="select_box2_answer_box" v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex">
  3183. <span>{{ checkIndex + 1 }}、</span>
  3184. <el-select v-model="selectJson.answer[checkIndex]" placeholder="请选择正确答案">
  3185. <el-option v-for="(e, eIndex) in selectJson.select" :key="eIndex" :label="e" :value="eIndex">
  3186. </el-option>
  3187. </el-select>
  3188. </div>
  3189. </div>
  3190. </div>
  3191. </div>
  3192. </div>
  3193. </div>
  3194. <span slot="footer" class="dialog-footer">
  3195. <el-button type="primary" @click="nextSelectSteps()" v-if="selectSteps == 1">下一步</el-button>
  3196. <el-button @click="selectSteps--" v-if="selectSteps == 2">上一步</el-button>
  3197. <el-button type="primary" @click="addSelectAnswer" v-if="selectSteps == 2">确 定</el-button>
  3198. </span>
  3199. </el-dialog>
  3200. <el-dialog title="添加评价" :visible.sync="dialogVisibleRate" :append-to-body="true" width="650px"
  3201. :before-close="handleClose" class="dialog_diy">
  3202. <div style="background: #fff; padding: 15px; box-sizing: border-box">
  3203. <div style="font-size: 18px; color: #a9a9a9">请输入个人评价指标:</div>
  3204. <div class="pjCss" style="width: 100%">
  3205. <div v-if="rateJson.length" class="elist_input" style="height: 360px; overflow: auto">
  3206. <div v-for="(eItem, eIndex) in rateJson" :key="eIndex" class="elist_input_box">
  3207. <span style="min-width: 100px; text-align: right">个人评价指标:</span>
  3208. <input type="input" v-model="eItem.value" placeholder="填写评价名称" />
  3209. <div class="remove" @click="deletRateList(eIndex)"></div>
  3210. <div style="width: 100%; display: flex">
  3211. <span style="min-width: 100px; text-align: right">评星等级:</span>
  3212. <el-rate v-model="eItem.score" disabled></el-rate>
  3213. </div>
  3214. <div class="elist_inptu_text" style="align-items: flex-start">
  3215. <span style="min-width: 100px; text-align: right">描述:</span>
  3216. <textarea class="rate_textarea" :rows="3" v-model="eItem.detail" placeholder="填写评价描述"></textarea>
  3217. </div>
  3218. </div>
  3219. </div>
  3220. <div class="addToolFun" @click="addRateList()">
  3221. <div class="addToolImg">
  3222. <img src="../../assets/icon/add.png" alt />
  3223. </div>
  3224. <div>添加</div>
  3225. </div>
  3226. </div>
  3227. </div>
  3228. <span slot="footer" class="dialog-footer">
  3229. <el-button @click="dialogVisibleRate = false">取 消</el-button>
  3230. <el-button type="primary" @click="addRateAnswer">确 定</el-button>
  3231. </span>
  3232. </el-dialog>
  3233. <el-dialog title="排序设置" :visible.sync="dialogVisibleSentence" :append-to-body="true" width="1000px"
  3234. :before-close="(done) => { closePan(47) }" class="dialog_diy dialog_diy3 fullStyle">
  3235. <div style="height: 100%;">
  3236. <div class="sentenBox" style="height: 100%;">
  3237. <div class="addSen" @click="addSt">添加题目</div>
  3238. <div v-for="(st, stIndex) in sentenceList" :key="stIndex" class="sentenContent">
  3239. <div class="sentenTopBox">
  3240. <div class="sentenTop" :index="stIndex + 1">
  3241. <div>题目设置</div>
  3242. <div>
  3243. <el-input placeholder="请输入卡片内容" v-model="st.sentenceTitle" :maxlength="10"></el-input>
  3244. </div>
  3245. <div @click="addSen(stIndex)">添加</div>
  3246. <div class="remove1" v-if="sentenceList.length > 1" @click="deleteSentence(stIndex)"></div>
  3247. </div>
  3248. </div>
  3249. <div class="cardList">
  3250. <div v-if="st.addSentence.length > 0" class="cardBox">
  3251. <div class="isCard" v-for="(s, sIndex) in st.addSentence" :key="sIndex"
  3252. @click="setRightAnswer(s, stIndex, sIndex)">
  3253. <el-tooltip class="item" effect="light" :content="s" placement="top">
  3254. <div>{{ s }}</div>
  3255. </el-tooltip>
  3256. <div class="deleteWord" @click.stop="deleteS(s, stIndex, sIndex)">
  3257. <img src="../../assets/icon/delete.png" alt="" />
  3258. </div>
  3259. </div>
  3260. </div>
  3261. <div class="card">
  3262. <img src="../../assets/icon/conSentences/noTitle.png" alt="" />
  3263. </div>
  3264. </div>
  3265. <div class="rightCardBox">
  3266. <div>正确顺序</div>
  3267. <div class="rightCardList">
  3268. <div v-if="st.rightAnswer.length > 0" class="cardBox">
  3269. <div v-for="(r, rIndex) in st.rightAnswer" :key="rIndex" class="cardCss">
  3270. <div class="isCard1" @click="returnCard(r, stIndex, rIndex)">
  3271. <el-tooltip class="item" effect="light" :content="r" placement="top">
  3272. <div>{{ r }}</div>
  3273. </el-tooltip>
  3274. </div>
  3275. <div>{{ rIndex + 1 }}</div>
  3276. </div>
  3277. </div>
  3278. <div class="card" v-if="st.rightAnswer.length == 0">
  3279. <img src="../../assets/icon/conSentences/noAnswer.png" alt="" />
  3280. </div>
  3281. <div class="card" v-else>
  3282. <img src="../../assets/icon/conSentences/clickNo.png" alt="" />
  3283. </div>
  3284. </div>
  3285. </div>
  3286. </div>
  3287. </div>
  3288. </div>
  3289. <span slot="footer" class="dialog-footer">
  3290. <el-button @click="closePan(47)">取 消</el-button>
  3291. <el-button type="primary" @click="addSentenceTool">确 定</el-button>
  3292. </span>
  3293. </el-dialog>
  3294. <el-dialog title="添加表格" :visible.sync="dialogVisibleTable" :append-to-body="true" width="95%"
  3295. :before-close="handleClose" class="dialog_diy">
  3296. <el-form>
  3297. <!-- <el-form-item label="文本标题">
  3298. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  3299. </el-form-item> -->
  3300. <div>表格内容</div>
  3301. <Table v-model="tableJson.text" @change="change"></Table>
  3302. </el-form>
  3303. <span slot="footer" class="dialog-footer">
  3304. <!-- <el-button @click="dialogVisibleTable = false">取 消</el-button>
  3305. <el-button type="primary" @click="addTableJson">确定</el-button> -->
  3306. <el-button type="primary" @click="addTableJson">上传模板</el-button>
  3307. </span>
  3308. </el-dialog>
  3309. <el-dialog title="添加文档" :visible.sync="dialogVisibleWord" :append-to-body="true" width="800px"
  3310. :before-close="handleClose" class="dialog_diy">
  3311. <el-form>
  3312. <!-- <el-form-item label="文本标题">
  3313. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  3314. </el-form-item> -->
  3315. <div>文档内容</div>
  3316. <editor-bar v-model="wordJson.text"></editor-bar>
  3317. </el-form>
  3318. <span slot="footer" class="dialog-footer">
  3319. <!-- <el-button @click="dialogVisibleWord = false">取 消</el-button> -->
  3320. <el-button type="primary" @click="addWordJson">上传模板</el-button>
  3321. </span>
  3322. </el-dialog>
  3323. <el-dialog title="添加班级" :visible.sync="dialogVisibleMoreUpload" :append-to-body="true" width="30%"
  3324. :before-close="handleClose" class="dialog_diy">
  3325. <div style="
  3326. width: 100%;
  3327. display: flex;
  3328. flex-direction: row;
  3329. flex-wrap: nowrap;
  3330. align-items: center;
  3331. justify-content: center;
  3332. ">
  3333. <div>班级:</div>
  3334. <el-select multiple v-model="uploadJson" placeholder="请选择">
  3335. <el-option v-for="item in classJuri" :key="item.id" :label="item.name" :value="item.id">
  3336. </el-option>
  3337. </el-select>
  3338. </div>
  3339. <span slot="footer" class="dialog-footer">
  3340. <el-button @click="dialogVisibleMoreUpload = false">取 消</el-button>
  3341. <el-button type="primary" @click="addMoreUpload">确定</el-button>
  3342. </span>
  3343. </el-dialog>
  3344. <el-dialog title="设置随机码" :visible.sync="dialogVisibleInvite" :append-to-body="true" width="360px"
  3345. :before-close="handleClose" class="dialog_diy">
  3346. <div style="
  3347. width: 100%;
  3348. display: flex;
  3349. flex-direction: row;
  3350. flex-wrap: nowrap;
  3351. align-items: center;
  3352. justify-content: center;
  3353. ">
  3354. <div>随机码:</div>
  3355. <el-input v-model="icode" style="width: 240px" placeholder="请输入随机码"></el-input>
  3356. </div>
  3357. <span slot="footer" class="dialog-footer">
  3358. <el-button @click="dialogVisibleInvite = false">取 消</el-button>
  3359. <el-button type="primary" @click="addInvite">确定</el-button>
  3360. </span>
  3361. </el-dialog>
  3362. <el-dialog title="添加预设时间" :visible.sync="dialogVisiblePreTime" :append-to-body="true" width="450px"
  3363. :before-close="handleClose" class="dialog_diy">
  3364. <div>
  3365. <div style="margin-bottom: 20px;color: #999;">提示:点击“+”或“-”修改倒计时时长。</div>
  3366. <Time :preTime="preTime" @updateTimeNum="updateTime" v-if="dialogVisiblePreTime"></Time>
  3367. </div>
  3368. <span slot="footer" class="dialog-footer">
  3369. <el-button @click="dialogVisiblePreTime = false">取 消</el-button>
  3370. <el-button type="primary" @click="addPreTime">确定</el-button>
  3371. </span>
  3372. </el-dialog>
  3373. <el-dialog title="导入目标" :visible.sync="dialogVisiblemb" :append-to-body="true" width="70%" :before-close="handleClose"
  3374. class="dialog_diy">
  3375. <div>
  3376. <div style="
  3377. width: 100%;
  3378. display: flex;
  3379. flex-direction: row;
  3380. flex-wrap: nowrap;
  3381. align-content: center;
  3382. align-items: center;
  3383. justify-content: space-between;
  3384. ">
  3385. <div style="
  3386. display: flex;
  3387. flex-flow: row nowrap;
  3388. align-items: flex-start;
  3389. width: 100%;
  3390. flex-direction: column;
  3391. flex-wrap: nowrap;
  3392. position: relative;
  3393. ">
  3394. <div class="e_box">
  3395. <div class="e_card" v-for="(item, index) in evaJuri" :key="index">
  3396. <div class="e_card_picture">
  3397. <img src="../../assets/e_picture.png" />
  3398. </div>
  3399. <div class="e_card_name">
  3400. <span>{{ item.title }}</span>
  3401. </div>
  3402. <div class="e_card_btn">
  3403. <span @click="checkEva(item.id, 2)">导入</span>
  3404. </div>
  3405. </div>
  3406. <div class="addEva" @click="openT">
  3407. <img src="../../assets/icon/addEva.png" alt="" />
  3408. </div>
  3409. <div v-if="evaJuri.length === 0" style="margin: 0 auto; color: #6e6e6e">
  3410. 暂无数据
  3411. </div>
  3412. </div>
  3413. </div>
  3414. </div>
  3415. </div>
  3416. <span slot="footer" class="dialog-footer">
  3417. <el-button @click="dialogVisiblemb = false">取 消</el-button>
  3418. </span>
  3419. </el-dialog>
  3420. <el-dialog title="分组设置" :visible.sync="dialogVisibleGroup" :append-to-body="true" width="650px"
  3421. :before-close="handleClose" class="dialog_diy">
  3422. <div class="groupBox">
  3423. <div v-if="groupJson.group" class="groupContent">
  3424. <div class="groupTitle">请设置小组数量及名称</div>
  3425. <div v-for="(item, index) in groupJson.group" :key="index" class="groupName">
  3426. <span class="groupn">第{{ index + 1 }}组名称:</span>
  3427. <el-input v-model="item.name" placeholder="请输入名称..." style="width: 250px"></el-input>
  3428. <div class="groupBtn">
  3429. <el-button type="primary" size="small" @click="addGroup(index)" v-if="groupJson.group.length - 1 == index">
  3430. 添加</el-button>
  3431. <el-button type="primary" size="small" @click="deleteGroup(index)"
  3432. v-if="groupJson.group && groupJson.group.length > 1">删除</el-button>
  3433. </div>
  3434. </div>
  3435. </div>
  3436. <div class="groupContent">
  3437. <div class="groupTitle">请设置每组人数</div>
  3438. <!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
  3439. style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
  3440. <el-input v-model="groupJson.number" style="width:150px" placeholder="请输入2-10的数字"
  3441. @change="numberPan"></el-input>
  3442. </div>
  3443. </div>
  3444. <span slot="footer" class="dialog-footer">
  3445. <el-button @click="dialogVisibleGroup = false">取 消</el-button>
  3446. <el-button type="primary" @click="addGroupJson">确定</el-button>
  3447. </span>
  3448. </el-dialog>
  3449. <el-dialog title="修改名称" :visible.sync="dialogVisibleupdataVideoT" :append-to-body="true" width="500px"
  3450. :before-close="handleClose" class="dialog_diy">
  3451. <div style="
  3452. width: 100%;
  3453. display: flex;
  3454. flex-direction: row;
  3455. flex-wrap: nowrap;
  3456. align-items: center;
  3457. justify-content: center;
  3458. ">
  3459. <div style="min-width: fit-content;">文件名称:</div>
  3460. <el-input v-model="line" placeholder="请输入要修改的名称"></el-input>
  3461. </div>
  3462. <span slot="footer" class="dialog-footer">
  3463. <el-button @click="dialogVisibleupdataVideoT = false">取 消</el-button>
  3464. <el-button type="primary" @click="updataVideoC">确 定</el-button>
  3465. </span>
  3466. </el-dialog>
  3467. <interVideo :dialogVisibleVideo.sync="dialogVisibleVideo" :videoJson="videoJson" @add="addVideoJson"></interVideo>
  3468. <el-dialog title="切换阶段顺序" :visible.sync="dialogVisibleStageChange" :append-to-body="true" width="400px"
  3469. :before-close="handleClose" class="dialog_diy dialog_diyStage">
  3470. <div class="change_stageBox">
  3471. <div class="navTask" v-for="(t, tIndex) in unitJson3" :key="tIndex">
  3472. <div class="nt_taskBox">
  3473. <div class="nt_taskTitle">第{{ tIndex + 1 }}阶段</div>
  3474. <div class="nt_taskName">
  3475. <el-tooltip effect="light" :content="t.dyName" placement="top">
  3476. <span>{{ t.dyName }}</span>
  3477. </el-tooltip>
  3478. </div>
  3479. </div>
  3480. <div class="moveBtn" v-if="unitJson3.length > 1">
  3481. <div class="chapter_upload_up" @click.stop="stageMove(1, tIndex)">
  3482. </div>
  3483. <div class="chapter_upload_down" @click.stop="stageMove(2, tIndex)"></div>
  3484. </div>
  3485. </div>
  3486. </div>
  3487. <span slot="footer" class="dialog-footer">
  3488. <el-button @click="dialogVisibleStageChange = false">取 消</el-button>
  3489. <el-button type="primary" @click="updateChange">确定</el-button>
  3490. </span>
  3491. </el-dialog>
  3492. </div>
  3493. </template>
  3494. <script>
  3495. import "../../common/aws-sdk-2.235.1.min.js";
  3496. import { tools as toolsData } from "../../common/tools.js";
  3497. // import "../../common/aws-sdk-2.99.0.min.js";
  3498. import $ from "jquery";
  3499. import EditorBar from "../../components/tools/wangEnduit";
  3500. import Table from "../../components/tools/table";
  3501. import Mind from "../tools/jsmind2";
  3502. import Time from "../tools/time.vue";
  3503. import Sunburst from "../tools/sunburst";
  3504. import SeeBoard from "../tools/seeBoard";
  3505. import weilaiData from "./components/weilai.js";
  3506. import sourceDialog from "./teacherSource/dialog.vue";
  3507. import interVideo from "./interVideo/index.vue";
  3508. export default {
  3509. components: {
  3510. EditorBar,
  3511. Mind,
  3512. Time,
  3513. Sunburst,
  3514. SeeBoard,
  3515. Table,
  3516. sourceDialog,
  3517. interVideo,
  3518. },
  3519. data() {
  3520. return {
  3521. checkAll: false,
  3522. chooseType: 1,
  3523. checkedCities: [],
  3524. isIndeterminate: true,
  3525. isSysPic: false,
  3526. isSysPic2: false,
  3527. steps: 1,
  3528. nbOrder: 0,
  3529. courseId: "",
  3530. chapToolsType: 0,
  3531. chapTools: [
  3532. {
  3533. tools: [],
  3534. toolDetail: "",
  3535. },
  3536. ],
  3537. line: "",
  3538. lineTitle: "",
  3539. sysPic: [],
  3540. sentenceList: [{ sentenceTitle: "", addSentence: [], rightAnswer: [] }],
  3541. sentenceList2: [],
  3542. isPushTitleList: [],
  3543. lineCount: 0,
  3544. lineType: 0,
  3545. chapCount: 0,
  3546. courseName: "",
  3547. isTeacherSee: false,
  3548. courseText: "",
  3549. preTime: 0,
  3550. formLabelWidth: "100px",
  3551. choosePicVisible: false,
  3552. sysPicVisible: false,
  3553. sysPicVisible2: false,
  3554. uploadLoading1: false,
  3555. noneBtnImg: false,
  3556. updateBoolean2: false,
  3557. unitIndex: 0,
  3558. taskCount: 0,
  3559. dialogVisible: false,
  3560. dialogVisible1: false,
  3561. dialogVisible2: false,
  3562. dialogVisible3: false,
  3563. dialogVisible4: false,
  3564. dialogVisible5: false,
  3565. dialogVisible6: false,
  3566. dialogVisible7: false,
  3567. dialogVisible8: false,
  3568. dialogVisible9: false,
  3569. dialogVisibleClass: false,
  3570. dialogVisibleMember: false,
  3571. dialogVisibleMp3: false,
  3572. dialogVisibleSelect: false,
  3573. dialogVisibleSentence: false,
  3574. dialogVisibleRate: false,
  3575. dialogVisibleChoice: false,
  3576. dialogVisiblemb: false,
  3577. dialogVisibleInvite: false,
  3578. dialogVisibleSource: false,
  3579. dialogVisibleVideo: false,
  3580. dialogVisibleStageChange: false,
  3581. dialogVisibleupdataVideoT: false,
  3582. isClickColor: 1,
  3583. toolIndexType:"",
  3584. publicTool: 0,
  3585. searchPeople: "",
  3586. searchTN: "",
  3587. userid: this.$route.query.userid,
  3588. oid: this.$route.query.oid,
  3589. org: this.$route.query.org,
  3590. role: this.$route.query.role,
  3591. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  3592. dialogVisibleTable: false,
  3593. dialogVisibleWord: false,
  3594. tableJson: { text: "" },
  3595. wordJson: { text: "" },
  3596. dialogVisibleMoreUpload: false,
  3597. dialogVisiblePreTime: false,
  3598. uploadJson: [],
  3599. classJuri: [],
  3600. gradeList: [],
  3601. cover: [], //课程封面
  3602. myWord: [],
  3603. evaJuri: [],
  3604. evalua: "",
  3605. targetArray: [],
  3606. eTitle: "",
  3607. eJson: {},
  3608. fid: "", //一级
  3609. sid: "", //二级
  3610. tid: "", //二级
  3611. typeMode: 1,
  3612. eJSONNum: 0,
  3613. data: {
  3614. meta: {
  3615. name: "example",
  3616. author: "dd@163.com",
  3617. version: "0.2",
  3618. },
  3619. format: "node_array",
  3620. data: [{ id: "root", isroot: true, topic: "" }],
  3621. },
  3622. askJson: {
  3623. askCount: 1,
  3624. askTitle: "",
  3625. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3626. },
  3627. askJson2: {},
  3628. testJson: {},
  3629. testJson2: {},
  3630. selectJson: {},
  3631. selectJson2: {},
  3632. rateJson: [],
  3633. unitJson2: [],
  3634. unitJson3: [],
  3635. unitJson: [
  3636. {
  3637. dyName: "", //单元标题
  3638. chapterInfo: [
  3639. {
  3640. isread: false,
  3641. chapterid: this.guid(),
  3642. title: "",
  3643. courseName: "",
  3644. taskJson: [
  3645. {
  3646. task: "",
  3647. taskDetail: "",
  3648. chapterData: [],
  3649. toolText: "",
  3650. toolChoose: [
  3651. {
  3652. tool: [],
  3653. toolDetail: "",
  3654. toolType: 0,
  3655. askCount: 1,
  3656. askTitle: "",
  3657. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3658. },
  3659. ],
  3660. isShowTools: false,
  3661. askCount: 1,
  3662. isFold: 0,
  3663. askTitle: "",
  3664. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3665. checkJson: [{ checkCount: [], checkPerent: [] }],
  3666. homeworkList: [],
  3667. },
  3668. ],
  3669. itemCount: 1,
  3670. fileList1: [],
  3671. video: [],
  3672. testData: [],
  3673. pData: [],
  3674. templateArray: [],
  3675. },
  3676. ],
  3677. },
  3678. ],
  3679. studentJuri: [],
  3680. teacherJuri: [],
  3681. checkboxList: [],
  3682. checkboxList2: [],
  3683. checkboxList3: [],
  3684. classSearch: "",
  3685. gradeId: "",
  3686. number: "",
  3687. tTitle: "",
  3688. tdetail: "",
  3689. templateC: {},
  3690. AttText: {},
  3691. AttTextType: 0,
  3692. AttTextIndex: 0,
  3693. cTemplate: "",
  3694. CourseType: [],
  3695. CourseType2: [],
  3696. CourseTypeJson: {},
  3697. courseTypeId: [],
  3698. courseTypeSon: [],
  3699. clearArray: [],
  3700. pTypeCheck: [],
  3701. pTypeCheckName: [],
  3702. loading: false,
  3703. toolType: 0,
  3704. inputShow: true,
  3705. inputShow2: true,
  3706. toolIndex: 0,
  3707. cidType: 0,
  3708. answerQ: "",
  3709. answerQ2: "",
  3710. grade: [],
  3711. grade2: [],
  3712. courseUserid: "",
  3713. timer: null,
  3714. timer2: null,
  3715. pasteTimer: null,
  3716. checkId: "",
  3717. isDelete: 1,
  3718. addindex: 0,
  3719. selectSteps: 1,
  3720. groupJson: {},
  3721. dialogVisibleGroup: false,
  3722. rightBoxHeight: 0,
  3723. ManAarray: [],
  3724. checkBoolean: false,
  3725. inviteCode: [],
  3726. inviteId: "",
  3727. icode: "",
  3728. easyArray: [2, 4],
  3729. sourceData: {},
  3730. updateSourcePan: false,
  3731. videoJson: {},
  3732. isBtnDisplay: false,
  3733. isStepDisplay: false,
  3734. isPasteStage: false,
  3735. isPasteTask: false,
  3736. isPasteChoice: false,
  3737. imageList: [],
  3738. imageloading: false,
  3739. searchImageValue: "",
  3740. ppage: 1,
  3741. toolsData: toolsData,
  3742. oldIndex:0,
  3743. oldData:null,
  3744. newIndex:0,
  3745. };
  3746. },
  3747. directives: {
  3748. autoHeight: {
  3749. update(el, binding) {
  3750. const { value } = binding
  3751. if (value && typeof value === 'number') {
  3752. el.style.height = `${value}px`
  3753. } else {
  3754. el.style.height = 'auto'
  3755. }
  3756. },
  3757. componentUpdated(el) {
  3758. el.style.height = `${el.scrollHeight + 5}px`
  3759. },
  3760. },
  3761. },
  3762. computed: {
  3763. // rightBoxHeight: function () {
  3764. // return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
  3765. // },
  3766. offsetLetfPx: function () {
  3767. //addnum可以直接在模板语法里面用,相当于data内的值
  3768. return (
  3769. $(".cru_select")[this.unitIndex] &&
  3770. $(".cru_select")[this.unitIndex].offsetLeft + 5
  3771. );
  3772. },
  3773. getMan2() {
  3774. return function (people) {
  3775. let _people = people;
  3776. let _people2 = "";
  3777. if (this.ManAarray.length) {
  3778. for (var i = 0; i < this.ManAarray.length; i++) {
  3779. if (this.ManAarray[i].userid == people) {
  3780. _people2 = this.ManAarray[i].name;
  3781. break;
  3782. }
  3783. }
  3784. }
  3785. if (people == this.courseUserid) {
  3786. return "";
  3787. }
  3788. return this.ManAarray.length ? _people2 : "";
  3789. };
  3790. },
  3791. getListMan2() {
  3792. return function (list) {
  3793. let _people2 = [];
  3794. if (this.ManAarray.length) {
  3795. for(var j = 0;j < list.length; j++){
  3796. let people = list[j];
  3797. for (var i = 0; i < this.ManAarray.length; i++) {
  3798. if (this.ManAarray[i].userid == people && people != this.courseUserid) {
  3799. _people2.push(this.ManAarray[i].name);
  3800. break;
  3801. }
  3802. }
  3803. }
  3804. }
  3805. return this.ManAarray.length ? _people2.join("、") : "";
  3806. };
  3807. },
  3808. isInvite() {
  3809. return function (cid) {
  3810. let array = [];
  3811. for (var i = 0; i < this.inviteCode.length; i++) {
  3812. array.push(this.inviteCode[i].cid);
  3813. }
  3814. return array.indexOf(cid) != -1;
  3815. };
  3816. },
  3817. getInviteCodeC() {
  3818. return function (cid) {
  3819. let array = [];
  3820. for (var i = 0; i < this.inviteCode.length; i++) {
  3821. array.push(this.inviteCode[i].cid);
  3822. }
  3823. return this.inviteCode[array.indexOf(cid)].ic;
  3824. };
  3825. },
  3826. getClassC() {
  3827. return function (c) {
  3828. let _c2 = "";
  3829. if (this.grade.length) {
  3830. for (var i = 0; i < this.grade.length; i++) {
  3831. if (this.grade[i].id == c) {
  3832. _c2 = this.grade[i].name;
  3833. break;
  3834. }
  3835. }
  3836. }
  3837. return this.grade.length ? _c2 : "";
  3838. };
  3839. },
  3840. getListClassC() {
  3841. return function (list) {
  3842. let _c2 = [];
  3843. if (this.grade.length) {
  3844. for(var j = 0; j < list.length; j++){
  3845. let c = list[j]
  3846. for (var i = 0; i < this.grade.length; i++) {
  3847. if (this.grade[i].id == c) {
  3848. _c2.push(this.grade[i].name);
  3849. break;
  3850. }
  3851. }
  3852. }
  3853. }
  3854. return this.grade.length ? _c2.join('、') : "";
  3855. };
  3856. },
  3857. },
  3858. watch: {
  3859. unitIndex(newValue, oldValue) {
  3860. if (this.isDelete == 2) {
  3861. this.isDelete = 1;
  3862. return;
  3863. }
  3864. if (this.cid != "") {
  3865. let _unitIndex = oldValue;
  3866. if (
  3867. JSON.stringify(this.unitJson2[_unitIndex]) ==
  3868. JSON.stringify(this.unitJson[_unitIndex])
  3869. ) {
  3870. this.$refs.rightboxR.scrollTop = 0;
  3871. return;
  3872. }
  3873. let cPan = 1;
  3874. for (
  3875. var j = 0;
  3876. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  3877. j++
  3878. ) {
  3879. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3880. j
  3881. ].proVisible = false;
  3882. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3883. j
  3884. ].proVisible2 = false;
  3885. if (
  3886. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3887. .length > 1
  3888. ) {
  3889. for (
  3890. var z = 0;
  3891. z <
  3892. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3893. .length;
  3894. z++
  3895. ) {
  3896. if (
  3897. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  3898. .toolChoose[z].tool.length
  3899. ) {
  3900. this.$message.error("请把工具添加完整");
  3901. cPan = 2;
  3902. break;
  3903. }
  3904. }
  3905. }
  3906. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  3907. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  3908. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  3909. (ele) => {
  3910. return ele.value != "";
  3911. }
  3912. );
  3913. }
  3914. }
  3915. if (cPan == 2) {
  3916. this.unitIndex = oldValue;
  3917. return;
  3918. }
  3919. for (var i = 0; i < this.unitJson.length; i++) {
  3920. if (this.addindex != i) {
  3921. delete this.unitJson[i].isUpdate;
  3922. }
  3923. }
  3924. this.$refs.rightboxR.scrollTop = 0;
  3925. this.addindex = -1;
  3926. let params = [
  3927. {
  3928. cid: this.cid,
  3929. chapters: JSON.stringify(this.unitJson),
  3930. uid: this.userid,
  3931. unitIndex: _unitIndex,
  3932. },
  3933. ];
  3934. this.ajax
  3935. .post(this.$store.state.api + "updateWorkNew4", params)
  3936. .then((res) => {
  3937. // this.$message({
  3938. // message: "修改成功",
  3939. // type: "success",
  3940. // });
  3941. // this.courseId = this.cid;
  3942. })
  3943. .catch((err) => {
  3944. this.$message.error("网络不佳");
  3945. console.error(err);
  3946. });
  3947. }
  3948. },
  3949. steps(newValue, old) {
  3950. if (newValue == 4) {
  3951. let cPan = 1;
  3952. for (var i = 0; i < this.unitJson.length; i++) {
  3953. for (
  3954. var j = 0;
  3955. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  3956. j++
  3957. ) {
  3958. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  3959. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  3960. if (
  3961. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  3962. ) {
  3963. for (
  3964. var z = 0;
  3965. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  3966. z++
  3967. ) {
  3968. if (
  3969. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  3970. .length
  3971. ) {
  3972. this.$message.error("请把工具添加完整");
  3973. cPan = 2;
  3974. break;
  3975. }
  3976. }
  3977. }
  3978. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  3979. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  3980. i
  3981. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  3982. return ele.value != "";
  3983. });
  3984. }
  3985. }
  3986. }
  3987. this.inputShow = true;
  3988. if (cPan == 2) {
  3989. this.steps = old;
  3990. return;
  3991. }
  3992. this.goTo(
  3993. "/course?userid=" +
  3994. this.userid +
  3995. "&oid=" +
  3996. this.oid +
  3997. "&org=" +
  3998. this.org +
  3999. "&role=" +
  4000. this.role
  4001. );
  4002. }
  4003. },
  4004. },
  4005. methods: {
  4006. openAI() {
  4007. window.parent.postMessage({ tools: "64" }, "*");
  4008. },
  4009. setMan() {
  4010. // let teacherJuri = this.teacherJuri2;
  4011. this.ManAarray = [];
  4012. let _user = JSON.parse(JSON.stringify(this.checkboxList3));
  4013. if (_user.indexOf(this.userid) == -1) {
  4014. _user.push(this.userid);
  4015. }
  4016. if (_user.indexOf(this.courseUserid) == -1) {
  4017. _user.push(this.courseUserid);
  4018. }
  4019. let params = {
  4020. uid: _user.join(","),
  4021. };
  4022. this.ajax
  4023. .get(this.$store.state.api + "getAllUserById", params)
  4024. .then((res) => {
  4025. let teacherJuri = res.data[0];
  4026. this.ManAarray = teacherJuri;
  4027. })
  4028. .catch((err) => {
  4029. console.error(err);
  4030. });
  4031. },
  4032. previewImg(url) {
  4033. this.$hevueImgPreview(url);
  4034. },
  4035. btnDisplay(bool) {
  4036. this.isBtnDisplay = bool
  4037. },
  4038. stepDisplay(bool) {
  4039. this.isStepDisplay = bool
  4040. },
  4041. scrollChange() {
  4042. this.rightBoxHeight = $(".rightBox")[0].scrollHeight - 80;
  4043. },
  4044. handleCheckAllChange(val) {
  4045. this.checkedCities = val ? cityOptions : [];
  4046. this.isIndeterminate = false;
  4047. },
  4048. handleCheckedCitiesChange(value) {
  4049. let checkedCount = value.length;
  4050. this.checkAll = checkedCount === this.cities.length;
  4051. this.isIndeterminate =
  4052. checkedCount > 0 && checkedCount < this.cities.length;
  4053. },
  4054. addHw(e) {
  4055. var el = e.currentTarget;
  4056. el.getElementsByTagName("input")[0].click();
  4057. },
  4058. change(val) {
  4059. if (this.dialogVisible1) {
  4060. this.tdetail = val
  4061. } else if (this.dialogVisible6) {
  4062. this.AttText.text = val
  4063. } else if (this.dialogVisible2) {
  4064. this.cTemplate = val
  4065. } else if (this.dialogVisibleTable) {
  4066. this.tableJson.text = val
  4067. }
  4068. this.$forceUpdate();
  4069. console.log(val);
  4070. },
  4071. change2(val) {
  4072. console.log(val);
  4073. this.$forceUpdate();
  4074. },
  4075. handleClose(done) {
  4076. done();
  4077. },
  4078. closePan(tool) {
  4079. if (tool == 15) {
  4080. if (JSON.stringify(this.answerQ) == JSON.stringify(this.answerQ2)) {
  4081. this.dialogVisible8 = false
  4082. } else {
  4083. this.closeConfirm(tool);
  4084. }
  4085. } else if (tool == 4) {
  4086. if (JSON.stringify(this.askJson) == JSON.stringify(this.askJson2)) {
  4087. this.dialogVisible5 = false
  4088. } else {
  4089. this.closeConfirm(tool);
  4090. }
  4091. } else if (tool == 45) {
  4092. if (JSON.stringify(this.testJson) == JSON.stringify(this.testJson2)) {
  4093. this.dialogVisibleChoice = false
  4094. } else {
  4095. this.closeConfirm(tool);
  4096. }
  4097. } else if (tool == 41) {
  4098. if (JSON.stringify(this.selectJson) == JSON.stringify(this.selectJson2)) {
  4099. this.dialogVisibleSelect = false
  4100. } else {
  4101. this.closeConfirm(tool);
  4102. }
  4103. } else if (tool == 47) {
  4104. if (JSON.stringify(this.sentenceList) == JSON.stringify(this.sentenceList2)) {
  4105. this.dialogVisibleSentence = false
  4106. } else {
  4107. this.closeConfirm(tool);
  4108. }
  4109. }
  4110. },
  4111. closeConfirm(tool) {
  4112. this
  4113. .$confirm("是否保存已编辑内容?", "提示", {
  4114. confirmButtonText: "保存",
  4115. cancelButtonText: "不保存",
  4116. type: "warning",
  4117. })
  4118. .then(() => {
  4119. if (tool == 15) {
  4120. this.addAnswer();
  4121. } else if (tool == 4) {
  4122. this.addAsk();
  4123. } else if (tool == 45) {
  4124. this.addTest();
  4125. } else if (tool == 41) {
  4126. this.addSelectAnswer();
  4127. } else if (tool == 47) {
  4128. this.addSentenceTool();
  4129. }
  4130. })
  4131. .catch(() => {
  4132. if (tool == 15) {
  4133. this.dialogVisible8 = false;
  4134. } else if (tool == 4) {
  4135. this.dialogVisible5 = false;
  4136. } else if (tool == 45) {
  4137. this.dialogVisibleChoice = false;
  4138. } else if (tool == 41) {
  4139. this.dialogVisibleSelect = false;
  4140. } else if (tool == 47) {
  4141. this.dialogVisibleSentence = false;
  4142. }
  4143. });
  4144. },
  4145. imgChange2(i, j) {
  4146. var _tmp = this.testJson.testJson[i].checkList[j];
  4147. this.noneBtnImg = _tmp.length >= 1;
  4148. },
  4149. imgChange3(i) {
  4150. var _tmp = this.testJson.testJson[i];
  4151. this.noneBtnImg = _tmp.length >= 1;
  4152. },
  4153. imgChange1(file, fileList, type, itemTaskIndex) {
  4154. if (type == 1) {
  4155. var _tmp = this.cover;
  4156. } else if (
  4157. type == 2 ||
  4158. type == 3 ||
  4159. type == 6 ||
  4160. type == 7 ||
  4161. type == 8
  4162. ) {
  4163. var _tmp =
  4164. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4165. .chapterData;
  4166. } else if (type == 4) {
  4167. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  4168. } else {
  4169. var _tmp =
  4170. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4171. .homeworkList;
  4172. }
  4173. this.noneBtnImg = _tmp.length >= 1;
  4174. },
  4175. goTo(path) {
  4176. this.$router.push(path);
  4177. },
  4178. guid() {
  4179. var _num,
  4180. i,
  4181. _guid = "";
  4182. for (i = 0; i < 32; i++) {
  4183. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  4184. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  4185. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  4186. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  4187. _guid += "-";
  4188. }
  4189. }
  4190. return _guid;
  4191. },
  4192. retrunCourse() {
  4193. this
  4194. .$confirm("是否保存已编辑内容?", "提示", {
  4195. confirmButtonText: "保存",
  4196. cancelButtonText: "不保存",
  4197. type: "warning",
  4198. })
  4199. .then(() => {
  4200. if (this.cid == "" || this.cid == undefined) {
  4201. if (this.courseName == "") {
  4202. this.$message.error("请补充填写课程名称");
  4203. return;
  4204. } else {
  4205. this.addWork();
  4206. }
  4207. this.steps = 4
  4208. } else {
  4209. if (this.courseName == "") {
  4210. this.$message.error("请补充填写课程名称");
  4211. return;
  4212. } else {
  4213. if (this.userid != this.courseUserid && this.role != "1") {
  4214. this.updateWork2();
  4215. } else {
  4216. this.updateWork();
  4217. }
  4218. this.steps = 4
  4219. }
  4220. }
  4221. })
  4222. .catch(() => {
  4223. this.goTo(
  4224. "/course?userid=" +
  4225. this.userid +
  4226. "&oid=" +
  4227. this.oid +
  4228. "&org=" +
  4229. this.org +
  4230. "&role=" +
  4231. this.role
  4232. );
  4233. });
  4234. },
  4235. lastSteps() {
  4236. if (this.steps == 4) {
  4237. this.goTo(
  4238. "/course?userid=" +
  4239. this.userid +
  4240. "&oid=" +
  4241. this.oid +
  4242. "&org=" +
  4243. this.org +
  4244. "&role=" +
  4245. this.role
  4246. );
  4247. } else {
  4248. if (this.cidType == 0) {
  4249. this.steps--;
  4250. if (this.steps == 1) {
  4251. setTimeout(() => {
  4252. this.checkEva(this.checkId);
  4253. setTimeout(() => {
  4254. this.checkEva(this.checkId);
  4255. }, 100);
  4256. }, 100);
  4257. }
  4258. } else {
  4259. if (this.steps == 3) {
  4260. this.steps = 1;
  4261. setTimeout(() => {
  4262. this.checkEva(this.checkId);
  4263. setTimeout(() => {
  4264. this.checkEva(this.checkId);
  4265. }, 100);
  4266. }, 100);
  4267. }
  4268. }
  4269. }
  4270. },
  4271. navSteps(s) {
  4272. if (this.courseName == "") {
  4273. this.$message.error("请补充填写课程名称");
  4274. return;
  4275. }
  4276. if (this.cidType == 0) {
  4277. if (this.steps == 1) {
  4278. if (this.cid == "" || this.cid == undefined) {
  4279. this.addWork();
  4280. } else {
  4281. if (this.userid != this.courseUserid && this.role != "1") {
  4282. // this.updateWork2();
  4283. } else {
  4284. this.updateWork();
  4285. }
  4286. }
  4287. }
  4288. if (s == 1) {
  4289. this.steps = 1;
  4290. setTimeout(() => {
  4291. this.checkEva(this.checkId);
  4292. setTimeout(() => {
  4293. this.checkEva(this.checkId);
  4294. }, 100);
  4295. }, 100);
  4296. }
  4297. if (s == 2) {
  4298. this.steps = 2;
  4299. }
  4300. if (s == 3) {
  4301. this.cTemplate = this.templateC.content;
  4302. this.dialogVisible2 = false;
  4303. this.steps = 3;
  4304. this.isClickColor = 1
  4305. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4306. this.$forceUpdate();
  4307. setTimeout(() => {
  4308. this.checkEva(this.checkId);
  4309. setTimeout(() => {
  4310. this.checkEva(this.checkId);
  4311. }, 100);
  4312. }, 1000);
  4313. }
  4314. } else {
  4315. if (this.steps == 1) {
  4316. if (this.cid == "" || this.cid == undefined) {
  4317. this.addWork();
  4318. } else {
  4319. if (this.userid != this.courseUserid && this.role != "1") {
  4320. // this.updateWork2();
  4321. } else {
  4322. this.updateWork();
  4323. }
  4324. }
  4325. }
  4326. if (s == 1) {
  4327. this.steps = 1;
  4328. setTimeout(() => {
  4329. this.checkEva(this.checkId);
  4330. setTimeout(() => {
  4331. this.checkEva(this.checkId);
  4332. }, 100);
  4333. }, 100);
  4334. }
  4335. if (s == 3) {
  4336. this.cTemplate = this.templateC.content;
  4337. this.dialogVisible2 = false;
  4338. this.steps = 3;
  4339. this.isClickColor = 1
  4340. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4341. this.$forceUpdate();
  4342. setTimeout(() => {
  4343. this.checkEva(this.checkId);
  4344. setTimeout(() => {
  4345. this.checkEva(this.checkId);
  4346. }, 100);
  4347. }, 1000);
  4348. }
  4349. }
  4350. this.$refs.stepBox.scrollTop = 0;
  4351. },
  4352. nextSteps() {
  4353. if (this.cidType == 1) {
  4354. if (this.steps == 1) {
  4355. if (this.courseName != "") {
  4356. this.steps = 3;
  4357. this.isClickColor = 1
  4358. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4359. this.$forceUpdate();
  4360. setTimeout(() => {
  4361. this.checkEva(this.checkId);
  4362. setTimeout(() => {
  4363. this.checkEva(this.checkId);
  4364. }, 100);
  4365. }, 1000);
  4366. if (this.cid == "" || this.cid == undefined) {
  4367. this.addWork();
  4368. } else {
  4369. if (this.userid != this.courseUserid && this.role != "1") {
  4370. // this.updateWork2();
  4371. } else {
  4372. this.updateWork();
  4373. }
  4374. }
  4375. } else {
  4376. this.$message.error("请补充填写课程名称");
  4377. return;
  4378. }
  4379. } else if (this.steps == 3) {
  4380. if (this.cid == "" || this.cid == undefined) {
  4381. if (this.courseName == "") {
  4382. this.$message.error("请补充填写课程名称");
  4383. return;
  4384. } else {
  4385. this.addWork();
  4386. this.steps++;
  4387. }
  4388. } else {
  4389. if (this.courseName == "") {
  4390. this.$message.error("请补充填写课程名称");
  4391. return;
  4392. } else {
  4393. if (this.userid != this.courseUserid && this.role != "1") {
  4394. this.updateWork2();
  4395. } else {
  4396. this.updateWork();
  4397. }
  4398. this.steps++;
  4399. }
  4400. }
  4401. }
  4402. } else {
  4403. if (this.steps == 1) {
  4404. if (this.courseName != "") {
  4405. if (this.cid == "" || this.cid == undefined) {
  4406. this.addWork();
  4407. } else {
  4408. if (this.userid != this.courseUserid && this.role != "1") {
  4409. // this.updateWork2();
  4410. } else {
  4411. this.updateWork();
  4412. }
  4413. }
  4414. this.steps++;
  4415. } else {
  4416. this.$message.error("请补充填写课程名称");
  4417. return;
  4418. }
  4419. } else if (this.steps == 2) {
  4420. if (this.templateC.id != "" || this.templateC.id != undefined) {
  4421. this.cTemplate = this.templateC.content;
  4422. }
  4423. this.dialogVisible2 = false;
  4424. this.steps++;
  4425. setTimeout(() => {
  4426. this.checkEva(this.checkId);
  4427. setTimeout(() => {
  4428. this.checkEva(this.checkId);
  4429. }, 100);
  4430. }, 1000);
  4431. } else if (this.steps == 3) {
  4432. if (this.cid == "" || this.cid == undefined) {
  4433. if (this.courseName == "") {
  4434. this.$message.error("请补充填写课程名称");
  4435. return;
  4436. } else {
  4437. this.addWork();
  4438. this.steps++;
  4439. }
  4440. } else {
  4441. if (this.courseName == "") {
  4442. this.$message.error("请补充填写课程名称");
  4443. return;
  4444. } else {
  4445. if (this.userid != this.courseUserid && this.role != "1") {
  4446. this.updateWork2();
  4447. } else {
  4448. this.updateWork();
  4449. }
  4450. this.steps++;
  4451. }
  4452. }
  4453. }
  4454. }
  4455. this.$refs.stepBox.scrollTop = 0;
  4456. },
  4457. unitSet(i) {
  4458. this.unitIndex = i;
  4459. this.isClickColor = 1
  4460. // this.$refs.rightboxR.scrollTop = 0;
  4461. this.$refs.unitBox.scrollTop = 0
  4462. },
  4463. time() {
  4464. if (!this.now) {
  4465. this.now = new Date().getTime();
  4466. return true;
  4467. } else {
  4468. let time = new Date().getTime();
  4469. if (time - this.now > 3000) {
  4470. this.now = time;
  4471. return true;
  4472. } else {
  4473. return false;
  4474. }
  4475. }
  4476. },
  4477. deleteUnit(i) {
  4478. var _this = this;
  4479. if (_this.time()) {
  4480. _this
  4481. .$confirm("确定删除此单元吗?", "提示", {
  4482. confirmButtonText: "确定",
  4483. cancelButtonText: "取消",
  4484. type: "warning",
  4485. })
  4486. .then(() => {
  4487. _this.isDelete = 2;
  4488. // _this.unitIndex = _this.unitIndex - 1;
  4489. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  4490. // _this.$message.success("删除成功");
  4491. })
  4492. .catch(() => {
  4493. return;
  4494. });
  4495. }
  4496. },
  4497. deleteWork(chapid) {
  4498. let params = [
  4499. {
  4500. cid: this.cid,
  4501. chapters: JSON.stringify(this.unitJson),
  4502. uid: this.userid,
  4503. chapid: chapid,
  4504. },
  4505. ];
  4506. this.ajax
  4507. .post(this.$store.state.api + "deleteWork", params)
  4508. .then((res) => {
  4509. this.$message({
  4510. message: "删除成功",
  4511. type: "success",
  4512. });
  4513. this.unitJson.splice(this.unitIndex, 1);
  4514. this.unitIndex = this.unitIndex - 1;
  4515. })
  4516. .catch((err) => {
  4517. this.$message.error("网络不佳");
  4518. console.error(err);
  4519. });
  4520. },
  4521. deleteTool(itemTaskIndex, i) {
  4522. var _this = this;
  4523. if (_this.time()) {
  4524. _this
  4525. .$confirm("确定删除此工具吗?", "提示", {
  4526. confirmButtonText: "确定",
  4527. cancelButtonText: "取消",
  4528. type: "warning",
  4529. })
  4530. .then(() => {
  4531. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4532. itemTaskIndex
  4533. ].toolChoose.splice(i, 1);
  4534. _this.$message.success("删除成功");
  4535. })
  4536. .catch(() => {
  4537. return;
  4538. });
  4539. }
  4540. },
  4541. deleteSentence(i) {
  4542. var _this = this;
  4543. _this
  4544. .$confirm("确定删除此题目吗?", "提示", {
  4545. confirmButtonText: "确定",
  4546. cancelButtonText: "取消",
  4547. type: "warning",
  4548. })
  4549. .then(() => {
  4550. _this.sentenceList.splice(i, 1);
  4551. _this.$message.success("删除成功");
  4552. })
  4553. .catch(() => {
  4554. return;
  4555. });
  4556. },
  4557. deleteS(s, i, j) {
  4558. this.sentenceList[i].addSentence.splice(j, 1);
  4559. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  4560. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  4561. this.sentenceList[i].rightAnswer.splice(a, 1);
  4562. }
  4563. },
  4564. openT() {
  4565. window.parent.postMessage({ tools: "25" }, "*");
  4566. },
  4567. deleteTask(i) {
  4568. var _this = this;
  4569. if (_this.time()) {
  4570. _this
  4571. .$confirm(
  4572. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.length -
  4573. 1 ==
  4574. i
  4575. ? "确定删除此任务吗?"
  4576. : "切换任务顺序将删除所有工具的提交成果,是否继续此操作?",
  4577. "提示",
  4578. {
  4579. confirmButtonText: "确定",
  4580. cancelButtonText: "取消",
  4581. type: "warning",
  4582. }
  4583. )
  4584. .then(() => {
  4585. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  4586. i,
  4587. 1
  4588. );
  4589. _this.$message.success("删除成功");
  4590. })
  4591. .catch(() => {
  4592. return;
  4593. });
  4594. }
  4595. },
  4596. handlePictureCardPreview(file) {
  4597. this.dialogImageUrl = file.url;
  4598. },
  4599. clean(i, c) {
  4600. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  4601. },
  4602. handle_remove1(file, fileList, type) {
  4603. var _tmp = this.cover;
  4604. // for (var i = 0, len = _tmp.length; i < len; i++) {
  4605. // if (_tmp[i].uid == file.uid) {
  4606. // _tmp.splice(i, 1);
  4607. // break;
  4608. // }
  4609. // this.cover = _tmp;
  4610. // }
  4611. this.cover = [];
  4612. this.noneBtnImg = this.cover.length >= 1;
  4613. this.isSysPic = false;
  4614. this.isSysPic2 = false;
  4615. this.$forceUpdate();
  4616. },
  4617. addImg(e) {
  4618. var el = e.currentTarget;
  4619. el.getElementsByTagName("input")[0].click();
  4620. e.target.value = "";
  4621. },
  4622. addChaptersTools(i) {
  4623. this.chapTools = [
  4624. {
  4625. tools: [],
  4626. toolDetail: "",
  4627. },
  4628. ];
  4629. this.chapCount = i;
  4630. this.dialogVisible4 = true;
  4631. },
  4632. isNoFinsh() {
  4633. this.$message.warning("功能正在开发中");
  4634. },
  4635. addAttText(i) {
  4636. this.AttText = {
  4637. title: "",
  4638. text: "",
  4639. };
  4640. this.taskCount = i;
  4641. this.AttTextType = 0;
  4642. this.$forceUpdate();
  4643. this.dialogVisible6 = true;
  4644. setTimeout(() => {
  4645. this.$refs['fuInput'].focus();
  4646. }, 100);
  4647. },
  4648. openLine(i) {
  4649. this.line = "";
  4650. this.lineCount = i;
  4651. this.lineType = 0;
  4652. this.$forceUpdate();
  4653. this.dialogVisible7 = true;
  4654. },
  4655. pasteLine(i) {
  4656. navigator.clipboard
  4657. .readText()
  4658. .then((v) => {
  4659. console.log("获取剪贴板成功:", v);
  4660. const html = v;
  4661. const regex = /src="(.*?)"/g;
  4662. const match = regex.exec(html);
  4663. if (match && match[1]) {
  4664. console.log(match[1]);
  4665. this.$message.success("粘贴成功");
  4666. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4667. i
  4668. ].chapterData.push({
  4669. name: "链接",
  4670. title: "嵌入代码",
  4671. url: match[1],
  4672. type: 8,
  4673. });
  4674. } else {
  4675. // console.log("未找到包含 src 属性的 iframe");
  4676. this.$message.error("系统没有找到粘贴对象,请首先复制可用于粘贴的链接。");
  4677. }
  4678. })
  4679. .catch((v) => {
  4680. console.log("获取剪贴板失败: ", v);
  4681. });
  4682. },
  4683. openSource(i) {
  4684. this.lineCount = i;
  4685. this.sourceData = {};
  4686. this.dialogVisibleSource = true;
  4687. this.updateSourcePan = false;
  4688. },
  4689. addSource() {
  4690. if (!Object.keys(this.sourceData).length) {
  4691. this.$message.error("请选择要上传的资源");
  4692. return;
  4693. }
  4694. let keys = Object.keys(this.sourceData);
  4695. for (var i = 0; i < keys.length; i++) {
  4696. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4697. this.lineCount
  4698. ].chapterData.push({
  4699. name: "链接",
  4700. title: this.sourceData[keys[i]].name,
  4701. url: this.sourceData[keys[i]].url,
  4702. type: 14,
  4703. id: keys[i]
  4704. });
  4705. }
  4706. this.$forceUpdate();
  4707. this.dialogVisibleSource = false;
  4708. },
  4709. updateSource() {
  4710. if (!Object.keys(this.sourceData).length) {
  4711. this.$message.error("请选择要上传的资源");
  4712. return;
  4713. }
  4714. let keys = Object.keys(this.sourceData);
  4715. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4716. this.taskCount
  4717. ].chapterData[this.lineCount].url = this.sourceData[keys[0]].url;
  4718. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4719. this.taskCount
  4720. ].chapterData[this.lineCount].title = this.sourceData[keys[0]].name;
  4721. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4722. this.taskCount
  4723. ].chapterData[this.lineCount].id = keys[0];
  4724. this.updateSourcePan = false;
  4725. this.$forceUpdate();
  4726. this.dialogVisibleSource = false;
  4727. },
  4728. deleteM(i, j) {
  4729. this.testJson.testJson[i].timuList.splice(j, 1);
  4730. },
  4731. beforeUploadTiMu(event, i) {
  4732. const loading = this.openLoading();
  4733. var file = event.target.files[0];
  4734. var credentials = {
  4735. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4736. secretAccessKey: "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",
  4737. }; //秘钥形式的登录上传
  4738. window.AWS.config.update(credentials);
  4739. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4740. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4741. var _this = this;
  4742. if (file) {
  4743. var params = {
  4744. Key:
  4745. file.name.split(".")[0] +
  4746. new Date().getTime() +
  4747. "." +
  4748. file.name.split(".")[file.name.split(".").length - 1],
  4749. ContentType: file.type,
  4750. Body: file,
  4751. "Access-Control-Allow-Credentials": "*",
  4752. ACL: "public-read",
  4753. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4754. var options = {
  4755. partSize: 2048 * 1024 * 1024,
  4756. queueSize: 2,
  4757. leavePartsOnError: true,
  4758. };
  4759. bucket
  4760. .upload(params, options)
  4761. .on("httpUploadProgress", function (evt) {
  4762. //这里可以写进度条
  4763. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4764. })
  4765. .send(function (err, data) {
  4766. loading.close();
  4767. if (err) {
  4768. _this.$message.error("上传失败");
  4769. } else {
  4770. if (_this.testJson.testJson[i].timuList) {
  4771. _this.testJson.testJson[i].timuList.push({
  4772. src: data.Location,
  4773. });
  4774. } else {
  4775. _this.testJson.testJson[i].timuList = [];
  4776. _this.testJson.testJson[i].timuList.push({
  4777. src: data.Location,
  4778. });
  4779. }
  4780. _this.imgChange3(i);
  4781. _this.$forceUpdate();
  4782. }
  4783. });
  4784. }
  4785. },
  4786. beforeUploadTi(event, i, j) {
  4787. const loading = this.openLoading();
  4788. var file = event.target.files[0];
  4789. var credentials = {
  4790. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4791. secretAccessKey: "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",
  4792. }; //秘钥形式的登录上传
  4793. window.AWS.config.update(credentials);
  4794. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4795. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4796. var _this = this;
  4797. if (file) {
  4798. var params = {
  4799. Key:
  4800. file.name.split(".")[0] +
  4801. new Date().getTime() +
  4802. "." +
  4803. file.name.split(".")[file.name.split(".").length - 1],
  4804. ContentType: file.type,
  4805. Body: file,
  4806. "Access-Control-Allow-Credentials": "*",
  4807. ACL: "public-read",
  4808. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4809. var options = {
  4810. partSize: 2048 * 1024 * 1024,
  4811. queueSize: 2,
  4812. leavePartsOnError: true,
  4813. };
  4814. bucket
  4815. .upload(params, options)
  4816. .on("httpUploadProgress", function (evt) {
  4817. //这里可以写进度条
  4818. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4819. })
  4820. .send(function (err, data) {
  4821. loading.close();
  4822. if (err) {
  4823. _this.$message.error("上传失败");
  4824. } else {
  4825. _this.testJson.testJson[i].checkList[j] = {};
  4826. _this.testJson.testJson[i].checkList[j].src = data.Location;
  4827. _this.testJson.testJson[i].checkList[j].imgType = 1;
  4828. _this.imgChange2(i, j);
  4829. _this.$forceUpdate();
  4830. }
  4831. });
  4832. }
  4833. },
  4834. beforeUpload1(event, type) {
  4835. // const loading = this.openLoading();
  4836. var file = event.target.files[0];
  4837. var credentials = {
  4838. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4839. secretAccessKey: "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",
  4840. }; //秘钥形式的登录上传
  4841. window.AWS.config.update(credentials);
  4842. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4843. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4844. var _this = this;
  4845. if (file) {
  4846. var params = {
  4847. Key:
  4848. file.name.split(".")[0] +
  4849. new Date().getTime() +
  4850. "." +
  4851. file.name.split(".")[file.name.split(".").length - 1],
  4852. ContentType: file.type,
  4853. Body: file,
  4854. "Access-Control-Allow-Credentials": "*",
  4855. ACL: "public-read",
  4856. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4857. var options = {
  4858. partSize: 2048 * 1024 * 1024,
  4859. queueSize: 2,
  4860. leavePartsOnError: true,
  4861. };
  4862. bucket
  4863. .upload(params, options)
  4864. .on("httpUploadProgress", function (evt) {
  4865. //这里可以写进度条
  4866. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4867. })
  4868. .send(function (err, data) {
  4869. // loading.close();
  4870. if (err) {
  4871. // var a = _this.$refs.upload1.uploadFiles;
  4872. // a.splice(a.length - 1, a.length);
  4873. _this.$message.error("上传失败");
  4874. } else {
  4875. _this.cover.push({
  4876. name: file.name,
  4877. url: data.Location,
  4878. uid: file.uid,
  4879. });
  4880. _this.imgChange1(null, null, 1, null);
  4881. _this.choosePicVisible = false;
  4882. console.log(data.Location);
  4883. }
  4884. });
  4885. }
  4886. },
  4887. beforeUploadSelect(event, type) {
  4888. // const loading = this.openLoading();
  4889. var file = event.target.files[0];
  4890. var credentials = {
  4891. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4892. secretAccessKey: "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",
  4893. }; //秘钥形式的登录上传
  4894. window.AWS.config.update(credentials);
  4895. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4896. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4897. var _this = this;
  4898. if (file) {
  4899. var params = {
  4900. Key:
  4901. file.name.split(".")[0] +
  4902. new Date().getTime() +
  4903. "." +
  4904. file.name.split(".")[file.name.split(".").length - 1],
  4905. ContentType: file.type,
  4906. Body: file,
  4907. "Access-Control-Allow-Credentials": "*",
  4908. ACL: "public-read",
  4909. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4910. var options = {
  4911. partSize: 2048 * 1024 * 1024,
  4912. queueSize: 2,
  4913. leavePartsOnError: true,
  4914. };
  4915. bucket
  4916. .upload(params, options)
  4917. .on("httpUploadProgress", function (evt) {
  4918. //这里可以写进度条
  4919. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4920. })
  4921. .send(function (err, data) {
  4922. // loading.close();
  4923. if (err) {
  4924. _this.$message.error("上传失败");
  4925. } else {
  4926. _this.selectJson.url = data.Location;
  4927. console.log(data.Location);
  4928. }
  4929. });
  4930. }
  4931. },
  4932. chooseSysPic(p) {
  4933. this.cover = []
  4934. setTimeout(() => {
  4935. this.cover[0] = {
  4936. name: "系统图片.png",
  4937. url: p,
  4938. };
  4939. this.imgChange1(null, null, 1, null);
  4940. this.$forceUpdate();
  4941. }, 0);
  4942. this.isSysPic = true;
  4943. this.isSysPic2 = false;
  4944. this.sysPicVisible = false;
  4945. this.$forceUpdate();
  4946. },
  4947. chooseSysPic2(p) {
  4948. this.cover = []
  4949. setTimeout(() => {
  4950. this.cover[0] = {
  4951. name: "网络图片.png",
  4952. url: p,
  4953. };
  4954. this.imgChange1(null, null, 1, null);
  4955. this.$forceUpdate();
  4956. }, 0);
  4957. this.isSysPic2 = true;
  4958. this.isSysPic = false;
  4959. this.sysPicVisible2 = false;
  4960. this.$forceUpdate();
  4961. },
  4962. beforeUpload(data) {
  4963. this.$refs.upload1.uploadFiles;
  4964. this.uploadLoading1 = true;
  4965. var file = data.file;
  4966. var credentials = {
  4967. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4968. secretAccessKey: "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",
  4969. }; //秘钥形式的登录上传
  4970. window.AWS.config.update(credentials);
  4971. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4972. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4973. var _this = this;
  4974. if (file) {
  4975. var params = {
  4976. Key:
  4977. file.name.split(".")[0] +
  4978. new Date().getTime() +
  4979. "." +
  4980. file.name.split(".")[file.name.split(".").length - 1],
  4981. ContentType: file.type,
  4982. Body: file,
  4983. "Access-Control-Allow-Credentials": "*",
  4984. ACL: "public-read",
  4985. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4986. var options = {
  4987. partSize: 2048 * 1024 * 1024,
  4988. queueSize: 2,
  4989. leavePartsOnError: true,
  4990. };
  4991. bucket
  4992. .upload(params, options)
  4993. .on("httpUploadProgress", function (evt) {
  4994. //这里可以写进度条
  4995. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4996. })
  4997. .send(function (err, data) {
  4998. _this.uploadLoading1 = false;
  4999. if (err) {
  5000. // var a = _this.$refs.upload1.uploadFiles;
  5001. // a.splice(a.length - 1, a.length);
  5002. _this.$message.error("上传失败");
  5003. } else {
  5004. //上传成功处理
  5005. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  5006. name: file.name,
  5007. url: data.Location,
  5008. uid: file.uid,
  5009. });
  5010. _this.imgChange();
  5011. console.log(data.Location);
  5012. }
  5013. });
  5014. }
  5015. },
  5016. onExceed() {
  5017. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  5018. },
  5019. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  5020. // const loading = this.openLoading();
  5021. var file = event.target.files[0];
  5022. var credentials = {
  5023. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5024. secretAccessKey: "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",
  5025. }; //秘钥形式的登录上传
  5026. window.AWS.config.update(credentials);
  5027. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5028. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5029. var _this = this;
  5030. if (type == 3) {
  5031. var b = [
  5032. "DOC",
  5033. "DOCX",
  5034. "DOCM",
  5035. "DOTM",
  5036. "DOTX",
  5037. "PPTX",
  5038. "PPSX",
  5039. "PPT",
  5040. "PPS",
  5041. "PPTM",
  5042. "POTM",
  5043. "PPAM",
  5044. "POTX",
  5045. "PPSM",
  5046. ];
  5047. if (
  5048. b.indexOf(
  5049. file.name
  5050. .split(".")
  5051. [file.name.split(".").length - 1].toLocaleUpperCase()
  5052. ) != -1
  5053. ) {
  5054. if (file.size / 1024 / 1024 > 80) {
  5055. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5056. this.inputShow = true;
  5057. // var a = _this.$refs.upload1.uploadFiles;
  5058. // a.splice(a.length - 1, a.length);
  5059. // loading.close();
  5060. return;
  5061. }
  5062. } else if (
  5063. file.name
  5064. .split(".")
  5065. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5066. ) {
  5067. if (file.size / 1024 / 1024 > 80) {
  5068. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5069. this.inputShow = true;
  5070. // var a = _this.$refs.upload1.uploadFiles;
  5071. // a.splice(a.length - 1, a.length);
  5072. // loading.close();
  5073. return;
  5074. }
  5075. }
  5076. }
  5077. this.inputShow = false;
  5078. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5079. itemTaskIndex
  5080. ].progress = 0;
  5081. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5082. itemTaskIndex
  5083. ].proVisible = true;
  5084. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5085. itemTaskIndex
  5086. ].isFinishSize = 0;
  5087. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5088. itemTaskIndex
  5089. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5090. _this.$forceUpdate();
  5091. if (file) {
  5092. var params = {
  5093. Key:
  5094. file.name.split(".")[0] +
  5095. new Date().getTime() +
  5096. "." +
  5097. file.name.split(".")[file.name.split(".").length - 1],
  5098. ContentType: file.type,
  5099. Body: file,
  5100. "Access-Control-Allow-Credentials": "*",
  5101. ACL: "public-read",
  5102. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5103. var options = {
  5104. partSize: 2048 * 1024 * 1024,
  5105. queueSize: 2,
  5106. leavePartsOnError: true,
  5107. };
  5108. bucket
  5109. .upload(params, options)
  5110. .on("httpUploadProgress", function (evt) {
  5111. //这里可以写进度条
  5112. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5113. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5114. itemTaskIndex
  5115. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5116. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5117. itemTaskIndex
  5118. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5119. _this.$forceUpdate();
  5120. })
  5121. .send(function (err, data) {
  5122. // loading.close();
  5123. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5124. itemTaskIndex
  5125. ].progress = 100;
  5126. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5127. itemTaskIndex
  5128. ].isFinishSize =
  5129. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5130. itemTaskIndex
  5131. ].isAllSize;
  5132. _this.$forceUpdate();
  5133. setTimeout(() => {
  5134. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5135. itemTaskIndex
  5136. ].proVisible = false;
  5137. _this.$forceUpdate();
  5138. }, 1000);
  5139. _this.inputShow = true;
  5140. if (err) {
  5141. // var a = _this.$refs.upload1.uploadFiles;
  5142. // a.splice(a.length - 1, a.length);
  5143. _this.$message.error("上传失败");
  5144. } else {
  5145. if (type == 13) {
  5146. let _type = 2;
  5147. var imgA = [
  5148. "png",
  5149. "jpg",
  5150. "jpeg",
  5151. "bmp",
  5152. "gif",
  5153. "webp",
  5154. "psd",
  5155. "svg",
  5156. "tiff",
  5157. ];
  5158. var fileA = [
  5159. "PDF",
  5160. "DOC",
  5161. "DOCX",
  5162. "DOCM",
  5163. "DOTM",
  5164. "DOTX",
  5165. "PPTX",
  5166. "PPSX",
  5167. "PPT",
  5168. "PPS",
  5169. "PPTM",
  5170. "POTM",
  5171. "PPAM",
  5172. "POTX",
  5173. "PPSM",
  5174. "XLSX",
  5175. "XLS",
  5176. ];
  5177. var videoA = [
  5178. "AVI",
  5179. "NAVI",
  5180. "MPEG",
  5181. "ASF",
  5182. "MOV",
  5183. "WMV",
  5184. "3GP",
  5185. "RM",
  5186. "RMVB",
  5187. "FLV",
  5188. "F4V",
  5189. "H.264",
  5190. "H.265",
  5191. "REAL VIDEO",
  5192. "MKV",
  5193. "WebM",
  5194. "HDDVD",
  5195. "MP4",
  5196. "MPG",
  5197. "M4V",
  5198. "MGV",
  5199. "OGV",
  5200. "QTM",
  5201. "STR",
  5202. "AMC",
  5203. "DVX",
  5204. "EVO",
  5205. "DAT",
  5206. "OGG",
  5207. "OGM",
  5208. ];
  5209. if (
  5210. fileA.indexOf(
  5211. data.Location.split(".")[
  5212. data.Location.split(".").length - 1
  5213. ].toLocaleUpperCase()
  5214. ) != -1
  5215. ) {
  5216. _type = 3;
  5217. } else if (
  5218. videoA.indexOf(
  5219. data.Location.split(".")[
  5220. data.Location.split(".").length - 1
  5221. ].toLocaleUpperCase()
  5222. ) != -1
  5223. ) {
  5224. _type = 2;
  5225. } else if (
  5226. imgA.indexOf(
  5227. data.Location.split(".")[
  5228. data.Location.split(".").length - 1
  5229. ].toLocaleLowerCase()
  5230. ) != -1
  5231. ) {
  5232. _type = 13;
  5233. } else {
  5234. _type = 12;
  5235. }
  5236. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5237. itemTaskIndex
  5238. ].chapterData.push({
  5239. name: file.name,
  5240. url: data.Location,
  5241. uid: file.uid,
  5242. type: _type,
  5243. });
  5244. _this.imgChange1(null, null, _type, itemTaskIndex);
  5245. } else if (type == 2 || type == 3 || type == 12) {
  5246. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5247. itemTaskIndex
  5248. ].chapterData.push({
  5249. name: file.name,
  5250. url: data.Location,
  5251. uid: file.uid,
  5252. type: type,
  5253. });
  5254. _this.imgChange1(null, null, type, itemTaskIndex);
  5255. } else if (type == 4) {
  5256. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5257. itemTaskIndex
  5258. ].fileList1.push({
  5259. name: file.name,
  5260. url: data.Location,
  5261. uid: file.uid,
  5262. });
  5263. _this.imgChange1(null, null, type, itemTaskIndex);
  5264. } else if (type == 5) {
  5265. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5266. itemTaskIndex
  5267. ].homeworkList.push({
  5268. name: file.name,
  5269. url: data.Location,
  5270. uid: file.uid,
  5271. });
  5272. _this.imgChange1(null, null, type, itemTaskIndex);
  5273. }
  5274. console.log(data.Location);
  5275. }
  5276. });
  5277. }
  5278. },
  5279. beforeUpload3(event, unitIndex, type, itemTaskIndex, string) {
  5280. // const loading = this.openLoading();
  5281. var file = event.target.files[0];
  5282. var credentials = {
  5283. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5284. secretAccessKey: "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",
  5285. }; //秘钥形式的登录上传
  5286. window.AWS.config.update(credentials);
  5287. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5288. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5289. var _this = this;
  5290. if (type == 3) {
  5291. var b = [
  5292. "DOC",
  5293. "DOCX",
  5294. "DOCM",
  5295. "DOTM",
  5296. "DOTX",
  5297. "PPTX",
  5298. "PPSX",
  5299. "PPT",
  5300. "PPS",
  5301. "PPTM",
  5302. "POTM",
  5303. "PPAM",
  5304. "POTX",
  5305. "PPSM",
  5306. ];
  5307. if (
  5308. b.indexOf(
  5309. file.name
  5310. .split(".")
  5311. [file.name.split(".").length - 1].toLocaleUpperCase()
  5312. ) != -1
  5313. ) {
  5314. if (file.size / 1024 / 1024 > 80) {
  5315. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5316. this.inputShow = true;
  5317. // var a = _this.$refs.upload1.uploadFiles;
  5318. // a.splice(a.length - 1, a.length);
  5319. // loading.close();
  5320. return;
  5321. }
  5322. } else if (
  5323. file.name
  5324. .split(".")
  5325. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5326. ) {
  5327. if (file.size / 1024 / 1024 > 80) {
  5328. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5329. this.inputShow = true;
  5330. // var a = _this.$refs.upload1.uploadFiles;
  5331. // a.splice(a.length - 1, a.length);
  5332. // loading.close();
  5333. return;
  5334. }
  5335. }
  5336. }
  5337. this.inputShow = false;
  5338. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5339. itemTaskIndex
  5340. ].progress = 0;
  5341. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5342. itemTaskIndex
  5343. ].proVisible = true;
  5344. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5345. itemTaskIndex
  5346. ].isFinishSize = 0;
  5347. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5348. itemTaskIndex
  5349. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5350. _this.$forceUpdate();
  5351. if (file) {
  5352. var params = {
  5353. Key:
  5354. file.name.split(".")[0] +
  5355. new Date().getTime() +
  5356. "." +
  5357. file.name.split(".")[file.name.split(".").length - 1],
  5358. ContentType: file.type,
  5359. Body: file,
  5360. "Access-Control-Allow-Credentials": "*",
  5361. ACL: "public-read",
  5362. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5363. var options = {
  5364. partSize: 2048 * 1024 * 1024,
  5365. queueSize: 2,
  5366. leavePartsOnError: true,
  5367. };
  5368. bucket
  5369. .upload(params, options)
  5370. .on("httpUploadProgress", function (evt) {
  5371. //这里可以写进度条
  5372. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5373. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5374. itemTaskIndex
  5375. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5376. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5377. itemTaskIndex
  5378. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5379. _this.$forceUpdate();
  5380. })
  5381. .send(function (err, data) {
  5382. // loading.close();
  5383. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5384. itemTaskIndex
  5385. ].progress = 100;
  5386. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5387. itemTaskIndex
  5388. ].isFinishSize =
  5389. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5390. itemTaskIndex
  5391. ].isAllSize;
  5392. _this.$forceUpdate();
  5393. setTimeout(() => {
  5394. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5395. itemTaskIndex
  5396. ].proVisible = false;
  5397. _this.$forceUpdate();
  5398. }, 1000);
  5399. _this.inputShow = true;
  5400. if (err) {
  5401. // var a = _this.$refs.upload1.uploadFiles;
  5402. // a.splice(a.length - 1, a.length);
  5403. _this.$message.error("上传失败");
  5404. } else {
  5405. if (type == 2 || type == 3) {
  5406. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5407. itemTaskIndex
  5408. ].chapterData.push({
  5409. name: file.name,
  5410. // name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5411. // itemTaskIndex
  5412. // ].chapterData.length+1),
  5413. url: data.Location,
  5414. uid: file.uid,
  5415. type: type,
  5416. text: string,
  5417. // text: string + '' + (_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5418. // itemTaskIndex
  5419. // ].chapterData.length + 1),
  5420. });
  5421. _this.imgChange1(null, null, type, itemTaskIndex);
  5422. } else if (type == 4) {
  5423. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5424. itemTaskIndex
  5425. ].fileList1.push({
  5426. name: file.name,
  5427. url: data.Location,
  5428. uid: file.uid,
  5429. });
  5430. _this.imgChange1(null, null, type, itemTaskIndex);
  5431. } else if (type == 5) {
  5432. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5433. itemTaskIndex
  5434. ].homeworkList.push({
  5435. name: file.name,
  5436. url: data.Location,
  5437. uid: file.uid,
  5438. });
  5439. _this.imgChange1(null, null, type, itemTaskIndex);
  5440. }
  5441. console.log(data.Location);
  5442. }
  5443. });
  5444. }
  5445. },
  5446. addunit() {
  5447. this.unitJson.push({
  5448. dyName: "", //单元标题
  5449. isUpdate: 1,
  5450. easy: this.unitJson[this.unitJson.length - 1].easy ? 1 : 0,
  5451. chapterInfo: [
  5452. {
  5453. isread: false,
  5454. chapterid: this.guid(),
  5455. title: "",
  5456. courseName: "",
  5457. taskJson: [
  5458. {
  5459. task: "",
  5460. taskDetail: "",
  5461. chapterData: [],
  5462. toolText: "",
  5463. toolChoose: [
  5464. {
  5465. tool: [],
  5466. toolDetail: "",
  5467. toolType: 0,
  5468. askCount: 1,
  5469. askTitle: "",
  5470. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5471. },
  5472. ],
  5473. isShowTools: false,
  5474. askCount: 1,
  5475. isFold: 0,
  5476. askTitle: "",
  5477. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5478. checkJson: [{ checkCount: [], checkPerent: [] }],
  5479. homeworkList: [],
  5480. },
  5481. ],
  5482. itemCount: 1,
  5483. fileList1: [],
  5484. video: [],
  5485. testData: [],
  5486. pData: [],
  5487. templateArray: [],
  5488. },
  5489. ],
  5490. });
  5491. this.addindex = this.unitJson.length - 1;
  5492. setTimeout(() => {
  5493. this.unitIndex = this.unitJson.length - 1;
  5494. setTimeout(() => {
  5495. console.log(this.$refs.dyInput)
  5496. this.$refs.dyInput[0].focus()
  5497. }, 100);
  5498. this.unitSet(this.unitIndex);
  5499. }, 0);
  5500. },
  5501. addToolFun(itemTaskIndex) {
  5502. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5503. itemTaskIndex
  5504. ].toolChoose.push({
  5505. tool: [],
  5506. toolDetail: "",
  5507. toolType: 0,
  5508. askCount: 1,
  5509. askTitle: "",
  5510. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5511. });
  5512. },
  5513. addTaskBorder() {
  5514. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  5515. task: "",
  5516. taskDetail: "",
  5517. chapterData: [],
  5518. toolText: "",
  5519. toolChoose: [
  5520. {
  5521. tool: [],
  5522. toolDetail: "",
  5523. toolType: 0,
  5524. askCount: 1,
  5525. askTitle: "",
  5526. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5527. },
  5528. ],
  5529. isShowTools: false,
  5530. askCount: 1,
  5531. isFold: 0,
  5532. askTitle: "",
  5533. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5534. checkJson: [{ checkCount: [], checkPerent: [] }],
  5535. homeworkList: [],
  5536. });
  5537. setTimeout(() => {
  5538. this.checkEva(this.checkId);
  5539. setTimeout(() => {
  5540. this.checkEva(this.checkId);
  5541. }, 100);
  5542. }, 100);
  5543. },
  5544. add(e, i) {
  5545. var el = e.currentTarget;
  5546. el.getElementsByTagName("input")[0].click();
  5547. },
  5548. fold(i, e) {
  5549. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold == 0) {
  5550. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  5551. } else {
  5552. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  5553. }
  5554. },
  5555. fold2(i) {
  5556. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2) {
  5557. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = false;
  5558. } else {
  5559. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = true;
  5560. }
  5561. this.$forceUpdate();
  5562. },
  5563. foldC(i) {
  5564. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter) {
  5565. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = false;
  5566. } else {
  5567. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = true;
  5568. }
  5569. this.$forceUpdate();
  5570. },
  5571. fold3(i, ti) {
  5572. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3) {
  5573. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = false;
  5574. } else {
  5575. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = true;
  5576. }
  5577. this.$forceUpdate();
  5578. },
  5579. deleteHomeworkBox(unitIndex, index, i) {
  5580. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  5581. this.taskCount
  5582. ].homeworkList.splice(i, 1);
  5583. },
  5584. getStudent() {
  5585. let params = {
  5586. oid: this.oid,
  5587. cu: "",
  5588. cn: this.searchPeople,
  5589. };
  5590. this.ajax
  5591. .get(this.$store.state.api + "selectStudentAdd", params)
  5592. .then((res) => {
  5593. this.studentJuri = res.data[0];
  5594. })
  5595. .catch((err) => {
  5596. this.isLoading = false;
  5597. console.error(err);
  5598. });
  5599. },
  5600. getTeacher() {
  5601. let params = {
  5602. oid:
  5603. this.org && this.org != "undefined" && this.org != "null"
  5604. ? this.org
  5605. : this.oid,
  5606. cu: "",
  5607. cn: this.searchTN,
  5608. };
  5609. this.ajax
  5610. .get(
  5611. this.$store.state.api +
  5612. (this.org && this.org != "undefined" && this.org != "null"
  5613. ? "selectTeacherAddOrg"
  5614. : "selectTeacherAdd"),
  5615. params
  5616. )
  5617. .then((res) => {
  5618. let teacherJuri = res.data[0];
  5619. for (var i = 0; i < teacherJuri.length; i++) {
  5620. if (teacherJuri[i].userid == this.userid) {
  5621. teacherJuri.splice(i, 1);
  5622. break;
  5623. }
  5624. }
  5625. this.teacherJuri = teacherJuri;
  5626. })
  5627. .catch((err) => {
  5628. console.error(err);
  5629. });
  5630. },
  5631. searchStudent() {
  5632. this.getStudent();
  5633. },
  5634. selectGrage() {
  5635. let params = {
  5636. oid: this.oid,
  5637. };
  5638. this.ajax
  5639. .get(this.$store.state.api + "selectGrageBySchool", params)
  5640. .then((res) => {
  5641. this.gradeList = res.data[0];
  5642. })
  5643. .catch((err) => {
  5644. this.isLoading = false;
  5645. console.error(err);
  5646. });
  5647. },
  5648. //获取班级列表
  5649. getClass() {
  5650. let params = {
  5651. oid: this.oid,
  5652. gid: this.gradeId,
  5653. cn: this.classSearch,
  5654. };
  5655. this.ajax
  5656. .get(this.$store.state.api + "selectClassBySchoolSearch2", params)
  5657. .then((res) => {
  5658. if (!this.grade.length) {
  5659. this.grade = res.data[0];
  5660. }
  5661. this.grade2 = res.data[0];
  5662. this.classJuri = res.data[0];
  5663. })
  5664. .catch((err) => {
  5665. this.isLoading = false;
  5666. console.error(err);
  5667. });
  5668. },
  5669. CourseType2Change(val) {
  5670. this.pTypeCheck = [];
  5671. for (var i = 0; i < this.CourseType2.length; i++) {
  5672. let typeA = this.CourseType2[i];
  5673. if (val.indexOf(typeA.name) != -1) {
  5674. this.pTypeCheck.push(...typeA.id);
  5675. }
  5676. }
  5677. },
  5678. getChapterData(e, i, j, ic, type) {
  5679. e.stopPropagation();
  5680. this.updataC = true;
  5681. this.icc = ic;
  5682. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  5683. console.log("还不能下载图片喔");
  5684. }
  5685. },
  5686. deleteChapterData(e, i, j, ic, taskI) {
  5687. e.stopPropagation();
  5688. let _this = this;
  5689. _this
  5690. .$confirm("确定删除此项?", "提示", {
  5691. confirmButtonText: "确定",
  5692. cancelButtonText: "取消",
  5693. type: "warning",
  5694. })
  5695. .then(() => {
  5696. _this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  5697. })
  5698. .catch(() => {
  5699. return;
  5700. });
  5701. },
  5702. updataVideoT(e, i, j, ic) {
  5703. // e.stopPropagation();
  5704. // this.unitJson[i].chapterInfo[0].taskJson[j].chapterData[
  5705. // ic
  5706. // ].name = JSON.parse(JSON.stringify(e.target.value));
  5707. this.line = this.unitJson[i].chapterInfo[0].taskJson[0].chapterData[
  5708. ic
  5709. ].name;
  5710. this.taskCount = j;
  5711. this.lineCount = ic;
  5712. this.dialogVisibleupdataVideoT = true;
  5713. this.$forceUpdate();
  5714. },
  5715. updataVideoC() {
  5716. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData[this.lineCount].name = JSON.parse(JSON.stringify(this.line));
  5717. this.dialogVisibleupdataVideoT = false;
  5718. this.$forceUpdate();
  5719. },
  5720. upCd(e, i, j, taskCount, ic) {
  5721. e.stopPropagation();
  5722. if (ic == 0) {
  5723. return;
  5724. }
  5725. var a =
  5726. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1]));
  5727. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1] =
  5728. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  5729. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  5730. this.$forceUpdate();
  5731. },
  5732. downCd(e, i, j, taskCount, ic) {
  5733. e.stopPropagation();
  5734. if (
  5735. ic ==
  5736. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData.length -
  5737. 1
  5738. ) {
  5739. return;
  5740. }
  5741. var a =
  5742. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1]));
  5743. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1] =
  5744. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  5745. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  5746. this.$forceUpdate();
  5747. },
  5748. addWork() {
  5749. let cPan = 1;
  5750. for (var i = 0; i < this.unitJson.length; i++) {
  5751. for (
  5752. var j = 0;
  5753. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  5754. j++
  5755. ) {
  5756. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  5757. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  5758. if (
  5759. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  5760. ) {
  5761. for (
  5762. var z = 0;
  5763. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  5764. z++
  5765. ) {
  5766. if (
  5767. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  5768. .length
  5769. ) {
  5770. this.$message.error("请把工具添加完整");
  5771. cPan = 2;
  5772. break;
  5773. }
  5774. }
  5775. }
  5776. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  5777. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  5778. i
  5779. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  5780. return ele.value != "";
  5781. });
  5782. }
  5783. }
  5784. }
  5785. this.inputShow = true;
  5786. if (cPan == 2) {
  5787. this.steps--;
  5788. return;
  5789. }
  5790. for (var i = 0; i < this.unitJson.length; i++) {
  5791. delete this.unitJson[i].isUpdate;
  5792. }
  5793. let params = [
  5794. {
  5795. uid: this.userid,
  5796. title: this.courseName.replace(/%/g, "%25"),
  5797. brief: this.courseText.replace(/%/g, "%25"),
  5798. cover:
  5799. this.cover.length > 0
  5800. ? JSON.stringify(this.cover)
  5801. : JSON.stringify([
  5802. {
  5803. name: "noBanner.jpg",
  5804. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  5805. uid: 1656409780264,
  5806. status: "success",
  5807. },
  5808. ]),
  5809. evaId: this.evalua,
  5810. astudent:
  5811. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  5812. see: this.isTeacherSee == true ? 1 : 0,
  5813. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  5814. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  5815. courseType: JSON.stringify(this.courseTypeId),
  5816. ateacher:
  5817. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  5818. inviteCode: JSON.stringify(this.inviteCode),
  5819. },
  5820. ];
  5821. this.ajax
  5822. .post(this.$store.state.api + "addWorkNew2", params)
  5823. .then((res) => {
  5824. console.log(this.steps);
  5825. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  5826. this.$message({
  5827. message: "新增成功",
  5828. type: "success",
  5829. });
  5830. }
  5831. this.number = res.data.ordernumber;
  5832. this.courseId = res.data.courseId;
  5833. this.cid = res.data.courseId;
  5834. this.courseUserid = this.userid;
  5835. this.islogin = true;
  5836. })
  5837. .catch((err) => {
  5838. this.$message.error("网络不佳");
  5839. console.error(err);
  5840. });
  5841. },
  5842. goCourse() {
  5843. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  5844. },
  5845. updateWork2() {
  5846. let _unitIndex = this.unitIndex;
  5847. let cPan = 1;
  5848. for (
  5849. var j = 0;
  5850. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  5851. j++
  5852. ) {
  5853. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].proVisible = false;
  5854. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  5855. j
  5856. ].proVisible2 = false;
  5857. if (
  5858. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  5859. .length > 1
  5860. ) {
  5861. for (
  5862. var z = 0;
  5863. z <
  5864. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  5865. .length;
  5866. z++
  5867. ) {
  5868. if (
  5869. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose[
  5870. z
  5871. ].tool.length
  5872. ) {
  5873. this.$message.error("请把工具添加完整");
  5874. cPan = 2;
  5875. break;
  5876. }
  5877. }
  5878. }
  5879. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  5880. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  5881. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  5882. (ele) => {
  5883. return ele.value != "";
  5884. }
  5885. );
  5886. }
  5887. }
  5888. this.inputShow = true;
  5889. if (cPan == 2) {
  5890. this.steps--;
  5891. return;
  5892. }
  5893. let params = [
  5894. {
  5895. cid: this.cid,
  5896. chapters: JSON.stringify(this.unitJson),
  5897. uid: this.userid,
  5898. unitIndex: _unitIndex,
  5899. },
  5900. ];
  5901. this.ajax
  5902. .post(this.$store.state.api + "updateWorkNew4", params)
  5903. .then((res) => {
  5904. this.$message({
  5905. message: "修改成功",
  5906. type: "success",
  5907. });
  5908. this.courseId = this.cid;
  5909. })
  5910. .catch((err) => {
  5911. this.$message.error("网络不佳");
  5912. console.error(err);
  5913. });
  5914. },
  5915. updateWork() {
  5916. let cPan = 1;
  5917. for (var i = 0; i < this.unitJson.length; i++) {
  5918. for (
  5919. var j = 0;
  5920. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  5921. j++
  5922. ) {
  5923. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  5924. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  5925. if (
  5926. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  5927. ) {
  5928. for (
  5929. var z = 0;
  5930. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  5931. z++
  5932. ) {
  5933. if (
  5934. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  5935. .length
  5936. ) {
  5937. this.$message.error("请把工具添加完整");
  5938. cPan = 2;
  5939. break;
  5940. }
  5941. }
  5942. }
  5943. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  5944. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  5945. i
  5946. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  5947. return ele.value != "";
  5948. });
  5949. }
  5950. }
  5951. }
  5952. this.inputShow = true;
  5953. if (cPan == 2) {
  5954. this.steps--;
  5955. return;
  5956. }
  5957. for (var i = 0; i < this.unitJson.length; i++) {
  5958. delete this.unitJson[i].isUpdate;
  5959. }
  5960. let params = [
  5961. {
  5962. cid: this.cid,
  5963. title: this.courseName.replace(/%/g, "%25"),
  5964. brief: this.courseText.replace(/%/g, "%25"),
  5965. cover:
  5966. this.cover.length > 0
  5967. ? JSON.stringify(this.cover)
  5968. : JSON.stringify([
  5969. {
  5970. name: "noBanner.jpg",
  5971. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  5972. uid: 1656409780264,
  5973. status: "success",
  5974. },
  5975. ]),
  5976. evaId: this.evalua,
  5977. astudent:
  5978. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  5979. see: this.isTeacherSee == true ? 1 : 0,
  5980. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  5981. template: this.myWord != "undefined" ? this.myWord : [],
  5982. uid: this.userid,
  5983. courseType: JSON.stringify(this.courseTypeId),
  5984. ateacher:
  5985. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  5986. inviteCode: JSON.stringify(this.inviteCode),
  5987. },
  5988. ];
  5989. this.ajax
  5990. .post(this.$store.state.api + "updateWorkNew2", params)
  5991. .then((res) => {
  5992. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  5993. if (this.cidType == 1) {
  5994. this.$message({
  5995. message: "修改成功",
  5996. type: "success",
  5997. });
  5998. } else {
  5999. this.$message({
  6000. message: "新增成功",
  6001. type: "success",
  6002. });
  6003. }
  6004. }
  6005. this.number = this.nbOrder;
  6006. this.courseId = this.cid;
  6007. })
  6008. .catch((err) => {
  6009. this.$message.error("网络不佳");
  6010. console.error(err);
  6011. });
  6012. },
  6013. guid() {
  6014. var _num,
  6015. i,
  6016. _guid = "";
  6017. for (i = 0; i < 32; i++) {
  6018. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  6019. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  6020. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  6021. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  6022. _guid += "-";
  6023. }
  6024. }
  6025. return _guid;
  6026. },
  6027. insertWord() {
  6028. this.dialogVisible1 = true;
  6029. this.updateBoolean2 = false;
  6030. this.tTitle = "";
  6031. this.tdetail = "";
  6032. },
  6033. addWord() {
  6034. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  6035. name: this.tTitle,
  6036. content: this.tdetail,
  6037. uid: this.guid(),
  6038. });
  6039. this.dialogVisible1 = false;
  6040. },
  6041. upWord() { },
  6042. selectWord(uid, i, c) {
  6043. this.dialogVisible1 = true;
  6044. this.updateBoolean2 = true;
  6045. if (
  6046. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  6047. ) {
  6048. this.tTitle =
  6049. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  6050. this.tdetail =
  6051. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  6052. }
  6053. },
  6054. isAddPP() {
  6055. if (this.checkboxList.length > 0) {
  6056. this.$message({
  6057. message: "添加成功",
  6058. type: "success",
  6059. });
  6060. this.dialogVisible3 = false;
  6061. } else {
  6062. this.$message({
  6063. message: "请添加课程成员",
  6064. type: "error",
  6065. });
  6066. }
  6067. },
  6068. isAddClass() {
  6069. this.dialogVisibleClass = false;
  6070. },
  6071. isAddPPTeacher() {
  6072. this.dialogVisibleMember = false;
  6073. this.setMan();
  6074. },
  6075. getTemplate() {
  6076. this.ajax
  6077. .get(this.$store.state.api + "getCourseTemplateT", "")
  6078. .then((res) => {
  6079. this.templateArray = res.data[0];
  6080. this.getTemplateOid();
  6081. this.$forceUpdate();
  6082. })
  6083. .catch((err) => { });
  6084. },
  6085. getTemplateOid() {
  6086. let params = {
  6087. oid: this.oid,
  6088. };
  6089. this.ajax
  6090. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6091. .then((res) => {
  6092. if (res.data[0].length) {
  6093. this.templateArray = [...res.data[0], ...this.templateArray];
  6094. }
  6095. this.getTemplateOrg();
  6096. this.$forceUpdate();
  6097. })
  6098. .catch((err) => { });
  6099. },
  6100. getTemplateOrg() {
  6101. let params = {
  6102. oid: this.org,
  6103. };
  6104. this.ajax
  6105. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6106. .then((res) => {
  6107. if (res.data[0].length) {
  6108. this.templateArray = [...res.data[0], ...this.templateArray];
  6109. }
  6110. this.$forceUpdate();
  6111. })
  6112. .catch((err) => { });
  6113. },
  6114. clearChoose() {
  6115. this.clearArray.splice(this.templateC.id, 1);
  6116. this.dialogVisible2 = false;
  6117. },
  6118. clearAttText() {
  6119. this.AttText = {
  6120. title: "",
  6121. text: "",
  6122. };
  6123. this.dialogVisible6 = false;
  6124. },
  6125. clearLine() {
  6126. this.line = "";
  6127. this.dialogVisible7 = false;
  6128. },
  6129. checkTemplate(res) {
  6130. let _this = this;
  6131. _this
  6132. .$confirm("确定选择此模板吗?修改课程时无法重置课程模板。", "提示", {
  6133. confirmButtonText: "确定",
  6134. cancelButtonText: "取消",
  6135. type: "warning",
  6136. })
  6137. .then(() => {
  6138. _this.unitJson = JSON.parse(res.chapters);
  6139. _this.steps++;
  6140. setTimeout(() => {
  6141. this.checkEva(this.checkId);
  6142. setTimeout(() => {
  6143. this.checkEva(this.checkId);
  6144. }, 100);
  6145. }, 1000);
  6146. })
  6147. .catch(() => {
  6148. return;
  6149. });
  6150. },
  6151. checkTemplate1(w) {
  6152. this.steps++;
  6153. },
  6154. checkTemplate2() {
  6155. let _this = this;
  6156. _this
  6157. .$confirm("确定选择空模板吗?修改课程时无法重置课程模板。", "提示", {
  6158. confirmButtonText: "确定",
  6159. cancelButtonText: "取消",
  6160. type: "warning",
  6161. })
  6162. .then(() => {
  6163. _this.unitIndex = 0;
  6164. _this.unitJson = [
  6165. {
  6166. dyName: "", //单元标题
  6167. chapterInfo: [
  6168. {
  6169. isread: false,
  6170. chapterid: this.guid(),
  6171. title: "",
  6172. courseName: "",
  6173. taskJson: [
  6174. {
  6175. task: "",
  6176. taskDetail: "",
  6177. chapterData: [],
  6178. toolText: "",
  6179. toolChoose: [
  6180. {
  6181. tool: [],
  6182. toolDetail: "",
  6183. toolType: 0,
  6184. askCount: 1,
  6185. askTitle: "",
  6186. askJson: [
  6187. { askstitle: "", askItem: 1, checkList: [] },
  6188. ],
  6189. },
  6190. ],
  6191. isShowTools: false,
  6192. askCount: 1,
  6193. isFold: 0,
  6194. askTitle: "",
  6195. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6196. checkJson: [{ checkCount: [], checkPerent: [] }],
  6197. homeworkList: [],
  6198. },
  6199. ],
  6200. itemCount: 1,
  6201. fileList1: [],
  6202. video: [],
  6203. testData: [],
  6204. pData: [],
  6205. templateArray: [],
  6206. },
  6207. ],
  6208. },
  6209. ];
  6210. this.steps++;
  6211. setTimeout(() => {
  6212. this.checkEva(this.checkId);
  6213. setTimeout(() => {
  6214. this.checkEva(this.checkId);
  6215. }, 100);
  6216. }, 1000);
  6217. this.updateWork();
  6218. })
  6219. .catch(() => {
  6220. return;
  6221. });
  6222. },
  6223. checkTemplate3() {
  6224. let _this = this;
  6225. _this
  6226. .$confirm("确定选择简易模板吗?修改课程时无法重置课程模板。", "提示", {
  6227. confirmButtonText: "确定",
  6228. cancelButtonText: "取消",
  6229. type: "warning",
  6230. })
  6231. .then(() => {
  6232. _this.unitIndex = 0;
  6233. _this.unitJson = [
  6234. {
  6235. dyName: "", //单元标题
  6236. easy: 1,
  6237. chapterInfo: [
  6238. {
  6239. isread: false,
  6240. chapterid: this.guid(),
  6241. title: "",
  6242. courseName: "",
  6243. taskJson: [
  6244. {
  6245. task: "",
  6246. taskDetail: "",
  6247. chapterData: [],
  6248. toolText: "",
  6249. toolChoose: [
  6250. {
  6251. tool: [],
  6252. toolDetail: "",
  6253. toolType: 0,
  6254. askCount: 1,
  6255. askTitle: "",
  6256. askJson: [
  6257. { askstitle: "", askItem: 1, checkList: [] },
  6258. ],
  6259. },
  6260. ],
  6261. isShowTools: false,
  6262. askCount: 1,
  6263. isFold: 0,
  6264. askTitle: "",
  6265. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6266. checkJson: [{ checkCount: [], checkPerent: [] }],
  6267. homeworkList: [],
  6268. },
  6269. ],
  6270. itemCount: 1,
  6271. fileList1: [],
  6272. video: [],
  6273. testData: [],
  6274. pData: [],
  6275. templateArray: [],
  6276. },
  6277. ],
  6278. },
  6279. ];
  6280. this.steps++;
  6281. this.updateWork();
  6282. })
  6283. .catch(() => {
  6284. return;
  6285. });
  6286. },
  6287. checkTemplate4() {
  6288. let _this = this;
  6289. _this
  6290. .$confirm("确定选择未来小学课程设计吗?", "提示", {
  6291. confirmButtonText: "确定",
  6292. cancelButtonText: "取消",
  6293. type: "warning",
  6294. })
  6295. .then(() => {
  6296. _this.unitIndex = 0;
  6297. _this.unitJson = JSON.parse(JSON.stringify(weilaiData));
  6298. this.steps++;
  6299. this.updateWork();
  6300. })
  6301. .catch(() => {
  6302. return;
  6303. });
  6304. },
  6305. wordNext() {
  6306. this.dialogVisible2 = false;
  6307. },
  6308. isAddOrUpdateAttText() {
  6309. if (this.AttTextType == 0) {
  6310. this.addAttTextMessage();
  6311. } else {
  6312. this.updateAttText();
  6313. }
  6314. },
  6315. isAddOrUpdateLine() {
  6316. if (!this.lineTitle) {
  6317. this.$message.error("请填写链接标题");
  6318. return;
  6319. }
  6320. if (this.lineType == 0) {
  6321. this.addLine();
  6322. } else {
  6323. this.updateLine();
  6324. }
  6325. },
  6326. addAttTextMessage() {
  6327. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6328. this.taskCount
  6329. ].chapterData.push({
  6330. name: this.AttText.title,
  6331. url: this.AttText.text,
  6332. type: 6,
  6333. });
  6334. this.imgChange1(null, null, 6, this.taskCount);
  6335. this.dialogVisible6 = false;
  6336. },
  6337. selectAttText(itemTaskIndex, i) {
  6338. this.AttText.title =
  6339. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6340. itemTaskIndex
  6341. ].chapterData[i].name;
  6342. this.AttText.text =
  6343. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6344. itemTaskIndex
  6345. ].chapterData[i].url;
  6346. this.taskCount = itemTaskIndex;
  6347. this.AttTextIndex = i;
  6348. this.AttTextType = 1;
  6349. this.dialogVisible6 = true;
  6350. },
  6351. updateAttText() {
  6352. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6353. this.taskCount
  6354. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  6355. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6356. this.taskCount
  6357. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  6358. this.dialogVisible6 = false;
  6359. },
  6360. addLine() {
  6361. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6362. this.lineCount
  6363. ].chapterData.push({
  6364. name: "链接",
  6365. title: this.lineTitle,
  6366. url: this.line,
  6367. type: 8,
  6368. });
  6369. this.imgChange1(null, null, 8, this.lineCount);
  6370. this.dialogVisible7 = false;
  6371. },
  6372. selectLine(itemTaskIndex, i) {
  6373. this.line =
  6374. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6375. itemTaskIndex
  6376. ].chapterData[i].url;
  6377. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6378. itemTaskIndex
  6379. ].chapterData[i].title
  6380. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6381. .chapterData[i].title
  6382. : "";
  6383. this.taskCount = itemTaskIndex;
  6384. this.lineCount = i;
  6385. this.lineType = 1;
  6386. this.dialogVisible7 = true;
  6387. },
  6388. openUpdateSource(itemTaskIndex, i) {
  6389. this.sourceData = {}
  6390. let source = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex].chapterData[i]
  6391. this.sourceData[source.id] = {}
  6392. this.sourceData[source.id].name = source.title
  6393. this.sourceData[source.id].url = source.url
  6394. this.dialogVisibleSource = true;
  6395. this.updateSourcePan = true;
  6396. this.taskCount = itemTaskIndex;
  6397. this.lineCount = i;
  6398. },
  6399. updateLine() {
  6400. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6401. this.taskCount
  6402. ].chapterData[this.lineCount].url = this.line;
  6403. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6404. this.taskCount
  6405. ].chapterData[this.lineCount].title = this.lineTitle;
  6406. this.dialogVisible7 = false;
  6407. },
  6408. addPP() {
  6409. this.dialogVisible3 = true;
  6410. },
  6411. goTo(path) {
  6412. this.$router.push(path);
  6413. },
  6414. openTools(itemTaskIndex, i, toolIndex) {
  6415. this.toolIndex = toolIndex;
  6416. this.taskCount = itemTaskIndex;
  6417. if (i == 4) {
  6418. if (toolIndex == null) {
  6419. var a =
  6420. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6421. .chapterData;
  6422. for (var i = 0; i < a.length; i++) {
  6423. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  6424. this.askJson =
  6425. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6426. itemTaskIndex
  6427. ].chapterData[i].askJson;
  6428. }
  6429. }
  6430. } else {
  6431. this.askJson = JSON.parse(
  6432. JSON.stringify(
  6433. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6434. itemTaskIndex
  6435. ].toolChoose[toolIndex]
  6436. )
  6437. );
  6438. }
  6439. this.askJson2 = JSON.parse(JSON.stringify(this.askJson))
  6440. this.dialogVisible5 = true;
  6441. } else if (i == 45) {
  6442. if (
  6443. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6444. .toolChoose[toolIndex].testJson
  6445. ) {
  6446. this.testJson = JSON.parse(
  6447. JSON.stringify(
  6448. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6449. itemTaskIndex
  6450. ].toolChoose[toolIndex].testJson
  6451. )
  6452. );
  6453. } else {
  6454. var testJson = {
  6455. testCount: 1,
  6456. testTitle: "",
  6457. testJson: [
  6458. {
  6459. teststitle: "",
  6460. testItem: 1,
  6461. checkList: [],
  6462. timuList: [],
  6463. answer: [],
  6464. type: "1",
  6465. },
  6466. ],
  6467. };
  6468. this.testJson = testJson;
  6469. }
  6470. this.testJson2 = JSON.parse(JSON.stringify(this.testJson));
  6471. this.dialogVisibleChoice = true;
  6472. } else if (i == 47) {
  6473. if (
  6474. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6475. .toolChoose[toolIndex].sentenceList
  6476. ) {
  6477. this.sentenceList = JSON.parse(
  6478. JSON.stringify(
  6479. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6480. itemTaskIndex
  6481. ].toolChoose[toolIndex].sentenceList
  6482. )
  6483. );
  6484. } else {
  6485. var sentenceList = [
  6486. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  6487. ];
  6488. this.sentenceList = sentenceList;
  6489. }
  6490. this.sentenceList2 = JSON.parse(JSON.stringify(this.sentenceList));
  6491. this.dialogVisibleSentence = true;
  6492. } else if (i == 48) {
  6493. if (
  6494. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6495. .toolChoose[toolIndex].tableJson
  6496. ) {
  6497. this.tableJson = JSON.parse(
  6498. JSON.stringify(
  6499. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6500. itemTaskIndex
  6501. ].toolChoose[toolIndex].tableJson
  6502. )
  6503. );
  6504. } else {
  6505. var tableJson = { text: "" };
  6506. this.tableJson = tableJson;
  6507. }
  6508. this.dialogVisibleTable = true;
  6509. } else if (i == 52) {
  6510. if (
  6511. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6512. .toolChoose[toolIndex].wordJson
  6513. ) {
  6514. this.wordJson = JSON.parse(
  6515. JSON.stringify(
  6516. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6517. itemTaskIndex
  6518. ].toolChoose[toolIndex].wordJson
  6519. )
  6520. );
  6521. } else {
  6522. var wordJson = { text: "" };
  6523. this.wordJson = wordJson;
  6524. }
  6525. this.dialogVisibleWord = true;
  6526. // else if (i == 50) {
  6527. // if (
  6528. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6529. // .toolChoose[toolIndex].uploadJson
  6530. // ) {
  6531. // this.uploadJson = JSON.parse(
  6532. // JSON.stringify(
  6533. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6534. // itemTaskIndex
  6535. // ].toolChoose[toolIndex].uploadJson
  6536. // )
  6537. // );
  6538. // } else {
  6539. // var uploadJson = [];
  6540. // this.uploadJson = uploadJson;
  6541. // }
  6542. // this.dialogVisibleMoreUpload = true;
  6543. // }
  6544. } else if (i == 10) {
  6545. if (
  6546. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6547. .toolChoose[toolIndex].preTime
  6548. ) {
  6549. this.preTime = JSON.parse(
  6550. JSON.stringify(
  6551. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6552. itemTaskIndex
  6553. ].toolChoose[toolIndex].preTime
  6554. )
  6555. );
  6556. } else {
  6557. var preTime = 0;
  6558. this.preTime = preTime;
  6559. }
  6560. this.dialogVisiblePreTime = true;
  6561. } else if (i == 49) {
  6562. if (
  6563. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6564. .toolChoose[toolIndex].groupJson
  6565. ) {
  6566. this.groupJson = JSON.parse(
  6567. JSON.stringify(
  6568. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6569. itemTaskIndex
  6570. ].toolChoose[toolIndex].groupJson
  6571. )
  6572. );
  6573. } else {
  6574. var groupJson = {
  6575. group: [{ name: "第1组" }],
  6576. number: undefined,
  6577. islock: 1,
  6578. };
  6579. this.groupJson = groupJson;
  6580. }
  6581. this.dialogVisibleGroup = true;
  6582. } else if (i == 62) {
  6583. if (
  6584. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6585. .toolChoose[toolIndex].videoJson
  6586. ) {
  6587. this.videoJson = JSON.parse(
  6588. JSON.stringify(
  6589. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6590. itemTaskIndex
  6591. ].toolChoose[toolIndex].videoJson
  6592. )
  6593. );
  6594. } else {
  6595. var videoJson = {
  6596. video: "",
  6597. setting: [],
  6598. };
  6599. this.videoJson = videoJson;
  6600. }
  6601. this.dialogVisibleVideo = true;
  6602. } else if (i == 15) {
  6603. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6604. itemTaskIndex
  6605. ].toolChoose[toolIndex].answerQ
  6606. ? JSON.parse(
  6607. JSON.stringify(
  6608. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6609. itemTaskIndex
  6610. ].toolChoose[toolIndex].answerQ
  6611. )
  6612. )
  6613. : "";
  6614. this.answerQ2 = JSON.parse(JSON.stringify(this.answerQ))
  6615. this.dialogVisible8 = true;
  6616. } else if (i == 40) {
  6617. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6618. itemTaskIndex
  6619. ].toolChoose[toolIndex].rateJson
  6620. ? JSON.parse(
  6621. JSON.stringify(
  6622. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6623. itemTaskIndex
  6624. ].toolChoose[toolIndex].rateJson
  6625. )
  6626. )
  6627. : [{ detail: "", score: 5, value: "" }]; //{detail:"",score:5,value:""}
  6628. this.selectSteps = 1;
  6629. this.dialogVisibleRate = true;
  6630. } else if (i == 42) {
  6631. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6632. itemTaskIndex
  6633. ].toolChoose[toolIndex].answerQ
  6634. ? JSON.parse(
  6635. JSON.stringify(
  6636. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6637. itemTaskIndex
  6638. ].toolChoose[toolIndex].answerQ
  6639. )
  6640. )
  6641. : "";
  6642. this.dialogVisibleMp3 = true;
  6643. } else if (i == 41) {
  6644. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6645. itemTaskIndex
  6646. ].toolChoose[toolIndex].selectJson
  6647. ? JSON.parse(
  6648. JSON.stringify(
  6649. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6650. itemTaskIndex
  6651. ].toolChoose[toolIndex].selectJson
  6652. )
  6653. )
  6654. : { url: "", select: [], answer: [] };
  6655. this.selectSteps = 1;
  6656. this.selectJson2 = JSON.parse(JSON.stringify(this.selectJson))
  6657. this.dialogVisibleSelect = true;
  6658. } else if (i == 3) {
  6659. window.parent.postMessage(
  6660. {
  6661. tools: "3y",
  6662. cid: this.cid,
  6663. stage: this.unitIndex,
  6664. task: itemTaskIndex,
  6665. tool: toolIndex,
  6666. },
  6667. "*"
  6668. );
  6669. } else if (i == 1) {
  6670. window.parent.postMessage(
  6671. {
  6672. tools: "1y",
  6673. cid: this.cid,
  6674. stage: this.unitIndex,
  6675. task: itemTaskIndex,
  6676. tool: toolIndex,
  6677. },
  6678. "*"
  6679. );
  6680. } else if (i == 57) {
  6681. window.parent.postMessage(
  6682. {
  6683. tools: "57y",
  6684. cid: this.cid,
  6685. stage: this.unitIndex,
  6686. task: itemTaskIndex,
  6687. tool: toolIndex,
  6688. },
  6689. "*"
  6690. );
  6691. }
  6692. },
  6693. chapAddTools(i) {
  6694. if (this.chapTools[0].tools.length == 0) {
  6695. this.chapTools[0].tools.push(i);
  6696. } else {
  6697. if (this.chapTools[0].tools.indexOf(i) != -1) {
  6698. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  6699. } else {
  6700. this.chapTools[0].tools.push(i);
  6701. }
  6702. }
  6703. this.$forceUpdate();
  6704. },
  6705. addChaptersDataTools() {
  6706. if (this.chapTools[0].tools.indexOf(4) != -1) {
  6707. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6708. this.chapCount
  6709. ].chapterData.push({
  6710. name: this.chapTools[0].toolDetail,
  6711. url: this.chapTools[0].tools,
  6712. type: 7,
  6713. askJson: this.askJson,
  6714. });
  6715. } else {
  6716. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6717. this.chapCount
  6718. ].chapterData.push({
  6719. name: this.chapTools[0].toolDetail,
  6720. url: this.chapTools[0].tools,
  6721. type: 7,
  6722. });
  6723. }
  6724. this.imgChange1(null, null, 7, this.chapCount);
  6725. this.dialogVisible4 = false;
  6726. },
  6727. addTools(i, itemTaskIndex, toolIndex) {
  6728. // if (
  6729. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6730. // .toolChoose[toolIndex].tool.length == 0
  6731. // ) {
  6732. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6733. // itemTaskIndex
  6734. // ].toolChoose[toolIndex].tool.push(i);
  6735. // } else {
  6736. // if (
  6737. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6738. // itemTaskIndex
  6739. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  6740. // ) {
  6741. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6742. // itemTaskIndex
  6743. // ].toolChoose[toolIndex].tool.splice(
  6744. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6745. // itemTaskIndex
  6746. // ].toolChoose[toolIndex].tool.indexOf(i),
  6747. // 1
  6748. // );
  6749. // } else {
  6750. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6751. // itemTaskIndex
  6752. // ].toolChoose[toolIndex].tool.push(i);
  6753. // }
  6754. // console.log(
  6755. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6756. // .toolChoose[toolIndex].tool
  6757. // );
  6758. // }
  6759. if (i == 4) {
  6760. if (
  6761. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6762. .toolChoose[toolIndex].askJson.askTitle == "" ||
  6763. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6764. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  6765. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6766. .toolChoose[toolIndex].askJson[0].checkList < 2
  6767. ) {
  6768. this.openTools(itemTaskIndex, 4, toolIndex);
  6769. // this.$message({
  6770. // message: "请填写完整问卷内容",
  6771. // type: "error",
  6772. // });
  6773. return;
  6774. }
  6775. }
  6776. if (i == 45) {
  6777. if (
  6778. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6779. .toolChoose[toolIndex].testJson ||
  6780. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6781. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  6782. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6783. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  6784. ) {
  6785. this.openTools(itemTaskIndex, 45, toolIndex);
  6786. // this.$message({
  6787. // message: "请填写完整问卷内容",
  6788. // type: "error",
  6789. // });
  6790. return;
  6791. }
  6792. }
  6793. if (i == 47) {
  6794. if (
  6795. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6796. .toolChoose[toolIndex].sentenceList ||
  6797. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6798. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  6799. ) {
  6800. this.openTools(itemTaskIndex, 47, toolIndex);
  6801. return;
  6802. }
  6803. }
  6804. // if (i == 48) {
  6805. // if (
  6806. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6807. // .toolChoose[toolIndex].tableJson
  6808. // ) {
  6809. // this.openTools(itemTaskIndex, 48, toolIndex);
  6810. // return;
  6811. // }
  6812. // }
  6813. // if (i == 50) {
  6814. // if (
  6815. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6816. // .toolChoose[toolIndex].uploadJson
  6817. // ) {
  6818. // this.openTools(itemTaskIndex, 50, toolIndex);
  6819. // return;
  6820. // }
  6821. // }
  6822. if (i == 49) {
  6823. if (
  6824. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6825. .toolChoose[toolIndex].groupJson
  6826. ) {
  6827. this.openTools(itemTaskIndex, 49, toolIndex);
  6828. return;
  6829. }
  6830. }
  6831. if (i == 62) {
  6832. if (
  6833. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6834. .toolChoose[toolIndex].videoJson
  6835. ) {
  6836. this.openTools(itemTaskIndex, 62, toolIndex);
  6837. return;
  6838. }
  6839. }
  6840. if (i == 15) {
  6841. if (
  6842. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6843. .toolChoose[toolIndex].answerQ ||
  6844. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6845. .toolChoose[toolIndex].answerQ == ""
  6846. ) {
  6847. this.openTools(itemTaskIndex, 15, toolIndex);
  6848. // this.$message({
  6849. // message: "请填写问答内容",
  6850. // type: "error",
  6851. // });
  6852. return;
  6853. }
  6854. }
  6855. if (i == 40) {
  6856. if (
  6857. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6858. .toolChoose[toolIndex].rateJson ||
  6859. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6860. .toolChoose[toolIndex].rateJson.length
  6861. ) {
  6862. this.openTools(itemTaskIndex, 40, toolIndex);
  6863. return;
  6864. }
  6865. }
  6866. if (i == 41) {
  6867. if (
  6868. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6869. .toolChoose[toolIndex].selectJson ||
  6870. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6871. .toolChoose[toolIndex].selectJson.url == "" ||
  6872. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6873. .toolChoose[toolIndex].selectJson.select.length ||
  6874. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6875. .toolChoose[toolIndex].selectJson.answer.length
  6876. ) {
  6877. this.openTools(itemTaskIndex, 41, toolIndex);
  6878. return;
  6879. }
  6880. }
  6881. if (i == 42) {
  6882. if (
  6883. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6884. .toolChoose[toolIndex].answerQ ||
  6885. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6886. .toolChoose[toolIndex].answerQ == ""
  6887. ) {
  6888. this.openTools(itemTaskIndex, 42, toolIndex);
  6889. return;
  6890. }
  6891. }
  6892. if (
  6893. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6894. .toolChoose[toolIndex].tool.length > 0
  6895. ) {
  6896. if (
  6897. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6898. itemTaskIndex
  6899. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  6900. ) {
  6901. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6902. itemTaskIndex
  6903. ].toolChoose[toolIndex].tool.splice(
  6904. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6905. itemTaskIndex
  6906. ].toolChoose[toolIndex].tool.indexOf(i),
  6907. 1
  6908. );
  6909. } else {
  6910. // this.$message({
  6911. // message: "每个工具只能添加一个",
  6912. // type: "error",
  6913. // });
  6914. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6915. itemTaskIndex
  6916. ].toolChoose[toolIndex].tool = [];
  6917. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6918. itemTaskIndex
  6919. ].toolChoose[toolIndex].tool.push(i);
  6920. }
  6921. } else {
  6922. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6923. itemTaskIndex
  6924. ].toolChoose[toolIndex].tool.push(i);
  6925. }
  6926. this.$forceUpdate();
  6927. },
  6928. addAskList(index) {
  6929. this.askJson.askJson.splice(index + 1, 0, {
  6930. askstitle: "",
  6931. askItem: 1,
  6932. checkList: [],
  6933. })
  6934. this.askJson.askCount++;
  6935. },
  6936. addTestList(index) {
  6937. this.testJson.testJson.splice(index + 1, 0, {
  6938. teststitle: "",
  6939. testItem: 1,
  6940. checkList: [],
  6941. timuList: [],
  6942. answer: [],
  6943. type: "1",
  6944. })
  6945. this.testJson.testCount++;
  6946. },
  6947. deleteAskList(index) {
  6948. if (!this.askJson.askJson[index].askstitle && this.askJson.askJson[index].askItem == 1 && !this.askJson.askJson[index].checkList[0]) {
  6949. this.askJson.askJson.splice(index, 1);
  6950. this.askJson.askCount--;
  6951. } else {
  6952. let _this = this;
  6953. _this
  6954. .$confirm("此操作不可撤销,是否继续?", "提示", {
  6955. confirmButtonText: "确定",
  6956. cancelButtonText: "取消",
  6957. type: "warning",
  6958. })
  6959. .then(() => {
  6960. _this.askJson.askJson.splice(index, 1);
  6961. _this.askJson.askCount--;
  6962. })
  6963. .catch(() => {
  6964. return;
  6965. });
  6966. }
  6967. },
  6968. deleteTestList(index) {
  6969. if (!this.testJson.testJson[index].teststitle && this.testJson.testJson[index].testItem == 1 && !this.testJson.testJson[index].checkList[0]) {
  6970. this.testJson.testJson.splice(index, 1);
  6971. this.testJson.testCount--;
  6972. } else {
  6973. let _this = this;
  6974. _this
  6975. .$confirm("此操作不可撤销,是否继续?", "提示", {
  6976. confirmButtonText: "确定",
  6977. cancelButtonText: "取消",
  6978. type: "warning",
  6979. })
  6980. .then(() => {
  6981. _this.testJson.testJson.splice(index, 1);
  6982. _this.testJson.testCount--;
  6983. })
  6984. .catch(() => {
  6985. return;
  6986. });
  6987. }
  6988. },
  6989. askMove(type, index) {
  6990. if (type == 1) {
  6991. if (index > 0) {
  6992. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index - 1]));
  6993. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  6994. this.askJson.askJson[index - 1] = b;
  6995. this.askJson.askJson[index] = a;
  6996. }
  6997. } else {
  6998. if (
  6999. index < this.askJson.askJson.length - 1
  7000. ) {
  7001. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index + 1]));
  7002. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  7003. this.askJson.askJson[index + 1] = b;
  7004. this.askJson.askJson[index] = a;
  7005. }
  7006. }
  7007. this.$forceUpdate();
  7008. },
  7009. checkMove(type, index, checkIndex) {
  7010. if (type == 1) {
  7011. if (checkIndex > 0) {
  7012. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex - 1]));
  7013. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7014. this.askJson.askJson[index].checkList[checkIndex - 1] = b;
  7015. this.askJson.askJson[index].checkList[checkIndex] = a;
  7016. }
  7017. } else {
  7018. if (
  7019. checkIndex < this.askJson.askJson[index].checkList.length - 1
  7020. ) {
  7021. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex + 1]));
  7022. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7023. this.askJson.askJson[index].checkList[checkIndex + 1] = b;
  7024. this.askJson.askJson[index].checkList[checkIndex] = a;
  7025. }
  7026. }
  7027. this.$forceUpdate();
  7028. },
  7029. testMove(type, index) {
  7030. if (type == 1) {
  7031. if (index > 0) {
  7032. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index - 1]));
  7033. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7034. this.testJson.testJson[index - 1] = b;
  7035. this.testJson.testJson[index] = a;
  7036. }
  7037. } else {
  7038. if (
  7039. index < this.testJson.testJson.length - 1
  7040. ) {
  7041. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index + 1]));
  7042. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7043. this.testJson.testJson[index + 1] = b;
  7044. this.testJson.testJson[index] = a;
  7045. }
  7046. }
  7047. this.$forceUpdate();
  7048. },
  7049. tcheckMove(type, index, checkIndex) {
  7050. if (type == 1) {
  7051. if (checkIndex > 0) {
  7052. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex - 1]));
  7053. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7054. this.testJson.testJson[index].checkList[checkIndex - 1] = b;
  7055. this.testJson.testJson[index].checkList[checkIndex] = a;
  7056. }
  7057. } else {
  7058. if (
  7059. checkIndex < this.testJson.testJson[index].checkList.length - 1
  7060. ) {
  7061. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex + 1]));
  7062. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7063. this.testJson.testJson[index].checkList[checkIndex + 1] = b;
  7064. this.testJson.testJson[index].checkList[checkIndex] = a;
  7065. }
  7066. }
  7067. this.$forceUpdate();
  7068. },
  7069. addcheckList(json, index) {
  7070. // json.checkList.length++;
  7071. json.checkList.splice(index + 1, 0, '')
  7072. json.askItem++;
  7073. this.$forceUpdate();
  7074. },
  7075. deletecheckList(json, index) {
  7076. // json.checkList.length--;
  7077. json.checkList.splice(index, 1)
  7078. json.askItem--;
  7079. this.$forceUpdate();
  7080. },
  7081. addTcheckList(json, index) {
  7082. // json.checkList.length++;
  7083. json.checkList.splice(index + 1, 0, '')
  7084. json.testItem++;
  7085. this.$forceUpdate();
  7086. },
  7087. deleteTcheckList(json, index) {
  7088. // json.checkList.length--;
  7089. json.checkList.splice(index, 1)
  7090. json.testItem--;
  7091. this.$forceUpdate();
  7092. },
  7093. checkTestType(type, json) {
  7094. json.type = type;
  7095. setTimeout(() => {
  7096. json.answer = [];
  7097. }, 100)
  7098. },
  7099. checkAskType(type, json) {
  7100. json.type = type;
  7101. // json.checkList = [];
  7102. this.$forceUpdate();
  7103. },
  7104. addSelectList(json) {
  7105. json.select.push("");
  7106. json.answer.push("");
  7107. },
  7108. deleteSelectList(json) {
  7109. // json.select.length--;
  7110. // json.answer.length--;
  7111. json.select.splice(json.select.length - 1, 1);
  7112. json.answer.splice(json.answer.length - 1, 1);
  7113. },
  7114. addAsk() {
  7115. if (this.askJson.askTitle === "") {
  7116. this.$message.error("标题不能为空!");
  7117. return;
  7118. }
  7119. var aj = this.askJson.askJson;
  7120. var b = 1;
  7121. for (var i = 0; i < aj.length; i++) {
  7122. if (aj[i].askstitle === "") {
  7123. var a = 1;
  7124. for (let index = 0; index < aj[i].askItem; index++) {
  7125. const element = aj[i].checkList[index]
  7126. ? aj[i].checkList[index]
  7127. : "";
  7128. if (element != "") {
  7129. b++;
  7130. this.$message.error(`请将题目${i + 1}填写完整。`);
  7131. return;
  7132. } else {
  7133. a++;
  7134. }
  7135. }
  7136. if (b == 1) {
  7137. this.$message.error("至少填写一个问题");
  7138. return;
  7139. }
  7140. } else if (aj[i].askstitle != "") {
  7141. for (let index = 0; index < aj[i].askItem; index++) {
  7142. const element = aj[i].checkList[index]
  7143. ? aj[i].checkList[index]
  7144. : "";
  7145. var index = 0;
  7146. for (var z = 0; z < aj[i].checkList.length; z++) {
  7147. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7148. if (checkC != "") {
  7149. index++;
  7150. } else {
  7151. this.$message.error(`题目${i + 1}选项不能为空!`);
  7152. return;
  7153. }
  7154. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  7155. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  7156. if (checkC == checkC2) {
  7157. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7158. return;
  7159. }
  7160. }
  7161. }
  7162. b++;
  7163. if (index < 2) {
  7164. this.$message.error("每道题目至少需要设置2个选项。");
  7165. return;
  7166. }
  7167. }
  7168. }
  7169. }
  7170. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  7171. var elc = el.checkList.filter((element) => {
  7172. return element != "";
  7173. });
  7174. return el.askstitle != "" && elc.length != 0;
  7175. });
  7176. if (!this.dialogVisible4) {
  7177. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7178. this.taskCount
  7179. ].toolChoose[this.toolIndex] = this.askJson;
  7180. }
  7181. this.dialogVisible5 = false;
  7182. if (
  7183. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7184. .toolChoose[this.toolIndex].tool != 4
  7185. ) {
  7186. this.addTools(4, this.taskCount, this.toolIndex);
  7187. }
  7188. },
  7189. addTest() {
  7190. // if (this.testJson.testTitle === "") {
  7191. // this.$message.error("标题不能为空!");
  7192. // return;
  7193. // }
  7194. var aj = this.testJson.testJson;
  7195. var b = 1;
  7196. for (var i = 0; i < aj.length; i++) {
  7197. if (aj[i].teststitle === "" && aj[i].timuList.length == 0) {
  7198. var a = 1;
  7199. for (let index = 0; index < aj[i].testItem; index++) {
  7200. const element = aj[i].checkList[index]
  7201. ? aj[i].checkList[index]
  7202. : "";
  7203. if (element != "") {
  7204. b++;
  7205. this.$message.error(`请将题目${i + 1}填写完整。`);
  7206. return;
  7207. } else {
  7208. a++;
  7209. }
  7210. }
  7211. if (b == 1) {
  7212. this.$message.error("至少填写一个问题");
  7213. return;
  7214. }
  7215. } else if (aj[i].teststitle != "" || aj[i].timuList.length > 0) {
  7216. for (let index = 0; index < aj[i].testItem; index++) {
  7217. const element = aj[i].checkList[index]
  7218. ? aj[i].checkList[index]
  7219. : "";
  7220. var index = 0;
  7221. for (var z = 0; z < aj[i].checkList.length; z++) {
  7222. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7223. if (checkC != "") {
  7224. index++;
  7225. } else {
  7226. this.$message.error(`题目${i + 1}选项不能为空!`);
  7227. return;
  7228. }
  7229. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  7230. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  7231. if (checkC == checkC2) {
  7232. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7233. return;
  7234. }
  7235. }
  7236. }
  7237. b++;
  7238. if (index < 2) {
  7239. this.$message.error("每道题目至少需要设置2个选项。");
  7240. return;
  7241. }
  7242. if (
  7243. (aj[i].type == "2" && !aj[i].answer.length) ||
  7244. (aj[i].type == "1" && ((typeof aj[i].answer == 'object' && !aj[i].answer.length) || (aj[i].answer !== 0 && !aj[i].answer)))
  7245. ) {
  7246. this.$message.error(`请将题目${i + 1}的正确选项设置完整`);
  7247. return;
  7248. }
  7249. }
  7250. }
  7251. }
  7252. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  7253. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  7254. var elc = el.checkList.filter((element) => {
  7255. return element != "";
  7256. });
  7257. return (
  7258. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  7259. );
  7260. });
  7261. isTestJson.testCount = isTestJson.testJson.length;
  7262. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7263. this.taskCount
  7264. ].toolChoose[this.toolIndex].testJson = isTestJson;
  7265. this.dialogVisibleChoice = false;
  7266. if (
  7267. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7268. .toolChoose[this.toolIndex].tool != 45
  7269. ) {
  7270. this.addTools(45, this.taskCount, this.toolIndex);
  7271. }
  7272. },
  7273. addVideoJson(videoJson) {
  7274. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7275. this.taskCount
  7276. ].toolChoose[this.toolIndex].videoJson = videoJson;
  7277. this.dialogVisibleVideo = false;
  7278. if (
  7279. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7280. .toolChoose[this.toolIndex].tool != 62
  7281. ) {
  7282. this.addTools(62, this.taskCount, this.toolIndex);
  7283. }
  7284. },
  7285. //自动获取剪贴板
  7286. pasteOption() {
  7287. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7288. if (!iframe) {
  7289. this.$message.error("请使用AI共创生成题目");
  7290. return;
  7291. }
  7292. let copyData = iframe.contentWindow.copyData;
  7293. if (!copyData || !copyData.selectData.length) {
  7294. this.$message.error("请使用AI共创生成题目");
  7295. return;
  7296. }
  7297. let selectData = copyData.selectData;
  7298. for (var i = 0; i < selectData.length; i++) {
  7299. let answer = 0;
  7300. switch (selectData[i].answer[0]) {
  7301. case "A":
  7302. answer = 0;
  7303. break;
  7304. case "B":
  7305. answer = 1;
  7306. break;
  7307. case "C":
  7308. answer = 2;
  7309. break;
  7310. case "D":
  7311. answer = 3;
  7312. break;
  7313. case "E":
  7314. answer = 4;
  7315. break;
  7316. default:
  7317. break;
  7318. }
  7319. this.testJson.testJson.push({
  7320. teststitle: selectData[i].subject,
  7321. testItem: selectData[i].options.length,
  7322. checkList: selectData[i].options,
  7323. timuList: [],
  7324. answer: answer,
  7325. type: "1",
  7326. });
  7327. this.testJson.testCount++;
  7328. }
  7329. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  7330. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  7331. var elc = el.checkList.filter((element) => {
  7332. return element != "";
  7333. });
  7334. return (
  7335. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  7336. );
  7337. });
  7338. isTestJson.testCount = isTestJson.testJson.length;
  7339. this.testJson = isTestJson;
  7340. this.$forceUpdate();
  7341. },
  7342. pasteTask() {
  7343. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7344. if (!iframe) {
  7345. this.$message.error("请使用AI共创生成");
  7346. return;
  7347. }
  7348. let copyData = iframe.contentWindow.copyData;
  7349. if (!copyData || !copyData.tasksData || !copyData.tasksData.length) {
  7350. this.$message.error("请使用AI共创生成");
  7351. return;
  7352. }
  7353. let stageTasksData = copyData.tasksData;
  7354. let taskA = [];
  7355. let tasks = stageTasksData;
  7356. for (var j = 0; j < tasks.length; j++) {
  7357. taskA.push({
  7358. task: tasks[j].taskName,
  7359. taskDetail: tasks[j].taskDecs,
  7360. chapterData: [],
  7361. toolText: "",
  7362. toolChoose: [
  7363. {
  7364. tool: [],
  7365. toolDetail: "",
  7366. toolType: 0,
  7367. askCount: 1,
  7368. askTitle: "",
  7369. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7370. },
  7371. ],
  7372. isShowTools: false,
  7373. askCount: 1,
  7374. isFold: 0,
  7375. askTitle: "",
  7376. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7377. checkJson: [{ checkCount: [], checkPerent: [] }],
  7378. homeworkList: [],
  7379. });
  7380. }
  7381. this.unitJson[this.unitIndex].chapterInfo[0].taskJson = taskA;
  7382. this.$forceUpdate();
  7383. },
  7384. pasteStage() {
  7385. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7386. if (!iframe) {
  7387. this.$message.error("请使用AI共创生成");
  7388. return;
  7389. }
  7390. let copyData = iframe.contentWindow.copyData;
  7391. if (!copyData || !copyData.stageData || !copyData.stageData.length) {
  7392. this.$message.error("请使用AI共创生成");
  7393. return;
  7394. }
  7395. let stageData = copyData.stageData;
  7396. let stage = [];
  7397. for (var i = 0; i < stageData.length; i++) {
  7398. stage.push({
  7399. dyName: stageData[i], //单元标题
  7400. chapterInfo: [
  7401. {
  7402. isread: false,
  7403. chapterid: this.guid(),
  7404. title: "",
  7405. courseName: "",
  7406. taskJson: [
  7407. {
  7408. task: "",
  7409. taskDetail: "",
  7410. chapterData: [],
  7411. toolText: "",
  7412. toolChoose: [
  7413. {
  7414. tool: [],
  7415. toolDetail: "",
  7416. toolType: 0,
  7417. askCount: 1,
  7418. askTitle: "",
  7419. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7420. },
  7421. ],
  7422. isShowTools: false,
  7423. askCount: 1,
  7424. isFold: 0,
  7425. askTitle: "",
  7426. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7427. checkJson: [{ checkCount: [], checkPerent: [] }],
  7428. homeworkList: [],
  7429. },
  7430. ],
  7431. itemCount: 1,
  7432. fileList1: [],
  7433. video: [],
  7434. testData: [],
  7435. pData: [],
  7436. templateArray: [],
  7437. },
  7438. ],
  7439. });
  7440. }
  7441. let _this = this;
  7442. _this
  7443. .$confirm("确定选择智能粘贴模板吗?修改课程时无法重置课程模板。", "提示", {
  7444. confirmButtonText: "确定",
  7445. cancelButtonText: "取消",
  7446. type: "warning",
  7447. })
  7448. .then(() => {
  7449. _this.unitIndex = 0;
  7450. _this.unitJson = stage;
  7451. _this.steps++;
  7452. _this.updateWork();
  7453. })
  7454. .catch(() => {
  7455. return;
  7456. });
  7457. },
  7458. openStageBox() {
  7459. this.unitJson3 = JSON.parse(JSON.stringify(this.unitJson))
  7460. this.dialogVisibleStageChange = true;
  7461. },
  7462. updateChange() {
  7463. this.$confirm(
  7464. "切换阶段顺序将删除所有工具的提交成果,是否继续此操作?",
  7465. "提示",
  7466. {
  7467. confirmButtonText: "确定",
  7468. cancelButtonText: "取消",
  7469. type: "warning",
  7470. }
  7471. )
  7472. .then(() => {
  7473. this.unitJson = JSON.parse(JSON.stringify(this.unitJson3))
  7474. this.updateWork()
  7475. this.dialogVisibleStageChange = false;
  7476. })
  7477. .catch(() => {
  7478. return;
  7479. });
  7480. },
  7481. addAnswer() {
  7482. if (this.answerQ == "") {
  7483. this.$message.error("请输入您想要问的问题");
  7484. return;
  7485. }
  7486. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7487. this.taskCount
  7488. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7489. this.dialogVisible8 = false;
  7490. if (
  7491. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7492. .toolChoose[this.toolIndex].tool != 15
  7493. ) {
  7494. this.addTools(15, this.taskCount, this.toolIndex);
  7495. }
  7496. },
  7497. addMp3Answer() {
  7498. if (this.answerQ == "") {
  7499. this.$message.error("请输入您想要回答的问题");
  7500. return;
  7501. }
  7502. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7503. this.taskCount
  7504. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7505. this.dialogVisibleMp3 = false;
  7506. },
  7507. addRateAnswer() {
  7508. var a = 1;
  7509. for (var i = 0; i < this.rateJson.length; i++) {
  7510. if (this.rateJson[i].value == "") {
  7511. a = 2;
  7512. break;
  7513. }
  7514. }
  7515. if (a == 2) {
  7516. this.$message.error("请把评价信息填写完整");
  7517. return;
  7518. }
  7519. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7520. this.taskCount
  7521. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  7522. this.dialogVisibleRate = false;
  7523. if (
  7524. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7525. .toolChoose[this.toolIndex].tool != 40
  7526. ) {
  7527. this.addTools(40, this.taskCount, this.toolIndex);
  7528. }
  7529. },
  7530. addSelectAnswer() {
  7531. if (this.selectJson.url == "") {
  7532. this.$message.error("请上传题目");
  7533. return;
  7534. }
  7535. if (!this.selectJson.select.length) {
  7536. this.$message.error("请添加选项");
  7537. return;
  7538. }
  7539. if (!this.selectJson.answer.length) {
  7540. this.$message.error("请设置答案");
  7541. return;
  7542. }
  7543. var a = 1;
  7544. for (var i = 0; i < this.selectJson.answer.length; i++) {
  7545. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  7546. a = 2;
  7547. }
  7548. }
  7549. if (a == 2) {
  7550. this.$message.error("请设置答案");
  7551. return;
  7552. }
  7553. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7554. this.taskCount
  7555. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  7556. this.dialogVisibleSelect = false;
  7557. if (
  7558. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7559. .toolChoose[this.toolIndex].tool != 41
  7560. ) {
  7561. this.addTools(41, this.taskCount, this.toolIndex);
  7562. }
  7563. },
  7564. nextSelectSteps() {
  7565. if (this.selectJson.url == "") {
  7566. this.$message.error("请上传题目");
  7567. return;
  7568. }
  7569. if (!this.selectJson.select.length) {
  7570. this.$message.error("请添加选项");
  7571. return;
  7572. } else {
  7573. for (var z = 0; z < this.selectJson.select.length; z++) {
  7574. let checkC = this.selectJson.select[z];
  7575. for (var z2 = z + 1; z2 < this.selectJson.select.length; z2++) {
  7576. let checkC2 = this.selectJson.select[z2];
  7577. if (checkC == checkC2) {
  7578. this.$message.error(`选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7579. return;
  7580. }
  7581. }
  7582. }
  7583. }
  7584. var a = 1;
  7585. for (var i = 0; i < this.selectJson.select.length; i++) {
  7586. if (!this.selectJson.select[i]) {
  7587. a = 2;
  7588. }
  7589. }
  7590. if (a == 2) {
  7591. this.$message.error("添加的选项不能为空");
  7592. return;
  7593. }
  7594. this.selectSteps++;
  7595. },
  7596. selectCourseDetail() {
  7597. if (this.cid == "" || this.cid == undefined) {
  7598. console.log("这是新增课程");
  7599. this.selectAllType();
  7600. } else {
  7601. this.cidType = 1;
  7602. let params = {
  7603. cid: this.cid,
  7604. };
  7605. this.ajax
  7606. .get(this.$store.state.api + "select_course_detail", params)
  7607. .then((res) => {
  7608. this.loading = true;
  7609. this.unitJson = JSON.parse(res.data[0][0].chapters);
  7610. for (var j = 0; j < this.unitJson.length; j++) {
  7611. for (
  7612. var k = 0;
  7613. k < this.unitJson[j].chapterInfo[0].taskJson.length;
  7614. k++
  7615. ) {
  7616. this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose = this
  7617. .unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7618. ? this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7619. : [];
  7620. let _chapterData = [];
  7621. for (
  7622. var c = 0;
  7623. c <
  7624. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData
  7625. .length;
  7626. c++
  7627. ) {
  7628. if (
  7629. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7630. ) {
  7631. _chapterData.push(
  7632. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7633. );
  7634. }
  7635. }
  7636. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData =
  7637. _chapterData;
  7638. }
  7639. }
  7640. this.$forceUpdate();
  7641. this.courseName = res.data[0][0].title;
  7642. this.courseText = res.data[0][0].brief;
  7643. this.evalua = res.data[0][0].evaId;
  7644. this.cover = JSON.parse(res.data[0][0].cover);
  7645. this.noneBtnImg = this.cover.length >= 1;
  7646. // this.checkboxList =
  7647. // res.data[0][0].course_student.length > 0
  7648. // ? JSON.parse(res.data[0][0].course_student)
  7649. // : [];
  7650. this.checkboxList2 = res.data[0][0].juri
  7651. ? res.data[0][0].juri.split(",")
  7652. : [];
  7653. this.inviteCode = [];
  7654. for (var i = 0; i < res.data[2].length; i++) {
  7655. this.inviteCode.push({
  7656. cid: res.data[2][i].classid,
  7657. ic: res.data[2][i].code,
  7658. });
  7659. }
  7660. this.checkboxList3 = res.data[0][0].course_teacher
  7661. ? res.data[0][0].course_teacher.split(",")
  7662. : [];
  7663. // this.isTeacherSee =
  7664. // res.data[0][0].is_teacher_look == 0 ? true : false;
  7665. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  7666. this.myWord = res.data[0][0].template;
  7667. this.templateC.id = "123";
  7668. this.courseUserid = res.data[0][0].userid;
  7669. // if(this.courseUserid == this.userid){
  7670. // this.InviteChange(this.checkboxList2)
  7671. // }
  7672. this.nbOrder = res.data[0][0].ordernumber;
  7673. this.courseTypeId = [];
  7674. for (var i = 0; i < res.data[1].length; i++) {
  7675. this.courseTypeId.push(res.data[1][i].typeid);
  7676. }
  7677. console.log(this.courseTypeId);
  7678. // if (this.timer) clearInterval(this.timer);
  7679. if (this.timer) clearTimeout(this.timer);
  7680. this.timer = null;
  7681. // this.timer = setInterval(() => {
  7682. this.seleteCourseUpdate();
  7683. this.setMan();
  7684. this.selectAllType();
  7685. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  7686. // }, 5000);
  7687. this.$forceUpdate();
  7688. setTimeout(() => {
  7689. this.checkEva(this.evalua);
  7690. setTimeout(() => {
  7691. this.checkEva(this.evalua);
  7692. }, 100);
  7693. }, 100);
  7694. })
  7695. .catch((err) => {
  7696. console.error(err);
  7697. });
  7698. }
  7699. },
  7700. seleteCourseUpdate() {
  7701. let params = {
  7702. cid: this.cid,
  7703. };
  7704. this.ajax
  7705. .get(this.$store.state.api + "select_course_detail", params)
  7706. .then((res) => {
  7707. // console.log(this.unitJson);
  7708. let unitJson = JSON.parse(res.data[0][0].chapters);
  7709. this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  7710. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  7711. let _unitJson = [];
  7712. let _chapAarry = [];
  7713. let _unitIndex = JSON.parse(JSON.stringify(this.unitIndex));
  7714. let _unitIndex2 = JSON.parse(JSON.stringify(this.unitIndex));
  7715. let index = 1;
  7716. let chapindex;
  7717. if (_unitJson2.length > unitJson.length) {
  7718. for (let c = 0; c < _unitJson2.length; c++) {
  7719. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  7720. }
  7721. for (let j = 0; j < unitJson.length; j++) {
  7722. let count = 0;
  7723. for (let k = 0; k < _unitJson2.length; k++) {
  7724. if (
  7725. unitJson[j].chapterInfo[0].chapterid ==
  7726. _unitJson2[k].chapterInfo[0].chapterid
  7727. ) {
  7728. count++;
  7729. _chapAarry.splice(
  7730. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7731. 1
  7732. );
  7733. _unitJson.push(unitJson[j]);
  7734. break;
  7735. }
  7736. }
  7737. // if(count === 0){
  7738. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7739. // }
  7740. }
  7741. for (let k = 0; k < _unitJson2.length; k++) {
  7742. if (_unitJson2[k].isUpdate == 1) {
  7743. _chapAarry.splice(
  7744. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7745. 1
  7746. );
  7747. _unitJson.push(_unitJson2[k]);
  7748. }
  7749. }
  7750. console.log(_chapAarry);
  7751. for (let d = 0; d < _unitJson2.length; d++) {
  7752. if (
  7753. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  7754. ) {
  7755. if (_unitIndex == d) {
  7756. index = 2;
  7757. }
  7758. chapindex = d;
  7759. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7760. }
  7761. }
  7762. } else {
  7763. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  7764. }
  7765. for (let i = 0; i < unitJson.length; i++) {
  7766. if (
  7767. (i < _unitJson.length - 1 || i == _unitJson.length - 1) &&
  7768. _unitJson[i].chapterInfo[0].chapterid !=
  7769. unitJson[i].chapterInfo[0].chapterid
  7770. ) {
  7771. if (i == _unitJson.length - 1) {
  7772. // this.unitIndex++
  7773. _unitIndex2++;
  7774. }
  7775. _unitJson.splice(i, 0, unitJson[i]);
  7776. } else if (i > _unitJson.length - 1) {
  7777. _unitJson.push(unitJson[i]);
  7778. } else if (
  7779. _unitJson[i].chapterInfo[0].chapterid ==
  7780. unitJson[i].chapterInfo[0].chapterid
  7781. ) {
  7782. _unitJson[i] = unitJson[i];
  7783. }
  7784. // if (i == _unitIndex) {
  7785. // continue;
  7786. // } else
  7787. }
  7788. if (_chapAarry.length && index != 2) {
  7789. if (chapindex < _unitIndex) {
  7790. this.isDelete = 2;
  7791. // this.unitIndex--;
  7792. _unitIndex2--;
  7793. } else if (
  7794. _unitJson2[_unitIndex].chapterInfo[0].chapterid !=
  7795. _unitJson[_unitIndex].chapterInfo[0].chapterid
  7796. ) {
  7797. this.isDelete = 2;
  7798. for (let n = 0; n < _unitJson.length; n++) {
  7799. if (
  7800. _unitJson2[_unitIndex].chapterInfo[0].chapterid ==
  7801. _unitJson[n].chapterInfo[0].chapterid
  7802. ) {
  7803. // this.unitIndex = n;
  7804. _unitIndex2 = n;
  7805. _unitJson[n] = _unitJson2[_unitIndex];
  7806. break;
  7807. }
  7808. }
  7809. }
  7810. } else if (index != 2) {
  7811. // _unitJson[this.unitIndex] = _unitJson2[_unitIndex];
  7812. _unitJson2[_unitIndex];
  7813. for (
  7814. var ci = 0;
  7815. ci < _unitJson2[_unitIndex].chapterInfo[0].taskJson.length;
  7816. ci++
  7817. ) {
  7818. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose =
  7819. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose
  7820. ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7821. .toolChoose
  7822. : [];
  7823. let _chapterData = [];
  7824. for (
  7825. var c = 0;
  7826. c <
  7827. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData
  7828. .length;
  7829. c++
  7830. ) {
  7831. if (
  7832. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7833. .chapterData[c]
  7834. ) {
  7835. _chapterData.push(
  7836. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7837. .chapterData[c]
  7838. );
  7839. }
  7840. }
  7841. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
  7842. _chapterData;
  7843. }
  7844. _unitJson[_unitIndex2] = _unitJson2[_unitIndex];
  7845. }
  7846. if (index == 1) {
  7847. this.unitJson = _unitJson;
  7848. this.$forceUpdate();
  7849. setTimeout(() => {
  7850. if (this.unitIndex != _unitIndex2) {
  7851. this.isDelete = 2;
  7852. this.unitIndex = _unitIndex2;
  7853. }
  7854. }, 0);
  7855. this.timer = setTimeout(() => {
  7856. this.seleteCourseUpdate();
  7857. }, 1000);
  7858. } else if (index == 2) {
  7859. let _this = this;
  7860. _this
  7861. .$confirm(
  7862. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  7863. "提示",
  7864. {
  7865. confirmButtonText: "需要",
  7866. cancelButtonText: "取消",
  7867. type: "warning",
  7868. }
  7869. )
  7870. .then(() => {
  7871. if (_this.time()) {
  7872. _this.restoreWork(
  7873. _chapAarry[0],
  7874. _unitJson,
  7875. chapindex,
  7876. _unitJson2,
  7877. _unitIndex2
  7878. );
  7879. }
  7880. })
  7881. .catch(() => {
  7882. _this.unitJson = _unitJson;
  7883. _this.$forceUpdate();
  7884. setTimeout(() => {
  7885. if (this.unitIndex != _unitIndex2) {
  7886. this.isDelete = 2;
  7887. this.unitIndex = _unitIndex2;
  7888. }
  7889. }, 0);
  7890. _this.timer = setTimeout(() => {
  7891. _this.seleteCourseUpdate();
  7892. }, 1000);
  7893. });
  7894. }
  7895. })
  7896. .catch((err) => {
  7897. console.error(err);
  7898. });
  7899. },
  7900. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  7901. let params = [
  7902. {
  7903. cid: this.cid,
  7904. chapters: JSON.stringify(this.unitJson),
  7905. uid: this.userid,
  7906. chapid: chapid,
  7907. },
  7908. ];
  7909. this.ajax
  7910. .post(this.$store.state.api + "restoreWork", params)
  7911. .then((res) => {
  7912. this.$message({
  7913. message: "恢复成功",
  7914. type: "success",
  7915. });
  7916. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  7917. this.unitJson = unitJson;
  7918. this.$forceUpdate();
  7919. setTimeout(() => {
  7920. if (this.unitIndex != unitIndex2) {
  7921. this.isDelete = 2;
  7922. this.unitIndex = unitIndex2;
  7923. }
  7924. }, 0);
  7925. this.timer = setTimeout(() => {
  7926. this.seleteCourseUpdate();
  7927. }, 1000);
  7928. })
  7929. .catch((err) => {
  7930. this.$message.error("网络不佳");
  7931. console.error(err);
  7932. });
  7933. },
  7934. getTypeName() {
  7935. console.log(this.courseTypeId);
  7936. this.$forceUpdate();
  7937. },
  7938. selectAllType() {
  7939. let params = {
  7940. org: this.org && this.org != "" ? this.org : "",
  7941. oid: this.oid && this.oid != "" ? this.oid : "",
  7942. };
  7943. this.ajax
  7944. .get(this.$store.state.api + "selectAllType", params)
  7945. .then((res) => {
  7946. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7947. res.data[0] = [...res.data[0], ...res.data[4]]
  7948. }
  7949. this.CourseType = res.data;
  7950. this.CourseType2 = [
  7951. { name: "智见课程", id: [] },
  7952. { name: "智行课程", id: [] },
  7953. { name: "智创课程", id: [] },
  7954. ];
  7955. for (var cti = 0; cti < res.data[0].length; cti++) {
  7956. if (
  7957. res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" ||
  7958. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"
  7959. ) {
  7960. this.CourseType2[0].id.push(res.data[0][cti].id);
  7961. } else if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5" ||
  7962. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  7963. this.CourseType2[1].id.push(res.data[0][cti].id);
  7964. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  7965. this.CourseType2[2].id.push(res.data[0][cti].id);
  7966. }
  7967. if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5") {
  7968. res.data[0][cti].name = "年级";
  7969. } else if (res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  7970. res.data[0][cti].name = "学科";
  7971. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  7972. res.data[0][cti].name = "主题";
  7973. }
  7974. }
  7975. let _courseTypeId = [];
  7976. for (var i = 0; i < res.data[0].length; i++) {
  7977. if (!this.cid) {
  7978. this.courseTypeId[res.data[0][i].id] = [];
  7979. }
  7980. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  7981. // }
  7982. this.CourseTypeJson[res.data[0][i].id] = [];
  7983. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7984. if (res.data[0][i].name == "栏目") {
  7985. this.CourseType[0][i].name = "主题";
  7986. }
  7987. }
  7988. if (res.data[2].length == 0 && res.data[3].length == 0) {
  7989. for (var j = 0; j < res.data[1].length; j++) {
  7990. if (
  7991. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  7992. _courseTypeId.indexOf(res.data[1][j].id) == -1
  7993. ) {
  7994. _courseTypeId.push(res.data[1][j].id);
  7995. }
  7996. if (res.data[0][i].id == res.data[1][j].pid) {
  7997. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  7998. }
  7999. }
  8000. } else {
  8001. if (res.data[2].length > 0) {
  8002. for (var j = 0; j < res.data[2].length; j++) {
  8003. if (
  8004. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  8005. _courseTypeId.indexOf(res.data[2][j].id) == -1
  8006. ) {
  8007. _courseTypeId.push(res.data[2][j].id);
  8008. }
  8009. if (res.data[0][i].id == res.data[2][j].pid) {
  8010. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  8011. }
  8012. }
  8013. }
  8014. if (res.data[3].length > 0) {
  8015. for (var j = 0; j < res.data[3].length; j++) {
  8016. if (
  8017. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  8018. _courseTypeId.indexOf(res.data[3][j].id) == -1
  8019. ) {
  8020. _courseTypeId.push(res.data[3][j].id);
  8021. }
  8022. if (res.data[0][i].id == res.data[3][j].pid) {
  8023. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  8024. }
  8025. }
  8026. }
  8027. }
  8028. }
  8029. this.courseTypeId = _courseTypeId;
  8030. })
  8031. .catch((err) => {
  8032. console.error(err);
  8033. });
  8034. },
  8035. selectType() {
  8036. this.ajax
  8037. .get(this.$store.state.api + "selectType")
  8038. .then((res) => {
  8039. this.CourseType = res.data;
  8040. for (var i = 0; i < res.data[0].length; i++) {
  8041. if (!this.cid) {
  8042. this.courseTypeId[res.data[0][i].id] = "";
  8043. }
  8044. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  8045. if (res.data[0][i].name == "栏目") {
  8046. this.CourseType[0][i].name = "主题";
  8047. }
  8048. }
  8049. for (var j = 0; j < res.data[1].length; j++) {
  8050. if (res.data[0][i].id == res.data[1][j].pid) {
  8051. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8052. this.CourseTypeJson[res.data[0][i].id] = [];
  8053. }
  8054. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8055. }
  8056. }
  8057. }
  8058. this.selectTypeByOid();
  8059. this.selectTypeByOrg();
  8060. })
  8061. .catch((err) => {
  8062. console.error(err);
  8063. });
  8064. },
  8065. selectTypeByOid() {
  8066. let params = {
  8067. oid: this.oid,
  8068. };
  8069. this.ajax
  8070. .get(this.$store.state.api + "selectTypeByOid", params)
  8071. .then((res) => {
  8072. for (var i = 0; i < res.data[0].length; i++) {
  8073. for (var j = 0; j < res.data[1].length; j++) {
  8074. if (res.data[0][i].id == res.data[1][j].pid) {
  8075. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8076. this.CourseTypeJson[res.data[0][i].id] = [];
  8077. }
  8078. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8079. }
  8080. }
  8081. }
  8082. })
  8083. .catch((err) => {
  8084. console.error(err);
  8085. });
  8086. },
  8087. selectTypeByOrg() {
  8088. let params = {
  8089. oid: this.org,
  8090. };
  8091. this.ajax
  8092. .get(this.$store.state.api + "selectTypeByOrg", params)
  8093. .then((res) => {
  8094. for (var i = 0; i < res.data[0].length; i++) {
  8095. for (var j = 0; j < res.data[1].length; j++) {
  8096. if (res.data[0][i].id == res.data[1][j].pid) {
  8097. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8098. this.CourseTypeJson[res.data[0][i].id] = [];
  8099. }
  8100. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8101. }
  8102. }
  8103. }
  8104. this.$forceUpdate();
  8105. })
  8106. .catch((err) => {
  8107. console.error(err);
  8108. });
  8109. },
  8110. OtherMb(type) {
  8111. this.typeMode = type;
  8112. setTimeout(() => {
  8113. this.checkEva(this.checkId);
  8114. setTimeout(() => {
  8115. this.checkEva(this.checkId);
  8116. }, 100);
  8117. }, 100);
  8118. },
  8119. openMember() {
  8120. this.searchTN = "";
  8121. this.getTeacher();
  8122. this.dialogVisibleMember = true;
  8123. },
  8124. checkEva(id, type) {
  8125. this.dialogVisiblemb = false;
  8126. this.selectEva();
  8127. if (this.evalua != id && type == 2) {
  8128. this.$message.success("导入成功");
  8129. }
  8130. this.evalua = id;
  8131. this.checkId = id;
  8132. if (this.evalua != "") {
  8133. for (var i = 0; i < this.evaJuri.length; i++) {
  8134. if (this.evalua == this.evaJuri[i].id) {
  8135. this.eTitle = this.evaJuri[i].title;
  8136. this.eJson = JSON.parse(this.evaJuri[i].content);
  8137. }
  8138. }
  8139. this.data.data = [];
  8140. this.$forceUpdate();
  8141. setTimeout(() => {
  8142. this.setMindData();
  8143. }, 1000);
  8144. }
  8145. },
  8146. deleteEva() {
  8147. let _this = this;
  8148. if (_this.evalua == "") {
  8149. this.$message.warning("内容已经清空了,请勿重复清空");
  8150. return;
  8151. }
  8152. _this
  8153. .$confirm("确定删除此目标吗?", "提示", {
  8154. confirmButtonText: "确定",
  8155. cancelButtonText: "取消",
  8156. type: "warning",
  8157. })
  8158. .then(() => {
  8159. _this.evalua = "";
  8160. _this.checkId = "";
  8161. _this.eTitle = "";
  8162. let _unitJson = _this.unitJson;
  8163. for (var i = 0; i < _unitJson.length; i++) {
  8164. let _task = _unitJson[i].chapterInfo[0].taskJson;
  8165. for (var j = 0; j < _task.length; j++) {
  8166. let _eList = _task[j].eList;
  8167. for (var k = 0; k < _eList.length; k++) {
  8168. delete _eList[k].target;
  8169. }
  8170. }
  8171. }
  8172. _this.$forceUpdate();
  8173. if (_this.cid) {
  8174. _this.updateWork();
  8175. }
  8176. })
  8177. .catch(() => {
  8178. return;
  8179. });
  8180. },
  8181. selectEva() {
  8182. let params = {
  8183. oid: this.oid,
  8184. };
  8185. this.ajax
  8186. .get(this.$store.state.api + "selectAllEvaluation", params)
  8187. .then((res) => {
  8188. this.evaJuri = res.data[0];
  8189. })
  8190. .catch((err) => {
  8191. console.error(err);
  8192. });
  8193. },
  8194. setMindData() {
  8195. let targetArray = [];
  8196. this.data.data = [];
  8197. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  8198. let _eJson = Object.keys(this.eJson);
  8199. let _e = this.eJson;
  8200. for (let i = 0; i < _eJson.length; i++) {
  8201. let element = _e[_eJson[i]];
  8202. this.data.data.push({
  8203. id: element.id,
  8204. parentid: "root",
  8205. topic: element.name,
  8206. });
  8207. // targetArray.push({
  8208. // id: element.id,
  8209. // parentid: "root",
  8210. // name: element.name,
  8211. // });
  8212. targetArray.push({
  8213. value: element.name,
  8214. label: element.name,
  8215. children: [],
  8216. });
  8217. let _eJsonc = Object.keys(element.child);
  8218. let _e2 = element.child;
  8219. for (let j = 0; j < _eJsonc.length; j++) {
  8220. let _ec = _e2[_eJsonc[j]];
  8221. this.data.data.push({
  8222. id: _ec.id,
  8223. parentid: element.id,
  8224. topic: _ec.name,
  8225. });
  8226. // targetArray.push({
  8227. // id: _ec.id,
  8228. // parentid: element.id,
  8229. // name: _ec.name,
  8230. // });
  8231. targetArray[i].children.push({
  8232. value: _ec.name,
  8233. label: _ec.name,
  8234. children: [],
  8235. });
  8236. let _eJsonz = Object.keys(_ec.child);
  8237. let _e3 = _ec.child;
  8238. for (let z = 0; z < _eJsonz.length; z++) {
  8239. let _ez = _e3[_eJsonz[z]];
  8240. this.data.data.push({
  8241. id: _ez.id,
  8242. parentid: _ec.id,
  8243. topic: _ez.name,
  8244. });
  8245. // targetArray.push({
  8246. // id: _ez.id,
  8247. // parentid: _ec.id,
  8248. // name: _ez.name,
  8249. // });
  8250. targetArray[i].children[j].children.push({
  8251. value: _ez.name,
  8252. label: _ez.name,
  8253. });
  8254. }
  8255. }
  8256. }
  8257. this.targetArray = targetArray;
  8258. this.$forceUpdate();
  8259. },
  8260. /*添加评价 */
  8261. addEList(index, tIndex) {
  8262. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  8263. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  8264. value: "",
  8265. detail: "",
  8266. score: 5,
  8267. })
  8268. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  8269. { value: "", detail: "", score: 5 },
  8270. ]);
  8271. this.$forceUpdate();
  8272. },
  8273. forceUpdate() {
  8274. this.$forceUpdate();
  8275. },
  8276. deletEList(index, tIndex, eIndex) {
  8277. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  8278. eIndex,
  8279. 1
  8280. );
  8281. this.$forceUpdate();
  8282. },
  8283. getChoosePic(t) {
  8284. this.chooseType = t;
  8285. this.getAllBanner();
  8286. },
  8287. getAllBanner() {
  8288. this.sysPicVisible = true;
  8289. let params = {
  8290. t: this.chooseType,
  8291. };
  8292. this.ajax
  8293. .get(this.$store.state.api + "selectAllBanner", params)
  8294. .then((res) => {
  8295. this.sysPic = res.data[0];
  8296. })
  8297. .catch((err) => {
  8298. console.error(err);
  8299. });
  8300. },
  8301. // getClass() {
  8302. // let params = {
  8303. // oid: this.oid,
  8304. // };
  8305. // this.ajax
  8306. // .get(this.$store.state.api + "selectClassBySchool", params)
  8307. // .then((res) => {
  8308. // this.classJuri = res.data[0];
  8309. // })
  8310. // .catch((err) => {
  8311. // console.error(err);
  8312. // });
  8313. // },
  8314. deleteSysPic() {
  8315. this.cover = [];
  8316. this.isSysPic = false;
  8317. this.isSysPic2 = false;
  8318. },
  8319. deleteSelectPic() {
  8320. this.selectJson.url = "";
  8321. },
  8322. setEListStar() {
  8323. this.$forceUpdate();
  8324. },
  8325. deletRateList(i) {
  8326. this.rateJson.splice(i, 1);
  8327. },
  8328. addRateList() {
  8329. this.rateJson.push({ detail: "", score: 5, value: "" });
  8330. },
  8331. addSt() {
  8332. this.sentenceList.push({
  8333. sentenceTitle: "",
  8334. addSentence: [],
  8335. rightAnswer: [],
  8336. });
  8337. },
  8338. addSen(i) {
  8339. if (!this.sentenceList[i].sentenceTitle) {
  8340. this.$message.error("请填写卡片内容!");
  8341. return;
  8342. }
  8343. if (this.sentenceList[i].sentenceTitle.length > 10) {
  8344. this.$message.error("卡片内容字数不能超过10位");
  8345. return;
  8346. }
  8347. if (this.sentenceList[i].addSentence.indexOf(this.sentenceList[i].sentenceTitle) !== -1) {
  8348. this.$message.error("不能添加重复的卡片内容!");
  8349. return;
  8350. }
  8351. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  8352. // this.isPushTitleList.push(this.sentenceTitle);
  8353. this.sentenceList[i].sentenceTitle = "";
  8354. },
  8355. setRightAnswer(s, i, j) {
  8356. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  8357. this.sentenceList[i].rightAnswer.push(s);
  8358. }
  8359. },
  8360. returnCard(r, i, j) {
  8361. this.sentenceList[i].rightAnswer.splice(j, 1);
  8362. },
  8363. addSentenceTool() {
  8364. for (var i = 0; i < this.sentenceList.length; i++) {
  8365. if (this.sentenceList[i].rightAnswer.length == 0) {
  8366. this.$message.error(`请将题目${i + 1}设置完整。`);
  8367. return;
  8368. }
  8369. if (
  8370. this.sentenceList[i].addSentence.length !=
  8371. this.sentenceList[i].rightAnswer.length
  8372. ) {
  8373. this.$message.error(`请将题目${i + 1}设置完整。`);
  8374. return;
  8375. }
  8376. }
  8377. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8378. this.taskCount
  8379. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  8380. this.sentenceList = [
  8381. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  8382. ];
  8383. this.dialogVisibleSentence = false;
  8384. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8385. // itemTaskIndex
  8386. // ].toolChoose[toolIndex].tool = [];
  8387. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8388. // itemTaskIndex
  8389. // ].toolChoose[toolIndex].tool.push(i);
  8390. if (
  8391. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8392. .toolChoose[this.toolIndex].tool != 47
  8393. ) {
  8394. this.addTools(47, this.taskCount, this.toolIndex);
  8395. }
  8396. },
  8397. addTableJson() {
  8398. // if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  8399. // this.$message.error("请将信息填写完整!");
  8400. // return;
  8401. // }
  8402. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8403. this.taskCount
  8404. ].toolChoose[this.toolIndex].tableJson = this.tableJson;
  8405. // this.tableJson = [{ text: "" }];
  8406. // this.dialogVisibleTable = false;
  8407. this.$message.success("上传成功");
  8408. if (
  8409. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8410. .toolChoose[this.toolIndex].tool != 48
  8411. ) {
  8412. this.addTools(48, this.taskCount, this.toolIndex);
  8413. }
  8414. },
  8415. addWordJson() {
  8416. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8417. this.taskCount
  8418. ].toolChoose[this.toolIndex].wordJson = this.wordJson;
  8419. // this.wordJson = [{ text: "" }];
  8420. // this.dialogVisibleWord = false;
  8421. this.$message.success("上传成功");
  8422. if (
  8423. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8424. .toolChoose[this.toolIndex].tool != 52
  8425. ) {
  8426. this.addTools(52, this.taskCount, this.toolIndex);
  8427. }
  8428. },
  8429. addMoreUpload() {
  8430. if (this.uploadJson.length == 0) {
  8431. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8432. this.taskCount
  8433. ].toolChoose[this.toolIndex].uploadJson = [];
  8434. } else {
  8435. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8436. this.taskCount
  8437. ].toolChoose[this.toolIndex].uploadJson = this.uploadJson;
  8438. }
  8439. this.uploadJson = [];
  8440. this.dialogVisibleMoreUpload = false;
  8441. if (
  8442. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8443. .toolChoose[this.toolIndex].tool != 50
  8444. ) {
  8445. this.addTools(50, this.taskCount, this.toolIndex);
  8446. }
  8447. },
  8448. addPreTime() {
  8449. if (this.preTime == 0) {
  8450. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8451. this.taskCount
  8452. ].toolChoose[this.toolIndex].preTime = 0;
  8453. } else {
  8454. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8455. this.taskCount
  8456. ].toolChoose[this.toolIndex].preTime = this.preTime;
  8457. }
  8458. this.preTime = 0;
  8459. this.dialogVisiblePreTime = false;
  8460. if (
  8461. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8462. .toolChoose[this.toolIndex].tool != 10
  8463. ) {
  8464. this.addTools(10, this.taskCount, this.toolIndex);
  8465. }
  8466. },
  8467. goToTask(i) {
  8468. this.toolIndexType = ''
  8469. if(this.isClickColor == (i + 1)){
  8470. if(this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen){
  8471. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  8472. }else{
  8473. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  8474. }
  8475. this.$forceUpdate();
  8476. return;
  8477. }
  8478. if(this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen){
  8479. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  8480. }else{
  8481. document.querySelectorAll(".basic_box")[0].scrollTop =
  8482. document.querySelectorAll(".taskBorder")[i].offsetTop - 100;
  8483. this.isClickColor = i + 1;
  8484. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  8485. }
  8486. this.$forceUpdate();
  8487. },
  8488. taskMove(type, index) {
  8489. this.$confirm(
  8490. "切换任务顺序将删除所有工具的提交成果,是否继续此操作?",
  8491. "提示",
  8492. {
  8493. confirmButtonText: "确定",
  8494. cancelButtonText: "取消",
  8495. type: "warning",
  8496. }
  8497. )
  8498. .then(() => {
  8499. if (type == 1) {
  8500. if (index > 0) {
  8501. let a = JSON.parse(
  8502. JSON.stringify(
  8503. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8504. index - 1
  8505. ]
  8506. )
  8507. );
  8508. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  8509. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8510. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8511. }
  8512. } else {
  8513. if (
  8514. index <
  8515. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  8516. ) {
  8517. let a = JSON.parse(
  8518. JSON.stringify(
  8519. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8520. index + 1
  8521. ]
  8522. )
  8523. );
  8524. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  8525. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8526. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8527. }
  8528. }
  8529. this.$forceUpdate();
  8530. })
  8531. .catch(() => {
  8532. return;
  8533. });
  8534. },
  8535. stageMove(type, index) {
  8536. if (type == 1) {
  8537. if (index > 0) {
  8538. let a = JSON.parse(
  8539. JSON.stringify(
  8540. this.unitJson3[index - 1]
  8541. )
  8542. );
  8543. let acid = JSON.parse(JSON.stringify(this.unitJson3[index - 1].chapterInfo[0].chapterid))
  8544. let bcid = JSON.parse(JSON.stringify(this.unitJson3[index].chapterInfo[0].chapterid))
  8545. this.unitJson3[index - 1] = this.unitJson3[index];
  8546. this.unitJson3[index] = a;
  8547. this.unitJson3[index - 1].chapterInfo[0].chapterid = acid;
  8548. this.unitJson3[index].chapterInfo[0].chapterid = bcid;
  8549. }
  8550. } else {
  8551. if (
  8552. index <
  8553. this.unitJson3.length - 1
  8554. ) {
  8555. let a = JSON.parse(
  8556. JSON.stringify(
  8557. this.unitJson3[
  8558. index + 1
  8559. ]
  8560. )
  8561. );
  8562. let acid = JSON.parse(JSON.stringify(this.unitJson3[index + 1].chapterInfo[0].chapterid))
  8563. let bcid = JSON.parse(JSON.stringify(this.unitJson3[index].chapterInfo[0].chapterid))
  8564. this.unitJson3[index + 1] =
  8565. this.unitJson3[index];
  8566. this.unitJson3[index] = a;
  8567. this.unitJson3[index + 1].chapterInfo[0].chapterid = acid;
  8568. this.unitJson3[index].chapterInfo[0].chapterid = bcid;
  8569. }
  8570. }
  8571. this.$forceUpdate();
  8572. },
  8573. addGroup(i) {
  8574. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  8575. this.groupJson.group.push({
  8576. name: "第" + (this.groupJson.group.length + 1) + "组",
  8577. });
  8578. },
  8579. deleteGroup(i) {
  8580. this.groupJson.group.splice(i, 1);
  8581. },
  8582. numberPan() {
  8583. if (/[^\d]/.test(this.groupJson.number) || this.groupJson.number < 2 || this.groupJson.number > 10) {
  8584. this.$message.error('请输入2-10的数字')
  8585. this.groupJson.number = ''
  8586. }
  8587. },
  8588. addGroupJson() {
  8589. for (var i = 0; i < this.groupJson.group.length; i++) {
  8590. if (!this.groupJson.group[i].name) {
  8591. this.$message.error("请将信息填写完整!");
  8592. return;
  8593. }
  8594. }
  8595. if (!this.groupJson.number) {
  8596. this.$message.error("请将信息填写完整!");
  8597. return;
  8598. }
  8599. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8600. this.taskCount
  8601. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  8602. JSON.stringify(this.groupJson)
  8603. );
  8604. this.dialogVisibleGroup = false;
  8605. this.groupJson = {};
  8606. if (
  8607. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8608. .toolChoose[this.toolIndex].tool != 49
  8609. ) {
  8610. this.addTools(49, this.taskCount, this.toolIndex);
  8611. }
  8612. },
  8613. updateTime(preTime) {
  8614. this.preTime = preTime;
  8615. },
  8616. InviteChange(val) {
  8617. console.log(val);
  8618. return;
  8619. let array = JSON.parse(JSON.stringify(val));
  8620. this.inviteCode = this.inviteCode.filter((el) => {
  8621. if (val.indexOf(el.cid) != -1) {
  8622. array.splice(array.indexOf(el.cid), 1);
  8623. return el;
  8624. }
  8625. });
  8626. for (var i = 0; i < array.length; i++) {
  8627. this.getInviteCode(array[i]);
  8628. }
  8629. },
  8630. async getInviteCode(cid) {
  8631. let code = this.randomNumber();
  8632. let params = {
  8633. code: code,
  8634. oid: this.oid,
  8635. };
  8636. let type = 1;
  8637. for (var i = 0; i < this.inviteCode.length; i++) {
  8638. if (this.inviteCode[i].cid != cid && code == this.inviteCode[i].ic) {
  8639. type = 2;
  8640. }
  8641. }
  8642. if (type == 2) {
  8643. this.getInviteCode(cid);
  8644. return;
  8645. }
  8646. const res = await this.ajax.get(
  8647. this.$store.state.api + "selectInviteCode2",
  8648. params
  8649. );
  8650. if (
  8651. res.data.length &&
  8652. res.data[0].length &&
  8653. res.data[0][0].courseId != this.cid
  8654. ) {
  8655. this.getInviteCode(cid);
  8656. return;
  8657. }
  8658. let array = [];
  8659. for (var i = 0; i < this.inviteCode.length; i++) {
  8660. array.push(this.inviteCode[i].cid);
  8661. }
  8662. if (array.indexOf(cid) != -1) {
  8663. this.inviteCode[array.indexOf(cid)].ic = code;
  8664. } else {
  8665. this.inviteCode.push({ cid: cid, ic: code });
  8666. }
  8667. },
  8668. OpenInviteD(cid) {
  8669. let array = [];
  8670. this.icode = "";
  8671. for (var i = 0; i < this.inviteCode.length; i++) {
  8672. array.push(this.inviteCode[i].cid);
  8673. }
  8674. if (array.indexOf(cid) != -1) {
  8675. this.icode = this.inviteCode[array.indexOf(cid)].ic;
  8676. }
  8677. this.inviteId = cid;
  8678. this.dialogVisibleInvite = true;
  8679. },
  8680. addInvite() {
  8681. let reg = /^[A-Za-z0-9]{4,}$/;
  8682. if (!reg.test(this.icode)) {
  8683. this.$message.error("请输入至少四位数字或英文组合的随机码");
  8684. return;
  8685. }
  8686. let type = 1;
  8687. for (var i = 0; i < this.inviteCode.length; i++) {
  8688. if (
  8689. this.inviteCode[i].cid != this.inviteId &&
  8690. this.icode == this.inviteCode[i].ic
  8691. ) {
  8692. type = 2;
  8693. }
  8694. }
  8695. if (type == 2) {
  8696. this.$message.error("已有此随机码,不能重复");
  8697. return;
  8698. }
  8699. let params = {
  8700. code: this.icode,
  8701. oid: this.oid,
  8702. };
  8703. this.ajax
  8704. .get(this.$store.state.api + "selectInviteCode", params)
  8705. .then((res) => {
  8706. if (
  8707. res.data.length &&
  8708. res.data[0].length &&
  8709. res.data[0][0].courseId != this.cid
  8710. ) {
  8711. this.$message.error("已有此随机码,不能重复");
  8712. return;
  8713. }
  8714. let array = [];
  8715. for (var i = 0; i < this.inviteCode.length; i++) {
  8716. array.push(this.inviteCode[i].cid);
  8717. }
  8718. if (array.indexOf(this.inviteId) != -1) {
  8719. this.inviteCode[array.indexOf(this.inviteId)].ic = this.icode;
  8720. } else {
  8721. this.inviteCode.push({ cid: this.inviteId, ic: this.icode });
  8722. }
  8723. this.icode = "";
  8724. this.dialogVisibleInvite = false;
  8725. })
  8726. .catch((err) => {
  8727. console.error(err);
  8728. });
  8729. },
  8730. randomNumber() {
  8731. // 随机生成两位数
  8732. // let num = Math.floor(Math.random() * 900) + 100;
  8733. // 生成 0 到 99 之间的随机整数
  8734. const randomNumber = Math.floor(Math.random() * 100);
  8735. // 如果随机数小于 10,补上前导零
  8736. const num =
  8737. randomNumber < 10 ? "0" + randomNumber : randomNumber.toString();
  8738. // 随机生成两个大写字母
  8739. let letters = "";
  8740. let chars2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  8741. for (let i = 0; i < 3; i++) {
  8742. letters += chars2.charAt(Math.floor(Math.random() * chars2.length));
  8743. }
  8744. // 随机生成两位数字和字母的组合
  8745. let mix = "";
  8746. let chars =
  8747. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  8748. for (let i = 0; i < 3; i++) {
  8749. let char = chars.charAt(Math.floor(Math.random() * chars.length));
  8750. mix += char;
  8751. }
  8752. // 随机选择一种类型
  8753. let type = Math.floor(Math.random() * 3);
  8754. return num;
  8755. // 根据类型输出结果
  8756. switch (type) {
  8757. case 0:
  8758. console.log(num); // 输出两位数
  8759. return num;
  8760. case 1:
  8761. console.log(letters); // 输出两个大写字母
  8762. return letters;
  8763. case 2:
  8764. console.log(mix); // 输出两位数字和字母的组合
  8765. return mix;
  8766. }
  8767. },
  8768. getPaste() {
  8769. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  8770. if (!iframe) {
  8771. return;
  8772. }
  8773. let copyData = iframe.contentWindow.copyData;
  8774. if (copyData && copyData.stageData && copyData.stageData.length) {
  8775. this.isPasteStage = true
  8776. }
  8777. if (copyData && copyData.selectData.length) {
  8778. this.isPasteChoice = true
  8779. }
  8780. if (copyData && copyData.tasksData && copyData.tasksData.length) {
  8781. this.isPasteTask = true
  8782. }
  8783. },
  8784. searchImage() {
  8785. var _this = this;
  8786. _this.imageList = []
  8787. if (!_this.searchImageValue) {
  8788. _this.sysPicVisible2 = true
  8789. return
  8790. }
  8791. _this.imageloading = true
  8792. _this.ajax.post('https://gpt.cocorobo.cn/search_image', {
  8793. page: _this.ppage,
  8794. pagesize: 9,
  8795. query: _this.searchImageValue
  8796. }).then(function (response) {
  8797. // console.log(response.data.data);
  8798. var data = response.data.FunctionResponse.result;
  8799. for (var i = 0; i < data.length; i++) {
  8800. _this.imageList.push({ url: data[i].thumbnail })
  8801. }
  8802. _this.imageloading = false
  8803. }).catch(function (error) {
  8804. console.log(error);
  8805. });
  8806. _this.sysPicVisible2 = true
  8807. },
  8808. changePicture() {
  8809. this.ppage++
  8810. this.searchImage()
  8811. },
  8812. resetImage() {
  8813. this.ppage = 1
  8814. this.searchImage()
  8815. },
  8816. jumpGj(i, j) {
  8817. if((i+1) != this.isClickColor){
  8818. this.isClickColor = (i + 1)
  8819. }
  8820. var a = document.scrollingElement;
  8821. this.toolIndexType = `gj${i}${j}`
  8822. let target = document.querySelector(`#gj${i}${j}`);
  8823. if (target) {
  8824. target.scrollIntoView(true);
  8825. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[j].isFold3 = true
  8826. setTimeout(() => {
  8827. this.$refs.unitBox.scrollTop = this.$refs.unitBox.scrollTop - 100;
  8828. }, 0);
  8829. }
  8830. },
  8831. dragStart(val, i, j) {
  8832. this.taskCount = j
  8833. this.oldIndex = i;
  8834. this.oldData = val;
  8835. },
  8836. dragOver(i) {
  8837. this.newIndex = i;
  8838. },
  8839. dragEnd() {
  8840. let newItems = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData];
  8841. // 删除老的节点
  8842. newItems.splice(this.oldIndex, 1);
  8843. // 在列表中目标位置增加新的节点
  8844. newItems.splice(this.newIndex, 0, this.oldData);
  8845. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData = [...newItems];
  8846. this.newIndex = "";
  8847. this.$forceUpdate()
  8848. },
  8849. },
  8850. beforeDestroy() {
  8851. clearTimeout(this.timer);
  8852. this.timer = null;
  8853. clearInterval(this.timer2);
  8854. this.timer2 = null;
  8855. clearInterval(this.pasteTimer);
  8856. this.pasteTimer = null;
  8857. },
  8858. beforeRouteLeave(to, from, next) {
  8859. clearTimeout(this.timer);
  8860. this.timer = null;
  8861. clearInterval(this.timer2);
  8862. this.timer2 = null;
  8863. clearInterval(this.pasteTimer);
  8864. this.pasteTimer = null;
  8865. next();
  8866. },
  8867. created() {
  8868. this.getStudent();
  8869. this.getTeacher();
  8870. this.getClass();
  8871. this.selectGrage();
  8872. this.getTemplate();
  8873. // this.selectType();
  8874. this.selectEva();
  8875. this.loading = false;
  8876. this.timer2 = setInterval(() => {
  8877. this.selectEva();
  8878. }, 5000);
  8879. this.pasteTimer = setInterval(() => {
  8880. this.getPaste();
  8881. }, 1000);
  8882. setTimeout(() => {
  8883. this.selectCourseDetail();
  8884. }, 500);
  8885. },
  8886. };
  8887. </script>
  8888. <style scoped>
  8889. @media screen and (max-width: 1280px) {
  8890. .mbCss {
  8891. flex-direction: column !important;
  8892. }
  8893. .pjCss {
  8894. width: 100% !important;
  8895. }
  8896. .evaCss {
  8897. width: 100% !important;
  8898. }
  8899. }
  8900. .dialog_diy>>>.el-dialog__header {
  8901. background: #3c3c3c !important;
  8902. padding: 15px 20px;
  8903. }
  8904. .dialog_diy>>>.el-dialog__title {
  8905. color: #fff;
  8906. }
  8907. .dialog_diy>>>.el-dialog__headerbtn {
  8908. top: 19px;
  8909. }
  8910. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  8911. color: #fff;
  8912. }
  8913. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  8914. color: #fff;
  8915. }
  8916. .dialog_diy>>>.el-dialog__body,
  8917. .dialog_diy>>>.el-dialog__footer {
  8918. background: #fafafa;
  8919. }
  8920. .dialog_diy3>>>.el-dialog__body,
  8921. .dialog_diy3>>>.el-dialog__footer {
  8922. background: #eee !important;
  8923. }
  8924. .dialog_diy3>>>.el-dialog__body {
  8925. padding: 20px 20px;
  8926. }
  8927. .dialog_diyStage>>>.el-dialog__body {
  8928. padding: 10px;
  8929. }
  8930. .source_diy>>>.el-dialog {
  8931. height: 100% !important;
  8932. margin: 0 auto !important;
  8933. }
  8934. .source_diy>>>.el-dialog__body {
  8935. height: calc(100% - 185px);
  8936. overflow: auto;
  8937. background: #e6eaf0;
  8938. }
  8939. .source_diy>>>.el-dialog__footer {
  8940. background: #e6eaf0 !important;
  8941. }
  8942. .left {
  8943. border-right: 1px solid rgb(60, 94, 143);
  8944. display: flex;
  8945. flex-direction: column;
  8946. align-items: center;
  8947. min-height: 600px;
  8948. width: 385px;
  8949. height: 80%;
  8950. }
  8951. .tips {
  8952. color: rgb(128, 128, 128);
  8953. font-size: 12px;
  8954. width: 270px;
  8955. margin: 40px;
  8956. }
  8957. .pb_content {
  8958. height: 100% !important;
  8959. /* margin: 0 20px 0 20px; */
  8960. }
  8961. .pb_content_body {
  8962. width: 100% !important;
  8963. height: 100%;
  8964. }
  8965. .info_solid {
  8966. width: 270px;
  8967. height: 30px;
  8968. border-left: 1px solid #bdbdbd;
  8969. margin: 10px 0px 10px 30px;
  8970. }
  8971. .info_steps {
  8972. width: 270px;
  8973. font-size: 0.875rem;
  8974. display: flex;
  8975. align-items: center;
  8976. }
  8977. .info_steps span:nth-child(1) {
  8978. width: 30px;
  8979. height: 30px;
  8980. background: rgba(0, 0, 0, 0.38);
  8981. display: block;
  8982. color: #fff;
  8983. border-radius: 40px;
  8984. text-align: center;
  8985. line-height: 30px;
  8986. }
  8987. .steps_active {
  8988. background: #3d67bc !important;
  8989. }
  8990. .info_steps span:nth-child(2) {
  8991. margin-left: 5px;
  8992. }
  8993. .right {
  8994. height: 100%;
  8995. width: 100%;
  8996. display: flex;
  8997. overflow: hidden;
  8998. flex-direction: column;
  8999. }
  9000. .basic_box {
  9001. margin: 0 auto;
  9002. position: relative;
  9003. padding: 0 20px 0 20px;
  9004. }
  9005. .basic_box_success {
  9006. width: 100%;
  9007. min-height: 455px;
  9008. padding: 50px 0;
  9009. position: relative;
  9010. text-align: center;
  9011. border-bottom: 1px solid #bfbfbf;
  9012. box-sizing: border-box;
  9013. display: flex;
  9014. align-items: center;
  9015. flex-direction: column;
  9016. justify-content: center;
  9017. }
  9018. .info_title {
  9019. font-size: 1.5em;
  9020. margin-right: 25px;
  9021. /* margin: 20px 30px 20px 30px; */
  9022. }
  9023. .bInfo_title {
  9024. text-align: left;
  9025. margin: 10px 0;
  9026. }
  9027. .small_title {
  9028. font-size: 14px;
  9029. line-height: 40px;
  9030. }
  9031. .chapter_beizhu {
  9032. font-size: 12px;
  9033. font-weight: bold;
  9034. float: right;
  9035. color: rgb(128, 128, 128);
  9036. margin-top: 5px;
  9037. }
  9038. .chapter_uploadBox1 {
  9039. text-align: left;
  9040. background-color: rgb(242, 242, 242);
  9041. width: 100%;
  9042. height: 67px;
  9043. padding: 0px 15px;
  9044. border-radius: 8px;
  9045. overflow: hidden;
  9046. font-size: 16px;
  9047. box-sizing: border-box;
  9048. position: relative;
  9049. }
  9050. .chapter_add {
  9051. width: 100%;
  9052. height: 32px;
  9053. margin-top: 15px;
  9054. cursor: pointer;
  9055. }
  9056. .chapter_add_l {
  9057. margin-left: 5px;
  9058. width: 30px;
  9059. height: 30px;
  9060. float: left;
  9061. border: 1px solid #aaa;
  9062. color: #aaa;
  9063. border-radius: 50%;
  9064. font-size: 25px;
  9065. text-align: center;
  9066. }
  9067. .chapter_add_r {
  9068. font-size: 18px;
  9069. height: 40px;
  9070. line-height: 30px;
  9071. text-indent: 10px;
  9072. color: #aaa;
  9073. }
  9074. .chapter_add_r span {
  9075. font-size: 12px;
  9076. color: rgb(204, 204, 204);
  9077. }
  9078. .chapter_add_input {
  9079. display: none;
  9080. }
  9081. .line {
  9082. width: 85%;
  9083. margin: 0 auto;
  9084. border-top: 1px solid #e5e5e5;
  9085. margin-top: 20px;
  9086. }
  9087. .info_btnBox {
  9088. width: calc(100%);
  9089. display: flex;
  9090. justify-content: center;
  9091. height: 80px;
  9092. align-items: center;
  9093. background: #fff;
  9094. margin: 0 auto;
  9095. border-top: 2px solid rgb(228, 232, 237);
  9096. box-sizing: border-box;
  9097. }
  9098. .info_btnBox2 {
  9099. width: calc(100%);
  9100. display: flex;
  9101. justify-content: center;
  9102. height: 20px;
  9103. align-items: center;
  9104. background: #fff;
  9105. margin: 0 auto;
  9106. border-top: 2px solid rgb(228, 232, 237);
  9107. box-sizing: border-box;
  9108. overflow: hidden;
  9109. cursor: pointer;
  9110. }
  9111. .info_btnBox3 {
  9112. width: calc(100%);
  9113. display: flex;
  9114. justify-content: flex-end;
  9115. padding: 0 20px;
  9116. height: 60px;
  9117. align-items: center;
  9118. background: unset;
  9119. margin: 0 auto;
  9120. /* border-top: 1px solid rgb(228, 232, 237); */
  9121. box-sizing: border-box;
  9122. overflow: hidden;
  9123. cursor: pointer;
  9124. background: #fff;
  9125. border-radius: 10px;
  9126. }
  9127. .info_btn+.info_btn {
  9128. margin-left: 15px;
  9129. }
  9130. .info_btn,
  9131. .teacherWord {
  9132. color: #fff;
  9133. background-color: #0f7eff;
  9134. padding: 8px 24px;
  9135. font-size: 0.9375rem;
  9136. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  9137. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  9138. min-width: 64px;
  9139. font-weight: 500;
  9140. border-radius: 4px;
  9141. box-sizing: border-box;
  9142. border: none;
  9143. cursor: pointer;
  9144. }
  9145. .teacherWord {
  9146. width: 105px !important;
  9147. text-align: center !important;
  9148. line-height: 36px !important;
  9149. padding: 0 !important;
  9150. font-size: 14px !important;
  9151. margin: 10px 0 !important;
  9152. }
  9153. .wordTeacher {
  9154. display: flex;
  9155. flex-direction: column;
  9156. width: 145px;
  9157. text-align: center;
  9158. font-size: 14px;
  9159. margin: 30px 0 0 10px;
  9160. background: #fff;
  9161. position: relative;
  9162. border-radius: 5px;
  9163. padding: 25px 0px;
  9164. }
  9165. .wordPic {
  9166. margin: 0 auto;
  9167. width: 60px;
  9168. height: 60px;
  9169. cursor: pointer;
  9170. }
  9171. .deleteWord {
  9172. width: 22px;
  9173. height: 22px;
  9174. position: absolute;
  9175. right: 5px;
  9176. top: -15px;
  9177. cursor: pointer;
  9178. display: none;
  9179. z-index: 999;
  9180. }
  9181. .wordPic>img,
  9182. .deleteWord>img,
  9183. .addToolImg>img {
  9184. width: 100%;
  9185. height: 100%;
  9186. }
  9187. .info_btn:hover {
  9188. background-color: #4f7cd5 !important;
  9189. }
  9190. .cru_selectBox {
  9191. display: flex;
  9192. margin: 24px 0 10px;
  9193. flex-wrap: nowrap;
  9194. white-space: nowrap;
  9195. overflow: auto;
  9196. position: relative;
  9197. height: 40px;
  9198. max-width: calc(100% - 175px);
  9199. }
  9200. .cru_selectBox::-webkit-scrollbar {
  9201. /*滚动条整体样式*/
  9202. width: 6px;
  9203. /*高宽分别对应横竖滚动条的尺寸*/
  9204. height: 6px;
  9205. }
  9206. /*定义滚动条轨道 内阴影+圆角*/
  9207. .cru_selectBox::-webkit-scrollbar-track {
  9208. border-radius: 10px;
  9209. background-color: #eee;
  9210. }
  9211. /*定义滑块 内阴影+圆角*/
  9212. .cru_selectBox::-webkit-scrollbar-thumb {
  9213. border-radius: 10px;
  9214. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  9215. background-color: rgba(0, 0, 0, 0.1);
  9216. }
  9217. .cru_line {
  9218. position: absolute;
  9219. bottom: 0px;
  9220. transition: all 0.5s;
  9221. left: 0px;
  9222. width: 50px;
  9223. height: 4px;
  9224. left: 10px;
  9225. border-radius: 2px;
  9226. background: #3681FC;
  9227. }
  9228. .cru_select {
  9229. font-size: 18px;
  9230. margin-right: 20px;
  9231. margin-left: 5px;
  9232. cursor: pointer;
  9233. color: #0E1E33;
  9234. }
  9235. .cru_select:hover{
  9236. color: #3681FC !important;
  9237. }
  9238. .cru_selected {
  9239. color: #3681FC !important;
  9240. font-weight: bold;
  9241. }
  9242. .chapter_box{
  9243. margin-top: 15px;
  9244. width: 100%;
  9245. padding: 10px 20px;
  9246. background: #fff;
  9247. border-radius: 8px;
  9248. box-sizing: border-box;
  9249. }
  9250. .chapter_contentbox {
  9251. display: flex;
  9252. align-items: center;
  9253. /* margin-top: 15px; */
  9254. }
  9255. .chapter_contentbox .cc_title {
  9256. margin: 0px;
  9257. color: black;
  9258. display: block;
  9259. white-space: nowrap;
  9260. overflow: hidden;
  9261. text-overflow: ellipsis;
  9262. margin-right: 20px;
  9263. font-size: 18px;
  9264. height: 20px;
  9265. line-height: 22px;
  9266. min-width: fit-content;
  9267. display: flex;
  9268. }
  9269. .chapter_contentbox .cc_title::before {
  9270. content: '';
  9271. height: 100%;
  9272. width: 3px;
  9273. background: #3681FC;
  9274. border-radius: 3px;
  9275. opacity: 1;
  9276. display: block;
  9277. margin-right: 10px;
  9278. }
  9279. .chapter_contentbox .cc_input {
  9280. width: 100%;
  9281. display: flex;
  9282. }
  9283. .show_taskD {
  9284. min-width: fit-content;
  9285. margin-left: 10px;
  9286. display: flex;
  9287. align-items: center;
  9288. font-size: 14px;
  9289. cursor: pointer;
  9290. color: #717C8D;
  9291. }
  9292. .show_taskD>img {
  9293. width: 15px;
  9294. margin-right: 5px;
  9295. transition: .2s all;
  9296. transform: rotate(-90deg);
  9297. }
  9298. .show_taskD.show>img {
  9299. transform: rotate(0deg);
  9300. }
  9301. .show_toolD {
  9302. min-width: fit-content;
  9303. margin-left: 10px;
  9304. display: flex;
  9305. align-items: center;
  9306. font-size: 14px;
  9307. cursor: pointer;
  9308. color: #717C8D;
  9309. position: absolute;
  9310. right: 45px;
  9311. top: 5px;
  9312. }
  9313. .show_toolD>img {
  9314. width: 15px;
  9315. margin-right: 5px;
  9316. transition: .2s all;
  9317. transform: rotate(-90deg);
  9318. }
  9319. .show_toolD.show>img {
  9320. transform: rotate(0deg);
  9321. }
  9322. .remove {
  9323. background-image: url("../../assets/icon/new/delete_u.png");
  9324. cursor: pointer;
  9325. opacity: 0.5;
  9326. width: 30px;
  9327. min-width: 30px;
  9328. height: 30px;
  9329. background-size: 100% 100%;
  9330. background-repeat: no-repeat;
  9331. margin-left: 10px;
  9332. }
  9333. .remove1 {
  9334. background-image: url("../../assets/remove1.png");
  9335. background-repeat: no-repeat;
  9336. background-position: 5px 10px;
  9337. width: 40px;
  9338. height: 50px;
  9339. cursor: pointer;
  9340. margin-left: 10px;
  9341. }
  9342. .binfo_input {
  9343. width: 100%;
  9344. margin: 0;
  9345. padding: 12px 14px;
  9346. display: block;
  9347. min-width: 0;
  9348. outline: none;
  9349. box-sizing: border-box;
  9350. background: none;
  9351. border: none;
  9352. border-radius: 4px;
  9353. background: #fff;
  9354. font-size: 16px;
  9355. resize: none;
  9356. font-family: 'Microsoft YaHei';
  9357. min-height: 48px;
  9358. /* border: 1px solid #3682fc00; */
  9359. border: 1.5px solid #CAD1DC;
  9360. }
  9361. .binfo_textarea {
  9362. border: 1.5px solid #CAD1DC;
  9363. font-size: 16px;
  9364. resize: none;
  9365. background: #f6f6f6;
  9366. font-family: 'Microsoft YaHei';
  9367. }
  9368. .binfo_input:focus-visible {
  9369. border: 1.5px solid #3681FC !important;
  9370. }
  9371. .time {
  9372. display: flex;
  9373. margin: 35px 0 80px 0;
  9374. }
  9375. .chapter_btnbox {
  9376. width: 160px;
  9377. border-radius: 5px;
  9378. border: 2px dashed gray;
  9379. display: flex;
  9380. padding: 8px 50px;
  9381. align-items: center;
  9382. justify-content: center;
  9383. margin: 30px auto 0;
  9384. cursor: pointer;
  9385. }
  9386. .icon_add {
  9387. position: relative;
  9388. width: 24px;
  9389. padding-top: 20px;
  9390. border-radius: 100%;
  9391. border-width: 2px;
  9392. border-style: solid;
  9393. border-color: gray;
  9394. }
  9395. .icon_add i:nth-child(1) {
  9396. position: absolute;
  9397. left: 50%;
  9398. top: 50%;
  9399. height: 60%;
  9400. transform: translate(-50%, -50%);
  9401. border-width: 1px;
  9402. border-style: solid;
  9403. border-color: inherit;
  9404. }
  9405. .icon_add i:nth-child(2) {
  9406. position: absolute;
  9407. top: 50%;
  9408. left: 50%;
  9409. width: 60%;
  9410. transform: translate(-50%, -50%);
  9411. border-width: 1px;
  9412. border-style: solid;
  9413. border-color: inherit;
  9414. }
  9415. .chapter_btn_w {
  9416. font-size: 0.9375rem;
  9417. font-weight: bold;
  9418. color: gray;
  9419. margin-left: 20px;
  9420. }
  9421. .disUoloadSty>>>.el-icon-plus {
  9422. display: none !important;
  9423. /* 上传按钮隐藏 */
  9424. }
  9425. .imgLeft {
  9426. margin: 15px 0;
  9427. }
  9428. .add_info_box {
  9429. margin: 0 0 0 auto;
  9430. display: flex;
  9431. flex-wrap: wrap;
  9432. }
  9433. .add_info_box button {
  9434. margin: 0 5px 10px 0;
  9435. }
  9436. .add_info_box2 {
  9437. display: flex;
  9438. align-items: center;
  9439. flex-wrap: wrap;
  9440. }
  9441. .add_info_box2::after {
  9442. content: "提示:支持上传10M以内的PPT和Word文件、5M以内的Excel文件, PDF文件不限制大小。";
  9443. color: red;
  9444. font-size: 14px;
  9445. margin-bottom: 10px;
  9446. }
  9447. .add_chapters_box {
  9448. text-align: left;
  9449. background-color: #fff;
  9450. width: 100%;
  9451. border-radius: 4px;
  9452. font-size: 16px;
  9453. box-sizing: border-box;
  9454. position: relative;
  9455. padding: 0 15px;
  9456. height: auto;
  9457. overflow-y: auto;
  9458. overflow-x: hidden;
  9459. border: 1px solid #CAD1DC;
  9460. }
  9461. .add_chapters_box.add_c_none {
  9462. display: flex;
  9463. justify-content: center;
  9464. align-items: center;
  9465. padding: 15px;
  9466. }
  9467. .add_c_none>img {
  9468. width: 25px;
  9469. }
  9470. .add_chapters_box.add_c_none>span {
  9471. font-size: 14px;
  9472. font-weight: 400;
  9473. margin: 0 0 5px 5px;
  9474. }
  9475. .homework_box {
  9476. display: flex;
  9477. align-items: flex-start;
  9478. flex-wrap: wrap;
  9479. margin: 15px 0 0 0;
  9480. flex-direction: column;
  9481. align-content: flex-start;
  9482. }
  9483. .course_homework {
  9484. display: flex;
  9485. justify-content: center;
  9486. flex-direction: row;
  9487. align-items: center;
  9488. margin: 0 10px 0 0;
  9489. }
  9490. .course_homework>>>.el-input__inner {
  9491. width: 140px;
  9492. margin-left: 15px;
  9493. }
  9494. .chapter_upload_move {
  9495. position: relative;
  9496. background-color: #fff;
  9497. position: absolute;
  9498. width: 100%;
  9499. top: 0px;
  9500. left: 0px;
  9501. border: 1px solid #eee;
  9502. border-radius: 5px;
  9503. transition: width 2s;
  9504. -moz-transition: width 2s;
  9505. -webkit-transition: width 2s;
  9506. -o-transition: width 2s;
  9507. }
  9508. .chapter_upload_l_i {
  9509. background-image: url("../../assets/icon.png");
  9510. background-position: 3px -165px;
  9511. width: 30px;
  9512. height: 30px;
  9513. margin: 10px auto 0 auto;
  9514. }
  9515. .course_input_box {
  9516. display: flex;
  9517. margin-right: 20px;
  9518. width: 100%;
  9519. align-items: center;
  9520. position: relative;
  9521. }
  9522. .course_input_box>.binfo_input {
  9523. width: calc(100% - 0 - 200px - 20px);
  9524. margin: 0 10px;
  9525. }
  9526. .bb_courseIcon {
  9527. width: 57px;
  9528. height: 45px;
  9529. background: #F0F4FA;
  9530. border-radius: 5px 0px 0px 5px;
  9531. display: flex;
  9532. align-items: center;
  9533. justify-content: center;
  9534. border-right: 1.5px solid rgb(202, 209, 220);
  9535. box-sizing: border-box;
  9536. position: absolute;
  9537. left:1.5px
  9538. }
  9539. .bb_courseIcon>img {
  9540. width: 25px;
  9541. height: auto
  9542. }
  9543. .big_box {
  9544. /* margin-top: 20px; */
  9545. display: flex;
  9546. justify-content: space-between;
  9547. /* border-bottom: 1px solid #E0E2ED; */
  9548. }
  9549. .left_first {
  9550. display: flex;
  9551. flex-direction: column;
  9552. flex-wrap: nowrap;
  9553. width: calc(100% - 310px);
  9554. padding: 20px;
  9555. box-sizing: border-box;
  9556. background: #fff;
  9557. border-radius: 5px;
  9558. }
  9559. .right_first {
  9560. width: 300px;
  9561. display: flex;
  9562. align-items: center;
  9563. justify-content: center;
  9564. /* border-left: 1px solid #E0E2ED; */
  9565. box-sizing: border-box;
  9566. padding: 20px;
  9567. flex-direction: column;
  9568. background: #fff;
  9569. border-radius: 5px;
  9570. }
  9571. .ai_box {
  9572. width: 204px;
  9573. display: flex;
  9574. justify-content: flex-end;
  9575. margin-bottom: 15px;
  9576. }
  9577. .ai_content {
  9578. display: flex;
  9579. align-items: center;
  9580. font-size: 14px;
  9581. padding: 7px 20px;
  9582. box-sizing: border-box;
  9583. box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.16);
  9584. border-radius: 12px;
  9585. font-weight: 700;
  9586. cursor: pointer;
  9587. }
  9588. .ai_content>img {
  9589. width: 40px;
  9590. margin-right: 5px;
  9591. }
  9592. .c_info_title {
  9593. padding: 15px 0 15px 0;
  9594. font-size: 16px;
  9595. font-weight: bold;
  9596. margin: 0 0 0 20px;
  9597. box-sizing: border-box;
  9598. display: flex;
  9599. align-items: center;
  9600. line-height:20px;
  9601. }
  9602. .c_info_title::before {
  9603. content: '';
  9604. display: block;
  9605. width: 3px;
  9606. height: 20px;
  9607. background: #0061FF;
  9608. border-radius: 3px;
  9609. margin: 0 5px 0 0;
  9610. }
  9611. .right_title {
  9612. height: 30px;
  9613. padding: 15px 0 15px 20px;
  9614. border-bottom: 1px solid #f2f2f2;
  9615. font-size: 1.5em;
  9616. font-weight: bold;
  9617. color: #0f7eff;
  9618. margin: 0 auto;
  9619. }
  9620. .people {
  9621. border: 1px solid rgb(229 229 229);
  9622. /* height: 495px; */
  9623. height: 350px;
  9624. border-radius: 5px;
  9625. width: 100%;
  9626. overflow: auto;
  9627. }
  9628. .people_top {
  9629. display: flex;
  9630. width: 100%;
  9631. /* justify-content: space-between; */
  9632. /* align-items: center; */
  9633. flex-direction: column;
  9634. padding: 10px 10px 0;
  9635. box-sizing: border-box;
  9636. }
  9637. .people_nav,
  9638. .people_top_right {
  9639. /* padding: 20px 0 0 20px; */
  9640. }
  9641. .people_top_right {
  9642. height: 40px;
  9643. margin-bottom: 10px;
  9644. }
  9645. .people_search {
  9646. display: flex;
  9647. position: relative;
  9648. }
  9649. .people_search>>>.el-input__inner {
  9650. /* height: 25px; */
  9651. width: 95%;
  9652. }
  9653. .search_img {
  9654. width: 20px;
  9655. height: 20px;
  9656. position: absolute;
  9657. right: 30px;
  9658. top: 50%;
  9659. transform: translateY(-50%);
  9660. }
  9661. .search_img>img {
  9662. width: 100%;
  9663. height: 100%;
  9664. }
  9665. .people_name {
  9666. display: flex;
  9667. justify-content: flex-start;
  9668. padding: 20px 10px;
  9669. flex-direction: column;
  9670. flex-wrap: wrap;
  9671. }
  9672. .p_box {
  9673. position: relative;
  9674. }
  9675. .people_name>>>.el-checkbox {
  9676. width: 100%;
  9677. display: flex;
  9678. align-items: center;
  9679. margin-bottom: 10px;
  9680. }
  9681. .people_name>>>.el-checkbox__label {
  9682. text-overflow: ellipsis;
  9683. overflow: hidden;
  9684. width: calc(100%);
  9685. }
  9686. .people_name2>>>.el-checkbox__label {
  9687. width: calc(100% - 130px);
  9688. }
  9689. .inviteCode {
  9690. position: absolute;
  9691. right: 30px;
  9692. color: #237ade;
  9693. top: 0;
  9694. cursor: pointer;
  9695. font-size: 13px;
  9696. }
  9697. .noneInvite {
  9698. color: #a8a8a8;
  9699. }
  9700. .inviteImg {
  9701. position: absolute;
  9702. right: 5px;
  9703. top: 0;
  9704. width: 20px;
  9705. }
  9706. .right_img {
  9707. width: 150px;
  9708. height: 150px;
  9709. margin: 0 auto;
  9710. }
  9711. .right_img>img {
  9712. width: 100%;
  9713. height: 100%;
  9714. }
  9715. .number {
  9716. margin-top: 20px;
  9717. color: #4aa6ff;
  9718. text-decoration: underline;
  9719. }
  9720. .success_button {
  9721. display: flex;
  9722. text-align: center;
  9723. margin: 5% 0 auto;
  9724. flex-direction: row;
  9725. justify-content: center;
  9726. }
  9727. .look_course {
  9728. margin-right: 40px;
  9729. background: #3d67bc;
  9730. width: 200px;
  9731. height: 35px;
  9732. line-height: 35px;
  9733. color: #fff;
  9734. text-align: center;
  9735. font-size: 14px;
  9736. border-radius: 5px;
  9737. cursor: pointer;
  9738. }
  9739. .attend_others {
  9740. width: 250px;
  9741. background: #4fb13c;
  9742. height: 35px;
  9743. line-height: 35px;
  9744. color: #fff;
  9745. text-align: center;
  9746. font-size: 14px;
  9747. border-radius: 5px;
  9748. cursor: pointer;
  9749. }
  9750. .dialog_diy2>>>.el-dialog__body {
  9751. text-align: center;
  9752. }
  9753. .write_togother {
  9754. position: absolute;
  9755. right: 45px;
  9756. display: flex;
  9757. top: 5%;
  9758. }
  9759. .write_people {
  9760. font-size: 14px;
  9761. line-height: 50px;
  9762. padding-right: 10px;
  9763. }
  9764. .end_write {
  9765. background: #3d67bc;
  9766. color: #fff;
  9767. width: 100px;
  9768. height: 35px;
  9769. line-height: 35px;
  9770. text-align: center;
  9771. font-size: 14px;
  9772. border-radius: 5px;
  9773. cursor: pointer;
  9774. }
  9775. .chapter_upload+.chapter_upload {
  9776. /* margin-top: 15px; */
  9777. border-top: 1px solid #E7EBF1;
  9778. }
  9779. .chapter_upload {
  9780. height: 45px;
  9781. position: relative;
  9782. display: flex;
  9783. align-items: center;
  9784. width: 100%;
  9785. min-height: 45px;
  9786. /* box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16); */
  9787. /* border-radius: 4px; */
  9788. /* overflow: hidden; */
  9789. box-sizing: border-box;
  9790. }
  9791. .chapter_upload_drag{
  9792. position: absolute;
  9793. cursor: pointer;
  9794. width: 16px;
  9795. height: 16px;
  9796. left: -9px;
  9797. background-image: url("../../assets/icon/new/icon_course_drag.png");
  9798. background-size: 100% 100%;
  9799. z-index: 10;
  9800. }
  9801. .chapter_upload_t {
  9802. background-color: #fff;
  9803. position: absolute;
  9804. height: 100%;
  9805. top: 0px;
  9806. left: 0px;
  9807. box-sizing: border-box;
  9808. }
  9809. .chapter_upload_o {
  9810. width: 100%;
  9811. height: 100%;
  9812. position: relative;
  9813. z-index: 1;
  9814. }
  9815. .chapter_upload_ic {
  9816. margin: 0 15px 0px auto;
  9817. display: flex;
  9818. align-items: center;
  9819. }
  9820. .chapter_upload_ic_l {
  9821. width: 50px;
  9822. height: 50px;
  9823. float: left;
  9824. }
  9825. .chapter_upload_ic_l div {
  9826. width: 30px;
  9827. height: 35px;
  9828. background: url("../../assets/icon/icon.png");
  9829. }
  9830. .chapter_upload_ic_edit {
  9831. height: 100%;
  9832. display: flex;
  9833. align-items: center;
  9834. cursor: pointer;
  9835. margin: 0 10px 0 0;
  9836. }
  9837. .chapter_upload_ic_edit div {
  9838. width: 18px;
  9839. height: 18px;
  9840. background-image: url("../../assets/icon/new/edit_u.png");
  9841. background-size: 100% 100%;
  9842. }
  9843. .chapter_upload_ic_r {
  9844. height: 100%;
  9845. display: flex;
  9846. align-items: center;
  9847. cursor: pointer;
  9848. }
  9849. .chapter_upload_ic_r div {
  9850. width: 18px;
  9851. height: 18px;
  9852. background-image: url("../../assets/icon/new/delete_u.png");
  9853. background-size: 100% 100%;
  9854. }
  9855. .chapter_upload_n {
  9856. display: flex;
  9857. text-indent: 10px;
  9858. text-decoration: none;
  9859. text-overflow: ellipsis;
  9860. white-space: nowrap;
  9861. overflow: hidden;
  9862. width: 55%;
  9863. margin-left: 10px;
  9864. cursor: pointer;
  9865. margin-top: 2px;
  9866. align-items: center;
  9867. }
  9868. .chapter_upload_l_i2,
  9869. .chapter_upload_l_i3,
  9870. .chapter_upload_l_i8,
  9871. .chapter_upload_l_i6,
  9872. .chapter_upload_l_i12,
  9873. .chapter_upload_l_i14,
  9874. .chapter_upload_l_i13 {
  9875. width: 15px;
  9876. height: 15px;
  9877. background-size: 100% 100%;
  9878. }
  9879. .chapter_upload_l_i2 {
  9880. background-image: url("../../assets/icon/new/u_word.png");
  9881. }
  9882. .chapter_upload_l_i3 {
  9883. background-image: url("../../assets/icon/new/u_video.png");
  9884. }
  9885. .chapter_upload_l_i8 {
  9886. background-image: url("../../assets/icon/new/u_url.png");
  9887. }
  9888. .chapter_upload_l_i14 {
  9889. background-image: url("../../assets/icon/new/u_source.png");
  9890. }
  9891. .chapter_upload_l_i6 {
  9892. background-image: url("../../assets/icon/new/u_picture.png");
  9893. }
  9894. .chapter_upload_l_i12 {
  9895. background-image: url("../../assets/icon/new/u_word.png");
  9896. }
  9897. .chapter_upload_l_i13 {
  9898. background-image: url("../../assets/icon/new/u_img.png");
  9899. }
  9900. .chapter_upload_noSee {
  9901. background-image: url("../../assets/icon/new/u_noUpload.png");
  9902. width: 18px;
  9903. height: 18px;
  9904. background-size: 100% 100%;
  9905. display: block;
  9906. margin-right: 10px;
  9907. }
  9908. .chapter_upload_ud {
  9909. display: flex;
  9910. flex-direction: row;
  9911. justify-content: center;
  9912. margin: 0 10px 0 0;
  9913. }
  9914. .chapter_upload_ud>.chapter_upload_up {
  9915. margin-bottom: 0;
  9916. margin-right: 10px;
  9917. }
  9918. .chapter_upload_down,
  9919. .chapter_upload_up {
  9920. width: 20px;
  9921. height: 20px;
  9922. background: #e4eaf2;
  9923. cursor: pointer;
  9924. margin: 0 auto;
  9925. border-radius: 5px;
  9926. display: flex;
  9927. justify-content: center;
  9928. align-items: center;
  9929. }
  9930. .chapter_upload_up::after,
  9931. .chapter_upload_down::after {
  9932. content: '';
  9933. background-image: url('../../assets/icon/new/downBtn.png');
  9934. width: 13px;
  9935. height: 13px;
  9936. background-size: 100% 100%;
  9937. display: block;
  9938. }
  9939. .chapter_upload_up::after {
  9940. background-image: url('../../assets/icon/new/upBtn.png') !important;
  9941. }
  9942. .chapter_upload_up {
  9943. margin-bottom: 5px;
  9944. }
  9945. .addWordStyle {
  9946. display: flex;
  9947. flex-direction: row;
  9948. justify-content: flex-start;
  9949. overflow-x: auto;
  9950. white-space: nowrap;
  9951. flex-wrap: wrap;
  9952. }
  9953. /* table 样式 */
  9954. .cont>>>table {
  9955. border-top: 1px solid #ccc;
  9956. border-left: 1px solid #ccc;
  9957. }
  9958. .cont>>>table td,
  9959. .cont>>>table th {
  9960. border-bottom: 1px solid #ccc;
  9961. border-right: 1px solid #ccc;
  9962. /* padding: 20px 5px; */
  9963. padding: 5px 10px;
  9964. max-width: 0px;
  9965. height: 30px;
  9966. vertical-align: baseline;
  9967. }
  9968. .cont>>>table th {
  9969. border-bottom: 2px solid #ccc;
  9970. text-align: center;
  9971. }
  9972. /* blockquote 样式 */
  9973. .cont>>>blockquote {
  9974. display: block;
  9975. border-left: 8px solid #d0e5f2;
  9976. padding: 5px 10px;
  9977. margin: 10px 0;
  9978. line-height: 1.4;
  9979. font-size: 100%;
  9980. background-color: #f1f1f1;
  9981. }
  9982. /* code 样式 */
  9983. .cont>>>code {
  9984. display: inline-block;
  9985. /* *display: inline; */
  9986. zoom: 1;
  9987. background-color: #f1f1f1;
  9988. border-radius: 3px;
  9989. padding: 3px 5px;
  9990. margin: 0 3px;
  9991. }
  9992. .cont>>>pre code {
  9993. display: block;
  9994. }
  9995. /* ul ol 样式 */
  9996. .cont>>>ul,
  9997. ol {
  9998. margin: 10px 0 10px 20px;
  9999. }
  10000. .wordbox {
  10001. display: flex;
  10002. flex-wrap: wrap;
  10003. cursor: pointer;
  10004. width: 100%;
  10005. }
  10006. .checkword {
  10007. width: 22px;
  10008. height: 22px;
  10009. margin: 10px auto 0;
  10010. cursor: pointer;
  10011. }
  10012. .checkword img {
  10013. width: 100%;
  10014. }
  10015. .stepBg {
  10016. display: flex;
  10017. justify-content: space-between;
  10018. align-items: center;
  10019. background: #fff;
  10020. width: calc(100%);
  10021. margin: 0 auto;
  10022. }
  10023. .stepBorder {
  10024. height: 3px !important;
  10025. background: #CAD1DC;
  10026. width: 100px !important;
  10027. margin: 0 15px !important;
  10028. position: relative;
  10029. }
  10030. .border-active {
  10031. background: #3681FC !important
  10032. }
  10033. .border-active::before,
  10034. .border-active::after {
  10035. border-color: #3681FC !important
  10036. }
  10037. .stepBorder::before,
  10038. .stepBorder::after {
  10039. content: '';
  10040. width: 9px;
  10041. height: 9px;
  10042. background: #FFFFFF;
  10043. opacity: 1;
  10044. border: 2px solid #ACB4BF;
  10045. display: block;
  10046. box-sizing: border-box;
  10047. border-radius: 50%;
  10048. position: absolute;
  10049. top: 50%;
  10050. transform: translateY(-50%);
  10051. }
  10052. .stepBorder::after {
  10053. right: -9px;
  10054. }
  10055. .stepTop {
  10056. width: 100%;
  10057. /* border-radius: 10px; */
  10058. display: flex;
  10059. justify-content: center;
  10060. align-items: center;
  10061. flex-wrap: nowrap;
  10062. background: #fff;
  10063. /* top: 18%; */
  10064. height: 80px;
  10065. border-bottom: 2px solid rgb(228, 232, 237);
  10066. box-sizing: border-box;
  10067. }
  10068. .stepTop2 {
  10069. width: 100%;
  10070. /* border-radius: 10px; */
  10071. display: flex;
  10072. justify-content: center;
  10073. align-items: center;
  10074. flex-wrap: nowrap;
  10075. background: #fff;
  10076. /* top: 18%; */
  10077. height: 20px;
  10078. border-bottom: 2px solid rgb(228, 232, 237);
  10079. box-sizing: border-box;
  10080. overflow: hidden;
  10081. cursor: pointer;
  10082. }
  10083. .stepTop>div img {
  10084. width: 100%;
  10085. }
  10086. .stepTop>div {
  10087. height: 50px;
  10088. width: 180px;
  10089. cursor: pointer;
  10090. margin: 10px 0;
  10091. border-radius: 10px;
  10092. }
  10093. .first,
  10094. .second,
  10095. .third,
  10096. .four {
  10097. background: #3681FC;
  10098. height: 90px;
  10099. color: #fff;
  10100. display: flex;
  10101. flex-direction: row;
  10102. align-items: center;
  10103. justify-content: center;
  10104. }
  10105. .first>div:nth-child(1),
  10106. .second>div:nth-child(1),
  10107. .third>div:nth-child(1),
  10108. .four>div:nth-child(1) {
  10109. margin: 5px 10px 0 0;
  10110. width: 2rem;
  10111. }
  10112. .firstNo,
  10113. .secondNo,
  10114. .thirdNo,
  10115. .fourNo {
  10116. background: #e7e7e7;
  10117. color: #adadad;
  10118. display: flex;
  10119. flex-direction: row;
  10120. align-items: center;
  10121. justify-content: center;
  10122. }
  10123. .firstNo>div:nth-child(1),
  10124. .secondNo>div:nth-child(1),
  10125. .thirdNo>div:nth-child(1),
  10126. .fourNo>div:nth-child(1) {
  10127. margin: 5px 10px 0 0;
  10128. width: 2rem;
  10129. }
  10130. .uploadWidth>>>.el-upload {
  10131. width: 60px;
  10132. height: 60px;
  10133. position: relative;
  10134. }
  10135. .addPeople {
  10136. background: #fa6060;
  10137. width: 150px;
  10138. height: 40px;
  10139. color: #fff;
  10140. border-radius: 5px;
  10141. text-align: center;
  10142. line-height: 40px;
  10143. font-size: 14px;
  10144. cursor: pointer;
  10145. }
  10146. .kcImg {
  10147. width: 60px;
  10148. margin-left: 10px;
  10149. }
  10150. .zyImg {
  10151. width: 55px;
  10152. margin: 0 10px;
  10153. }
  10154. .deleteZy {
  10155. width: 20px;
  10156. position: absolute;
  10157. top: 5px;
  10158. right: 5px;
  10159. cursor: pointer;
  10160. }
  10161. .kcImg>img,
  10162. .zyImg>img,
  10163. .deleteZy>img {
  10164. width: 100%;
  10165. height: 100%;
  10166. }
  10167. .zyBox {
  10168. display: flex;
  10169. flex-direction: row;
  10170. align-items: center;
  10171. background: #67d37d;
  10172. color: #fff;
  10173. width: 210px;
  10174. margin: 20px 20px 0 0;
  10175. border-radius: 10px;
  10176. height: 70px;
  10177. position: relative;
  10178. }
  10179. .upCss {
  10180. display: flex;
  10181. flex-direction: row;
  10182. justify-content: flex-start;
  10183. }
  10184. .upCss>>>.el-icon-plus {
  10185. position: none !important;
  10186. width: 200px;
  10187. height: 100px;
  10188. display: flex;
  10189. flex-wrap: nowrap;
  10190. flex-direction: column;
  10191. align-items: center;
  10192. justify-content: center;
  10193. border: 1px dashed #ccc;
  10194. min-width: 78px;
  10195. min-height: 100px;
  10196. z-index: 999;
  10197. }
  10198. .upCss>>>.el-upload-list__item-name {
  10199. width: 100px;
  10200. white-space: nowrap;
  10201. overflow: hidden;
  10202. text-overflow: ellipsis;
  10203. }
  10204. .upCss>>>.el-upload-list__item .el-icon-close {
  10205. font-size: 20px;
  10206. z-index: 9999;
  10207. }
  10208. .addStageImg {
  10209. min-width: 20px;
  10210. min-height: 20px;
  10211. width: 20px;
  10212. height: 20px;
  10213. cursor: pointer;
  10214. }
  10215. .addHW {
  10216. width: 28px;
  10217. height: 28px;
  10218. cursor: pointer;
  10219. }
  10220. .addStageImg>img,
  10221. .addHW>img {
  10222. width: 100%;
  10223. height: 100%;
  10224. }
  10225. .addNewPP>>>.el-dialog__body {
  10226. padding: 5px 20px;
  10227. }
  10228. .addNewPP>>>.el-dialog {
  10229. margin-top: 5vh !important;
  10230. }
  10231. .addNewPP2>>>.el-dialog__body {
  10232. padding: 5px 0;
  10233. }
  10234. .addNewPP2>>>.el-dialog {
  10235. margin-top: 5vh !important;
  10236. }
  10237. .isHeight {
  10238. height: 680px;
  10239. }
  10240. .toolChoose {
  10241. display: flex;
  10242. /* width: 100%; */
  10243. flex-direction: row;
  10244. flex-wrap: wrap;
  10245. }
  10246. .tool {
  10247. display: flex;
  10248. flex-direction: column;
  10249. flex-wrap: nowrap;
  10250. width: fit-content;
  10251. margin: 10px 0 10px 0;
  10252. align-items: center;
  10253. }
  10254. .tool+.tool {
  10255. margin-right: 45px;
  10256. }
  10257. .whiteBIcon {
  10258. width: 80px;
  10259. cursor: pointer;
  10260. display: flex;
  10261. flex-direction: column;
  10262. flex-wrap: nowrap;
  10263. align-items: center;
  10264. font-size: 14px;
  10265. }
  10266. .whiteBIcon>img,
  10267. .toolIcon>img,
  10268. .arrow>img {
  10269. width: 100%;
  10270. height: 100%;
  10271. }
  10272. .check img {
  10273. width: 20px;
  10274. height: 20px;
  10275. }
  10276. .whiteBIcon>img {
  10277. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  10278. border-radius: 15px;
  10279. }
  10280. .whiteBIcon>div:nth-child(2) {
  10281. height: 20px;
  10282. line-height: 20px;
  10283. }
  10284. .check {
  10285. /* width: 20px;
  10286. height: 20px; */
  10287. cursor: pointer;
  10288. margin: 10px 0 0;
  10289. }
  10290. .checkDiv {
  10291. display: flex;
  10292. align-items: center;
  10293. }
  10294. .checkDiv span {
  10295. margin-left: 5px;
  10296. color: #858585;
  10297. }
  10298. .customWidth>>>.el-dialog {
  10299. min-width: 500px !important;
  10300. }
  10301. .a_addBox {
  10302. margin: 10px 0;
  10303. background: #fff;
  10304. padding: 15px;
  10305. /* max-height: 600px; */
  10306. overflow: auto;
  10307. }
  10308. .a_add_box {
  10309. border-bottom: 2px solid #eee;
  10310. padding-bottom: 25px;
  10311. }
  10312. .a_add_head {
  10313. display: flex;
  10314. align-items: center;
  10315. justify-content: space-between;
  10316. margin: 10px 0 0 0;
  10317. font-size: 18px;
  10318. }
  10319. .a_add_checkType {
  10320. margin-top: 10px;
  10321. display: flex;
  10322. font-size: 14px;
  10323. align-items: center;
  10324. }
  10325. .a_add_checkType span {
  10326. box-sizing: border-box;
  10327. padding: 0 0 5px 0;
  10328. cursor: pointer;
  10329. }
  10330. .a_add_checkType span+span {
  10331. margin-left: 10px;
  10332. }
  10333. .a_add_checkType .active {
  10334. border-bottom: 2px solid #409eff;
  10335. color: #409eff;
  10336. }
  10337. .a_add_head .a_add_head_input {
  10338. /* width: 540px; */
  10339. width: 100%;
  10340. }
  10341. .a_add_head .a_add_head_div {
  10342. display: flex;
  10343. align-items: center;
  10344. justify-content: space-between;
  10345. }
  10346. .a_add_body {
  10347. display: flex;
  10348. /* align-items: center; */
  10349. align-items: flex-end;
  10350. }
  10351. .a_add_input {
  10352. display: flex;
  10353. align-items: center;
  10354. flex-wrap: wrap;
  10355. }
  10356. .a_add_input_choice {
  10357. flex-direction: column;
  10358. margin-right: 10px;
  10359. }
  10360. .a_add_input_choice>>>.el-radio {
  10361. display: flex;
  10362. align-items: center;
  10363. flex-direction: row-reverse;
  10364. margin: 30px 0 0 0;
  10365. position: relative;
  10366. }
  10367. .a_add_input_choice>>>.el-checkbox {
  10368. display: flex;
  10369. align-items: center;
  10370. flex-direction: row-reverse;
  10371. margin: 30px 0 0 0;
  10372. position: relative;
  10373. }
  10374. .width100 {
  10375. width: 100%;
  10376. }
  10377. .a_add_input .a_add_persent {
  10378. width: 100%;
  10379. }
  10380. .a_add_persent_div {
  10381. width: 100%;
  10382. display: flex;
  10383. align-items: center;
  10384. }
  10385. .a_add_persent_div span {
  10386. margin: 5px 0;
  10387. }
  10388. .a_add_persent_div span:nth-child(1) {
  10389. width: 30%;
  10390. }
  10391. .a_add_persent_div span:nth-child(2) {
  10392. width: 7%;
  10393. }
  10394. .a_add_persent_div span:nth-child(3) {
  10395. width: 40%;
  10396. }
  10397. .a_add_body_div {
  10398. display: flex;
  10399. align-items: center;
  10400. justify-content: center;
  10401. /* flex-direction: column; */
  10402. position: absolute;
  10403. right: -20px;
  10404. transform: translateX(100%);
  10405. }
  10406. .a_add_body_div>>>.el-button--primary {
  10407. background: #466b99;
  10408. border: none;
  10409. }
  10410. .all_choose {
  10411. display: flex;
  10412. flex-direction: row;
  10413. align-items: flex-start;
  10414. width: 100%;
  10415. }
  10416. .all_choose+.all_choose {
  10417. /* margin-top: 10px */
  10418. }
  10419. .all_choose>span {
  10420. min-width: fit-content;
  10421. display: block;
  10422. white-space: nowrap;
  10423. overflow: hidden;
  10424. text-overflow: ellipsis;
  10425. margin-right: 20px;
  10426. font-weight: bold;
  10427. font-size: 14px;
  10428. }
  10429. .all_choose>>>.el-checkbox-group {
  10430. display: flex;
  10431. flex-direction: row;
  10432. width: 100%;
  10433. flex-wrap: wrap;
  10434. align-content: center;
  10435. justify-content: flex-start;
  10436. align-items: center;
  10437. margin-top: 3px;
  10438. }
  10439. .all_choose>.el-checkbox-group>>>.el-checkbox {
  10440. margin-bottom: 10px;
  10441. display: flex;
  10442. flex-direction: row;
  10443. align-items: center;
  10444. margin-right: 10px;
  10445. }
  10446. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  10447. min-width: 80px;
  10448. overflow: hidden;
  10449. width: 80px;
  10450. text-overflow: ellipsis;
  10451. white-space: nowrap;
  10452. }
  10453. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  10454. width: auto;
  10455. }
  10456. .choose>div:nth-child(3)>span {
  10457. /* letter-spacing: 0 !important; */
  10458. }
  10459. .choose {
  10460. display: flex;
  10461. flex-direction: column;
  10462. flex-wrap: nowrap;
  10463. height: 100%;
  10464. justify-content: space-evenly;
  10465. align-items: flex-start;
  10466. }
  10467. .both {
  10468. display: flex;
  10469. flex-direction: row;
  10470. flex-wrap: wrap;
  10471. width: 100%;
  10472. align-items: center;
  10473. justify-content: flex-start;
  10474. margin: 15px 0;
  10475. }
  10476. .notice>>>.el-dialog {
  10477. width: 500px !important;
  10478. text-align: center;
  10479. }
  10480. .notice>>>.el-button {
  10481. margin-top: 20px;
  10482. }
  10483. .whiteBg {
  10484. /* background: #fff; */
  10485. border-radius: 10px;
  10486. }
  10487. .wb_j_box {
  10488. display: flex;
  10489. width: 100%;
  10490. padding: 0 20px 0;
  10491. box-sizing: border-box;
  10492. }
  10493. .wb_j_box_content {
  10494. width: calc(100% - 55% - 100px);
  10495. display: flex;
  10496. align-items: center;
  10497. }
  10498. .wb_j_box_p_box {
  10499. max-width: calc(100% - 200px);
  10500. word-break: break-all;
  10501. overflow: hidden;
  10502. margin: 0 0 0 10px;
  10503. font-size: 14px;
  10504. color: #6e6e6e;
  10505. z-index: 999;
  10506. }
  10507. .chooseWho {
  10508. display: flex;
  10509. width: 410px;
  10510. flex-direction: row;
  10511. flex-wrap: nowrap;
  10512. justify-content: space-between;
  10513. padding-bottom: 10px;
  10514. }
  10515. .chooseWho>div {
  10516. cursor: pointer;
  10517. padding-bottom: 10px;
  10518. font-weight: bold;
  10519. }
  10520. .isChooseActive {
  10521. color: #3e88f4;
  10522. border-bottom: 2px solid #2f80f3;
  10523. }
  10524. .toolSort {
  10525. display: flex;
  10526. flex-direction: row;
  10527. flex-wrap: wrap;
  10528. justify-content: flex-start;
  10529. align-items: flex-start;
  10530. }
  10531. .toolSort>div {
  10532. margin-right: 45px;
  10533. }
  10534. .tools {
  10535. width: 100%;
  10536. display: flex;
  10537. flex-direction: column;
  10538. flex-wrap: nowrap;
  10539. align-items: flex-start;
  10540. }
  10541. .leftTools,
  10542. .rightTools {
  10543. width: 50%;
  10544. }
  10545. .leftTools+.leftTools {
  10546. border-top: 1px solid #dbdbdb;
  10547. padding-top: 30px;
  10548. }
  10549. .rightTools {
  10550. display: flex;
  10551. flex-direction: row;
  10552. flex-wrap: nowrap;
  10553. justify-content: space-around;
  10554. }
  10555. .firstToolList {
  10556. display: flex;
  10557. flex-direction: column;
  10558. flex-wrap: nowrap;
  10559. align-items: center;
  10560. }
  10561. .iconList {
  10562. display: flex;
  10563. flex-direction: row;
  10564. flex-wrap: wrap;
  10565. justify-content: flex-start;
  10566. align-items: center;
  10567. margin: 20px 0 5px 0;
  10568. width: 240px;
  10569. min-width: 240px;
  10570. }
  10571. .iconTool {
  10572. display: flex;
  10573. flex-direction: column;
  10574. flex-wrap: nowrap;
  10575. align-items: center;
  10576. justify-content: flex-start;
  10577. margin: 15px 10px;
  10578. }
  10579. .toolIcon {
  10580. width: 50px;
  10581. }
  10582. .taskBorder {
  10583. /* border: 1px solid #CAD1DC; */
  10584. border-radius: 10px;
  10585. margin-top: 20px;
  10586. min-height: 670px;
  10587. position: relative;
  10588. background: #fff;
  10589. padding: 20px;
  10590. overflow: hidden;
  10591. box-sizing: border-box;
  10592. }
  10593. .smallTaskBorder {
  10594. height: 280px;
  10595. min-height: 280px !important;
  10596. overflow: hidden;
  10597. }
  10598. /* .taskBorder>div {
  10599. padding: 30px 30px 10px;
  10600. } */
  10601. .addTaskBorder {
  10602. /* border: 2px solid #5E9AFC; */
  10603. border-radius: 8px;
  10604. margin-top: 10px;
  10605. cursor: pointer;
  10606. /* height: 50px;
  10607. line-height: 50px; */
  10608. background: #fff;
  10609. padding: 15px 0;
  10610. display: flex;
  10611. align-items: center;
  10612. justify-content: center;
  10613. }
  10614. /* .addTaskBorder>div {
  10615. margin: 0 auto;
  10616. display: flex;
  10617. align-items: center;
  10618. justify-content: center;
  10619. }
  10620. .addTaskBorder>div>img {
  10621. width: 20px;
  10622. }
  10623. .addTaskBorder>div>span {
  10624. font-size: 16px;
  10625. margin-left: 10px;
  10626. color: #5E9AFC;
  10627. } */
  10628. .funBlock {
  10629. display: flex;
  10630. padding: 15px 0;
  10631. flex-direction: row;
  10632. justify-content: center;
  10633. align-items: center;
  10634. position: absolute;
  10635. right: 0;
  10636. bottom: 0;
  10637. background: #fff;
  10638. width: 100%;
  10639. height: 60px;
  10640. }
  10641. .fold {
  10642. display: flex;
  10643. margin: 0 20px;
  10644. flex-direction: row;
  10645. align-items: center;
  10646. cursor: pointer;
  10647. color: #2b7bff;
  10648. }
  10649. .arrow {
  10650. margin-right: 8px;
  10651. width: 16px;
  10652. height: 16px;
  10653. min-width: 16px;
  10654. min-height: 16px;
  10655. background-size: 100% 100%;
  10656. display: block;
  10657. background-image: url(../../assets/icon/new/u_up.png);
  10658. /* border-left: 7px solid transparent;
  10659. border-bottom: 7px solid #717C8D;
  10660. border-top: 0px solid transparent;
  10661. border-right: 7px solid transparent; */
  10662. /* box-sizing: border-box; */
  10663. transition: all .3s;
  10664. }
  10665. .arrowZ {
  10666. transform: rotate(180deg);
  10667. }
  10668. .addToolFun {
  10669. display: flex;
  10670. width: 150px;
  10671. flex-direction: row;
  10672. align-items: center;
  10673. justify-content: center;
  10674. border: 2px dashed #CAD1DC;
  10675. border-radius: 5px;
  10676. height: 50px;
  10677. margin: 35px auto 0;
  10678. cursor: pointer;
  10679. }
  10680. .addToolFun2 {
  10681. display: flex;
  10682. width: 150px;
  10683. border: 2px dashed #CAD1DC;
  10684. flex-direction: row;
  10685. align-items: center;
  10686. justify-content: center;
  10687. border-radius: 5px;
  10688. height: 50px;
  10689. margin: 0 auto 0;
  10690. cursor: pointer;
  10691. }
  10692. .addToolFun2>div,
  10693. .addToolFun>div {
  10694. display: flex;
  10695. line-height: 50px;
  10696. }
  10697. .addToolImg {
  10698. width: 20px;
  10699. height: 20px;
  10700. margin-right: 10px;
  10701. }
  10702. .addToolsDia>>>.el-dialog__body {
  10703. padding: 20px;
  10704. }
  10705. .addToolsDia>>>.el-dialog__body>.toolChoose {
  10706. padding: 0;
  10707. }
  10708. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools {
  10709. padding: 0;
  10710. border-bottom: none;
  10711. margin-bottom: 0;
  10712. }
  10713. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools>.chooseWho {
  10714. width: 100%;
  10715. }
  10716. .lineCss>>>.el-form-item__label {
  10717. width: auto !important;
  10718. }
  10719. .lineCss>>>.el-form-item__content {
  10720. margin-left: 50px !important;
  10721. }
  10722. .newSteps {
  10723. display: flex;
  10724. width: 100% !important;
  10725. /* height: 80px; */
  10726. cursor: pointer;
  10727. margin: 10px 0;
  10728. border-radius: 10px;
  10729. flex-direction: row;
  10730. align-content: center;
  10731. justify-content: center;
  10732. align-items: center;
  10733. margin: 0 !important;
  10734. }
  10735. /* 评价样式 */
  10736. .elist_css {
  10737. padding-bottom: 75px !important;
  10738. }
  10739. .elist_title {
  10740. margin-bottom: 10px;
  10741. }
  10742. .elist_input {}
  10743. .elist_input_box {
  10744. display: flex;
  10745. align-items: center;
  10746. flex-wrap: wrap;
  10747. }
  10748. .elist_input_box+.elist_input_box {
  10749. margin-top: 30px;
  10750. }
  10751. .elist_input .elist_input_box input {
  10752. font: inherit;
  10753. color: currentColor;
  10754. /* width: 200px; */
  10755. max-width: 200px;
  10756. padding: 8px 14px;
  10757. display: block;
  10758. min-width: 0;
  10759. outline: none;
  10760. border: 1px solid rgba(0, 0, 0, 0.23);
  10761. border-radius: 4px;
  10762. box-sizing: border-box;
  10763. background: #fff;
  10764. margin: 0 20px 0 0;
  10765. }
  10766. .elist_input .elist_input_box span {
  10767. height: 36px;
  10768. line-height: 36px;
  10769. color: rgb(82, 82, 82);
  10770. min-width: 80px;
  10771. }
  10772. .elist_input .elist_input_box .remove {
  10773. height: 20px;
  10774. width: 20px;
  10775. min-height: 20px;
  10776. min-width: 20px;
  10777. background-size: 100% 100%;
  10778. background-position: unset;
  10779. margin-left: 5px;
  10780. }
  10781. .elist_input_box>>>.el-rate {
  10782. display: flex;
  10783. height: 36px;
  10784. align-items: center;
  10785. }
  10786. .elist_input_box .elist_inptu_text {
  10787. width: 100%;
  10788. display: flex;
  10789. align-items: center;
  10790. margin-top: 10px;
  10791. }
  10792. .elist_input_box .elist_inptu_text input {
  10793. /* width: 500px; */
  10794. width: 100%;
  10795. max-width: unset;
  10796. }
  10797. .elist_input_box>>>.el-rate__icon {
  10798. font-size: 24px;
  10799. }
  10800. .elist_btn {
  10801. margin-top: 10px;
  10802. }
  10803. .lineTitle {
  10804. /* margin-top: 15px; */
  10805. width: 110px;
  10806. font-size: 16px;
  10807. display: flex;
  10808. align-items: center;
  10809. line-height: 20px;
  10810. }
  10811. .lineTitle::before {
  10812. content: '';
  10813. display: block;
  10814. width: 3px;
  10815. height: 20px;
  10816. background: #0061FF;
  10817. border-radius: 3px;
  10818. margin: 0 5px 0 0;
  10819. }
  10820. .courseTop {
  10821. display: flex;
  10822. flex-direction: row;
  10823. justify-content: space-between;
  10824. align-items: center;
  10825. width: calc(100% - 40px);
  10826. margin: 0 auto;
  10827. padding: 10px 0;
  10828. }
  10829. .stepsNav {
  10830. display: flex;
  10831. flex-direction: row;
  10832. justify-content: flex-start;
  10833. align-items: center;
  10834. }
  10835. .stepsWord {
  10836. font-size: 18px;
  10837. color: #fff;
  10838. font-weight: bold;
  10839. margin-left: auto;
  10840. background: rgb(15, 126, 255);
  10841. border-radius: 5px;
  10842. padding: 3px 25px;
  10843. box-sizing: border-box;
  10844. }
  10845. .stepBox {
  10846. width: calc(100% - 40px);
  10847. height: calc(100% - 50px);
  10848. overflow: hidden;
  10849. border-radius: 5px;
  10850. margin: 0 auto;
  10851. }
  10852. .rightBox {
  10853. width: calc(100%);
  10854. background: #F0F2F5;
  10855. /* border-radius: 10px; */
  10856. overflow: auto;
  10857. height: calc(100% - 150px);
  10858. margin: 0 auto;
  10859. position: relative;
  10860. box-sizing: border-box;
  10861. }
  10862. .e_add_top {
  10863. display: flex;
  10864. justify-content: space-between;
  10865. background: #fff;
  10866. position: absolute;
  10867. right: 20px;
  10868. height: 50px;
  10869. align-items: center;
  10870. }
  10871. .e_add_title2 {
  10872. display: flex;
  10873. align-items: center;
  10874. }
  10875. .e_add_title2 span {
  10876. width: 40px;
  10877. }
  10878. .e_add_title {
  10879. display: flex;
  10880. align-items: center;
  10881. color: #b8b8b8;
  10882. font-size: 18px;
  10883. position: relative;
  10884. height: 40px;
  10885. }
  10886. .e_add_title span {
  10887. margin-right: 10px;
  10888. }
  10889. .e_add_title .el_input {
  10890. width: 300px;
  10891. }
  10892. .e_add_title>>>.el-input__inner {
  10893. width: 400px;
  10894. }
  10895. .e_add_btn {}
  10896. .e_add_content {
  10897. display: flex;
  10898. width: 100%;
  10899. }
  10900. .e_add_list {
  10901. background: #fff;
  10902. height: 500px;
  10903. width: 210px;
  10904. position: relative;
  10905. margin: 15px 5px 0 0;
  10906. flex-shrink: 0;
  10907. display: flex;
  10908. flex-direction: column;
  10909. }
  10910. .e_add_list_title {
  10911. font-size: 20px;
  10912. width: 100%;
  10913. box-sizing: border-box;
  10914. padding: 15px 40px;
  10915. text-align: center;
  10916. border-bottom: 1px solid #eaeaea;
  10917. position: relative;
  10918. display: flex;
  10919. align-items: center;
  10920. justify-content: center;
  10921. height: 57px;
  10922. background: #f6f6f6;
  10923. }
  10924. .e_add_list_title span {
  10925. overflow: hidden;
  10926. white-space: nowrap;
  10927. text-overflow: ellipsis;
  10928. }
  10929. .e_add_list_title img {
  10930. position: absolute;
  10931. right: 15px;
  10932. width: 25px;
  10933. cursor: pointer;
  10934. top: 50%;
  10935. transform: translateY(-50%);
  10936. }
  10937. .e_add_list_body {
  10938. height: calc(100% - 187px);
  10939. overflow: auto;
  10940. }
  10941. .e_add_list_child {
  10942. width: 100%;
  10943. display: flex;
  10944. align-items: center;
  10945. justify-content: center;
  10946. position: relative;
  10947. box-sizing: border-box;
  10948. padding: 15px 40px;
  10949. text-align: center;
  10950. }
  10951. .e_add_list_child span {
  10952. overflow: hidden;
  10953. white-space: nowrap;
  10954. text-overflow: ellipsis;
  10955. cursor: pointer;
  10956. }
  10957. .e_add_list_child img {
  10958. position: absolute;
  10959. right: 10px;
  10960. width: 21px;
  10961. cursor: pointer;
  10962. top: 50%;
  10963. transform: translateY(-50%);
  10964. }
  10965. .e_add_list_child+.e_add_list_child {
  10966. border-top: 1px solid #eaeaea;
  10967. }
  10968. .e_add_list_child .active {
  10969. color: #409eff;
  10970. }
  10971. .e_add_list_btn {
  10972. position: absolute;
  10973. bottom: 0;
  10974. height: 50px;
  10975. background: rgb(120, 120, 254);
  10976. width: 100%;
  10977. color: #fff;
  10978. font-size: 16px;
  10979. text-align: center;
  10980. line-height: 50px;
  10981. cursor: pointer;
  10982. }
  10983. .e_add_list_detail {
  10984. position: absolute;
  10985. bottom: 0;
  10986. height: 130px;
  10987. background: rgb(120, 120, 254);
  10988. width: 100%;
  10989. color: #fff;
  10990. font-size: 16px;
  10991. display: flex;
  10992. align-items: center;
  10993. justify-content: center;
  10994. }
  10995. .e_add_list_detail textarea {
  10996. height: 90%;
  10997. width: 95%;
  10998. border: none;
  10999. resize: none;
  11000. outline: none;
  11001. padding: 5px;
  11002. box-sizing: border-box;
  11003. }
  11004. .e_add_list_pbox {
  11005. width: 100%;
  11006. }
  11007. .e_add_list_pbox_title {
  11008. height: 50px;
  11009. background: #fff;
  11010. display: flex;
  11011. align-items: center;
  11012. width: 100%;
  11013. box-sizing: border-box;
  11014. padding: 0 20px;
  11015. flex-direction: row;
  11016. flex-wrap: wrap;
  11017. }
  11018. .type_title {
  11019. font-size: 18px;
  11020. font-weight: 700;
  11021. }
  11022. .type_content {
  11023. font-size: 16px;
  11024. margin-left: 30px;
  11025. }
  11026. .type_content span+span {
  11027. margin-left: 20px;
  11028. }
  11029. .type_content span {
  11030. cursor: pointer;
  11031. padding-bottom: 5px;
  11032. box-sizing: border-box;
  11033. }
  11034. .type_content .active {
  11035. color: #409eff;
  11036. border-bottom: 2px solid #409eff;
  11037. }
  11038. .e_add_list_pbox_content {
  11039. height: calc(100% - 50px);
  11040. display: flex;
  11041. align-items: center;
  11042. width: 100%;
  11043. background: #fff;
  11044. }
  11045. .mbCss {
  11046. width: 100%;
  11047. display: flex;
  11048. flex-direction: row;
  11049. flex-wrap: nowrap;
  11050. align-content: center;
  11051. align-items: flex-start;
  11052. justify-content: flex-start;
  11053. }
  11054. .pjCss {
  11055. /* width: 42%; */
  11056. width: calc(100% - 55%);
  11057. display: flex;
  11058. flex-direction: column;
  11059. flex-wrap: nowrap;
  11060. align-items: flex-start;
  11061. }
  11062. .e_box {
  11063. display: flex;
  11064. flex-wrap: wrap;
  11065. max-height: 500px;
  11066. align-items: flex-start;
  11067. overflow: auto;
  11068. }
  11069. .e_card {
  11070. border: 1px solid #ccc;
  11071. background: #fff;
  11072. margin-right: 20px;
  11073. width: 270px;
  11074. display: flex;
  11075. flex-direction: column;
  11076. align-items: center;
  11077. border-radius: 5px;
  11078. margin-top: 10px;
  11079. text-align: center;
  11080. }
  11081. .e_card_picture {
  11082. margin: 10px 0;
  11083. }
  11084. .e_card_picture>img {
  11085. width: 50px;
  11086. }
  11087. .e_card_name {
  11088. width: 100%;
  11089. padding: 0 10px;
  11090. box-sizing: border-box;
  11091. margin-bottom: 10px;
  11092. overflow: hidden;
  11093. text-overflow: ellipsis;
  11094. white-space: nowrap;
  11095. }
  11096. .e_card_time {
  11097. width: 100%;
  11098. padding: 0 10px;
  11099. box-sizing: border-box;
  11100. font-size: 15px;
  11101. color: #c3c3c3;
  11102. margin-bottom: 10px;
  11103. }
  11104. .e_card_btn {
  11105. height: 40px;
  11106. display: flex;
  11107. align-items: center;
  11108. width: 100%;
  11109. background: rgb(244, 244, 244);
  11110. }
  11111. .e_card_btn:hover {
  11112. background: rgb(221 221 221);
  11113. }
  11114. .e_card_btn span {
  11115. flex: 1 1 auto;
  11116. text-align: center;
  11117. cursor: pointer;
  11118. }
  11119. .addEva {
  11120. border: 1px solid #ccc;
  11121. background: #fff;
  11122. margin-right: 20px;
  11123. width: 270px;
  11124. height: 149px;
  11125. display: flex;
  11126. flex-direction: column;
  11127. align-items: center;
  11128. border-radius: 5px;
  11129. margin-top: 10px;
  11130. text-align: center;
  11131. cursor: pointer;
  11132. justify-content: center;
  11133. }
  11134. .addEva>img {
  11135. width: 50px;
  11136. object-fit: cover;
  11137. }
  11138. .uploadFm {
  11139. border: 1px dashed #ccc;
  11140. width: 100%;
  11141. height: 140px;
  11142. position: relative;
  11143. cursor: pointer;
  11144. display: flex;
  11145. flex-direction: column;
  11146. justify-content: center;
  11147. align-items: center;
  11148. font-size: 14px;
  11149. color: #6e6e6e;
  11150. }
  11151. .uploadFm>img {
  11152. width: 50px;
  11153. }
  11154. .fileCss {
  11155. width: 100%;
  11156. display: flex;
  11157. flex-direction: row;
  11158. flex-wrap: nowrap;
  11159. justify-content: space-around;
  11160. align-items: center;
  11161. padding-top: 15px;
  11162. }
  11163. .fileCss>div {
  11164. display: flex;
  11165. flex-direction: column;
  11166. align-items: center;
  11167. }
  11168. .fileCss .spanName {
  11169. margin-top: 10px
  11170. }
  11171. .sysPicBox {
  11172. display: flex;
  11173. flex-direction: row;
  11174. flex-wrap: wrap;
  11175. align-content: flex-start;
  11176. height: 435px;
  11177. overflow: auto;
  11178. position: relative;
  11179. }
  11180. .picNone {
  11181. position: absolute;
  11182. left: 50%;
  11183. top: 45%;
  11184. transform: translate(-50%, -50%);
  11185. width: fit-content;
  11186. color: #9c9c9c;
  11187. }
  11188. .sysPic {
  11189. width: 200px;
  11190. height: 115px;
  11191. margin: 0 20px 20px 0;
  11192. cursor: pointer;
  11193. }
  11194. .sysPic>img,
  11195. .isSysPic>img,
  11196. .deletePic>img {
  11197. width: 100%;
  11198. height: 100%;
  11199. object-fit: cover;
  11200. }
  11201. .isSysPic {
  11202. width: 200px;
  11203. height: 115px;
  11204. position: relative;
  11205. }
  11206. .deletePic {
  11207. width: 20px;
  11208. height: 20px;
  11209. position: absolute;
  11210. top: 0;
  11211. right: 0;
  11212. cursor: pointer;
  11213. }
  11214. .select_box1 {
  11215. height: 100%;
  11216. }
  11217. .select_box1_img {
  11218. background: #fff;
  11219. border-radius: 5px;
  11220. padding: 15px;
  11221. box-sizing: border-box;
  11222. margin-bottom: 20px;
  11223. }
  11224. .select_box1_title {
  11225. padding: 0 0 15px 0;
  11226. border-bottom: 1px solid #eee;
  11227. margin-bottom: 15px;
  11228. }
  11229. .select_box1_title span:nth-child(1) {
  11230. font-size: 16px;
  11231. margin-right: 20px;
  11232. color: #000;
  11233. }
  11234. .select_box1_title span:nth-child(2) {
  11235. font-size: 14px;
  11236. color: rgb(112, 112, 112);
  11237. }
  11238. .select_box1_add_img {}
  11239. .select_box1_select {
  11240. background: #fff;
  11241. border-radius: 5px;
  11242. padding: 15px;
  11243. box-sizing: border-box;
  11244. height: calc(100% - 200px);
  11245. overflow: auto;
  11246. }
  11247. .select_box2 {
  11248. height: 100%;
  11249. }
  11250. .select_box2_title {
  11251. background: #fff;
  11252. border-radius: 5px;
  11253. padding: 5px 10px;
  11254. box-sizing: border-box;
  11255. margin-bottom: 10px;
  11256. }
  11257. .select_box2_box {
  11258. display: flex;
  11259. height: calc(100% - 30px);
  11260. }
  11261. .select_box2_img {
  11262. width: calc(100% - 310px);
  11263. height: 100%;
  11264. overflow: auto;
  11265. background: #fff;
  11266. border-radius: 5px;
  11267. }
  11268. .select_box2_img img {
  11269. width: 100%;
  11270. }
  11271. .select_box2_answer {
  11272. background: #fff;
  11273. margin-left: 10px;
  11274. border-radius: 5px;
  11275. width: 300px;
  11276. overflow: auto;
  11277. height: 100%;
  11278. display: flex;
  11279. flex-direction: column;
  11280. align-items: center;
  11281. padding-top: 10px;
  11282. box-sizing: border-box;
  11283. }
  11284. .select_box2_answer_box {
  11285. margin: 0 0 10px 0;
  11286. width: 85%;
  11287. }
  11288. .rate_textarea {
  11289. font: inherit;
  11290. color: currentColor;
  11291. width: 100%;
  11292. padding: 8px 14px;
  11293. display: block;
  11294. min-width: 0;
  11295. outline: none;
  11296. border: 1px solid rgba(0, 0, 0, 0.23);
  11297. border-radius: 4px;
  11298. box-sizing: border-box;
  11299. background: #fff;
  11300. margin: 0 20px 0 0;
  11301. resize: none;
  11302. }
  11303. .select_answer_title {
  11304. text-align: left;
  11305. width: 85%;
  11306. margin-bottom: 10px;
  11307. font-size: 18px;
  11308. color: #8e8e8e;
  11309. }
  11310. .mask {
  11311. background-color: rgb(0 0 0 / 30%);
  11312. /* position: fixed; */
  11313. position: absolute;
  11314. top: 0;
  11315. left: 0;
  11316. width: 100%;
  11317. height: 100%;
  11318. z-index: 90;
  11319. display: flex;
  11320. align-items: center;
  11321. justify-content: center;
  11322. }
  11323. .progressBox {
  11324. width: 300px;
  11325. height: 150px;
  11326. background: #fff;
  11327. border-radius: 10px;
  11328. box-shadow: 0 0 6px 1px #bfbfbf;
  11329. display: flex;
  11330. align-items: center;
  11331. justify-content: center;
  11332. flex-direction: column;
  11333. position: relative;
  11334. color: #6c6c6c;
  11335. }
  11336. .progressBox>>>.el-progress-bar__outer {
  11337. background-color: #d1dfff !important;
  11338. }
  11339. .progressBox .lbox {
  11340. height: 50px;
  11341. font-size: 19px;
  11342. display: flex;
  11343. align-items: center;
  11344. color: #747474;
  11345. }
  11346. .progressBox .lbox img {
  11347. width: 40px;
  11348. margin-right: 20px;
  11349. }
  11350. .closeCss {
  11351. position: absolute;
  11352. top: 8px;
  11353. right: 8px;
  11354. cursor: pointer;
  11355. width: 20px;
  11356. height: 20px;
  11357. }
  11358. .closeCss>img {
  11359. width: 100%;
  11360. height: 100%;
  11361. }
  11362. .updateTips::before {
  11363. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  11364. font-size: 14px;
  11365. margin-left: 20px;
  11366. font-weight: 400;
  11367. color: #ff3a3a;
  11368. margin-bottom: 10px;
  11369. display: block;
  11370. }
  11371. .updateMask {
  11372. width: 100%;
  11373. z-index: 3;
  11374. top: 0;
  11375. position: absolute;
  11376. /* background-color: rgba(0,0,0,.3); */
  11377. }
  11378. .t_j_box {
  11379. display: flex;
  11380. }
  11381. .t_j_box span:nth-child(1) {
  11382. width: 15%;
  11383. overflow: hidden;
  11384. margin-right: 10px;
  11385. text-overflow: ellipsis;
  11386. white-space: nowrap;
  11387. }
  11388. .t_j_box span:nth-child(2) {
  11389. width: 30%;
  11390. overflow: hidden;
  11391. text-overflow: ellipsis;
  11392. margin-right: 10px;
  11393. }
  11394. .t_j_box span:nth-child(3) {
  11395. max-width: calc(55% - 20px);
  11396. overflow: hidden;
  11397. text-overflow: ellipsis;
  11398. }
  11399. .sentenBox {
  11400. background: #fff;
  11401. height: 600px;
  11402. overflow: auto;
  11403. background-image: url("../../assets/icon/conSentences/csBg.png");
  11404. background-position: 102%;
  11405. background-repeat: no-repeat;
  11406. background-size: 60%;
  11407. }
  11408. .sentenBox>.sentenContent {
  11409. padding-bottom: 10px;
  11410. width: 97%;
  11411. margin: 0 auto;
  11412. }
  11413. .sentenBox>.sentenContent+.sentenContent {
  11414. border-top: 1px solid #cbcbcb;
  11415. }
  11416. .addSen {
  11417. background: #409efe;
  11418. width: 90px;
  11419. color: #fff;
  11420. height: 35px;
  11421. text-align: center;
  11422. line-height: 35px;
  11423. border-radius: 5px;
  11424. float: right;
  11425. margin: 10px 20px 0 0;
  11426. cursor: pointer;
  11427. }
  11428. .sentenTop {
  11429. display: flex;
  11430. flex-direction: row;
  11431. flex-wrap: nowrap;
  11432. align-items: center;
  11433. }
  11434. .sentenTop::before {
  11435. content: attr(index);
  11436. background: #3681fc;
  11437. border-radius: 50%;
  11438. color: #fff;
  11439. width: 25px;
  11440. height: 25px;
  11441. min-width: 25px;
  11442. min-height: 25px;
  11443. text-align: center;
  11444. line-height: 25px;
  11445. margin-right: 5px;
  11446. }
  11447. .sentenTop>div:nth-child(2) {
  11448. width: 300px;
  11449. margin: 0 15px;
  11450. }
  11451. .sentenTop>div:nth-child(3) {
  11452. background: #409efe;
  11453. color: #fff;
  11454. width: 65px;
  11455. height: 35px;
  11456. text-align: center;
  11457. line-height: 35px;
  11458. border-radius: 5px;
  11459. cursor: pointer;
  11460. }
  11461. .cardList {
  11462. padding: 30px 0 20px 0;
  11463. display: flex;
  11464. flex-direction: row;
  11465. flex-wrap: wrap;
  11466. align-items: center;
  11467. box-sizing: border-box;
  11468. border-bottom: 1px solid #f4f4f4;
  11469. width: 98%;
  11470. margin: 0 auto;
  11471. }
  11472. .rightCardList {
  11473. display: flex;
  11474. flex-wrap: wrap;
  11475. }
  11476. .cardBox {
  11477. display: flex;
  11478. flex-direction: row;
  11479. flex-wrap: wrap;
  11480. align-items: center;
  11481. align-content: center;
  11482. }
  11483. .isCard,
  11484. .isCard1 {
  11485. width: auto;
  11486. padding: 0 20px;
  11487. height: 65px;
  11488. text-align: center;
  11489. line-height: 65px;
  11490. font-size: 14px;
  11491. cursor: pointer;
  11492. background-image: url("../../assets/icon/conSentences/titleBorder.png");
  11493. background-size: 100% 100%;
  11494. position: relative;
  11495. z-index: 99;
  11496. }
  11497. .isCard1 {
  11498. background-image: url("../../assets/icon/conSentences/answerBorder.png");
  11499. }
  11500. .isCard:hover .deleteWord {
  11501. display: block;
  11502. }
  11503. .isCard>div:nth-child(1),
  11504. .isCard1>div:nth-child(1) {
  11505. white-space: nowrap;
  11506. overflow: hidden;
  11507. text-overflow: ellipsis;
  11508. width: 100%;
  11509. margin: 0 auto;
  11510. }
  11511. .card {
  11512. width: 140px;
  11513. height: 65px;
  11514. }
  11515. .card>img {
  11516. width: 100%;
  11517. height: 100%;
  11518. }
  11519. .rightCardBox {
  11520. width: 98%;
  11521. margin: 10px auto 0;
  11522. }
  11523. .rightCardBox>div:nth-child(1) {
  11524. margin-bottom: 10px;
  11525. }
  11526. .cardCss {
  11527. display: flex;
  11528. flex-direction: column;
  11529. flex-wrap: nowrap;
  11530. align-items: center;
  11531. border-bottom: 3px solid #b4c3d3;
  11532. padding: 0 0 5px 0;
  11533. /* margin-right: 10px; */
  11534. }
  11535. .cardCss>div:nth-child(2) {
  11536. background: #5b7b9d;
  11537. color: #fff;
  11538. width: 20px;
  11539. height: 20px;
  11540. border-radius: 50%;
  11541. text-align: center;
  11542. line-height: 20px;
  11543. }
  11544. .sentenTopBox {
  11545. display: flex;
  11546. flex-direction: row;
  11547. flex-wrap: nowrap;
  11548. align-items: center;
  11549. justify-content: space-between;
  11550. padding: 55px 0 0 20px;
  11551. box-sizing: border-box;
  11552. width: 85%;
  11553. }
  11554. .stepsBottom {
  11555. width: 100%;
  11556. box-shadow: 0 0 10px 10px #f7f7f7;
  11557. /* background: #f7f7f7; */
  11558. border-radius: 10px;
  11559. overflow: hidden;
  11560. height: 100%
  11561. }
  11562. .navTop {
  11563. background: #53749b;
  11564. color: #fff;
  11565. height: 40px;
  11566. line-height: 40px;
  11567. padding-left: 15px;
  11568. font-size: 18px;
  11569. }
  11570. .navBottom {
  11571. /* background: #6b91b7; */
  11572. height: 100%;
  11573. overflow: auto;
  11574. }
  11575. .navTask {
  11576. display: flex;
  11577. flex-direction: row;
  11578. flex-wrap: nowrap;
  11579. align-items: center;
  11580. padding: 10px 10px 10px 0;
  11581. cursor: pointer;
  11582. background: #ffffff;
  11583. width: 95%;
  11584. margin: 10px auto 0;
  11585. box-sizing: border-box;
  11586. border-radius: 5px;
  11587. flex-wrap: wrap;
  11588. }
  11589. .navTask::before{
  11590. content: '';
  11591. display:block;
  11592. width:16px;
  11593. height:16px;
  11594. background-image: url(../../assets/icon/new/icon_arrow.png);
  11595. background-size:100%;
  11596. margin-left:10px;
  11597. }
  11598. .noImage::before{
  11599. display: none;
  11600. background-image: unset !important;
  11601. }
  11602. .isNavOpen::before{
  11603. background-image: url(../../assets/icon/new/icon_arrow_a.png) !important;
  11604. }
  11605. .isNavTask {
  11606. /* background: #3681FC; */
  11607. background: #EEF3FB;
  11608. }
  11609. .isNavTask .nt_taskName {
  11610. /* color: #fff !important; */
  11611. font-weight: bold !important;
  11612. color: #0061FF !important;
  11613. }
  11614. .isNavTask .nt_taskTitle {
  11615. /* color: #AECCFE !important; */
  11616. font-weight: bold !important;
  11617. color: #0061FF !important;
  11618. }
  11619. .navTask .nt_taskBox {
  11620. width: calc(100% - 85px);
  11621. padding: 0 10px 0 5px;
  11622. box-sizing: border-box;
  11623. box-sizing: border-box;
  11624. display: flex;
  11625. flex-direction: row;
  11626. flex-wrap: nowrap;
  11627. align-items: baseline;
  11628. }
  11629. .navTask .nt_taskTitle {
  11630. /* color: #717C8D; */
  11631. color: #060E17;
  11632. line-height: 25px;
  11633. font-size: 16px;
  11634. min-width: 45px;
  11635. }
  11636. .navTask .nt_taskName {
  11637. /* color: #fff; */
  11638. /* max-width: 130px; */
  11639. /* width: 100%; */
  11640. max-width: calc(100% - 50px);
  11641. white-space: nowrap;
  11642. overflow: hidden;
  11643. text-overflow: ellipsis;
  11644. font-size: 16px;
  11645. color: #060E17;
  11646. /* color: #0E1E33; */
  11647. }
  11648. .gjBox {
  11649. width: calc(100% - 25px);
  11650. padding: 0 0 0 0;
  11651. box-sizing: border-box;
  11652. border-left: 1px solid #CAD1DC;
  11653. margin-left: 25px;
  11654. }
  11655. .gjBox > div{
  11656. display:flex;
  11657. align-items:center;
  11658. }
  11659. .gjBox > div::before{
  11660. content: '';
  11661. height:1px;
  11662. width:10px;
  11663. background: #CAD1DC;
  11664. display: block;
  11665. margin-right:5px;
  11666. }
  11667. .gjCss {
  11668. display: flex;
  11669. flex-direction: row;
  11670. flex-wrap: nowrap;
  11671. align-items: center;
  11672. padding: 15px 0;
  11673. box-sizing: border-box;
  11674. font-size: 14px;
  11675. cursor: pointer;
  11676. }
  11677. .isGjCss {
  11678. color: #0061ff;
  11679. }
  11680. .groupBox {}
  11681. .groupContent+.groupContent {
  11682. margin-top: 30px;
  11683. }
  11684. .groupTitle {
  11685. font-size: 24px;
  11686. color: rgb(80, 80, 80);
  11687. margin-bottom: 20px;
  11688. }
  11689. .groupName {
  11690. display: flex;
  11691. align-items: center;
  11692. }
  11693. .groupn {
  11694. font-size: 15px;
  11695. margin-right: 10px;
  11696. }
  11697. .groupName+.groupName {
  11698. margin-top: 15px;
  11699. }
  11700. .groupBtn {
  11701. margin-left: 10px;
  11702. }
  11703. .groupContent>>>.el-input-number.is-without-controls .el-input__inner {
  11704. text-align: left;
  11705. }
  11706. .radioBox>div {
  11707. margin: 10px 0 0 10px;
  11708. }
  11709. .radioBox>>>.el-radio__input,
  11710. .radioBox>>>.el-checkbox__inner {
  11711. margin-left: 10px;
  11712. }
  11713. .radioBox>>>.el-radio__label,
  11714. .radioBox>>>.el-checkbox__label {
  11715. display: flex;
  11716. align-items: center;
  11717. }
  11718. .inImg {
  11719. width: 50px;
  11720. }
  11721. .inImg>img {
  11722. width: 100%;
  11723. height: 100%;
  11724. object-fit: cover;
  11725. }
  11726. .upCss>>>.el-upload-list--picture .el-upload-list__item {
  11727. height: auto;
  11728. padding: 10px;
  11729. margin: 0;
  11730. }
  11731. .upCss >>> .el-upload-list{
  11732. width: 100%;
  11733. }
  11734. .upCss>>>.el-upload-list--picture .el-upload-list__item-thumbnail {
  11735. width: 100%;
  11736. height: 120px;
  11737. object-fit: contain;
  11738. background: unset;
  11739. margin-left: 0;
  11740. }
  11741. .upCss>>>.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name {
  11742. display: none;
  11743. }
  11744. .tcMember+.tcMember::before {
  11745. content: "、";
  11746. }
  11747. .xzUpImg {
  11748. width: 25px;
  11749. height: 25px;
  11750. min-width: 25px;
  11751. min-height: 25px;
  11752. cursor: pointer;
  11753. margin: 0 10px;
  11754. }
  11755. .xzUpImg>img {
  11756. width: 100%;
  11757. height: 100%;
  11758. }
  11759. .closeCss {
  11760. position: absolute;
  11761. top: 8px;
  11762. right: 8px;
  11763. cursor: pointer;
  11764. width: 20px;
  11765. height: 20px;
  11766. }
  11767. .closeCss>img {
  11768. width: 100%;
  11769. height: 100%;
  11770. }
  11771. .moveBtn {
  11772. display: flex;
  11773. flex-direction: row;
  11774. flex-wrap: nowrap;
  11775. align-items: center;
  11776. width: 55px;
  11777. }
  11778. .timuUpImg {
  11779. display: flex;
  11780. flex-direction: row;
  11781. align-items: center;
  11782. width: 100%;
  11783. margin-right: 10px;
  11784. }
  11785. .timuUpImg>div:nth-child(1) {
  11786. margin-right: 10px;
  11787. display: flex;
  11788. align-items: center;
  11789. width: 100%;
  11790. }
  11791. .timuImgBox {
  11792. margin: 10px 0;
  11793. display: flex;
  11794. flex-direction: column;
  11795. flex-wrap: wrap;
  11796. align-items: flex-start;
  11797. }
  11798. .timuImg {
  11799. width: 100px;
  11800. margin: 5px 0;
  11801. cursor: pointer;
  11802. position: relative;
  11803. }
  11804. .timuImg:hover .deleteWord {
  11805. display: block;
  11806. }
  11807. .deleteWord {
  11808. width: 25px;
  11809. height: 25px;
  11810. position: absolute;
  11811. right: -5px;
  11812. top: -5px;
  11813. cursor: pointer;
  11814. display: none;
  11815. }
  11816. .timuImg>img,
  11817. .deleteWord>img {
  11818. width: 100%;
  11819. height: 100%;
  11820. object-fit: cover;
  11821. }
  11822. .e_add_delete {
  11823. cursor: pointer;
  11824. margin-left: 10px;
  11825. }
  11826. .pType_box {
  11827. margin-top: 30px;
  11828. align-items: flex-end;
  11829. }
  11830. .noneBox {
  11831. height: 200px;
  11832. width: 100%;
  11833. display: flex;
  11834. align-items: center;
  11835. justify-content: center;
  11836. flex-direction: column;
  11837. /* margin-top: 150px; */
  11838. }
  11839. .noneBox>img {
  11840. width: 95px;
  11841. }
  11842. .noneBox>span {
  11843. margin-top: 10px;
  11844. color: #717C8D;
  11845. }
  11846. .rb_c_box {
  11847. width: 100%;
  11848. height: 100%;
  11849. display: flex;
  11850. /* padding: 20px; */
  11851. box-sizing: border-box;
  11852. justify-content: space-between;
  11853. }
  11854. .rb_c_box_left {
  11855. height: 100%;
  11856. background: #fff;
  11857. width: 270px;
  11858. min-width: 270px;
  11859. border-radius: 8px;
  11860. margin-right: 10px;
  11861. }
  11862. .rb_c_box_right {
  11863. height: 100%;
  11864. width: calc(100%);
  11865. overflow: hidden;
  11866. }
  11867. .rb_c_box_btn {
  11868. display: flex;
  11869. justify-content: flex-start;
  11870. height: 50px;
  11871. align-items: center;
  11872. }
  11873. .rb_c_box_right>.basic_box {
  11874. /* background: #fff; */
  11875. border-radius: 0;
  11876. height: calc(100% - 0px);
  11877. overflow: auto;
  11878. padding: 0;
  11879. }
  11880. .textarea_css {
  11881. display: block;
  11882. resize: none;
  11883. padding: 10px 15px;
  11884. line-height: 1.5;
  11885. box-sizing: border-box;
  11886. width: 100%;
  11887. font-size: 14px;
  11888. color: #606266;
  11889. background-color: #FFF;
  11890. background-image: none;
  11891. border: 1px solid #DCDFE6;
  11892. border-radius: 4px;
  11893. transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
  11894. outline: none;
  11895. overflow: hidden;
  11896. height: 46px;
  11897. font-family: 'Microsoft YaHei';
  11898. }
  11899. .textarea_css::-webkit-input-placeholder {
  11900. color: #C0C4CC
  11901. }
  11902. .textarea_css:focus {
  11903. border-color: #409EFF;
  11904. outline: 0;
  11905. }
  11906. .addEditor>>>.text {
  11907. height: auto;
  11908. min-height: 100px;
  11909. }
  11910. .addEditor>>>.w-e-text-container {
  11911. min-height: 100px;
  11912. }
  11913. .moveBtn2 {
  11914. flex-direction: column;
  11915. width: fit-content;
  11916. margin: 0 10px 0 10px;
  11917. }
  11918. .moveBtn2 .chapter_upload_down,
  11919. .moveBtn2 .chapter_upload_up {
  11920. width: 16px;
  11921. height: 16px;
  11922. }
  11923. .moveBtn2 .chapter_upload_up::after,
  11924. .moveBtn2 .chapter_upload_down::after {
  11925. width: 10px;
  11926. height: 10px;
  11927. }
  11928. .fullStyle>>>.el-dialog__body {
  11929. height: calc(100% - 125px) !important;
  11930. box-sizing: border-box;
  11931. }
  11932. .fullStyle>>>.el-dialog {
  11933. width: 100% !important;
  11934. max-width: 100% !important;
  11935. height: 100% !important;
  11936. margin: 0 !important;
  11937. }
  11938. .fullStyle {
  11939. width: 100% !important;
  11940. max-width: 100% !important;
  11941. height: 100% !important;
  11942. margin: 0 auto !important;
  11943. }
  11944. .wb_j_box_btn {
  11945. width: calc(100% - 30px);
  11946. display: flex;
  11947. height: 40px;
  11948. border: 1.5px solid #CAD1DC;
  11949. border-radius: 4px;
  11950. box-sizing: border-box;
  11951. align-items: center;
  11952. font-size: 14px;
  11953. cursor: pointer;
  11954. overflow: hidden;
  11955. }
  11956. .wb_j_box_btn:hover{
  11957. border: 1.5px solid #0061FF;
  11958. }
  11959. .wb_j_box_title {
  11960. background: #F0F4FA;
  11961. height: 100%;
  11962. line-height: 40px;
  11963. width: 90px;
  11964. text-align: center;
  11965. color: #060E17;
  11966. border-right: 1.5px solid #CAD1DC;
  11967. box-sizing: border-box;
  11968. }
  11969. .wb_j_box_btn_c {
  11970. width: calc(100% - 90px);
  11971. padding: 0 35px 0 10px;
  11972. box-sizing: border-box;
  11973. position: relative;
  11974. }
  11975. .wb_j_box_span {
  11976. width: 100%;
  11977. overflow: hidden;
  11978. white-space: nowrap;
  11979. text-overflow: ellipsis;
  11980. word-wrap: break-word;
  11981. color: #717C8D;
  11982. }
  11983. .wb_j_box_arrow {
  11984. content: '';
  11985. width: 14px;
  11986. height: 14px;
  11987. background: url(../../assets/icon/new/u_arrow.png);
  11988. background-size: 100% 100%;
  11989. position: absolute;
  11990. right: 12px;
  11991. top: 50%;
  11992. transform: translateY(-50%);
  11993. }
  11994. .check_classBox{
  11995. height: 400px;
  11996. display: flex;
  11997. border-top: 1.5px solid #E7EBF1;
  11998. border-bottom: 1.5px solid #E7EBF1;
  11999. }
  12000. .check_class_right{
  12001. width: 130px;
  12002. border-right: 1px solid #E7EBF1;
  12003. display: flex;
  12004. align-items: center;
  12005. flex-direction: column;
  12006. height: 100%;
  12007. overflow: auto;
  12008. padding: 15px 0;
  12009. box-sizing: border-box;
  12010. }
  12011. .check_class{
  12012. width: 85%;
  12013. border-radius: 5px;
  12014. height: 30px;
  12015. line-height: 30px;
  12016. text-align: center;
  12017. padding: 0 10px;
  12018. box-sizing: border-box;
  12019. cursor:pointer;
  12020. white-space: nowrap;
  12021. overflow: hidden;
  12022. text-overflow: ellipsis;
  12023. }
  12024. .check_class.activeX{
  12025. background: #E0EAFB;
  12026. color:#3681FC;
  12027. font-weight:700;
  12028. }
  12029. .check_class + .check_class{
  12030. margin-top: 15px;
  12031. }
  12032. .check_class_left{
  12033. background: #FAFAFA;
  12034. width: calc(100% - 130px);
  12035. padding: 15px;
  12036. box-sizing: border-box;
  12037. }
  12038. .check_class_left_title{
  12039. font-size: 16px;
  12040. font-weight: 700;
  12041. margin-bottom: 10px;
  12042. }
  12043. .check_class_item{
  12044. display: flex;
  12045. flex-wrap: wrap;
  12046. height: calc(100% - 45px);
  12047. overflow: auto;
  12048. justify-content: flex-start;
  12049. align-items: flex-start;
  12050. align-content: flex-start;
  12051. }
  12052. .class_item{
  12053. margin: 0 15px 15px 0;
  12054. }
  12055. .class_item:hover >>> .el-checkbox__label{
  12056. color:#409EFF;
  12057. }
  12058. .class_item >>> .el-checkbox__label{
  12059. color: #0E1E33;
  12060. }
  12061. .class_item:hover >>> .el-checkbox__inner{
  12062. border-color: #409EFF;
  12063. }
  12064. .class_item >>> .el-checkbox, .class_item >>> .el-checkbox__input{
  12065. display: flex;
  12066. align-items: center;
  12067. }</style>