addCourse.vue 426 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585
  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. ">
  542. <!-- :style="{ maxWidth: (userid == courseUserid || role == '1') ? 'calc(100% - 300px)' : 'calc(100% - 175px)' }" -->
  543. <div class="cru_selectBox"
  544. :style="{ maxWidth: isPasteTask ? 'calc(100% - 175px)' : 'calc(100% - 40px)' }">
  545. <div v-for="(item, index) in unitJson" :key="index" class="cru_select"
  546. :class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
  547. <!-- item.dyName ? item.dyName : -->
  548. <span v-if="unitJson[unitJson.length - 1].easy == 4 ||
  549. unitJson[unitJson.length - 1].easy == 6
  550. ">{{
  551. item.dyName ? item.dyName : "第" + (index + 1) + "阶段"
  552. }}</span>
  553. <span v-else>{{ "第" + (index + 1) + "阶段" }}</span>
  554. </div>
  555. <div class="cru_line" :style="{
  556. left: offsetLetfPx + 'px',
  557. }"></div>
  558. </div>
  559. <div class="addStageImg" @click="addunit()" v-if="!(unitJson[unitJson.length - 1].easy == 4) &&
  560. !(unitJson[unitJson.length - 1].easy == 6)
  561. ">
  562. <img src="../../assets/icon/new/addStage.png" alt />
  563. </div>
  564. <!-- v-if="steps == 3 && (userid == courseUserid || role == '1')" -->
  565. <button class="c_pub_button_add" @click="openStageBox" v-show="false"
  566. style="margin: 0 0 0 auto;">阶段顺序</button>
  567. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3 && isPasteTask"
  568. style="margin: 0 0 0 auto;">智能粘贴</button>
  569. </div>
  570. <div style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
  571. v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
  572. <div>
  573. <div class="chapter_contentbox">
  574. <!-- <div>第{{ unitIndex + 1 }}阶段</div> -->
  575. <div class="cc_input">
  576. <input ref="dyInput" type="text" placeholder="请输入阶段标题" class="binfo_input"
  577. v-model="unitJson[unitIndex].dyName" />
  578. </div>
  579. <div class="remove" v-if="unitJson.length > 1 &&
  580. !(unitJson[unitJson.length - 1].easy == 4) &&
  581. !(unitJson[unitJson.length - 1].easy == 6)
  582. " @click="deleteUnit(unitIndex)"></div>
  583. </div>
  584. </div>
  585. <!-- <div v-if="!unitJson[unitIndex].easy" style="
  586. margin: 50px 0px 10px;
  587. font-size: 1.5em;
  588. font-weight: 700;
  589. color: #0f7eff;
  590. ">
  591. 添加任务
  592. </div> -->
  593. <div class="taskBorder" :style="{ minHeight: unitJson[unitIndex].easy && 'unset' }"
  594. :class="{ smallTaskBorder: itemTask.isFold === 1 }"
  595. v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
  596. <div style="background: #fff;border-radius: 5px;">
  597. <!-- padding: 20px; -->
  598. <div v-if="unitJson[unitIndex].easy != 1">
  599. <div :style="{
  600. marginBottom:
  601. unitJson[unitIndex].easy == 3 ||
  602. (unitJson[unitIndex].easy == 5 &&
  603. itemTask.taskType == 1)
  604. ? '75px'
  605. : '0',
  606. }">
  607. <div style="
  608. display: flex;
  609. margin: 0px 0 20px;
  610. flex-direction: row;
  611. justify-content: flex-start;
  612. align-items: center;
  613. ">
  614. <div class="lineTitle">任务{{itemTaskIndex+1}}概述</div>
  615. </div>
  616. <div :id="'task' + itemTaskIndex" class="chapter_contentbox" style="
  617. flex-direction: row;
  618. justify-content: flex-start;
  619. align-items: center;
  620. margin:0;
  621. ">
  622. <!-- <div class="cc_title">
  623. 任务{{ itemTaskIndex + 1 }}
  624. </div> -->
  625. <div class="cc_input">
  626. <input type="text" placeholder="输入任务名称" class="binfo_input" style="border-radius: 4px"
  627. v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  628. itemTaskIndex
  629. ].task
  630. " />
  631. </div>
  632. <div class="remove" v-if="item.taskJson.length > 1 &&
  633. (!unitJson[unitIndex].easy ||
  634. unitJson[unitIndex].easy == 6)
  635. " @click="deleteTask(itemTaskIndex)"></div>
  636. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2"
  637. class="show_taskD show" @click="fold2(itemTaskIndex)"><img
  638. src="../../assets/icon/new/icon-slide.png" />收起任务描述</div>
  639. <div v-else-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" class="show_taskD"
  640. @click="fold2(itemTaskIndex)"><img src="../../assets/icon/new/icon-slide.png" />展开任务描述
  641. </div>
  642. </div>
  643. <!-- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="
  644. display: flex;
  645. margin: 20px 0;
  646. flex-direction: row;
  647. justify-content: flex-start;
  648. align-items: center;
  649. ">
  650. <div class="lineTitle">任务描述</div>
  651. </div> -->
  652. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="margin-top: 20px;">
  653. <editor-bar class="addEditor" style="margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  654. itemTaskIndex
  655. ].taskDetail
  656. " @change="change"></editor-bar>
  657. <!-- <textarea
  658. rows="6"
  659. class="binfo_input"
  660. placeholder="请输入任务描述"
  661. cols
  662. style="width: 70.5% !important; height: 120px"
  663. v-model="
  664. unitJson[unitIndex].chapterInfo[0].taskJson[
  665. itemTaskIndex
  666. ].taskDetail
  667. "
  668. ></textarea>-->
  669. </div>
  670. </div>
  671. </div>
  672. <div style="position:relative" v-if="!unitJson[unitIndex].easy ||
  673. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  674. ">
  675. <div style="
  676. display: flex;
  677. flex-direction: row;
  678. justify-content: space-between;
  679. align-items: center;
  680. " :style="{ margin: !itemTask.isFoldchapter ? '20px 0' : '20px 0 10px' }">
  681. <div class="lineTitle">学习内容</div>
  682. <div v-if="!itemTask.isFoldchapter" class="show_taskD show" @click="foldC(itemTaskIndex)"><img
  683. src="../../assets/icon/new/icon-slide.png" />收起学习内容</div>
  684. <div v-else class="show_taskD" @click="foldC(itemTaskIndex)"><img
  685. src="../../assets/icon/new/icon-slide.png" />展开学习内容</div>
  686. <!-- <div class="line"></div> -->
  687. </div>
  688. <div v-if="!itemTask.isFoldchapter">
  689. <div class="add_chapters_box add_c_none" v-if="itemTask.chapterData &&
  690. itemTask.chapterData.length == 0
  691. "><img src="../../assets/icon/new/c_none.png" alt /><span>请添加学习内容</span></div>
  692. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  693. <div class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  694. @click="
  695. getChapterData(
  696. $event,
  697. unitIndex,
  698. index,
  699. index1,
  700. item1.type
  701. )
  702. ">
  703. <div class="chapter_upload_o" style="
  704. position: relative;
  705. display: flex;
  706. align-items: center;
  707. ">
  708. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  709. <div v-if="item1.type == 2" class="chapter_upload_l_i2"></div>
  710. <div v-if="item1.type == 3" class="chapter_upload_l_i3" style="margin-left: 1px">
  711. </div>
  712. <div v-if="item1.type == 6" class="chapter_upload_l_i6" style="margin-left: 1px">
  713. </div>
  714. <!-- <div v-if="item1.type == 7" class="chapter_upload_l_i8" style="margin-left: 1px"></div> -->
  715. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px">
  716. </div>
  717. <div v-if="item1.type == 14" class="chapter_upload_l_i14" style="margin-left: 1px">
  718. </div>
  719. <div v-if="item1.type == 12" class="chapter_upload_l_i12" style="margin-left: 1px">
  720. </div>
  721. <div v-if="item1.type == 13" class="chapter_upload_l_i13" style="margin-left: 1px">
  722. </div>
  723. </div>
  724. <div class="chapter_upload_n">
  725. <input readonly="true" v-if="item1.type == 2 ||
  726. item1.type == 3 ||
  727. item1.type == 12 ||
  728. item1.type == 13 ||
  729. item1.type == 7
  730. " :placeholder="item1.name" @click="
  731. updataVideoT(
  732. $event,
  733. unitIndex,
  734. itemTaskIndex,
  735. index1
  736. )
  737. " style="
  738. border: none;
  739. outline: none;
  740. width: 80%;
  741. minwidth: 215px;
  742. z-index: 99;
  743. font-size: 14px;
  744. white-space: nowrap;
  745. overflow: hidden;
  746. text-overflow: ellipsis;
  747. " />
  748. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  749. border: none;
  750. outline: none;
  751. width: 80%;
  752. white-space: nowrap;
  753. overflow: hidden;
  754. text-overflow: ellipsis;
  755. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  756. <input :placeholder="item1.title ? item1.title : '链接'
  757. " v-if="item1.type == 8" style="
  758. border: none;
  759. outline: none;
  760. width: 80%;
  761. white-space: nowrap;
  762. overflow: hidden;
  763. text-overflow: ellipsis;
  764. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  765. <input :placeholder="item1.title ? item1.title : '链接'
  766. " v-if="item1.type == 14" style="
  767. border: none;
  768. outline: none;
  769. width: 80%;
  770. white-space: nowrap;
  771. overflow: hidden;
  772. text-overflow: ellipsis;
  773. " readonly="true" @click="openUpdateSource(itemTaskIndex, index1)" />
  774. </div>
  775. <div class="chapter_upload_ic">
  776. <div class="chapter_upload_noSee" v-if="item1.type == 12">
  777. </div>
  778. <div class="chapter_upload_ud" style="z-index: 99">
  779. <div class="chapter_upload_up" @click="
  780. upCd(
  781. $event,
  782. unitIndex,
  783. index,
  784. itemTaskIndex,
  785. index1
  786. )
  787. "></div>
  788. <div class="chapter_upload_down" @click="
  789. downCd(
  790. $event,
  791. unitIndex,
  792. index,
  793. itemTaskIndex,
  794. index1
  795. )
  796. "></div>
  797. </div>
  798. <div class="chapter_upload_ic_edit" v-if="item1.type == 2 ||
  799. item1.type == 3 ||
  800. item1.type == 12 ||
  801. item1.type == 13 ||
  802. item1.type == 7
  803. " @click.stop="
  804. updataVideoT(
  805. $event,
  806. unitIndex,
  807. itemTaskIndex,
  808. index1
  809. )
  810. ">
  811. <div></div>
  812. </div>
  813. <div class="chapter_upload_ic_edit" v-if="item1.type == 6"
  814. @click="selectAttText(itemTaskIndex, index1)">
  815. <div></div>
  816. </div>
  817. <div class="chapter_upload_ic_edit" v-if="item1.type == 8"
  818. @click="selectLine(itemTaskIndex, index1)">
  819. <div></div>
  820. </div>
  821. <div class="chapter_upload_ic_edit" v-if="item1.type == 14"
  822. @click="openUpdateSource(itemTaskIndex, index1)">
  823. <div></div>
  824. </div>
  825. <div class="chapter_upload_ic_r" @click.stop="
  826. deleteChapterData(
  827. $event,
  828. unitIndex,
  829. index,
  830. index1,
  831. itemTaskIndex
  832. )
  833. ">
  834. <div></div>
  835. </div>
  836. </div>
  837. </div>
  838. </div>
  839. </div>
  840. </div>
  841. <div class="add_info_box" v-if="!itemTask.isFoldchapter">
  842. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  843. 添加文件
  844. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="
  845. beforeUpload2($event, unitIndex, 13, itemTaskIndex)
  846. " />
  847. </button>
  848. <!-- <button class="info_btn" @click="addImg($event)">
  849. 添加视频
  850. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo" style="display: none"
  851. v-if="inputShow" @change="beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  852. " />
  853. </button>
  854. <button class="info_btn" @click="addImg($event)">
  855. 添加文档
  856. <input type="file"
  857. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  858. style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  859. " />
  860. </button> -->
  861. <button class="c_pub_button_add pub_btn_add_img" @click="addAttText(itemTaskIndex)">
  862. 添加图文
  863. </button>
  864. <button class="c_pub_button_add pub_btn_add_img" @click="openLine(itemTaskIndex)">
  865. 添加链接
  866. </button>
  867. <button class="c_pub_button_add pub_btn_add_img" @click="pasteLine(itemTaskIndex)">
  868. 嵌入代码
  869. </button>
  870. <button class="c_pub_button_add pub_btn_add_img" @click="openSource(itemTaskIndex)">
  871. 添加资源
  872. </button>
  873. <!-- <button class="info_btn" @click="addImg($event)">
  874. 其他附件
  875. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 12, itemTaskIndex)
  876. " />
  877. </button> -->
  878. </div>
  879. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  880. itemTaskIndex
  881. ].proVisible
  882. " class="mask">
  883. <div class="progressBox">
  884. <!-- <div id="closePro" class="closeCss">
  885. <img src="../../../assets/icon/close.png" alt />
  886. </div> -->
  887. <div class="lbox">
  888. <img src="../../assets/loading.gif" />上传中,请稍后
  889. </div>
  890. <div style="margin-bottom: 10px">
  891. <span>{{
  892. unitJson[unitIndex].chapterInfo[0].taskJson[
  893. itemTaskIndex
  894. ].isFinishSize
  895. }}M</span>
  896. /
  897. <span>{{
  898. unitJson[unitIndex].chapterInfo[0].taskJson[
  899. itemTaskIndex
  900. ].isAllSize
  901. }}M</span>
  902. </div>
  903. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  904. itemTaskIndex
  905. ].progress
  906. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  907. itemTaskIndex
  908. ].progress
  909. : 0
  910. " style="width: 80%"></el-progress>
  911. </div>
  912. </div>
  913. </div>
  914. <div v-if="unitJson[unitIndex].easy == 1 ||
  915. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  916. ">
  917. <div>
  918. <div class="add_chapters_box add_c_none" v-if="itemTask.chapterData &&
  919. itemTask.chapterData.length == 0
  920. "><img src="../../assets/icon/new/c_none.png" alt /></div>
  921. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  922. <div class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  923. @click="
  924. getChapterData(
  925. $event,
  926. unitIndex,
  927. index,
  928. index1,
  929. item1.type
  930. )
  931. ">
  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. };
  3743. },
  3744. directives: {
  3745. autoHeight: {
  3746. update(el, binding) {
  3747. const { value } = binding
  3748. if (value && typeof value === 'number') {
  3749. el.style.height = `${value}px`
  3750. } else {
  3751. el.style.height = 'auto'
  3752. }
  3753. },
  3754. componentUpdated(el) {
  3755. el.style.height = `${el.scrollHeight + 5}px`
  3756. },
  3757. },
  3758. },
  3759. computed: {
  3760. // rightBoxHeight: function () {
  3761. // return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
  3762. // },
  3763. offsetLetfPx: function () {
  3764. //addnum可以直接在模板语法里面用,相当于data内的值
  3765. return (
  3766. $(".cru_select")[this.unitIndex] &&
  3767. $(".cru_select")[this.unitIndex].offsetLeft + 5
  3768. );
  3769. },
  3770. getMan2() {
  3771. return function (people) {
  3772. let _people = people;
  3773. let _people2 = "";
  3774. if (this.ManAarray.length) {
  3775. for (var i = 0; i < this.ManAarray.length; i++) {
  3776. if (this.ManAarray[i].userid == people) {
  3777. _people2 = this.ManAarray[i].name;
  3778. break;
  3779. }
  3780. }
  3781. }
  3782. if (people == this.courseUserid) {
  3783. return "";
  3784. }
  3785. return this.ManAarray.length ? _people2 : "";
  3786. };
  3787. },
  3788. getListMan2() {
  3789. return function (list) {
  3790. let _people2 = [];
  3791. if (this.ManAarray.length) {
  3792. for(var j = 0;j < list.length; j++){
  3793. let people = list[j];
  3794. for (var i = 0; i < this.ManAarray.length; i++) {
  3795. if (this.ManAarray[i].userid == people && people != this.courseUserid) {
  3796. _people2.push(this.ManAarray[i].name);
  3797. break;
  3798. }
  3799. }
  3800. }
  3801. }
  3802. return this.ManAarray.length ? _people2.join("、") : "";
  3803. };
  3804. },
  3805. isInvite() {
  3806. return function (cid) {
  3807. let array = [];
  3808. for (var i = 0; i < this.inviteCode.length; i++) {
  3809. array.push(this.inviteCode[i].cid);
  3810. }
  3811. return array.indexOf(cid) != -1;
  3812. };
  3813. },
  3814. getInviteCodeC() {
  3815. return function (cid) {
  3816. let array = [];
  3817. for (var i = 0; i < this.inviteCode.length; i++) {
  3818. array.push(this.inviteCode[i].cid);
  3819. }
  3820. return this.inviteCode[array.indexOf(cid)].ic;
  3821. };
  3822. },
  3823. getClassC() {
  3824. return function (c) {
  3825. let _c2 = "";
  3826. if (this.grade.length) {
  3827. for (var i = 0; i < this.grade.length; i++) {
  3828. if (this.grade[i].id == c) {
  3829. _c2 = this.grade[i].name;
  3830. break;
  3831. }
  3832. }
  3833. }
  3834. return this.grade.length ? _c2 : "";
  3835. };
  3836. },
  3837. getListClassC() {
  3838. return function (list) {
  3839. let _c2 = [];
  3840. if (this.grade.length) {
  3841. for(var j = 0; j < list.length; j++){
  3842. let c = list[j]
  3843. for (var i = 0; i < this.grade.length; i++) {
  3844. if (this.grade[i].id == c) {
  3845. _c2.push(this.grade[i].name);
  3846. break;
  3847. }
  3848. }
  3849. }
  3850. }
  3851. return this.grade.length ? _c2.join('、') : "";
  3852. };
  3853. },
  3854. },
  3855. watch: {
  3856. unitIndex(newValue, oldValue) {
  3857. if (this.isDelete == 2) {
  3858. this.isDelete = 1;
  3859. return;
  3860. }
  3861. if (this.cid != "") {
  3862. let _unitIndex = oldValue;
  3863. if (
  3864. JSON.stringify(this.unitJson2[_unitIndex]) ==
  3865. JSON.stringify(this.unitJson[_unitIndex])
  3866. ) {
  3867. this.$refs.rightboxR.scrollTop = 0;
  3868. return;
  3869. }
  3870. let cPan = 1;
  3871. for (
  3872. var j = 0;
  3873. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  3874. j++
  3875. ) {
  3876. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3877. j
  3878. ].proVisible = false;
  3879. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3880. j
  3881. ].proVisible2 = false;
  3882. if (
  3883. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3884. .length > 1
  3885. ) {
  3886. for (
  3887. var z = 0;
  3888. z <
  3889. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3890. .length;
  3891. z++
  3892. ) {
  3893. if (
  3894. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  3895. .toolChoose[z].tool.length
  3896. ) {
  3897. this.$message.error("请把工具添加完整");
  3898. cPan = 2;
  3899. break;
  3900. }
  3901. }
  3902. }
  3903. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  3904. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  3905. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  3906. (ele) => {
  3907. return ele.value != "";
  3908. }
  3909. );
  3910. }
  3911. }
  3912. if (cPan == 2) {
  3913. this.unitIndex = oldValue;
  3914. return;
  3915. }
  3916. for (var i = 0; i < this.unitJson.length; i++) {
  3917. if (this.addindex != i) {
  3918. delete this.unitJson[i].isUpdate;
  3919. }
  3920. }
  3921. this.$refs.rightboxR.scrollTop = 0;
  3922. this.addindex = -1;
  3923. let params = [
  3924. {
  3925. cid: this.cid,
  3926. chapters: JSON.stringify(this.unitJson),
  3927. uid: this.userid,
  3928. unitIndex: _unitIndex,
  3929. },
  3930. ];
  3931. this.ajax
  3932. .post(this.$store.state.api + "updateWorkNew4", params)
  3933. .then((res) => {
  3934. // this.$message({
  3935. // message: "修改成功",
  3936. // type: "success",
  3937. // });
  3938. // this.courseId = this.cid;
  3939. })
  3940. .catch((err) => {
  3941. this.$message.error("网络不佳");
  3942. console.error(err);
  3943. });
  3944. }
  3945. },
  3946. steps(newValue, old) {
  3947. if (newValue == 4) {
  3948. let cPan = 1;
  3949. for (var i = 0; i < this.unitJson.length; i++) {
  3950. for (
  3951. var j = 0;
  3952. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  3953. j++
  3954. ) {
  3955. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  3956. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  3957. if (
  3958. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  3959. ) {
  3960. for (
  3961. var z = 0;
  3962. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  3963. z++
  3964. ) {
  3965. if (
  3966. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  3967. .length
  3968. ) {
  3969. this.$message.error("请把工具添加完整");
  3970. cPan = 2;
  3971. break;
  3972. }
  3973. }
  3974. }
  3975. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  3976. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  3977. i
  3978. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  3979. return ele.value != "";
  3980. });
  3981. }
  3982. }
  3983. }
  3984. this.inputShow = true;
  3985. if (cPan == 2) {
  3986. this.steps = old;
  3987. return;
  3988. }
  3989. this.goTo(
  3990. "/course?userid=" +
  3991. this.userid +
  3992. "&oid=" +
  3993. this.oid +
  3994. "&org=" +
  3995. this.org +
  3996. "&role=" +
  3997. this.role
  3998. );
  3999. }
  4000. },
  4001. },
  4002. methods: {
  4003. openAI() {
  4004. window.parent.postMessage({ tools: "64" }, "*");
  4005. },
  4006. setMan() {
  4007. // let teacherJuri = this.teacherJuri2;
  4008. this.ManAarray = [];
  4009. let _user = JSON.parse(JSON.stringify(this.checkboxList3));
  4010. if (_user.indexOf(this.courseUserid || this.userid) == -1) {
  4011. _user.push(this.courseUserid || this.userid);
  4012. }
  4013. let params = {
  4014. uid: _user.join(","),
  4015. };
  4016. this.ajax
  4017. .get(this.$store.state.api + "getAllUserById", params)
  4018. .then((res) => {
  4019. let teacherJuri = res.data[0];
  4020. this.ManAarray = teacherJuri;
  4021. })
  4022. .catch((err) => {
  4023. console.error(err);
  4024. });
  4025. },
  4026. previewImg(url) {
  4027. this.$hevueImgPreview(url);
  4028. },
  4029. btnDisplay(bool) {
  4030. this.isBtnDisplay = bool
  4031. },
  4032. stepDisplay(bool) {
  4033. this.isStepDisplay = bool
  4034. },
  4035. scrollChange() {
  4036. this.rightBoxHeight = $(".rightBox")[0].scrollHeight - 80;
  4037. },
  4038. handleCheckAllChange(val) {
  4039. this.checkedCities = val ? cityOptions : [];
  4040. this.isIndeterminate = false;
  4041. },
  4042. handleCheckedCitiesChange(value) {
  4043. let checkedCount = value.length;
  4044. this.checkAll = checkedCount === this.cities.length;
  4045. this.isIndeterminate =
  4046. checkedCount > 0 && checkedCount < this.cities.length;
  4047. },
  4048. addHw(e) {
  4049. var el = e.currentTarget;
  4050. el.getElementsByTagName("input")[0].click();
  4051. },
  4052. change(val) {
  4053. if (this.dialogVisible1) {
  4054. this.tdetail = val
  4055. } else if (this.dialogVisible6) {
  4056. this.AttText.text = val
  4057. } else if (this.dialogVisible2) {
  4058. this.cTemplate = val
  4059. } else if (this.dialogVisibleTable) {
  4060. this.tableJson.text = val
  4061. }
  4062. this.$forceUpdate();
  4063. console.log(val);
  4064. },
  4065. change2(val) {
  4066. console.log(val);
  4067. this.$forceUpdate();
  4068. },
  4069. handleClose(done) {
  4070. done();
  4071. },
  4072. closePan(tool) {
  4073. if (tool == 15) {
  4074. if (JSON.stringify(this.answerQ) == JSON.stringify(this.answerQ2)) {
  4075. this.dialogVisible8 = false
  4076. } else {
  4077. this.closeConfirm(tool);
  4078. }
  4079. } else if (tool == 4) {
  4080. if (JSON.stringify(this.askJson) == JSON.stringify(this.askJson2)) {
  4081. this.dialogVisible5 = false
  4082. } else {
  4083. this.closeConfirm(tool);
  4084. }
  4085. } else if (tool == 45) {
  4086. if (JSON.stringify(this.testJson) == JSON.stringify(this.testJson2)) {
  4087. this.dialogVisibleChoice = false
  4088. } else {
  4089. this.closeConfirm(tool);
  4090. }
  4091. } else if (tool == 41) {
  4092. if (JSON.stringify(this.selectJson) == JSON.stringify(this.selectJson2)) {
  4093. this.dialogVisibleSelect = false
  4094. } else {
  4095. this.closeConfirm(tool);
  4096. }
  4097. } else if (tool == 47) {
  4098. if (JSON.stringify(this.sentenceList) == JSON.stringify(this.sentenceList2)) {
  4099. this.dialogVisibleSentence = false
  4100. } else {
  4101. this.closeConfirm(tool);
  4102. }
  4103. }
  4104. },
  4105. closeConfirm(tool) {
  4106. this
  4107. .$confirm("是否保存已编辑内容?", "提示", {
  4108. confirmButtonText: "保存",
  4109. cancelButtonText: "不保存",
  4110. type: "warning",
  4111. })
  4112. .then(() => {
  4113. if (tool == 15) {
  4114. this.addAnswer();
  4115. } else if (tool == 4) {
  4116. this.addAsk();
  4117. } else if (tool == 45) {
  4118. this.addTest();
  4119. } else if (tool == 41) {
  4120. this.addSelectAnswer();
  4121. } else if (tool == 47) {
  4122. this.addSentenceTool();
  4123. }
  4124. })
  4125. .catch(() => {
  4126. if (tool == 15) {
  4127. this.dialogVisible8 = false;
  4128. } else if (tool == 4) {
  4129. this.dialogVisible5 = false;
  4130. } else if (tool == 45) {
  4131. this.dialogVisibleChoice = false;
  4132. } else if (tool == 41) {
  4133. this.dialogVisibleSelect = false;
  4134. } else if (tool == 47) {
  4135. this.dialogVisibleSentence = false;
  4136. }
  4137. });
  4138. },
  4139. imgChange2(i, j) {
  4140. var _tmp = this.testJson.testJson[i].checkList[j];
  4141. this.noneBtnImg = _tmp.length >= 1;
  4142. },
  4143. imgChange3(i) {
  4144. var _tmp = this.testJson.testJson[i];
  4145. this.noneBtnImg = _tmp.length >= 1;
  4146. },
  4147. imgChange1(file, fileList, type, itemTaskIndex) {
  4148. if (type == 1) {
  4149. var _tmp = this.cover;
  4150. } else if (
  4151. type == 2 ||
  4152. type == 3 ||
  4153. type == 6 ||
  4154. type == 7 ||
  4155. type == 8
  4156. ) {
  4157. var _tmp =
  4158. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4159. .chapterData;
  4160. } else if (type == 4) {
  4161. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  4162. } else {
  4163. var _tmp =
  4164. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4165. .homeworkList;
  4166. }
  4167. this.noneBtnImg = _tmp.length >= 1;
  4168. },
  4169. goTo(path) {
  4170. this.$router.push(path);
  4171. },
  4172. guid() {
  4173. var _num,
  4174. i,
  4175. _guid = "";
  4176. for (i = 0; i < 32; i++) {
  4177. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  4178. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  4179. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  4180. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  4181. _guid += "-";
  4182. }
  4183. }
  4184. return _guid;
  4185. },
  4186. retrunCourse() {
  4187. this
  4188. .$confirm("是否保存已编辑内容?", "提示", {
  4189. confirmButtonText: "保存",
  4190. cancelButtonText: "不保存",
  4191. type: "warning",
  4192. })
  4193. .then(() => {
  4194. if (this.cid == "" || this.cid == undefined) {
  4195. if (this.courseName == "") {
  4196. this.$message.error("请补充填写课程名称");
  4197. return;
  4198. } else {
  4199. this.addWork();
  4200. }
  4201. this.steps = 4
  4202. } else {
  4203. if (this.courseName == "") {
  4204. this.$message.error("请补充填写课程名称");
  4205. return;
  4206. } else {
  4207. if (this.userid != this.courseUserid && this.role != "1") {
  4208. this.updateWork2();
  4209. } else {
  4210. this.updateWork();
  4211. }
  4212. this.steps = 4
  4213. }
  4214. }
  4215. })
  4216. .catch(() => {
  4217. this.goTo(
  4218. "/course?userid=" +
  4219. this.userid +
  4220. "&oid=" +
  4221. this.oid +
  4222. "&org=" +
  4223. this.org +
  4224. "&role=" +
  4225. this.role
  4226. );
  4227. });
  4228. },
  4229. lastSteps() {
  4230. if (this.steps == 4) {
  4231. this.goTo(
  4232. "/course?userid=" +
  4233. this.userid +
  4234. "&oid=" +
  4235. this.oid +
  4236. "&org=" +
  4237. this.org +
  4238. "&role=" +
  4239. this.role
  4240. );
  4241. } else {
  4242. if (this.cidType == 0) {
  4243. this.steps--;
  4244. if (this.steps == 1) {
  4245. setTimeout(() => {
  4246. this.checkEva(this.checkId);
  4247. setTimeout(() => {
  4248. this.checkEva(this.checkId);
  4249. }, 100);
  4250. }, 100);
  4251. }
  4252. } else {
  4253. if (this.steps == 3) {
  4254. this.steps = 1;
  4255. setTimeout(() => {
  4256. this.checkEva(this.checkId);
  4257. setTimeout(() => {
  4258. this.checkEva(this.checkId);
  4259. }, 100);
  4260. }, 100);
  4261. }
  4262. }
  4263. }
  4264. },
  4265. navSteps(s) {
  4266. if (this.courseName == "") {
  4267. this.$message.error("请补充填写课程名称");
  4268. return;
  4269. }
  4270. if (this.cidType == 0) {
  4271. if (this.steps == 1) {
  4272. if (this.cid == "" || this.cid == undefined) {
  4273. this.addWork();
  4274. } else {
  4275. if (this.userid != this.courseUserid && this.role != "1") {
  4276. // this.updateWork2();
  4277. } else {
  4278. this.updateWork();
  4279. }
  4280. }
  4281. }
  4282. if (s == 1) {
  4283. this.steps = 1;
  4284. setTimeout(() => {
  4285. this.checkEva(this.checkId);
  4286. setTimeout(() => {
  4287. this.checkEva(this.checkId);
  4288. }, 100);
  4289. }, 100);
  4290. }
  4291. if (s == 2) {
  4292. this.steps = 2;
  4293. }
  4294. if (s == 3) {
  4295. this.cTemplate = this.templateC.content;
  4296. this.dialogVisible2 = false;
  4297. this.steps = 3;
  4298. this.isClickColor = 1
  4299. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4300. this.$forceUpdate();
  4301. setTimeout(() => {
  4302. this.checkEva(this.checkId);
  4303. setTimeout(() => {
  4304. this.checkEva(this.checkId);
  4305. }, 100);
  4306. }, 1000);
  4307. }
  4308. } else {
  4309. if (this.steps == 1) {
  4310. if (this.cid == "" || this.cid == undefined) {
  4311. this.addWork();
  4312. } else {
  4313. if (this.userid != this.courseUserid && this.role != "1") {
  4314. // this.updateWork2();
  4315. } else {
  4316. this.updateWork();
  4317. }
  4318. }
  4319. }
  4320. if (s == 1) {
  4321. this.steps = 1;
  4322. setTimeout(() => {
  4323. this.checkEva(this.checkId);
  4324. setTimeout(() => {
  4325. this.checkEva(this.checkId);
  4326. }, 100);
  4327. }, 100);
  4328. }
  4329. if (s == 3) {
  4330. this.cTemplate = this.templateC.content;
  4331. this.dialogVisible2 = false;
  4332. this.steps = 3;
  4333. this.isClickColor = 1
  4334. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4335. this.$forceUpdate();
  4336. setTimeout(() => {
  4337. this.checkEva(this.checkId);
  4338. setTimeout(() => {
  4339. this.checkEva(this.checkId);
  4340. }, 100);
  4341. }, 1000);
  4342. }
  4343. }
  4344. this.$refs.stepBox.scrollTop = 0;
  4345. },
  4346. nextSteps() {
  4347. if (this.cidType == 1) {
  4348. if (this.steps == 1) {
  4349. if (this.courseName != "") {
  4350. this.steps = 3;
  4351. this.isClickColor = 1
  4352. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  4353. this.$forceUpdate();
  4354. setTimeout(() => {
  4355. this.checkEva(this.checkId);
  4356. setTimeout(() => {
  4357. this.checkEva(this.checkId);
  4358. }, 100);
  4359. }, 1000);
  4360. if (this.cid == "" || this.cid == undefined) {
  4361. this.addWork();
  4362. } else {
  4363. if (this.userid != this.courseUserid && this.role != "1") {
  4364. // this.updateWork2();
  4365. } else {
  4366. this.updateWork();
  4367. }
  4368. }
  4369. } else {
  4370. this.$message.error("请补充填写课程名称");
  4371. return;
  4372. }
  4373. } else if (this.steps == 3) {
  4374. if (this.cid == "" || this.cid == undefined) {
  4375. if (this.courseName == "") {
  4376. this.$message.error("请补充填写课程名称");
  4377. return;
  4378. } else {
  4379. this.addWork();
  4380. this.steps++;
  4381. }
  4382. } else {
  4383. if (this.courseName == "") {
  4384. this.$message.error("请补充填写课程名称");
  4385. return;
  4386. } else {
  4387. if (this.userid != this.courseUserid && this.role != "1") {
  4388. this.updateWork2();
  4389. } else {
  4390. this.updateWork();
  4391. }
  4392. this.steps++;
  4393. }
  4394. }
  4395. }
  4396. } else {
  4397. if (this.steps == 1) {
  4398. if (this.courseName != "") {
  4399. if (this.cid == "" || this.cid == undefined) {
  4400. this.addWork();
  4401. } else {
  4402. if (this.userid != this.courseUserid && this.role != "1") {
  4403. // this.updateWork2();
  4404. } else {
  4405. this.updateWork();
  4406. }
  4407. }
  4408. this.steps++;
  4409. } else {
  4410. this.$message.error("请补充填写课程名称");
  4411. return;
  4412. }
  4413. } else if (this.steps == 2) {
  4414. if (this.templateC.id != "" || this.templateC.id != undefined) {
  4415. this.cTemplate = this.templateC.content;
  4416. }
  4417. this.dialogVisible2 = false;
  4418. this.steps++;
  4419. setTimeout(() => {
  4420. this.checkEva(this.checkId);
  4421. setTimeout(() => {
  4422. this.checkEva(this.checkId);
  4423. }, 100);
  4424. }, 1000);
  4425. } else if (this.steps == 3) {
  4426. if (this.cid == "" || this.cid == undefined) {
  4427. if (this.courseName == "") {
  4428. this.$message.error("请补充填写课程名称");
  4429. return;
  4430. } else {
  4431. this.addWork();
  4432. this.steps++;
  4433. }
  4434. } else {
  4435. if (this.courseName == "") {
  4436. this.$message.error("请补充填写课程名称");
  4437. return;
  4438. } else {
  4439. if (this.userid != this.courseUserid && this.role != "1") {
  4440. this.updateWork2();
  4441. } else {
  4442. this.updateWork();
  4443. }
  4444. this.steps++;
  4445. }
  4446. }
  4447. }
  4448. }
  4449. this.$refs.stepBox.scrollTop = 0;
  4450. },
  4451. unitSet(i) {
  4452. this.unitIndex = i;
  4453. this.isClickColor = 1
  4454. // this.$refs.rightboxR.scrollTop = 0;
  4455. this.$refs.unitBox.scrollTop = 0
  4456. },
  4457. time() {
  4458. if (!this.now) {
  4459. this.now = new Date().getTime();
  4460. return true;
  4461. } else {
  4462. let time = new Date().getTime();
  4463. if (time - this.now > 3000) {
  4464. this.now = time;
  4465. return true;
  4466. } else {
  4467. return false;
  4468. }
  4469. }
  4470. },
  4471. deleteUnit(i) {
  4472. var _this = this;
  4473. if (_this.time()) {
  4474. _this
  4475. .$confirm("确定删除此单元吗?", "提示", {
  4476. confirmButtonText: "确定",
  4477. cancelButtonText: "取消",
  4478. type: "warning",
  4479. })
  4480. .then(() => {
  4481. _this.isDelete = 2;
  4482. // _this.unitIndex = _this.unitIndex - 1;
  4483. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  4484. // _this.$message.success("删除成功");
  4485. })
  4486. .catch(() => {
  4487. return;
  4488. });
  4489. }
  4490. },
  4491. deleteWork(chapid) {
  4492. let params = [
  4493. {
  4494. cid: this.cid,
  4495. chapters: JSON.stringify(this.unitJson),
  4496. uid: this.userid,
  4497. chapid: chapid,
  4498. },
  4499. ];
  4500. this.ajax
  4501. .post(this.$store.state.api + "deleteWork", params)
  4502. .then((res) => {
  4503. this.$message({
  4504. message: "删除成功",
  4505. type: "success",
  4506. });
  4507. this.unitJson.splice(this.unitIndex, 1);
  4508. this.unitIndex = this.unitIndex - 1;
  4509. })
  4510. .catch((err) => {
  4511. this.$message.error("网络不佳");
  4512. console.error(err);
  4513. });
  4514. },
  4515. deleteTool(itemTaskIndex, i) {
  4516. var _this = this;
  4517. if (_this.time()) {
  4518. _this
  4519. .$confirm("确定删除此工具吗?", "提示", {
  4520. confirmButtonText: "确定",
  4521. cancelButtonText: "取消",
  4522. type: "warning",
  4523. })
  4524. .then(() => {
  4525. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4526. itemTaskIndex
  4527. ].toolChoose.splice(i, 1);
  4528. _this.$message.success("删除成功");
  4529. })
  4530. .catch(() => {
  4531. return;
  4532. });
  4533. }
  4534. },
  4535. deleteSentence(i) {
  4536. var _this = this;
  4537. _this
  4538. .$confirm("确定删除此题目吗?", "提示", {
  4539. confirmButtonText: "确定",
  4540. cancelButtonText: "取消",
  4541. type: "warning",
  4542. })
  4543. .then(() => {
  4544. _this.sentenceList.splice(i, 1);
  4545. _this.$message.success("删除成功");
  4546. })
  4547. .catch(() => {
  4548. return;
  4549. });
  4550. },
  4551. deleteS(s, i, j) {
  4552. this.sentenceList[i].addSentence.splice(j, 1);
  4553. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  4554. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  4555. this.sentenceList[i].rightAnswer.splice(a, 1);
  4556. }
  4557. },
  4558. openT() {
  4559. window.parent.postMessage({ tools: "25" }, "*");
  4560. },
  4561. deleteTask(i) {
  4562. var _this = this;
  4563. if (_this.time()) {
  4564. _this
  4565. .$confirm(
  4566. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.length -
  4567. 1 ==
  4568. i
  4569. ? "确定删除此任务吗?"
  4570. : "切换任务顺序将删除所有工具的提交成果,是否继续此操作?",
  4571. "提示",
  4572. {
  4573. confirmButtonText: "确定",
  4574. cancelButtonText: "取消",
  4575. type: "warning",
  4576. }
  4577. )
  4578. .then(() => {
  4579. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  4580. i,
  4581. 1
  4582. );
  4583. _this.$message.success("删除成功");
  4584. })
  4585. .catch(() => {
  4586. return;
  4587. });
  4588. }
  4589. },
  4590. handlePictureCardPreview(file) {
  4591. this.dialogImageUrl = file.url;
  4592. },
  4593. clean(i, c) {
  4594. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  4595. },
  4596. handle_remove1(file, fileList, type) {
  4597. var _tmp = this.cover;
  4598. // for (var i = 0, len = _tmp.length; i < len; i++) {
  4599. // if (_tmp[i].uid == file.uid) {
  4600. // _tmp.splice(i, 1);
  4601. // break;
  4602. // }
  4603. // this.cover = _tmp;
  4604. // }
  4605. this.cover = [];
  4606. this.noneBtnImg = this.cover.length >= 1;
  4607. this.isSysPic = false;
  4608. this.isSysPic2 = false;
  4609. this.$forceUpdate();
  4610. },
  4611. addImg(e) {
  4612. var el = e.currentTarget;
  4613. el.getElementsByTagName("input")[0].click();
  4614. e.target.value = "";
  4615. },
  4616. addChaptersTools(i) {
  4617. this.chapTools = [
  4618. {
  4619. tools: [],
  4620. toolDetail: "",
  4621. },
  4622. ];
  4623. this.chapCount = i;
  4624. this.dialogVisible4 = true;
  4625. },
  4626. isNoFinsh() {
  4627. this.$message.warning("功能正在开发中");
  4628. },
  4629. addAttText(i) {
  4630. this.AttText = {
  4631. title: "",
  4632. text: "",
  4633. };
  4634. this.taskCount = i;
  4635. this.AttTextType = 0;
  4636. this.$forceUpdate();
  4637. this.dialogVisible6 = true;
  4638. setTimeout(() => {
  4639. this.$refs['fuInput'].focus();
  4640. }, 100);
  4641. },
  4642. openLine(i) {
  4643. this.line = "";
  4644. this.lineCount = i;
  4645. this.lineType = 0;
  4646. this.$forceUpdate();
  4647. this.dialogVisible7 = true;
  4648. },
  4649. pasteLine(i) {
  4650. navigator.clipboard
  4651. .readText()
  4652. .then((v) => {
  4653. console.log("获取剪贴板成功:", v);
  4654. const html = v;
  4655. const regex = /src="(.*?)"/g;
  4656. const match = regex.exec(html);
  4657. if (match && match[1]) {
  4658. console.log(match[1]);
  4659. this.$message.success("粘贴成功");
  4660. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4661. i
  4662. ].chapterData.push({
  4663. name: "链接",
  4664. title: "嵌入代码",
  4665. url: match[1],
  4666. type: 8,
  4667. });
  4668. } else {
  4669. // console.log("未找到包含 src 属性的 iframe");
  4670. this.$message.error("系统没有找到粘贴对象,请首先复制可用于粘贴的链接。");
  4671. }
  4672. })
  4673. .catch((v) => {
  4674. console.log("获取剪贴板失败: ", v);
  4675. });
  4676. },
  4677. openSource(i) {
  4678. this.lineCount = i;
  4679. this.sourceData = {};
  4680. this.dialogVisibleSource = true;
  4681. this.updateSourcePan = false;
  4682. },
  4683. addSource() {
  4684. if (!Object.keys(this.sourceData).length) {
  4685. this.$message.error("请选择要上传的资源");
  4686. return;
  4687. }
  4688. let keys = Object.keys(this.sourceData);
  4689. for (var i = 0; i < keys.length; i++) {
  4690. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4691. this.lineCount
  4692. ].chapterData.push({
  4693. name: "链接",
  4694. title: this.sourceData[keys[i]].name,
  4695. url: this.sourceData[keys[i]].url,
  4696. type: 14,
  4697. id: keys[i]
  4698. });
  4699. }
  4700. this.$forceUpdate();
  4701. this.dialogVisibleSource = false;
  4702. },
  4703. updateSource() {
  4704. if (!Object.keys(this.sourceData).length) {
  4705. this.$message.error("请选择要上传的资源");
  4706. return;
  4707. }
  4708. let keys = Object.keys(this.sourceData);
  4709. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4710. this.taskCount
  4711. ].chapterData[this.lineCount].url = this.sourceData[keys[0]].url;
  4712. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4713. this.taskCount
  4714. ].chapterData[this.lineCount].title = this.sourceData[keys[0]].name;
  4715. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4716. this.taskCount
  4717. ].chapterData[this.lineCount].id = keys[0];
  4718. this.updateSourcePan = false;
  4719. this.$forceUpdate();
  4720. this.dialogVisibleSource = false;
  4721. },
  4722. deleteM(i, j) {
  4723. this.testJson.testJson[i].timuList.splice(j, 1);
  4724. },
  4725. beforeUploadTiMu(event, i) {
  4726. const loading = this.openLoading();
  4727. var file = event.target.files[0];
  4728. var credentials = {
  4729. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4730. secretAccessKey: "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",
  4731. }; //秘钥形式的登录上传
  4732. window.AWS.config.update(credentials);
  4733. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4734. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4735. var _this = this;
  4736. if (file) {
  4737. var params = {
  4738. Key:
  4739. file.name.split(".")[0] +
  4740. new Date().getTime() +
  4741. "." +
  4742. file.name.split(".")[file.name.split(".").length - 1],
  4743. ContentType: file.type,
  4744. Body: file,
  4745. "Access-Control-Allow-Credentials": "*",
  4746. ACL: "public-read",
  4747. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4748. var options = {
  4749. partSize: 2048 * 1024 * 1024,
  4750. queueSize: 2,
  4751. leavePartsOnError: true,
  4752. };
  4753. bucket
  4754. .upload(params, options)
  4755. .on("httpUploadProgress", function (evt) {
  4756. //这里可以写进度条
  4757. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4758. })
  4759. .send(function (err, data) {
  4760. loading.close();
  4761. if (err) {
  4762. _this.$message.error("上传失败");
  4763. } else {
  4764. if (_this.testJson.testJson[i].timuList) {
  4765. _this.testJson.testJson[i].timuList.push({
  4766. src: data.Location,
  4767. });
  4768. } else {
  4769. _this.testJson.testJson[i].timuList = [];
  4770. _this.testJson.testJson[i].timuList.push({
  4771. src: data.Location,
  4772. });
  4773. }
  4774. _this.imgChange3(i);
  4775. _this.$forceUpdate();
  4776. }
  4777. });
  4778. }
  4779. },
  4780. beforeUploadTi(event, i, j) {
  4781. const loading = this.openLoading();
  4782. var file = event.target.files[0];
  4783. var credentials = {
  4784. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4785. secretAccessKey: "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",
  4786. }; //秘钥形式的登录上传
  4787. window.AWS.config.update(credentials);
  4788. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4789. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4790. var _this = this;
  4791. if (file) {
  4792. var params = {
  4793. Key:
  4794. file.name.split(".")[0] +
  4795. new Date().getTime() +
  4796. "." +
  4797. file.name.split(".")[file.name.split(".").length - 1],
  4798. ContentType: file.type,
  4799. Body: file,
  4800. "Access-Control-Allow-Credentials": "*",
  4801. ACL: "public-read",
  4802. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4803. var options = {
  4804. partSize: 2048 * 1024 * 1024,
  4805. queueSize: 2,
  4806. leavePartsOnError: true,
  4807. };
  4808. bucket
  4809. .upload(params, options)
  4810. .on("httpUploadProgress", function (evt) {
  4811. //这里可以写进度条
  4812. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4813. })
  4814. .send(function (err, data) {
  4815. loading.close();
  4816. if (err) {
  4817. _this.$message.error("上传失败");
  4818. } else {
  4819. _this.testJson.testJson[i].checkList[j] = {};
  4820. _this.testJson.testJson[i].checkList[j].src = data.Location;
  4821. _this.testJson.testJson[i].checkList[j].imgType = 1;
  4822. _this.imgChange2(i, j);
  4823. _this.$forceUpdate();
  4824. }
  4825. });
  4826. }
  4827. },
  4828. beforeUpload1(event, type) {
  4829. // const loading = this.openLoading();
  4830. var file = event.target.files[0];
  4831. var credentials = {
  4832. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4833. secretAccessKey: "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",
  4834. }; //秘钥形式的登录上传
  4835. window.AWS.config.update(credentials);
  4836. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4837. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4838. var _this = this;
  4839. if (file) {
  4840. var params = {
  4841. Key:
  4842. file.name.split(".")[0] +
  4843. new Date().getTime() +
  4844. "." +
  4845. file.name.split(".")[file.name.split(".").length - 1],
  4846. ContentType: file.type,
  4847. Body: file,
  4848. "Access-Control-Allow-Credentials": "*",
  4849. ACL: "public-read",
  4850. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4851. var options = {
  4852. partSize: 2048 * 1024 * 1024,
  4853. queueSize: 2,
  4854. leavePartsOnError: true,
  4855. };
  4856. bucket
  4857. .upload(params, options)
  4858. .on("httpUploadProgress", function (evt) {
  4859. //这里可以写进度条
  4860. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4861. })
  4862. .send(function (err, data) {
  4863. // loading.close();
  4864. if (err) {
  4865. // var a = _this.$refs.upload1.uploadFiles;
  4866. // a.splice(a.length - 1, a.length);
  4867. _this.$message.error("上传失败");
  4868. } else {
  4869. _this.cover.push({
  4870. name: file.name,
  4871. url: data.Location,
  4872. uid: file.uid,
  4873. });
  4874. _this.imgChange1(null, null, 1, null);
  4875. _this.choosePicVisible = false;
  4876. console.log(data.Location);
  4877. }
  4878. });
  4879. }
  4880. },
  4881. beforeUploadSelect(event, type) {
  4882. // const loading = this.openLoading();
  4883. var file = event.target.files[0];
  4884. var credentials = {
  4885. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4886. secretAccessKey: "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",
  4887. }; //秘钥形式的登录上传
  4888. window.AWS.config.update(credentials);
  4889. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4890. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4891. var _this = this;
  4892. if (file) {
  4893. var params = {
  4894. Key:
  4895. file.name.split(".")[0] +
  4896. new Date().getTime() +
  4897. "." +
  4898. file.name.split(".")[file.name.split(".").length - 1],
  4899. ContentType: file.type,
  4900. Body: file,
  4901. "Access-Control-Allow-Credentials": "*",
  4902. ACL: "public-read",
  4903. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4904. var options = {
  4905. partSize: 2048 * 1024 * 1024,
  4906. queueSize: 2,
  4907. leavePartsOnError: true,
  4908. };
  4909. bucket
  4910. .upload(params, options)
  4911. .on("httpUploadProgress", function (evt) {
  4912. //这里可以写进度条
  4913. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4914. })
  4915. .send(function (err, data) {
  4916. // loading.close();
  4917. if (err) {
  4918. _this.$message.error("上传失败");
  4919. } else {
  4920. _this.selectJson.url = data.Location;
  4921. console.log(data.Location);
  4922. }
  4923. });
  4924. }
  4925. },
  4926. chooseSysPic(p) {
  4927. this.cover = []
  4928. setTimeout(() => {
  4929. this.cover[0] = {
  4930. name: "系统图片.png",
  4931. url: p,
  4932. };
  4933. this.imgChange1(null, null, 1, null);
  4934. this.$forceUpdate();
  4935. }, 0);
  4936. this.isSysPic = true;
  4937. this.isSysPic2 = false;
  4938. this.sysPicVisible = false;
  4939. this.$forceUpdate();
  4940. },
  4941. chooseSysPic2(p) {
  4942. this.cover = []
  4943. setTimeout(() => {
  4944. this.cover[0] = {
  4945. name: "网络图片.png",
  4946. url: p,
  4947. };
  4948. this.imgChange1(null, null, 1, null);
  4949. this.$forceUpdate();
  4950. }, 0);
  4951. this.isSysPic2 = true;
  4952. this.isSysPic = false;
  4953. this.sysPicVisible2 = false;
  4954. this.$forceUpdate();
  4955. },
  4956. beforeUpload(data) {
  4957. this.$refs.upload1.uploadFiles;
  4958. this.uploadLoading1 = true;
  4959. var file = data.file;
  4960. var credentials = {
  4961. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4962. secretAccessKey: "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",
  4963. }; //秘钥形式的登录上传
  4964. window.AWS.config.update(credentials);
  4965. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4966. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4967. var _this = this;
  4968. if (file) {
  4969. var params = {
  4970. Key:
  4971. file.name.split(".")[0] +
  4972. new Date().getTime() +
  4973. "." +
  4974. file.name.split(".")[file.name.split(".").length - 1],
  4975. ContentType: file.type,
  4976. Body: file,
  4977. "Access-Control-Allow-Credentials": "*",
  4978. ACL: "public-read",
  4979. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4980. var options = {
  4981. partSize: 2048 * 1024 * 1024,
  4982. queueSize: 2,
  4983. leavePartsOnError: true,
  4984. };
  4985. bucket
  4986. .upload(params, options)
  4987. .on("httpUploadProgress", function (evt) {
  4988. //这里可以写进度条
  4989. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4990. })
  4991. .send(function (err, data) {
  4992. _this.uploadLoading1 = false;
  4993. if (err) {
  4994. // var a = _this.$refs.upload1.uploadFiles;
  4995. // a.splice(a.length - 1, a.length);
  4996. _this.$message.error("上传失败");
  4997. } else {
  4998. //上传成功处理
  4999. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  5000. name: file.name,
  5001. url: data.Location,
  5002. uid: file.uid,
  5003. });
  5004. _this.imgChange();
  5005. console.log(data.Location);
  5006. }
  5007. });
  5008. }
  5009. },
  5010. onExceed() {
  5011. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  5012. },
  5013. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  5014. // const loading = this.openLoading();
  5015. var file = event.target.files[0];
  5016. var credentials = {
  5017. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5018. secretAccessKey: "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",
  5019. }; //秘钥形式的登录上传
  5020. window.AWS.config.update(credentials);
  5021. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5022. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5023. var _this = this;
  5024. if (type == 3) {
  5025. var b = [
  5026. "DOC",
  5027. "DOCX",
  5028. "DOCM",
  5029. "DOTM",
  5030. "DOTX",
  5031. "PPTX",
  5032. "PPSX",
  5033. "PPT",
  5034. "PPS",
  5035. "PPTM",
  5036. "POTM",
  5037. "PPAM",
  5038. "POTX",
  5039. "PPSM",
  5040. ];
  5041. if (
  5042. b.indexOf(
  5043. file.name
  5044. .split(".")
  5045. [file.name.split(".").length - 1].toLocaleUpperCase()
  5046. ) != -1
  5047. ) {
  5048. if (file.size / 1024 / 1024 > 80) {
  5049. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5050. this.inputShow = true;
  5051. // var a = _this.$refs.upload1.uploadFiles;
  5052. // a.splice(a.length - 1, a.length);
  5053. // loading.close();
  5054. return;
  5055. }
  5056. } else if (
  5057. file.name
  5058. .split(".")
  5059. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5060. ) {
  5061. if (file.size / 1024 / 1024 > 80) {
  5062. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5063. this.inputShow = true;
  5064. // var a = _this.$refs.upload1.uploadFiles;
  5065. // a.splice(a.length - 1, a.length);
  5066. // loading.close();
  5067. return;
  5068. }
  5069. }
  5070. }
  5071. this.inputShow = false;
  5072. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5073. itemTaskIndex
  5074. ].progress = 0;
  5075. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5076. itemTaskIndex
  5077. ].proVisible = true;
  5078. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5079. itemTaskIndex
  5080. ].isFinishSize = 0;
  5081. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5082. itemTaskIndex
  5083. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5084. _this.$forceUpdate();
  5085. if (file) {
  5086. var params = {
  5087. Key:
  5088. file.name.split(".")[0] +
  5089. new Date().getTime() +
  5090. "." +
  5091. file.name.split(".")[file.name.split(".").length - 1],
  5092. ContentType: file.type,
  5093. Body: file,
  5094. "Access-Control-Allow-Credentials": "*",
  5095. ACL: "public-read",
  5096. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5097. var options = {
  5098. partSize: 2048 * 1024 * 1024,
  5099. queueSize: 2,
  5100. leavePartsOnError: true,
  5101. };
  5102. bucket
  5103. .upload(params, options)
  5104. .on("httpUploadProgress", function (evt) {
  5105. //这里可以写进度条
  5106. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5107. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5108. itemTaskIndex
  5109. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5110. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5111. itemTaskIndex
  5112. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5113. _this.$forceUpdate();
  5114. })
  5115. .send(function (err, data) {
  5116. // loading.close();
  5117. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5118. itemTaskIndex
  5119. ].progress = 100;
  5120. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5121. itemTaskIndex
  5122. ].isFinishSize =
  5123. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5124. itemTaskIndex
  5125. ].isAllSize;
  5126. _this.$forceUpdate();
  5127. setTimeout(() => {
  5128. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5129. itemTaskIndex
  5130. ].proVisible = false;
  5131. _this.$forceUpdate();
  5132. }, 1000);
  5133. _this.inputShow = true;
  5134. if (err) {
  5135. // var a = _this.$refs.upload1.uploadFiles;
  5136. // a.splice(a.length - 1, a.length);
  5137. _this.$message.error("上传失败");
  5138. } else {
  5139. if (type == 13) {
  5140. let _type = 2;
  5141. var imgA = [
  5142. "png",
  5143. "jpg",
  5144. "jpeg",
  5145. "bmp",
  5146. "gif",
  5147. "webp",
  5148. "psd",
  5149. "svg",
  5150. "tiff",
  5151. ];
  5152. var fileA = [
  5153. "PDF",
  5154. "DOC",
  5155. "DOCX",
  5156. "DOCM",
  5157. "DOTM",
  5158. "DOTX",
  5159. "PPTX",
  5160. "PPSX",
  5161. "PPT",
  5162. "PPS",
  5163. "PPTM",
  5164. "POTM",
  5165. "PPAM",
  5166. "POTX",
  5167. "PPSM",
  5168. "XLSX",
  5169. "XLS",
  5170. ];
  5171. var videoA = [
  5172. "AVI",
  5173. "NAVI",
  5174. "MPEG",
  5175. "ASF",
  5176. "MOV",
  5177. "WMV",
  5178. "3GP",
  5179. "RM",
  5180. "RMVB",
  5181. "FLV",
  5182. "F4V",
  5183. "H.264",
  5184. "H.265",
  5185. "REAL VIDEO",
  5186. "MKV",
  5187. "WebM",
  5188. "HDDVD",
  5189. "MP4",
  5190. "MPG",
  5191. "M4V",
  5192. "MGV",
  5193. "OGV",
  5194. "QTM",
  5195. "STR",
  5196. "AMC",
  5197. "DVX",
  5198. "EVO",
  5199. "DAT",
  5200. "OGG",
  5201. "OGM",
  5202. ];
  5203. if (
  5204. fileA.indexOf(
  5205. data.Location.split(".")[
  5206. data.Location.split(".").length - 1
  5207. ].toLocaleUpperCase()
  5208. ) != -1
  5209. ) {
  5210. _type = 3;
  5211. } else if (
  5212. videoA.indexOf(
  5213. data.Location.split(".")[
  5214. data.Location.split(".").length - 1
  5215. ].toLocaleUpperCase()
  5216. ) != -1
  5217. ) {
  5218. _type = 2;
  5219. } else if (
  5220. imgA.indexOf(
  5221. data.Location.split(".")[
  5222. data.Location.split(".").length - 1
  5223. ].toLocaleLowerCase()
  5224. ) != -1
  5225. ) {
  5226. _type = 13;
  5227. } else {
  5228. _type = 12;
  5229. }
  5230. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5231. itemTaskIndex
  5232. ].chapterData.push({
  5233. name: file.name,
  5234. url: data.Location,
  5235. uid: file.uid,
  5236. type: _type,
  5237. });
  5238. _this.imgChange1(null, null, _type, itemTaskIndex);
  5239. } else if (type == 2 || type == 3 || type == 12) {
  5240. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5241. itemTaskIndex
  5242. ].chapterData.push({
  5243. name: file.name,
  5244. url: data.Location,
  5245. uid: file.uid,
  5246. type: type,
  5247. });
  5248. _this.imgChange1(null, null, type, itemTaskIndex);
  5249. } else if (type == 4) {
  5250. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5251. itemTaskIndex
  5252. ].fileList1.push({
  5253. name: file.name,
  5254. url: data.Location,
  5255. uid: file.uid,
  5256. });
  5257. _this.imgChange1(null, null, type, itemTaskIndex);
  5258. } else if (type == 5) {
  5259. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5260. itemTaskIndex
  5261. ].homeworkList.push({
  5262. name: file.name,
  5263. url: data.Location,
  5264. uid: file.uid,
  5265. });
  5266. _this.imgChange1(null, null, type, itemTaskIndex);
  5267. }
  5268. console.log(data.Location);
  5269. }
  5270. });
  5271. }
  5272. },
  5273. beforeUpload3(event, unitIndex, type, itemTaskIndex, string) {
  5274. // const loading = this.openLoading();
  5275. var file = event.target.files[0];
  5276. var credentials = {
  5277. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5278. secretAccessKey: "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",
  5279. }; //秘钥形式的登录上传
  5280. window.AWS.config.update(credentials);
  5281. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5282. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5283. var _this = this;
  5284. if (type == 3) {
  5285. var b = [
  5286. "DOC",
  5287. "DOCX",
  5288. "DOCM",
  5289. "DOTM",
  5290. "DOTX",
  5291. "PPTX",
  5292. "PPSX",
  5293. "PPT",
  5294. "PPS",
  5295. "PPTM",
  5296. "POTM",
  5297. "PPAM",
  5298. "POTX",
  5299. "PPSM",
  5300. ];
  5301. if (
  5302. b.indexOf(
  5303. file.name
  5304. .split(".")
  5305. [file.name.split(".").length - 1].toLocaleUpperCase()
  5306. ) != -1
  5307. ) {
  5308. if (file.size / 1024 / 1024 > 80) {
  5309. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5310. this.inputShow = true;
  5311. // var a = _this.$refs.upload1.uploadFiles;
  5312. // a.splice(a.length - 1, a.length);
  5313. // loading.close();
  5314. return;
  5315. }
  5316. } else if (
  5317. file.name
  5318. .split(".")
  5319. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5320. ) {
  5321. if (file.size / 1024 / 1024 > 80) {
  5322. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5323. this.inputShow = true;
  5324. // var a = _this.$refs.upload1.uploadFiles;
  5325. // a.splice(a.length - 1, a.length);
  5326. // loading.close();
  5327. return;
  5328. }
  5329. }
  5330. }
  5331. this.inputShow = false;
  5332. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5333. itemTaskIndex
  5334. ].progress = 0;
  5335. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5336. itemTaskIndex
  5337. ].proVisible = true;
  5338. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5339. itemTaskIndex
  5340. ].isFinishSize = 0;
  5341. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5342. itemTaskIndex
  5343. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5344. _this.$forceUpdate();
  5345. if (file) {
  5346. var params = {
  5347. Key:
  5348. file.name.split(".")[0] +
  5349. new Date().getTime() +
  5350. "." +
  5351. file.name.split(".")[file.name.split(".").length - 1],
  5352. ContentType: file.type,
  5353. Body: file,
  5354. "Access-Control-Allow-Credentials": "*",
  5355. ACL: "public-read",
  5356. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5357. var options = {
  5358. partSize: 2048 * 1024 * 1024,
  5359. queueSize: 2,
  5360. leavePartsOnError: true,
  5361. };
  5362. bucket
  5363. .upload(params, options)
  5364. .on("httpUploadProgress", function (evt) {
  5365. //这里可以写进度条
  5366. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5367. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5368. itemTaskIndex
  5369. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5370. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5371. itemTaskIndex
  5372. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5373. _this.$forceUpdate();
  5374. })
  5375. .send(function (err, data) {
  5376. // loading.close();
  5377. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5378. itemTaskIndex
  5379. ].progress = 100;
  5380. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5381. itemTaskIndex
  5382. ].isFinishSize =
  5383. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5384. itemTaskIndex
  5385. ].isAllSize;
  5386. _this.$forceUpdate();
  5387. setTimeout(() => {
  5388. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5389. itemTaskIndex
  5390. ].proVisible = false;
  5391. _this.$forceUpdate();
  5392. }, 1000);
  5393. _this.inputShow = true;
  5394. if (err) {
  5395. // var a = _this.$refs.upload1.uploadFiles;
  5396. // a.splice(a.length - 1, a.length);
  5397. _this.$message.error("上传失败");
  5398. } else {
  5399. if (type == 2 || type == 3) {
  5400. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5401. itemTaskIndex
  5402. ].chapterData.push({
  5403. name: file.name,
  5404. // name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5405. // itemTaskIndex
  5406. // ].chapterData.length+1),
  5407. url: data.Location,
  5408. uid: file.uid,
  5409. type: type,
  5410. text: string,
  5411. // text: string + '' + (_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5412. // itemTaskIndex
  5413. // ].chapterData.length + 1),
  5414. });
  5415. _this.imgChange1(null, null, type, itemTaskIndex);
  5416. } else if (type == 4) {
  5417. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5418. itemTaskIndex
  5419. ].fileList1.push({
  5420. name: file.name,
  5421. url: data.Location,
  5422. uid: file.uid,
  5423. });
  5424. _this.imgChange1(null, null, type, itemTaskIndex);
  5425. } else if (type == 5) {
  5426. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5427. itemTaskIndex
  5428. ].homeworkList.push({
  5429. name: file.name,
  5430. url: data.Location,
  5431. uid: file.uid,
  5432. });
  5433. _this.imgChange1(null, null, type, itemTaskIndex);
  5434. }
  5435. console.log(data.Location);
  5436. }
  5437. });
  5438. }
  5439. },
  5440. addunit() {
  5441. this.unitJson.push({
  5442. dyName: "", //单元标题
  5443. isUpdate: 1,
  5444. easy: this.unitJson[this.unitJson.length - 1].easy ? 1 : 0,
  5445. chapterInfo: [
  5446. {
  5447. isread: false,
  5448. chapterid: this.guid(),
  5449. title: "",
  5450. courseName: "",
  5451. taskJson: [
  5452. {
  5453. task: "",
  5454. taskDetail: "",
  5455. chapterData: [],
  5456. toolText: "",
  5457. toolChoose: [
  5458. {
  5459. tool: [],
  5460. toolDetail: "",
  5461. toolType: 0,
  5462. askCount: 1,
  5463. askTitle: "",
  5464. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5465. },
  5466. ],
  5467. isShowTools: false,
  5468. askCount: 1,
  5469. isFold: 0,
  5470. askTitle: "",
  5471. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5472. checkJson: [{ checkCount: [], checkPerent: [] }],
  5473. homeworkList: [],
  5474. },
  5475. ],
  5476. itemCount: 1,
  5477. fileList1: [],
  5478. video: [],
  5479. testData: [],
  5480. pData: [],
  5481. templateArray: [],
  5482. },
  5483. ],
  5484. });
  5485. this.addindex = this.unitJson.length - 1;
  5486. setTimeout(() => {
  5487. this.unitIndex = this.unitJson.length - 1;
  5488. setTimeout(() => {
  5489. console.log(this.$refs.dyInput)
  5490. this.$refs.dyInput[0].focus()
  5491. }, 100);
  5492. this.unitSet(this.unitIndex);
  5493. }, 0);
  5494. },
  5495. addToolFun(itemTaskIndex) {
  5496. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5497. itemTaskIndex
  5498. ].toolChoose.push({
  5499. tool: [],
  5500. toolDetail: "",
  5501. toolType: 0,
  5502. askCount: 1,
  5503. askTitle: "",
  5504. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5505. });
  5506. },
  5507. addTaskBorder() {
  5508. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  5509. task: "",
  5510. taskDetail: "",
  5511. chapterData: [],
  5512. toolText: "",
  5513. toolChoose: [
  5514. {
  5515. tool: [],
  5516. toolDetail: "",
  5517. toolType: 0,
  5518. askCount: 1,
  5519. askTitle: "",
  5520. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5521. },
  5522. ],
  5523. isShowTools: false,
  5524. askCount: 1,
  5525. isFold: 0,
  5526. askTitle: "",
  5527. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5528. checkJson: [{ checkCount: [], checkPerent: [] }],
  5529. homeworkList: [],
  5530. });
  5531. setTimeout(() => {
  5532. this.checkEva(this.checkId);
  5533. setTimeout(() => {
  5534. this.checkEva(this.checkId);
  5535. }, 100);
  5536. }, 100);
  5537. },
  5538. add(e, i) {
  5539. var el = e.currentTarget;
  5540. el.getElementsByTagName("input")[0].click();
  5541. },
  5542. fold(i, e) {
  5543. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold == 0) {
  5544. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  5545. } else {
  5546. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  5547. }
  5548. },
  5549. fold2(i) {
  5550. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2) {
  5551. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = false;
  5552. } else {
  5553. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = true;
  5554. }
  5555. this.$forceUpdate();
  5556. },
  5557. foldC(i) {
  5558. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter) {
  5559. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = false;
  5560. } else {
  5561. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = true;
  5562. }
  5563. this.$forceUpdate();
  5564. },
  5565. fold3(i, ti) {
  5566. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3) {
  5567. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = false;
  5568. } else {
  5569. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = true;
  5570. }
  5571. this.$forceUpdate();
  5572. },
  5573. deleteHomeworkBox(unitIndex, index, i) {
  5574. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  5575. this.taskCount
  5576. ].homeworkList.splice(i, 1);
  5577. },
  5578. getStudent() {
  5579. let params = {
  5580. oid: this.oid,
  5581. cu: "",
  5582. cn: this.searchPeople,
  5583. };
  5584. this.ajax
  5585. .get(this.$store.state.api + "selectStudentAdd", params)
  5586. .then((res) => {
  5587. this.studentJuri = res.data[0];
  5588. })
  5589. .catch((err) => {
  5590. this.isLoading = false;
  5591. console.error(err);
  5592. });
  5593. },
  5594. getTeacher() {
  5595. let params = {
  5596. oid:
  5597. this.org && this.org != "undefined" && this.org != "null"
  5598. ? this.org
  5599. : this.oid,
  5600. cu: "",
  5601. cn: this.searchTN,
  5602. };
  5603. this.ajax
  5604. .get(
  5605. this.$store.state.api +
  5606. (this.org && this.org != "undefined" && this.org != "null"
  5607. ? "selectTeacherAddOrg"
  5608. : "selectTeacherAdd"),
  5609. params
  5610. )
  5611. .then((res) => {
  5612. let teacherJuri = res.data[0];
  5613. for (var i = 0; i < teacherJuri.length; i++) {
  5614. if (teacherJuri[i].userid == this.userid) {
  5615. teacherJuri.splice(i, 1);
  5616. break;
  5617. }
  5618. }
  5619. this.teacherJuri = teacherJuri;
  5620. })
  5621. .catch((err) => {
  5622. console.error(err);
  5623. });
  5624. },
  5625. searchStudent() {
  5626. this.getStudent();
  5627. },
  5628. selectGrage() {
  5629. let params = {
  5630. oid: this.oid,
  5631. };
  5632. this.ajax
  5633. .get(this.$store.state.api + "selectGrageBySchool", params)
  5634. .then((res) => {
  5635. this.gradeList = res.data[0];
  5636. })
  5637. .catch((err) => {
  5638. this.isLoading = false;
  5639. console.error(err);
  5640. });
  5641. },
  5642. //获取班级列表
  5643. getClass() {
  5644. let params = {
  5645. oid: this.oid,
  5646. gid: this.gradeId,
  5647. cn: this.classSearch,
  5648. };
  5649. this.ajax
  5650. .get(this.$store.state.api + "selectClassBySchoolSearch2", params)
  5651. .then((res) => {
  5652. if (!this.grade.length) {
  5653. this.grade = res.data[0];
  5654. }
  5655. this.grade2 = res.data[0];
  5656. this.classJuri = res.data[0];
  5657. })
  5658. .catch((err) => {
  5659. this.isLoading = false;
  5660. console.error(err);
  5661. });
  5662. },
  5663. CourseType2Change(val) {
  5664. this.pTypeCheck = [];
  5665. for (var i = 0; i < this.CourseType2.length; i++) {
  5666. let typeA = this.CourseType2[i];
  5667. if (val.indexOf(typeA.name) != -1) {
  5668. this.pTypeCheck.push(...typeA.id);
  5669. }
  5670. }
  5671. },
  5672. getChapterData(e, i, j, ic, type) {
  5673. e.stopPropagation();
  5674. this.updataC = true;
  5675. this.icc = ic;
  5676. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  5677. console.log("还不能下载图片喔");
  5678. }
  5679. },
  5680. deleteChapterData(e, i, j, ic, taskI) {
  5681. e.stopPropagation();
  5682. let _this = this;
  5683. _this
  5684. .$confirm("确定删除此项?", "提示", {
  5685. confirmButtonText: "确定",
  5686. cancelButtonText: "取消",
  5687. type: "warning",
  5688. })
  5689. .then(() => {
  5690. _this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  5691. })
  5692. .catch(() => {
  5693. return;
  5694. });
  5695. },
  5696. updataVideoT(e, i, j, ic) {
  5697. // e.stopPropagation();
  5698. // this.unitJson[i].chapterInfo[0].taskJson[j].chapterData[
  5699. // ic
  5700. // ].name = JSON.parse(JSON.stringify(e.target.value));
  5701. this.line = this.unitJson[i].chapterInfo[0].taskJson[0].chapterData[
  5702. ic
  5703. ].name;
  5704. this.taskCount = j;
  5705. this.lineCount = ic;
  5706. this.dialogVisibleupdataVideoT = true;
  5707. this.$forceUpdate();
  5708. },
  5709. updataVideoC() {
  5710. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData[this.lineCount].name = JSON.parse(JSON.stringify(this.line));
  5711. this.dialogVisibleupdataVideoT = false;
  5712. this.$forceUpdate();
  5713. },
  5714. upCd(e, i, j, taskCount, ic) {
  5715. e.stopPropagation();
  5716. if (ic == 0) {
  5717. return;
  5718. }
  5719. var a =
  5720. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1]));
  5721. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1] =
  5722. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  5723. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  5724. this.$forceUpdate();
  5725. },
  5726. downCd(e, i, j, taskCount, ic) {
  5727. e.stopPropagation();
  5728. if (
  5729. ic ==
  5730. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData.length -
  5731. 1
  5732. ) {
  5733. return;
  5734. }
  5735. var a =
  5736. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1]));
  5737. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1] =
  5738. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  5739. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  5740. this.$forceUpdate();
  5741. },
  5742. addWork() {
  5743. let cPan = 1;
  5744. for (var i = 0; i < this.unitJson.length; i++) {
  5745. for (
  5746. var j = 0;
  5747. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  5748. j++
  5749. ) {
  5750. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  5751. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  5752. if (
  5753. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  5754. ) {
  5755. for (
  5756. var z = 0;
  5757. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  5758. z++
  5759. ) {
  5760. if (
  5761. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  5762. .length
  5763. ) {
  5764. this.$message.error("请把工具添加完整");
  5765. cPan = 2;
  5766. break;
  5767. }
  5768. }
  5769. }
  5770. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  5771. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  5772. i
  5773. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  5774. return ele.value != "";
  5775. });
  5776. }
  5777. }
  5778. }
  5779. this.inputShow = true;
  5780. if (cPan == 2) {
  5781. this.steps--;
  5782. return;
  5783. }
  5784. for (var i = 0; i < this.unitJson.length; i++) {
  5785. delete this.unitJson[i].isUpdate;
  5786. }
  5787. let params = [
  5788. {
  5789. uid: this.userid,
  5790. title: this.courseName.replace(/%/g, "%25"),
  5791. brief: this.courseText.replace(/%/g, "%25"),
  5792. cover:
  5793. this.cover.length > 0
  5794. ? JSON.stringify(this.cover)
  5795. : JSON.stringify([
  5796. {
  5797. name: "noBanner.jpg",
  5798. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  5799. uid: 1656409780264,
  5800. status: "success",
  5801. },
  5802. ]),
  5803. evaId: this.evalua,
  5804. astudent:
  5805. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  5806. see: this.isTeacherSee == true ? 1 : 0,
  5807. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  5808. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  5809. courseType: JSON.stringify(this.courseTypeId),
  5810. ateacher:
  5811. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  5812. inviteCode: JSON.stringify(this.inviteCode),
  5813. },
  5814. ];
  5815. this.ajax
  5816. .post(this.$store.state.api + "addWorkNew2", params)
  5817. .then((res) => {
  5818. console.log(this.steps);
  5819. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  5820. this.$message({
  5821. message: "新增成功",
  5822. type: "success",
  5823. });
  5824. }
  5825. this.number = res.data.ordernumber;
  5826. this.courseId = res.data.courseId;
  5827. this.cid = res.data.courseId;
  5828. this.courseUserid = this.userid;
  5829. this.islogin = true;
  5830. })
  5831. .catch((err) => {
  5832. this.$message.error("网络不佳");
  5833. console.error(err);
  5834. });
  5835. },
  5836. goCourse() {
  5837. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  5838. },
  5839. updateWork2() {
  5840. let _unitIndex = this.unitIndex;
  5841. let cPan = 1;
  5842. for (
  5843. var j = 0;
  5844. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  5845. j++
  5846. ) {
  5847. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].proVisible = false;
  5848. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  5849. j
  5850. ].proVisible2 = false;
  5851. if (
  5852. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  5853. .length > 1
  5854. ) {
  5855. for (
  5856. var z = 0;
  5857. z <
  5858. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  5859. .length;
  5860. z++
  5861. ) {
  5862. if (
  5863. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose[
  5864. z
  5865. ].tool.length
  5866. ) {
  5867. this.$message.error("请把工具添加完整");
  5868. cPan = 2;
  5869. break;
  5870. }
  5871. }
  5872. }
  5873. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  5874. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  5875. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  5876. (ele) => {
  5877. return ele.value != "";
  5878. }
  5879. );
  5880. }
  5881. }
  5882. this.inputShow = true;
  5883. if (cPan == 2) {
  5884. this.steps--;
  5885. return;
  5886. }
  5887. let params = [
  5888. {
  5889. cid: this.cid,
  5890. chapters: JSON.stringify(this.unitJson),
  5891. uid: this.userid,
  5892. unitIndex: _unitIndex,
  5893. },
  5894. ];
  5895. this.ajax
  5896. .post(this.$store.state.api + "updateWorkNew4", params)
  5897. .then((res) => {
  5898. this.$message({
  5899. message: "修改成功",
  5900. type: "success",
  5901. });
  5902. this.courseId = this.cid;
  5903. })
  5904. .catch((err) => {
  5905. this.$message.error("网络不佳");
  5906. console.error(err);
  5907. });
  5908. },
  5909. updateWork() {
  5910. let cPan = 1;
  5911. for (var i = 0; i < this.unitJson.length; i++) {
  5912. for (
  5913. var j = 0;
  5914. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  5915. j++
  5916. ) {
  5917. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  5918. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  5919. if (
  5920. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  5921. ) {
  5922. for (
  5923. var z = 0;
  5924. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  5925. z++
  5926. ) {
  5927. if (
  5928. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  5929. .length
  5930. ) {
  5931. this.$message.error("请把工具添加完整");
  5932. cPan = 2;
  5933. break;
  5934. }
  5935. }
  5936. }
  5937. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  5938. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  5939. i
  5940. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  5941. return ele.value != "";
  5942. });
  5943. }
  5944. }
  5945. }
  5946. this.inputShow = true;
  5947. if (cPan == 2) {
  5948. this.steps--;
  5949. return;
  5950. }
  5951. for (var i = 0; i < this.unitJson.length; i++) {
  5952. delete this.unitJson[i].isUpdate;
  5953. }
  5954. let params = [
  5955. {
  5956. cid: this.cid,
  5957. title: this.courseName.replace(/%/g, "%25"),
  5958. brief: this.courseText.replace(/%/g, "%25"),
  5959. cover:
  5960. this.cover.length > 0
  5961. ? JSON.stringify(this.cover)
  5962. : JSON.stringify([
  5963. {
  5964. name: "noBanner.jpg",
  5965. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  5966. uid: 1656409780264,
  5967. status: "success",
  5968. },
  5969. ]),
  5970. evaId: this.evalua,
  5971. astudent:
  5972. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  5973. see: this.isTeacherSee == true ? 1 : 0,
  5974. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  5975. template: this.myWord != "undefined" ? this.myWord : [],
  5976. uid: this.userid,
  5977. courseType: JSON.stringify(this.courseTypeId),
  5978. ateacher:
  5979. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  5980. inviteCode: JSON.stringify(this.inviteCode),
  5981. },
  5982. ];
  5983. this.ajax
  5984. .post(this.$store.state.api + "updateWorkNew2", params)
  5985. .then((res) => {
  5986. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  5987. if (this.cidType == 1) {
  5988. this.$message({
  5989. message: "修改成功",
  5990. type: "success",
  5991. });
  5992. } else {
  5993. this.$message({
  5994. message: "新增成功",
  5995. type: "success",
  5996. });
  5997. }
  5998. }
  5999. this.number = this.nbOrder;
  6000. this.courseId = this.cid;
  6001. })
  6002. .catch((err) => {
  6003. this.$message.error("网络不佳");
  6004. console.error(err);
  6005. });
  6006. },
  6007. guid() {
  6008. var _num,
  6009. i,
  6010. _guid = "";
  6011. for (i = 0; i < 32; i++) {
  6012. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  6013. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  6014. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  6015. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  6016. _guid += "-";
  6017. }
  6018. }
  6019. return _guid;
  6020. },
  6021. insertWord() {
  6022. this.dialogVisible1 = true;
  6023. this.updateBoolean2 = false;
  6024. this.tTitle = "";
  6025. this.tdetail = "";
  6026. },
  6027. addWord() {
  6028. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  6029. name: this.tTitle,
  6030. content: this.tdetail,
  6031. uid: this.guid(),
  6032. });
  6033. this.dialogVisible1 = false;
  6034. },
  6035. upWord() { },
  6036. selectWord(uid, i, c) {
  6037. this.dialogVisible1 = true;
  6038. this.updateBoolean2 = true;
  6039. if (
  6040. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  6041. ) {
  6042. this.tTitle =
  6043. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  6044. this.tdetail =
  6045. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  6046. }
  6047. },
  6048. isAddPP() {
  6049. if (this.checkboxList.length > 0) {
  6050. this.$message({
  6051. message: "添加成功",
  6052. type: "success",
  6053. });
  6054. this.dialogVisible3 = false;
  6055. } else {
  6056. this.$message({
  6057. message: "请添加课程成员",
  6058. type: "error",
  6059. });
  6060. }
  6061. },
  6062. isAddClass() {
  6063. this.dialogVisibleClass = false;
  6064. },
  6065. isAddPPTeacher() {
  6066. this.dialogVisibleMember = false;
  6067. this.setMan();
  6068. },
  6069. getTemplate() {
  6070. this.ajax
  6071. .get(this.$store.state.api + "getCourseTemplateT", "")
  6072. .then((res) => {
  6073. this.templateArray = res.data[0];
  6074. this.getTemplateOid();
  6075. this.$forceUpdate();
  6076. })
  6077. .catch((err) => { });
  6078. },
  6079. getTemplateOid() {
  6080. let params = {
  6081. oid: this.oid,
  6082. };
  6083. this.ajax
  6084. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6085. .then((res) => {
  6086. if (res.data[0].length) {
  6087. this.templateArray = [...res.data[0], ...this.templateArray];
  6088. }
  6089. this.getTemplateOrg();
  6090. this.$forceUpdate();
  6091. })
  6092. .catch((err) => { });
  6093. },
  6094. getTemplateOrg() {
  6095. let params = {
  6096. oid: this.org,
  6097. };
  6098. this.ajax
  6099. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6100. .then((res) => {
  6101. if (res.data[0].length) {
  6102. this.templateArray = [...res.data[0], ...this.templateArray];
  6103. }
  6104. this.$forceUpdate();
  6105. })
  6106. .catch((err) => { });
  6107. },
  6108. clearChoose() {
  6109. this.clearArray.splice(this.templateC.id, 1);
  6110. this.dialogVisible2 = false;
  6111. },
  6112. clearAttText() {
  6113. this.AttText = {
  6114. title: "",
  6115. text: "",
  6116. };
  6117. this.dialogVisible6 = false;
  6118. },
  6119. clearLine() {
  6120. this.line = "";
  6121. this.dialogVisible7 = false;
  6122. },
  6123. checkTemplate(res) {
  6124. let _this = this;
  6125. _this
  6126. .$confirm("确定选择此模板吗?修改课程时无法重置课程模板。", "提示", {
  6127. confirmButtonText: "确定",
  6128. cancelButtonText: "取消",
  6129. type: "warning",
  6130. })
  6131. .then(() => {
  6132. _this.unitJson = JSON.parse(res.chapters);
  6133. _this.steps++;
  6134. setTimeout(() => {
  6135. this.checkEva(this.checkId);
  6136. setTimeout(() => {
  6137. this.checkEva(this.checkId);
  6138. }, 100);
  6139. }, 1000);
  6140. })
  6141. .catch(() => {
  6142. return;
  6143. });
  6144. },
  6145. checkTemplate1(w) {
  6146. this.steps++;
  6147. },
  6148. checkTemplate2() {
  6149. let _this = this;
  6150. _this
  6151. .$confirm("确定选择空模板吗?修改课程时无法重置课程模板。", "提示", {
  6152. confirmButtonText: "确定",
  6153. cancelButtonText: "取消",
  6154. type: "warning",
  6155. })
  6156. .then(() => {
  6157. _this.unitIndex = 0;
  6158. _this.unitJson = [
  6159. {
  6160. dyName: "", //单元标题
  6161. chapterInfo: [
  6162. {
  6163. isread: false,
  6164. chapterid: this.guid(),
  6165. title: "",
  6166. courseName: "",
  6167. taskJson: [
  6168. {
  6169. task: "",
  6170. taskDetail: "",
  6171. chapterData: [],
  6172. toolText: "",
  6173. toolChoose: [
  6174. {
  6175. tool: [],
  6176. toolDetail: "",
  6177. toolType: 0,
  6178. askCount: 1,
  6179. askTitle: "",
  6180. askJson: [
  6181. { askstitle: "", askItem: 1, checkList: [] },
  6182. ],
  6183. },
  6184. ],
  6185. isShowTools: false,
  6186. askCount: 1,
  6187. isFold: 0,
  6188. askTitle: "",
  6189. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6190. checkJson: [{ checkCount: [], checkPerent: [] }],
  6191. homeworkList: [],
  6192. },
  6193. ],
  6194. itemCount: 1,
  6195. fileList1: [],
  6196. video: [],
  6197. testData: [],
  6198. pData: [],
  6199. templateArray: [],
  6200. },
  6201. ],
  6202. },
  6203. ];
  6204. this.steps++;
  6205. setTimeout(() => {
  6206. this.checkEva(this.checkId);
  6207. setTimeout(() => {
  6208. this.checkEva(this.checkId);
  6209. }, 100);
  6210. }, 1000);
  6211. this.updateWork();
  6212. })
  6213. .catch(() => {
  6214. return;
  6215. });
  6216. },
  6217. checkTemplate3() {
  6218. let _this = this;
  6219. _this
  6220. .$confirm("确定选择简易模板吗?修改课程时无法重置课程模板。", "提示", {
  6221. confirmButtonText: "确定",
  6222. cancelButtonText: "取消",
  6223. type: "warning",
  6224. })
  6225. .then(() => {
  6226. _this.unitIndex = 0;
  6227. _this.unitJson = [
  6228. {
  6229. dyName: "", //单元标题
  6230. easy: 1,
  6231. chapterInfo: [
  6232. {
  6233. isread: false,
  6234. chapterid: this.guid(),
  6235. title: "",
  6236. courseName: "",
  6237. taskJson: [
  6238. {
  6239. task: "",
  6240. taskDetail: "",
  6241. chapterData: [],
  6242. toolText: "",
  6243. toolChoose: [
  6244. {
  6245. tool: [],
  6246. toolDetail: "",
  6247. toolType: 0,
  6248. askCount: 1,
  6249. askTitle: "",
  6250. askJson: [
  6251. { askstitle: "", askItem: 1, checkList: [] },
  6252. ],
  6253. },
  6254. ],
  6255. isShowTools: false,
  6256. askCount: 1,
  6257. isFold: 0,
  6258. askTitle: "",
  6259. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6260. checkJson: [{ checkCount: [], checkPerent: [] }],
  6261. homeworkList: [],
  6262. },
  6263. ],
  6264. itemCount: 1,
  6265. fileList1: [],
  6266. video: [],
  6267. testData: [],
  6268. pData: [],
  6269. templateArray: [],
  6270. },
  6271. ],
  6272. },
  6273. ];
  6274. this.steps++;
  6275. this.updateWork();
  6276. })
  6277. .catch(() => {
  6278. return;
  6279. });
  6280. },
  6281. checkTemplate4() {
  6282. let _this = this;
  6283. _this
  6284. .$confirm("确定选择未来小学课程设计吗?", "提示", {
  6285. confirmButtonText: "确定",
  6286. cancelButtonText: "取消",
  6287. type: "warning",
  6288. })
  6289. .then(() => {
  6290. _this.unitIndex = 0;
  6291. _this.unitJson = JSON.parse(JSON.stringify(weilaiData));
  6292. this.steps++;
  6293. this.updateWork();
  6294. })
  6295. .catch(() => {
  6296. return;
  6297. });
  6298. },
  6299. wordNext() {
  6300. this.dialogVisible2 = false;
  6301. },
  6302. isAddOrUpdateAttText() {
  6303. if (this.AttTextType == 0) {
  6304. this.addAttTextMessage();
  6305. } else {
  6306. this.updateAttText();
  6307. }
  6308. },
  6309. isAddOrUpdateLine() {
  6310. if (!this.lineTitle) {
  6311. this.$message.error("请填写链接标题");
  6312. return;
  6313. }
  6314. if (this.lineType == 0) {
  6315. this.addLine();
  6316. } else {
  6317. this.updateLine();
  6318. }
  6319. },
  6320. addAttTextMessage() {
  6321. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6322. this.taskCount
  6323. ].chapterData.push({
  6324. name: this.AttText.title,
  6325. url: this.AttText.text,
  6326. type: 6,
  6327. });
  6328. this.imgChange1(null, null, 6, this.taskCount);
  6329. this.dialogVisible6 = false;
  6330. },
  6331. selectAttText(itemTaskIndex, i) {
  6332. this.AttText.title =
  6333. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6334. itemTaskIndex
  6335. ].chapterData[i].name;
  6336. this.AttText.text =
  6337. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6338. itemTaskIndex
  6339. ].chapterData[i].url;
  6340. this.taskCount = itemTaskIndex;
  6341. this.AttTextIndex = i;
  6342. this.AttTextType = 1;
  6343. this.dialogVisible6 = true;
  6344. },
  6345. updateAttText() {
  6346. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6347. this.taskCount
  6348. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  6349. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6350. this.taskCount
  6351. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  6352. this.dialogVisible6 = false;
  6353. },
  6354. addLine() {
  6355. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6356. this.lineCount
  6357. ].chapterData.push({
  6358. name: "链接",
  6359. title: this.lineTitle,
  6360. url: this.line,
  6361. type: 8,
  6362. });
  6363. this.imgChange1(null, null, 8, this.lineCount);
  6364. this.dialogVisible7 = false;
  6365. },
  6366. selectLine(itemTaskIndex, i) {
  6367. this.line =
  6368. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6369. itemTaskIndex
  6370. ].chapterData[i].url;
  6371. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6372. itemTaskIndex
  6373. ].chapterData[i].title
  6374. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6375. .chapterData[i].title
  6376. : "";
  6377. this.taskCount = itemTaskIndex;
  6378. this.lineCount = i;
  6379. this.lineType = 1;
  6380. this.dialogVisible7 = true;
  6381. },
  6382. openUpdateSource(itemTaskIndex, i) {
  6383. this.sourceData = {}
  6384. let source = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex].chapterData[i]
  6385. this.sourceData[source.id] = {}
  6386. this.sourceData[source.id].name = source.title
  6387. this.sourceData[source.id].url = source.url
  6388. this.dialogVisibleSource = true;
  6389. this.updateSourcePan = true;
  6390. this.taskCount = itemTaskIndex;
  6391. this.lineCount = i;
  6392. },
  6393. updateLine() {
  6394. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6395. this.taskCount
  6396. ].chapterData[this.lineCount].url = this.line;
  6397. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6398. this.taskCount
  6399. ].chapterData[this.lineCount].title = this.lineTitle;
  6400. this.dialogVisible7 = false;
  6401. },
  6402. addPP() {
  6403. this.dialogVisible3 = true;
  6404. },
  6405. goTo(path) {
  6406. this.$router.push(path);
  6407. },
  6408. openTools(itemTaskIndex, i, toolIndex) {
  6409. this.toolIndex = toolIndex;
  6410. this.taskCount = itemTaskIndex;
  6411. if (i == 4) {
  6412. if (toolIndex == null) {
  6413. var a =
  6414. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6415. .chapterData;
  6416. for (var i = 0; i < a.length; i++) {
  6417. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  6418. this.askJson =
  6419. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6420. itemTaskIndex
  6421. ].chapterData[i].askJson;
  6422. }
  6423. }
  6424. } else {
  6425. this.askJson = JSON.parse(
  6426. JSON.stringify(
  6427. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6428. itemTaskIndex
  6429. ].toolChoose[toolIndex]
  6430. )
  6431. );
  6432. }
  6433. this.askJson2 = JSON.parse(JSON.stringify(this.askJson))
  6434. this.dialogVisible5 = true;
  6435. } else if (i == 45) {
  6436. if (
  6437. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6438. .toolChoose[toolIndex].testJson
  6439. ) {
  6440. this.testJson = JSON.parse(
  6441. JSON.stringify(
  6442. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6443. itemTaskIndex
  6444. ].toolChoose[toolIndex].testJson
  6445. )
  6446. );
  6447. } else {
  6448. var testJson = {
  6449. testCount: 1,
  6450. testTitle: "",
  6451. testJson: [
  6452. {
  6453. teststitle: "",
  6454. testItem: 1,
  6455. checkList: [],
  6456. timuList: [],
  6457. answer: [],
  6458. type: "1",
  6459. },
  6460. ],
  6461. };
  6462. this.testJson = testJson;
  6463. }
  6464. this.testJson2 = JSON.parse(JSON.stringify(this.testJson));
  6465. this.dialogVisibleChoice = true;
  6466. } else if (i == 47) {
  6467. if (
  6468. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6469. .toolChoose[toolIndex].sentenceList
  6470. ) {
  6471. this.sentenceList = JSON.parse(
  6472. JSON.stringify(
  6473. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6474. itemTaskIndex
  6475. ].toolChoose[toolIndex].sentenceList
  6476. )
  6477. );
  6478. } else {
  6479. var sentenceList = [
  6480. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  6481. ];
  6482. this.sentenceList = sentenceList;
  6483. }
  6484. this.sentenceList2 = JSON.parse(JSON.stringify(this.sentenceList));
  6485. this.dialogVisibleSentence = true;
  6486. } else if (i == 48) {
  6487. if (
  6488. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6489. .toolChoose[toolIndex].tableJson
  6490. ) {
  6491. this.tableJson = JSON.parse(
  6492. JSON.stringify(
  6493. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6494. itemTaskIndex
  6495. ].toolChoose[toolIndex].tableJson
  6496. )
  6497. );
  6498. } else {
  6499. var tableJson = { text: "" };
  6500. this.tableJson = tableJson;
  6501. }
  6502. this.dialogVisibleTable = true;
  6503. } else if (i == 52) {
  6504. if (
  6505. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6506. .toolChoose[toolIndex].wordJson
  6507. ) {
  6508. this.wordJson = JSON.parse(
  6509. JSON.stringify(
  6510. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6511. itemTaskIndex
  6512. ].toolChoose[toolIndex].wordJson
  6513. )
  6514. );
  6515. } else {
  6516. var wordJson = { text: "" };
  6517. this.wordJson = wordJson;
  6518. }
  6519. this.dialogVisibleWord = true;
  6520. // else if (i == 50) {
  6521. // if (
  6522. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6523. // .toolChoose[toolIndex].uploadJson
  6524. // ) {
  6525. // this.uploadJson = JSON.parse(
  6526. // JSON.stringify(
  6527. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6528. // itemTaskIndex
  6529. // ].toolChoose[toolIndex].uploadJson
  6530. // )
  6531. // );
  6532. // } else {
  6533. // var uploadJson = [];
  6534. // this.uploadJson = uploadJson;
  6535. // }
  6536. // this.dialogVisibleMoreUpload = true;
  6537. // }
  6538. } else if (i == 10) {
  6539. if (
  6540. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6541. .toolChoose[toolIndex].preTime
  6542. ) {
  6543. this.preTime = JSON.parse(
  6544. JSON.stringify(
  6545. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6546. itemTaskIndex
  6547. ].toolChoose[toolIndex].preTime
  6548. )
  6549. );
  6550. } else {
  6551. var preTime = 0;
  6552. this.preTime = preTime;
  6553. }
  6554. this.dialogVisiblePreTime = true;
  6555. } else if (i == 49) {
  6556. if (
  6557. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6558. .toolChoose[toolIndex].groupJson
  6559. ) {
  6560. this.groupJson = JSON.parse(
  6561. JSON.stringify(
  6562. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6563. itemTaskIndex
  6564. ].toolChoose[toolIndex].groupJson
  6565. )
  6566. );
  6567. } else {
  6568. var groupJson = {
  6569. group: [{ name: "第1组" }],
  6570. number: undefined,
  6571. islock: 1,
  6572. };
  6573. this.groupJson = groupJson;
  6574. }
  6575. this.dialogVisibleGroup = true;
  6576. } else if (i == 62) {
  6577. if (
  6578. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6579. .toolChoose[toolIndex].videoJson
  6580. ) {
  6581. this.videoJson = JSON.parse(
  6582. JSON.stringify(
  6583. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6584. itemTaskIndex
  6585. ].toolChoose[toolIndex].videoJson
  6586. )
  6587. );
  6588. } else {
  6589. var videoJson = {
  6590. video: "",
  6591. setting: [],
  6592. };
  6593. this.videoJson = videoJson;
  6594. }
  6595. this.dialogVisibleVideo = true;
  6596. } else if (i == 15) {
  6597. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6598. itemTaskIndex
  6599. ].toolChoose[toolIndex].answerQ
  6600. ? JSON.parse(
  6601. JSON.stringify(
  6602. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6603. itemTaskIndex
  6604. ].toolChoose[toolIndex].answerQ
  6605. )
  6606. )
  6607. : "";
  6608. this.answerQ2 = JSON.parse(JSON.stringify(this.answerQ))
  6609. this.dialogVisible8 = true;
  6610. } else if (i == 40) {
  6611. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6612. itemTaskIndex
  6613. ].toolChoose[toolIndex].rateJson
  6614. ? JSON.parse(
  6615. JSON.stringify(
  6616. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6617. itemTaskIndex
  6618. ].toolChoose[toolIndex].rateJson
  6619. )
  6620. )
  6621. : [{ detail: "", score: 5, value: "" }]; //{detail:"",score:5,value:""}
  6622. this.selectSteps = 1;
  6623. this.dialogVisibleRate = true;
  6624. } else if (i == 42) {
  6625. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6626. itemTaskIndex
  6627. ].toolChoose[toolIndex].answerQ
  6628. ? JSON.parse(
  6629. JSON.stringify(
  6630. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6631. itemTaskIndex
  6632. ].toolChoose[toolIndex].answerQ
  6633. )
  6634. )
  6635. : "";
  6636. this.dialogVisibleMp3 = true;
  6637. } else if (i == 41) {
  6638. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6639. itemTaskIndex
  6640. ].toolChoose[toolIndex].selectJson
  6641. ? JSON.parse(
  6642. JSON.stringify(
  6643. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6644. itemTaskIndex
  6645. ].toolChoose[toolIndex].selectJson
  6646. )
  6647. )
  6648. : { url: "", select: [], answer: [] };
  6649. this.selectSteps = 1;
  6650. this.selectJson2 = JSON.parse(JSON.stringify(this.selectJson))
  6651. this.dialogVisibleSelect = true;
  6652. } else if (i == 3) {
  6653. window.parent.postMessage(
  6654. {
  6655. tools: "3y",
  6656. cid: this.cid,
  6657. stage: this.unitIndex,
  6658. task: itemTaskIndex,
  6659. tool: toolIndex,
  6660. },
  6661. "*"
  6662. );
  6663. } else if (i == 1) {
  6664. window.parent.postMessage(
  6665. {
  6666. tools: "1y",
  6667. cid: this.cid,
  6668. stage: this.unitIndex,
  6669. task: itemTaskIndex,
  6670. tool: toolIndex,
  6671. },
  6672. "*"
  6673. );
  6674. } else if (i == 57) {
  6675. window.parent.postMessage(
  6676. {
  6677. tools: "57y",
  6678. cid: this.cid,
  6679. stage: this.unitIndex,
  6680. task: itemTaskIndex,
  6681. tool: toolIndex,
  6682. },
  6683. "*"
  6684. );
  6685. }
  6686. },
  6687. chapAddTools(i) {
  6688. if (this.chapTools[0].tools.length == 0) {
  6689. this.chapTools[0].tools.push(i);
  6690. } else {
  6691. if (this.chapTools[0].tools.indexOf(i) != -1) {
  6692. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  6693. } else {
  6694. this.chapTools[0].tools.push(i);
  6695. }
  6696. }
  6697. this.$forceUpdate();
  6698. },
  6699. addChaptersDataTools() {
  6700. if (this.chapTools[0].tools.indexOf(4) != -1) {
  6701. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6702. this.chapCount
  6703. ].chapterData.push({
  6704. name: this.chapTools[0].toolDetail,
  6705. url: this.chapTools[0].tools,
  6706. type: 7,
  6707. askJson: this.askJson,
  6708. });
  6709. } else {
  6710. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6711. this.chapCount
  6712. ].chapterData.push({
  6713. name: this.chapTools[0].toolDetail,
  6714. url: this.chapTools[0].tools,
  6715. type: 7,
  6716. });
  6717. }
  6718. this.imgChange1(null, null, 7, this.chapCount);
  6719. this.dialogVisible4 = false;
  6720. },
  6721. addTools(i, itemTaskIndex, toolIndex) {
  6722. // if (
  6723. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6724. // .toolChoose[toolIndex].tool.length == 0
  6725. // ) {
  6726. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6727. // itemTaskIndex
  6728. // ].toolChoose[toolIndex].tool.push(i);
  6729. // } else {
  6730. // if (
  6731. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6732. // itemTaskIndex
  6733. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  6734. // ) {
  6735. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6736. // itemTaskIndex
  6737. // ].toolChoose[toolIndex].tool.splice(
  6738. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6739. // itemTaskIndex
  6740. // ].toolChoose[toolIndex].tool.indexOf(i),
  6741. // 1
  6742. // );
  6743. // } else {
  6744. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6745. // itemTaskIndex
  6746. // ].toolChoose[toolIndex].tool.push(i);
  6747. // }
  6748. // console.log(
  6749. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6750. // .toolChoose[toolIndex].tool
  6751. // );
  6752. // }
  6753. if (i == 4) {
  6754. if (
  6755. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6756. .toolChoose[toolIndex].askJson.askTitle == "" ||
  6757. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6758. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  6759. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6760. .toolChoose[toolIndex].askJson[0].checkList < 2
  6761. ) {
  6762. this.openTools(itemTaskIndex, 4, toolIndex);
  6763. // this.$message({
  6764. // message: "请填写完整问卷内容",
  6765. // type: "error",
  6766. // });
  6767. return;
  6768. }
  6769. }
  6770. if (i == 45) {
  6771. if (
  6772. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6773. .toolChoose[toolIndex].testJson ||
  6774. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6775. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  6776. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6777. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  6778. ) {
  6779. this.openTools(itemTaskIndex, 45, toolIndex);
  6780. // this.$message({
  6781. // message: "请填写完整问卷内容",
  6782. // type: "error",
  6783. // });
  6784. return;
  6785. }
  6786. }
  6787. if (i == 47) {
  6788. if (
  6789. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6790. .toolChoose[toolIndex].sentenceList ||
  6791. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6792. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  6793. ) {
  6794. this.openTools(itemTaskIndex, 47, toolIndex);
  6795. return;
  6796. }
  6797. }
  6798. // if (i == 48) {
  6799. // if (
  6800. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6801. // .toolChoose[toolIndex].tableJson
  6802. // ) {
  6803. // this.openTools(itemTaskIndex, 48, toolIndex);
  6804. // return;
  6805. // }
  6806. // }
  6807. // if (i == 50) {
  6808. // if (
  6809. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6810. // .toolChoose[toolIndex].uploadJson
  6811. // ) {
  6812. // this.openTools(itemTaskIndex, 50, toolIndex);
  6813. // return;
  6814. // }
  6815. // }
  6816. if (i == 49) {
  6817. if (
  6818. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6819. .toolChoose[toolIndex].groupJson
  6820. ) {
  6821. this.openTools(itemTaskIndex, 49, toolIndex);
  6822. return;
  6823. }
  6824. }
  6825. if (i == 62) {
  6826. if (
  6827. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6828. .toolChoose[toolIndex].videoJson
  6829. ) {
  6830. this.openTools(itemTaskIndex, 62, toolIndex);
  6831. return;
  6832. }
  6833. }
  6834. if (i == 15) {
  6835. if (
  6836. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6837. .toolChoose[toolIndex].answerQ ||
  6838. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6839. .toolChoose[toolIndex].answerQ == ""
  6840. ) {
  6841. this.openTools(itemTaskIndex, 15, toolIndex);
  6842. // this.$message({
  6843. // message: "请填写问答内容",
  6844. // type: "error",
  6845. // });
  6846. return;
  6847. }
  6848. }
  6849. if (i == 40) {
  6850. if (
  6851. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6852. .toolChoose[toolIndex].rateJson ||
  6853. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6854. .toolChoose[toolIndex].rateJson.length
  6855. ) {
  6856. this.openTools(itemTaskIndex, 40, toolIndex);
  6857. return;
  6858. }
  6859. }
  6860. if (i == 41) {
  6861. if (
  6862. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6863. .toolChoose[toolIndex].selectJson ||
  6864. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6865. .toolChoose[toolIndex].selectJson.url == "" ||
  6866. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6867. .toolChoose[toolIndex].selectJson.select.length ||
  6868. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6869. .toolChoose[toolIndex].selectJson.answer.length
  6870. ) {
  6871. this.openTools(itemTaskIndex, 41, toolIndex);
  6872. return;
  6873. }
  6874. }
  6875. if (i == 42) {
  6876. if (
  6877. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6878. .toolChoose[toolIndex].answerQ ||
  6879. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6880. .toolChoose[toolIndex].answerQ == ""
  6881. ) {
  6882. this.openTools(itemTaskIndex, 42, toolIndex);
  6883. return;
  6884. }
  6885. }
  6886. if (
  6887. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  6888. .toolChoose[toolIndex].tool.length > 0
  6889. ) {
  6890. if (
  6891. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6892. itemTaskIndex
  6893. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  6894. ) {
  6895. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6896. itemTaskIndex
  6897. ].toolChoose[toolIndex].tool.splice(
  6898. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6899. itemTaskIndex
  6900. ].toolChoose[toolIndex].tool.indexOf(i),
  6901. 1
  6902. );
  6903. } else {
  6904. // this.$message({
  6905. // message: "每个工具只能添加一个",
  6906. // type: "error",
  6907. // });
  6908. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6909. itemTaskIndex
  6910. ].toolChoose[toolIndex].tool = [];
  6911. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6912. itemTaskIndex
  6913. ].toolChoose[toolIndex].tool.push(i);
  6914. }
  6915. } else {
  6916. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6917. itemTaskIndex
  6918. ].toolChoose[toolIndex].tool.push(i);
  6919. }
  6920. this.$forceUpdate();
  6921. },
  6922. addAskList(index) {
  6923. this.askJson.askJson.splice(index + 1, 0, {
  6924. askstitle: "",
  6925. askItem: 1,
  6926. checkList: [],
  6927. })
  6928. this.askJson.askCount++;
  6929. },
  6930. addTestList(index) {
  6931. this.testJson.testJson.splice(index + 1, 0, {
  6932. teststitle: "",
  6933. testItem: 1,
  6934. checkList: [],
  6935. timuList: [],
  6936. answer: [],
  6937. type: "1",
  6938. })
  6939. this.testJson.testCount++;
  6940. },
  6941. deleteAskList(index) {
  6942. if (!this.askJson.askJson[index].askstitle && this.askJson.askJson[index].askItem == 1 && !this.askJson.askJson[index].checkList[0]) {
  6943. this.askJson.askJson.splice(index, 1);
  6944. this.askJson.askCount--;
  6945. } else {
  6946. let _this = this;
  6947. _this
  6948. .$confirm("此操作不可撤销,是否继续?", "提示", {
  6949. confirmButtonText: "确定",
  6950. cancelButtonText: "取消",
  6951. type: "warning",
  6952. })
  6953. .then(() => {
  6954. _this.askJson.askJson.splice(index, 1);
  6955. _this.askJson.askCount--;
  6956. })
  6957. .catch(() => {
  6958. return;
  6959. });
  6960. }
  6961. },
  6962. deleteTestList(index) {
  6963. if (!this.testJson.testJson[index].teststitle && this.testJson.testJson[index].testItem == 1 && !this.testJson.testJson[index].checkList[0]) {
  6964. this.testJson.testJson.splice(index, 1);
  6965. this.testJson.testCount--;
  6966. } else {
  6967. let _this = this;
  6968. _this
  6969. .$confirm("此操作不可撤销,是否继续?", "提示", {
  6970. confirmButtonText: "确定",
  6971. cancelButtonText: "取消",
  6972. type: "warning",
  6973. })
  6974. .then(() => {
  6975. _this.testJson.testJson.splice(index, 1);
  6976. _this.testJson.testCount--;
  6977. })
  6978. .catch(() => {
  6979. return;
  6980. });
  6981. }
  6982. },
  6983. askMove(type, index) {
  6984. if (type == 1) {
  6985. if (index > 0) {
  6986. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index - 1]));
  6987. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  6988. this.askJson.askJson[index - 1] = b;
  6989. this.askJson.askJson[index] = a;
  6990. }
  6991. } else {
  6992. if (
  6993. index < this.askJson.askJson.length - 1
  6994. ) {
  6995. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index + 1]));
  6996. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  6997. this.askJson.askJson[index + 1] = b;
  6998. this.askJson.askJson[index] = a;
  6999. }
  7000. }
  7001. this.$forceUpdate();
  7002. },
  7003. checkMove(type, index, checkIndex) {
  7004. if (type == 1) {
  7005. if (checkIndex > 0) {
  7006. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex - 1]));
  7007. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7008. this.askJson.askJson[index].checkList[checkIndex - 1] = b;
  7009. this.askJson.askJson[index].checkList[checkIndex] = a;
  7010. }
  7011. } else {
  7012. if (
  7013. checkIndex < this.askJson.askJson[index].checkList.length - 1
  7014. ) {
  7015. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex + 1]));
  7016. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7017. this.askJson.askJson[index].checkList[checkIndex + 1] = b;
  7018. this.askJson.askJson[index].checkList[checkIndex] = a;
  7019. }
  7020. }
  7021. this.$forceUpdate();
  7022. },
  7023. testMove(type, index) {
  7024. if (type == 1) {
  7025. if (index > 0) {
  7026. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index - 1]));
  7027. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7028. this.testJson.testJson[index - 1] = b;
  7029. this.testJson.testJson[index] = a;
  7030. }
  7031. } else {
  7032. if (
  7033. index < this.testJson.testJson.length - 1
  7034. ) {
  7035. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index + 1]));
  7036. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7037. this.testJson.testJson[index + 1] = b;
  7038. this.testJson.testJson[index] = a;
  7039. }
  7040. }
  7041. this.$forceUpdate();
  7042. },
  7043. tcheckMove(type, index, checkIndex) {
  7044. if (type == 1) {
  7045. if (checkIndex > 0) {
  7046. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex - 1]));
  7047. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7048. this.testJson.testJson[index].checkList[checkIndex - 1] = b;
  7049. this.testJson.testJson[index].checkList[checkIndex] = a;
  7050. }
  7051. } else {
  7052. if (
  7053. checkIndex < this.testJson.testJson[index].checkList.length - 1
  7054. ) {
  7055. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex + 1]));
  7056. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7057. this.testJson.testJson[index].checkList[checkIndex + 1] = b;
  7058. this.testJson.testJson[index].checkList[checkIndex] = a;
  7059. }
  7060. }
  7061. this.$forceUpdate();
  7062. },
  7063. addcheckList(json, index) {
  7064. // json.checkList.length++;
  7065. json.checkList.splice(index + 1, 0, '')
  7066. json.askItem++;
  7067. this.$forceUpdate();
  7068. },
  7069. deletecheckList(json, index) {
  7070. // json.checkList.length--;
  7071. json.checkList.splice(index, 1)
  7072. json.askItem--;
  7073. this.$forceUpdate();
  7074. },
  7075. addTcheckList(json, index) {
  7076. // json.checkList.length++;
  7077. json.checkList.splice(index + 1, 0, '')
  7078. json.testItem++;
  7079. this.$forceUpdate();
  7080. },
  7081. deleteTcheckList(json, index) {
  7082. // json.checkList.length--;
  7083. json.checkList.splice(index, 1)
  7084. json.testItem--;
  7085. this.$forceUpdate();
  7086. },
  7087. checkTestType(type, json) {
  7088. json.type = type;
  7089. setTimeout(() => {
  7090. json.answer = [];
  7091. }, 100)
  7092. },
  7093. checkAskType(type, json) {
  7094. json.type = type;
  7095. // json.checkList = [];
  7096. this.$forceUpdate();
  7097. },
  7098. addSelectList(json) {
  7099. json.select.push("");
  7100. json.answer.push("");
  7101. },
  7102. deleteSelectList(json) {
  7103. // json.select.length--;
  7104. // json.answer.length--;
  7105. json.select.splice(json.select.length - 1, 1);
  7106. json.answer.splice(json.answer.length - 1, 1);
  7107. },
  7108. addAsk() {
  7109. if (this.askJson.askTitle === "") {
  7110. this.$message.error("标题不能为空!");
  7111. return;
  7112. }
  7113. var aj = this.askJson.askJson;
  7114. var b = 1;
  7115. for (var i = 0; i < aj.length; i++) {
  7116. if (aj[i].askstitle === "") {
  7117. var a = 1;
  7118. for (let index = 0; index < aj[i].askItem; index++) {
  7119. const element = aj[i].checkList[index]
  7120. ? aj[i].checkList[index]
  7121. : "";
  7122. if (element != "") {
  7123. b++;
  7124. this.$message.error(`请将题目${i + 1}填写完整。`);
  7125. return;
  7126. } else {
  7127. a++;
  7128. }
  7129. }
  7130. if (b == 1) {
  7131. this.$message.error("至少填写一个问题");
  7132. return;
  7133. }
  7134. } else if (aj[i].askstitle != "") {
  7135. for (let index = 0; index < aj[i].askItem; index++) {
  7136. const element = aj[i].checkList[index]
  7137. ? aj[i].checkList[index]
  7138. : "";
  7139. var index = 0;
  7140. for (var z = 0; z < aj[i].checkList.length; z++) {
  7141. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7142. if (checkC != "") {
  7143. index++;
  7144. } else {
  7145. this.$message.error(`题目${i + 1}选项不能为空!`);
  7146. return;
  7147. }
  7148. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  7149. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  7150. if (checkC == checkC2) {
  7151. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7152. return;
  7153. }
  7154. }
  7155. }
  7156. b++;
  7157. if (index < 2) {
  7158. this.$message.error("每道题目至少需要设置2个选项。");
  7159. return;
  7160. }
  7161. }
  7162. }
  7163. }
  7164. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  7165. var elc = el.checkList.filter((element) => {
  7166. return element != "";
  7167. });
  7168. return el.askstitle != "" && elc.length != 0;
  7169. });
  7170. if (!this.dialogVisible4) {
  7171. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7172. this.taskCount
  7173. ].toolChoose[this.toolIndex] = this.askJson;
  7174. }
  7175. this.dialogVisible5 = false;
  7176. if (
  7177. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7178. .toolChoose[this.toolIndex].tool != 4
  7179. ) {
  7180. this.addTools(4, this.taskCount, this.toolIndex);
  7181. }
  7182. },
  7183. addTest() {
  7184. // if (this.testJson.testTitle === "") {
  7185. // this.$message.error("标题不能为空!");
  7186. // return;
  7187. // }
  7188. var aj = this.testJson.testJson;
  7189. var b = 1;
  7190. for (var i = 0; i < aj.length; i++) {
  7191. if (aj[i].teststitle === "" && aj[i].timuList.length == 0) {
  7192. var a = 1;
  7193. for (let index = 0; index < aj[i].testItem; index++) {
  7194. const element = aj[i].checkList[index]
  7195. ? aj[i].checkList[index]
  7196. : "";
  7197. if (element != "") {
  7198. b++;
  7199. this.$message.error(`请将题目${i + 1}填写完整。`);
  7200. return;
  7201. } else {
  7202. a++;
  7203. }
  7204. }
  7205. if (b == 1) {
  7206. this.$message.error("至少填写一个问题");
  7207. return;
  7208. }
  7209. } else if (aj[i].teststitle != "" || aj[i].timuList.length > 0) {
  7210. for (let index = 0; index < aj[i].testItem; index++) {
  7211. const element = aj[i].checkList[index]
  7212. ? aj[i].checkList[index]
  7213. : "";
  7214. var index = 0;
  7215. for (var z = 0; z < aj[i].checkList.length; z++) {
  7216. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7217. if (checkC != "") {
  7218. index++;
  7219. } else {
  7220. this.$message.error(`题目${i + 1}选项不能为空!`);
  7221. return;
  7222. }
  7223. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  7224. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  7225. if (checkC == checkC2) {
  7226. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7227. return;
  7228. }
  7229. }
  7230. }
  7231. b++;
  7232. if (index < 2) {
  7233. this.$message.error("每道题目至少需要设置2个选项。");
  7234. return;
  7235. }
  7236. if (
  7237. (aj[i].type == "2" && !aj[i].answer.length) ||
  7238. (aj[i].type == "1" && ((typeof aj[i].answer == 'object' && !aj[i].answer.length) || (aj[i].answer !== 0 && !aj[i].answer)))
  7239. ) {
  7240. this.$message.error(`请将题目${i + 1}的正确选项设置完整`);
  7241. return;
  7242. }
  7243. }
  7244. }
  7245. }
  7246. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  7247. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  7248. var elc = el.checkList.filter((element) => {
  7249. return element != "";
  7250. });
  7251. return (
  7252. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  7253. );
  7254. });
  7255. isTestJson.testCount = isTestJson.testJson.length;
  7256. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7257. this.taskCount
  7258. ].toolChoose[this.toolIndex].testJson = isTestJson;
  7259. this.dialogVisibleChoice = false;
  7260. if (
  7261. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7262. .toolChoose[this.toolIndex].tool != 45
  7263. ) {
  7264. this.addTools(45, this.taskCount, this.toolIndex);
  7265. }
  7266. },
  7267. addVideoJson(videoJson) {
  7268. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7269. this.taskCount
  7270. ].toolChoose[this.toolIndex].videoJson = videoJson;
  7271. this.dialogVisibleVideo = false;
  7272. if (
  7273. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7274. .toolChoose[this.toolIndex].tool != 62
  7275. ) {
  7276. this.addTools(62, this.taskCount, this.toolIndex);
  7277. }
  7278. },
  7279. //自动获取剪贴板
  7280. pasteOption() {
  7281. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7282. if (!iframe) {
  7283. this.$message.error("请使用AI共创生成题目");
  7284. return;
  7285. }
  7286. let copyData = iframe.contentWindow.copyData;
  7287. if (!copyData || !copyData.selectData.length) {
  7288. this.$message.error("请使用AI共创生成题目");
  7289. return;
  7290. }
  7291. let selectData = copyData.selectData;
  7292. for (var i = 0; i < selectData.length; i++) {
  7293. let answer = 0;
  7294. switch (selectData[i].answer[0]) {
  7295. case "A":
  7296. answer = 0;
  7297. break;
  7298. case "B":
  7299. answer = 1;
  7300. break;
  7301. case "C":
  7302. answer = 2;
  7303. break;
  7304. case "D":
  7305. answer = 3;
  7306. break;
  7307. case "E":
  7308. answer = 4;
  7309. break;
  7310. default:
  7311. break;
  7312. }
  7313. this.testJson.testJson.push({
  7314. teststitle: selectData[i].subject,
  7315. testItem: selectData[i].options.length,
  7316. checkList: selectData[i].options,
  7317. timuList: [],
  7318. answer: answer,
  7319. type: "1",
  7320. });
  7321. this.testJson.testCount++;
  7322. }
  7323. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  7324. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  7325. var elc = el.checkList.filter((element) => {
  7326. return element != "";
  7327. });
  7328. return (
  7329. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  7330. );
  7331. });
  7332. isTestJson.testCount = isTestJson.testJson.length;
  7333. this.testJson = isTestJson;
  7334. this.$forceUpdate();
  7335. },
  7336. pasteTask() {
  7337. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7338. if (!iframe) {
  7339. this.$message.error("请使用AI共创生成");
  7340. return;
  7341. }
  7342. let copyData = iframe.contentWindow.copyData;
  7343. if (!copyData || !copyData.tasksData || !copyData.tasksData.length) {
  7344. this.$message.error("请使用AI共创生成");
  7345. return;
  7346. }
  7347. let stageTasksData = copyData.tasksData;
  7348. let taskA = [];
  7349. let tasks = stageTasksData;
  7350. for (var j = 0; j < tasks.length; j++) {
  7351. taskA.push({
  7352. task: tasks[j].taskName,
  7353. taskDetail: tasks[j].taskDecs,
  7354. chapterData: [],
  7355. toolText: "",
  7356. toolChoose: [
  7357. {
  7358. tool: [],
  7359. toolDetail: "",
  7360. toolType: 0,
  7361. askCount: 1,
  7362. askTitle: "",
  7363. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7364. },
  7365. ],
  7366. isShowTools: false,
  7367. askCount: 1,
  7368. isFold: 0,
  7369. askTitle: "",
  7370. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7371. checkJson: [{ checkCount: [], checkPerent: [] }],
  7372. homeworkList: [],
  7373. });
  7374. }
  7375. this.unitJson[this.unitIndex].chapterInfo[0].taskJson = taskA;
  7376. this.$forceUpdate();
  7377. },
  7378. pasteStage() {
  7379. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  7380. if (!iframe) {
  7381. this.$message.error("请使用AI共创生成");
  7382. return;
  7383. }
  7384. let copyData = iframe.contentWindow.copyData;
  7385. if (!copyData || !copyData.stageData || !copyData.stageData.length) {
  7386. this.$message.error("请使用AI共创生成");
  7387. return;
  7388. }
  7389. let stageData = copyData.stageData;
  7390. let stage = [];
  7391. for (var i = 0; i < stageData.length; i++) {
  7392. stage.push({
  7393. dyName: stageData[i], //单元标题
  7394. chapterInfo: [
  7395. {
  7396. isread: false,
  7397. chapterid: this.guid(),
  7398. title: "",
  7399. courseName: "",
  7400. taskJson: [
  7401. {
  7402. task: "",
  7403. taskDetail: "",
  7404. chapterData: [],
  7405. toolText: "",
  7406. toolChoose: [
  7407. {
  7408. tool: [],
  7409. toolDetail: "",
  7410. toolType: 0,
  7411. askCount: 1,
  7412. askTitle: "",
  7413. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7414. },
  7415. ],
  7416. isShowTools: false,
  7417. askCount: 1,
  7418. isFold: 0,
  7419. askTitle: "",
  7420. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7421. checkJson: [{ checkCount: [], checkPerent: [] }],
  7422. homeworkList: [],
  7423. },
  7424. ],
  7425. itemCount: 1,
  7426. fileList1: [],
  7427. video: [],
  7428. testData: [],
  7429. pData: [],
  7430. templateArray: [],
  7431. },
  7432. ],
  7433. });
  7434. }
  7435. let _this = this;
  7436. _this
  7437. .$confirm("确定选择智能粘贴模板吗?修改课程时无法重置课程模板。", "提示", {
  7438. confirmButtonText: "确定",
  7439. cancelButtonText: "取消",
  7440. type: "warning",
  7441. })
  7442. .then(() => {
  7443. _this.unitIndex = 0;
  7444. _this.unitJson = stage;
  7445. _this.steps++;
  7446. _this.updateWork();
  7447. })
  7448. .catch(() => {
  7449. return;
  7450. });
  7451. },
  7452. openStageBox() {
  7453. this.unitJson3 = JSON.parse(JSON.stringify(this.unitJson))
  7454. this.dialogVisibleStageChange = true;
  7455. },
  7456. updateChange() {
  7457. this.$confirm(
  7458. "切换阶段顺序将删除所有工具的提交成果,是否继续此操作?",
  7459. "提示",
  7460. {
  7461. confirmButtonText: "确定",
  7462. cancelButtonText: "取消",
  7463. type: "warning",
  7464. }
  7465. )
  7466. .then(() => {
  7467. this.unitJson = JSON.parse(JSON.stringify(this.unitJson3))
  7468. this.updateWork()
  7469. this.dialogVisibleStageChange = false;
  7470. })
  7471. .catch(() => {
  7472. return;
  7473. });
  7474. },
  7475. addAnswer() {
  7476. if (this.answerQ == "") {
  7477. this.$message.error("请输入您想要问的问题");
  7478. return;
  7479. }
  7480. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7481. this.taskCount
  7482. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7483. this.dialogVisible8 = false;
  7484. if (
  7485. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7486. .toolChoose[this.toolIndex].tool != 15
  7487. ) {
  7488. this.addTools(15, this.taskCount, this.toolIndex);
  7489. }
  7490. },
  7491. addMp3Answer() {
  7492. if (this.answerQ == "") {
  7493. this.$message.error("请输入您想要回答的问题");
  7494. return;
  7495. }
  7496. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7497. this.taskCount
  7498. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7499. this.dialogVisibleMp3 = false;
  7500. },
  7501. addRateAnswer() {
  7502. var a = 1;
  7503. for (var i = 0; i < this.rateJson.length; i++) {
  7504. if (this.rateJson[i].value == "") {
  7505. a = 2;
  7506. break;
  7507. }
  7508. }
  7509. if (a == 2) {
  7510. this.$message.error("请把评价信息填写完整");
  7511. return;
  7512. }
  7513. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7514. this.taskCount
  7515. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  7516. this.dialogVisibleRate = false;
  7517. if (
  7518. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7519. .toolChoose[this.toolIndex].tool != 40
  7520. ) {
  7521. this.addTools(40, this.taskCount, this.toolIndex);
  7522. }
  7523. },
  7524. addSelectAnswer() {
  7525. if (this.selectJson.url == "") {
  7526. this.$message.error("请上传题目");
  7527. return;
  7528. }
  7529. if (!this.selectJson.select.length) {
  7530. this.$message.error("请添加选项");
  7531. return;
  7532. }
  7533. if (!this.selectJson.answer.length) {
  7534. this.$message.error("请设置答案");
  7535. return;
  7536. }
  7537. var a = 1;
  7538. for (var i = 0; i < this.selectJson.answer.length; i++) {
  7539. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  7540. a = 2;
  7541. }
  7542. }
  7543. if (a == 2) {
  7544. this.$message.error("请设置答案");
  7545. return;
  7546. }
  7547. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7548. this.taskCount
  7549. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  7550. this.dialogVisibleSelect = false;
  7551. if (
  7552. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7553. .toolChoose[this.toolIndex].tool != 41
  7554. ) {
  7555. this.addTools(41, this.taskCount, this.toolIndex);
  7556. }
  7557. },
  7558. nextSelectSteps() {
  7559. if (this.selectJson.url == "") {
  7560. this.$message.error("请上传题目");
  7561. return;
  7562. }
  7563. if (!this.selectJson.select.length) {
  7564. this.$message.error("请添加选项");
  7565. return;
  7566. } else {
  7567. for (var z = 0; z < this.selectJson.select.length; z++) {
  7568. let checkC = this.selectJson.select[z];
  7569. for (var z2 = z + 1; z2 < this.selectJson.select.length; z2++) {
  7570. let checkC2 = this.selectJson.select[z2];
  7571. if (checkC == checkC2) {
  7572. this.$message.error(`选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7573. return;
  7574. }
  7575. }
  7576. }
  7577. }
  7578. var a = 1;
  7579. for (var i = 0; i < this.selectJson.select.length; i++) {
  7580. if (!this.selectJson.select[i]) {
  7581. a = 2;
  7582. }
  7583. }
  7584. if (a == 2) {
  7585. this.$message.error("添加的选项不能为空");
  7586. return;
  7587. }
  7588. this.selectSteps++;
  7589. },
  7590. selectCourseDetail() {
  7591. if (this.cid == "" || this.cid == undefined) {
  7592. console.log("这是新增课程");
  7593. this.selectAllType();
  7594. } else {
  7595. this.cidType = 1;
  7596. let params = {
  7597. cid: this.cid,
  7598. };
  7599. this.ajax
  7600. .get(this.$store.state.api + "select_course_detail", params)
  7601. .then((res) => {
  7602. this.loading = true;
  7603. this.unitJson = JSON.parse(res.data[0][0].chapters);
  7604. for (var j = 0; j < this.unitJson.length; j++) {
  7605. for (
  7606. var k = 0;
  7607. k < this.unitJson[j].chapterInfo[0].taskJson.length;
  7608. k++
  7609. ) {
  7610. this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose = this
  7611. .unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7612. ? this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  7613. : [];
  7614. let _chapterData = [];
  7615. for (
  7616. var c = 0;
  7617. c <
  7618. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData
  7619. .length;
  7620. c++
  7621. ) {
  7622. if (
  7623. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7624. ) {
  7625. _chapterData.push(
  7626. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  7627. );
  7628. }
  7629. }
  7630. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData =
  7631. _chapterData;
  7632. }
  7633. }
  7634. this.$forceUpdate();
  7635. this.courseName = res.data[0][0].title;
  7636. this.courseText = res.data[0][0].brief;
  7637. this.evalua = res.data[0][0].evaId;
  7638. this.cover = JSON.parse(res.data[0][0].cover);
  7639. this.noneBtnImg = this.cover.length >= 1;
  7640. // this.checkboxList =
  7641. // res.data[0][0].course_student.length > 0
  7642. // ? JSON.parse(res.data[0][0].course_student)
  7643. // : [];
  7644. this.checkboxList2 = res.data[0][0].juri
  7645. ? res.data[0][0].juri.split(",")
  7646. : [];
  7647. this.inviteCode = [];
  7648. for (var i = 0; i < res.data[2].length; i++) {
  7649. this.inviteCode.push({
  7650. cid: res.data[2][i].classid,
  7651. ic: res.data[2][i].code,
  7652. });
  7653. }
  7654. this.checkboxList3 = res.data[0][0].course_teacher
  7655. ? res.data[0][0].course_teacher.split(",")
  7656. : [];
  7657. // this.isTeacherSee =
  7658. // res.data[0][0].is_teacher_look == 0 ? true : false;
  7659. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  7660. this.myWord = res.data[0][0].template;
  7661. this.templateC.id = "123";
  7662. this.courseUserid = res.data[0][0].userid;
  7663. // if(this.courseUserid == this.userid){
  7664. // this.InviteChange(this.checkboxList2)
  7665. // }
  7666. this.nbOrder = res.data[0][0].ordernumber;
  7667. this.courseTypeId = [];
  7668. for (var i = 0; i < res.data[1].length; i++) {
  7669. this.courseTypeId.push(res.data[1][i].typeid);
  7670. }
  7671. console.log(this.courseTypeId);
  7672. // if (this.timer) clearInterval(this.timer);
  7673. if (this.timer) clearTimeout(this.timer);
  7674. this.timer = null;
  7675. // this.timer = setInterval(() => {
  7676. this.seleteCourseUpdate();
  7677. this.setMan();
  7678. this.selectAllType();
  7679. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  7680. // }, 5000);
  7681. this.$forceUpdate();
  7682. setTimeout(() => {
  7683. this.checkEva(this.evalua);
  7684. setTimeout(() => {
  7685. this.checkEva(this.evalua);
  7686. }, 100);
  7687. }, 100);
  7688. })
  7689. .catch((err) => {
  7690. console.error(err);
  7691. });
  7692. }
  7693. },
  7694. seleteCourseUpdate() {
  7695. let params = {
  7696. cid: this.cid,
  7697. };
  7698. this.ajax
  7699. .get(this.$store.state.api + "select_course_detail", params)
  7700. .then((res) => {
  7701. // console.log(this.unitJson);
  7702. let unitJson = JSON.parse(res.data[0][0].chapters);
  7703. this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  7704. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  7705. let _unitJson = [];
  7706. let _chapAarry = [];
  7707. let _unitIndex = JSON.parse(JSON.stringify(this.unitIndex));
  7708. let _unitIndex2 = JSON.parse(JSON.stringify(this.unitIndex));
  7709. let index = 1;
  7710. let chapindex;
  7711. if (_unitJson2.length > unitJson.length) {
  7712. for (let c = 0; c < _unitJson2.length; c++) {
  7713. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  7714. }
  7715. for (let j = 0; j < unitJson.length; j++) {
  7716. let count = 0;
  7717. for (let k = 0; k < _unitJson2.length; k++) {
  7718. if (
  7719. unitJson[j].chapterInfo[0].chapterid ==
  7720. _unitJson2[k].chapterInfo[0].chapterid
  7721. ) {
  7722. count++;
  7723. _chapAarry.splice(
  7724. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7725. 1
  7726. );
  7727. _unitJson.push(unitJson[j]);
  7728. break;
  7729. }
  7730. }
  7731. // if(count === 0){
  7732. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7733. // }
  7734. }
  7735. for (let k = 0; k < _unitJson2.length; k++) {
  7736. if (_unitJson2[k].isUpdate == 1) {
  7737. _chapAarry.splice(
  7738. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  7739. 1
  7740. );
  7741. _unitJson.push(_unitJson2[k]);
  7742. }
  7743. }
  7744. console.log(_chapAarry);
  7745. for (let d = 0; d < _unitJson2.length; d++) {
  7746. if (
  7747. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  7748. ) {
  7749. if (_unitIndex == d) {
  7750. index = 2;
  7751. }
  7752. chapindex = d;
  7753. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  7754. }
  7755. }
  7756. } else {
  7757. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  7758. }
  7759. for (let i = 0; i < unitJson.length; i++) {
  7760. if (
  7761. (i < _unitJson.length - 1 || i == _unitJson.length - 1) &&
  7762. _unitJson[i].chapterInfo[0].chapterid !=
  7763. unitJson[i].chapterInfo[0].chapterid
  7764. ) {
  7765. if (i == _unitJson.length - 1) {
  7766. // this.unitIndex++
  7767. _unitIndex2++;
  7768. }
  7769. _unitJson.splice(i, 0, unitJson[i]);
  7770. } else if (i > _unitJson.length - 1) {
  7771. _unitJson.push(unitJson[i]);
  7772. } else if (
  7773. _unitJson[i].chapterInfo[0].chapterid ==
  7774. unitJson[i].chapterInfo[0].chapterid
  7775. ) {
  7776. _unitJson[i] = unitJson[i];
  7777. }
  7778. // if (i == _unitIndex) {
  7779. // continue;
  7780. // } else
  7781. }
  7782. if (_chapAarry.length && index != 2) {
  7783. if (chapindex < _unitIndex) {
  7784. this.isDelete = 2;
  7785. // this.unitIndex--;
  7786. _unitIndex2--;
  7787. } else if (
  7788. _unitJson2[_unitIndex].chapterInfo[0].chapterid !=
  7789. _unitJson[_unitIndex].chapterInfo[0].chapterid
  7790. ) {
  7791. this.isDelete = 2;
  7792. for (let n = 0; n < _unitJson.length; n++) {
  7793. if (
  7794. _unitJson2[_unitIndex].chapterInfo[0].chapterid ==
  7795. _unitJson[n].chapterInfo[0].chapterid
  7796. ) {
  7797. // this.unitIndex = n;
  7798. _unitIndex2 = n;
  7799. _unitJson[n] = _unitJson2[_unitIndex];
  7800. break;
  7801. }
  7802. }
  7803. }
  7804. } else if (index != 2) {
  7805. // _unitJson[this.unitIndex] = _unitJson2[_unitIndex];
  7806. _unitJson2[_unitIndex];
  7807. for (
  7808. var ci = 0;
  7809. ci < _unitJson2[_unitIndex].chapterInfo[0].taskJson.length;
  7810. ci++
  7811. ) {
  7812. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose =
  7813. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose
  7814. ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7815. .toolChoose
  7816. : [];
  7817. let _chapterData = [];
  7818. for (
  7819. var c = 0;
  7820. c <
  7821. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData
  7822. .length;
  7823. c++
  7824. ) {
  7825. if (
  7826. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7827. .chapterData[c]
  7828. ) {
  7829. _chapterData.push(
  7830. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  7831. .chapterData[c]
  7832. );
  7833. }
  7834. }
  7835. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
  7836. _chapterData;
  7837. }
  7838. _unitJson[_unitIndex2] = _unitJson2[_unitIndex];
  7839. }
  7840. if (index == 1) {
  7841. this.unitJson = _unitJson;
  7842. this.$forceUpdate();
  7843. setTimeout(() => {
  7844. if (this.unitIndex != _unitIndex2) {
  7845. this.isDelete = 2;
  7846. this.unitIndex = _unitIndex2;
  7847. }
  7848. }, 0);
  7849. this.timer = setTimeout(() => {
  7850. this.seleteCourseUpdate();
  7851. }, 1000);
  7852. } else if (index == 2) {
  7853. let _this = this;
  7854. _this
  7855. .$confirm(
  7856. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  7857. "提示",
  7858. {
  7859. confirmButtonText: "需要",
  7860. cancelButtonText: "取消",
  7861. type: "warning",
  7862. }
  7863. )
  7864. .then(() => {
  7865. if (_this.time()) {
  7866. _this.restoreWork(
  7867. _chapAarry[0],
  7868. _unitJson,
  7869. chapindex,
  7870. _unitJson2,
  7871. _unitIndex2
  7872. );
  7873. }
  7874. })
  7875. .catch(() => {
  7876. _this.unitJson = _unitJson;
  7877. _this.$forceUpdate();
  7878. setTimeout(() => {
  7879. if (this.unitIndex != _unitIndex2) {
  7880. this.isDelete = 2;
  7881. this.unitIndex = _unitIndex2;
  7882. }
  7883. }, 0);
  7884. _this.timer = setTimeout(() => {
  7885. _this.seleteCourseUpdate();
  7886. }, 1000);
  7887. });
  7888. }
  7889. })
  7890. .catch((err) => {
  7891. console.error(err);
  7892. });
  7893. },
  7894. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  7895. let params = [
  7896. {
  7897. cid: this.cid,
  7898. chapters: JSON.stringify(this.unitJson),
  7899. uid: this.userid,
  7900. chapid: chapid,
  7901. },
  7902. ];
  7903. this.ajax
  7904. .post(this.$store.state.api + "restoreWork", params)
  7905. .then((res) => {
  7906. this.$message({
  7907. message: "恢复成功",
  7908. type: "success",
  7909. });
  7910. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  7911. this.unitJson = unitJson;
  7912. this.$forceUpdate();
  7913. setTimeout(() => {
  7914. if (this.unitIndex != unitIndex2) {
  7915. this.isDelete = 2;
  7916. this.unitIndex = unitIndex2;
  7917. }
  7918. }, 0);
  7919. this.timer = setTimeout(() => {
  7920. this.seleteCourseUpdate();
  7921. }, 1000);
  7922. })
  7923. .catch((err) => {
  7924. this.$message.error("网络不佳");
  7925. console.error(err);
  7926. });
  7927. },
  7928. getTypeName() {
  7929. console.log(this.courseTypeId);
  7930. this.$forceUpdate();
  7931. },
  7932. selectAllType() {
  7933. let params = {
  7934. org: this.org && this.org != "" ? this.org : "",
  7935. oid: this.oid && this.oid != "" ? this.oid : "",
  7936. };
  7937. this.ajax
  7938. .get(this.$store.state.api + "selectAllType", params)
  7939. .then((res) => {
  7940. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7941. res.data[0] = [...res.data[0], ...res.data[4]]
  7942. }
  7943. this.CourseType = res.data;
  7944. this.CourseType2 = [
  7945. { name: "智见课程", id: [] },
  7946. { name: "智行课程", id: [] },
  7947. { name: "智创课程", id: [] },
  7948. ];
  7949. for (var cti = 0; cti < res.data[0].length; cti++) {
  7950. if (
  7951. res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" ||
  7952. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"
  7953. ) {
  7954. this.CourseType2[0].id.push(res.data[0][cti].id);
  7955. } else if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5" ||
  7956. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  7957. this.CourseType2[1].id.push(res.data[0][cti].id);
  7958. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  7959. this.CourseType2[2].id.push(res.data[0][cti].id);
  7960. }
  7961. if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5") {
  7962. res.data[0][cti].name = "年级";
  7963. } else if (res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  7964. res.data[0][cti].name = "学科";
  7965. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  7966. res.data[0][cti].name = "主题";
  7967. }
  7968. }
  7969. let _courseTypeId = [];
  7970. for (var i = 0; i < res.data[0].length; i++) {
  7971. if (!this.cid) {
  7972. this.courseTypeId[res.data[0][i].id] = [];
  7973. }
  7974. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  7975. // }
  7976. this.CourseTypeJson[res.data[0][i].id] = [];
  7977. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  7978. if (res.data[0][i].name == "栏目") {
  7979. this.CourseType[0][i].name = "主题";
  7980. }
  7981. }
  7982. if (res.data[2].length == 0 && res.data[3].length == 0) {
  7983. for (var j = 0; j < res.data[1].length; j++) {
  7984. if (
  7985. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  7986. _courseTypeId.indexOf(res.data[1][j].id) == -1
  7987. ) {
  7988. _courseTypeId.push(res.data[1][j].id);
  7989. }
  7990. if (res.data[0][i].id == res.data[1][j].pid) {
  7991. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  7992. }
  7993. }
  7994. } else {
  7995. if (res.data[2].length > 0) {
  7996. for (var j = 0; j < res.data[2].length; j++) {
  7997. if (
  7998. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  7999. _courseTypeId.indexOf(res.data[2][j].id) == -1
  8000. ) {
  8001. _courseTypeId.push(res.data[2][j].id);
  8002. }
  8003. if (res.data[0][i].id == res.data[2][j].pid) {
  8004. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  8005. }
  8006. }
  8007. }
  8008. if (res.data[3].length > 0) {
  8009. for (var j = 0; j < res.data[3].length; j++) {
  8010. if (
  8011. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  8012. _courseTypeId.indexOf(res.data[3][j].id) == -1
  8013. ) {
  8014. _courseTypeId.push(res.data[3][j].id);
  8015. }
  8016. if (res.data[0][i].id == res.data[3][j].pid) {
  8017. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  8018. }
  8019. }
  8020. }
  8021. }
  8022. }
  8023. this.courseTypeId = _courseTypeId;
  8024. })
  8025. .catch((err) => {
  8026. console.error(err);
  8027. });
  8028. },
  8029. selectType() {
  8030. this.ajax
  8031. .get(this.$store.state.api + "selectType")
  8032. .then((res) => {
  8033. this.CourseType = res.data;
  8034. for (var i = 0; i < res.data[0].length; i++) {
  8035. if (!this.cid) {
  8036. this.courseTypeId[res.data[0][i].id] = "";
  8037. }
  8038. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  8039. if (res.data[0][i].name == "栏目") {
  8040. this.CourseType[0][i].name = "主题";
  8041. }
  8042. }
  8043. for (var j = 0; j < res.data[1].length; j++) {
  8044. if (res.data[0][i].id == res.data[1][j].pid) {
  8045. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8046. this.CourseTypeJson[res.data[0][i].id] = [];
  8047. }
  8048. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8049. }
  8050. }
  8051. }
  8052. this.selectTypeByOid();
  8053. this.selectTypeByOrg();
  8054. })
  8055. .catch((err) => {
  8056. console.error(err);
  8057. });
  8058. },
  8059. selectTypeByOid() {
  8060. let params = {
  8061. oid: this.oid,
  8062. };
  8063. this.ajax
  8064. .get(this.$store.state.api + "selectTypeByOid", params)
  8065. .then((res) => {
  8066. for (var i = 0; i < res.data[0].length; i++) {
  8067. for (var j = 0; j < res.data[1].length; j++) {
  8068. if (res.data[0][i].id == res.data[1][j].pid) {
  8069. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8070. this.CourseTypeJson[res.data[0][i].id] = [];
  8071. }
  8072. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8073. }
  8074. }
  8075. }
  8076. })
  8077. .catch((err) => {
  8078. console.error(err);
  8079. });
  8080. },
  8081. selectTypeByOrg() {
  8082. let params = {
  8083. oid: this.org,
  8084. };
  8085. this.ajax
  8086. .get(this.$store.state.api + "selectTypeByOrg", params)
  8087. .then((res) => {
  8088. for (var i = 0; i < res.data[0].length; i++) {
  8089. for (var j = 0; j < res.data[1].length; j++) {
  8090. if (res.data[0][i].id == res.data[1][j].pid) {
  8091. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8092. this.CourseTypeJson[res.data[0][i].id] = [];
  8093. }
  8094. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8095. }
  8096. }
  8097. }
  8098. this.$forceUpdate();
  8099. })
  8100. .catch((err) => {
  8101. console.error(err);
  8102. });
  8103. },
  8104. OtherMb(type) {
  8105. this.typeMode = type;
  8106. setTimeout(() => {
  8107. this.checkEva(this.checkId);
  8108. setTimeout(() => {
  8109. this.checkEva(this.checkId);
  8110. }, 100);
  8111. }, 100);
  8112. },
  8113. openMember() {
  8114. this.searchTN = "";
  8115. this.getTeacher();
  8116. this.dialogVisibleMember = true;
  8117. },
  8118. checkEva(id, type) {
  8119. this.dialogVisiblemb = false;
  8120. this.selectEva();
  8121. if (this.evalua != id && type == 2) {
  8122. this.$message.success("导入成功");
  8123. }
  8124. this.evalua = id;
  8125. this.checkId = id;
  8126. if (this.evalua != "") {
  8127. for (var i = 0; i < this.evaJuri.length; i++) {
  8128. if (this.evalua == this.evaJuri[i].id) {
  8129. this.eTitle = this.evaJuri[i].title;
  8130. this.eJson = JSON.parse(this.evaJuri[i].content);
  8131. }
  8132. }
  8133. this.data.data = [];
  8134. this.$forceUpdate();
  8135. setTimeout(() => {
  8136. this.setMindData();
  8137. }, 1000);
  8138. }
  8139. },
  8140. deleteEva() {
  8141. let _this = this;
  8142. if (_this.evalua == "") {
  8143. this.$message.warning("内容已经清空了,请勿重复清空");
  8144. return;
  8145. }
  8146. _this
  8147. .$confirm("确定删除此目标吗?", "提示", {
  8148. confirmButtonText: "确定",
  8149. cancelButtonText: "取消",
  8150. type: "warning",
  8151. })
  8152. .then(() => {
  8153. _this.evalua = "";
  8154. _this.checkId = "";
  8155. _this.eTitle = "";
  8156. let _unitJson = _this.unitJson;
  8157. for (var i = 0; i < _unitJson.length; i++) {
  8158. let _task = _unitJson[i].chapterInfo[0].taskJson;
  8159. for (var j = 0; j < _task.length; j++) {
  8160. let _eList = _task[j].eList;
  8161. for (var k = 0; k < _eList.length; k++) {
  8162. delete _eList[k].target;
  8163. }
  8164. }
  8165. }
  8166. _this.$forceUpdate();
  8167. if (_this.cid) {
  8168. _this.updateWork();
  8169. }
  8170. })
  8171. .catch(() => {
  8172. return;
  8173. });
  8174. },
  8175. selectEva() {
  8176. let params = {
  8177. oid: this.oid,
  8178. };
  8179. this.ajax
  8180. .get(this.$store.state.api + "selectAllEvaluation", params)
  8181. .then((res) => {
  8182. this.evaJuri = res.data[0];
  8183. })
  8184. .catch((err) => {
  8185. console.error(err);
  8186. });
  8187. },
  8188. setMindData() {
  8189. let targetArray = [];
  8190. this.data.data = [];
  8191. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  8192. let _eJson = Object.keys(this.eJson);
  8193. let _e = this.eJson;
  8194. for (let i = 0; i < _eJson.length; i++) {
  8195. let element = _e[_eJson[i]];
  8196. this.data.data.push({
  8197. id: element.id,
  8198. parentid: "root",
  8199. topic: element.name,
  8200. });
  8201. // targetArray.push({
  8202. // id: element.id,
  8203. // parentid: "root",
  8204. // name: element.name,
  8205. // });
  8206. targetArray.push({
  8207. value: element.name,
  8208. label: element.name,
  8209. children: [],
  8210. });
  8211. let _eJsonc = Object.keys(element.child);
  8212. let _e2 = element.child;
  8213. for (let j = 0; j < _eJsonc.length; j++) {
  8214. let _ec = _e2[_eJsonc[j]];
  8215. this.data.data.push({
  8216. id: _ec.id,
  8217. parentid: element.id,
  8218. topic: _ec.name,
  8219. });
  8220. // targetArray.push({
  8221. // id: _ec.id,
  8222. // parentid: element.id,
  8223. // name: _ec.name,
  8224. // });
  8225. targetArray[i].children.push({
  8226. value: _ec.name,
  8227. label: _ec.name,
  8228. children: [],
  8229. });
  8230. let _eJsonz = Object.keys(_ec.child);
  8231. let _e3 = _ec.child;
  8232. for (let z = 0; z < _eJsonz.length; z++) {
  8233. let _ez = _e3[_eJsonz[z]];
  8234. this.data.data.push({
  8235. id: _ez.id,
  8236. parentid: _ec.id,
  8237. topic: _ez.name,
  8238. });
  8239. // targetArray.push({
  8240. // id: _ez.id,
  8241. // parentid: _ec.id,
  8242. // name: _ez.name,
  8243. // });
  8244. targetArray[i].children[j].children.push({
  8245. value: _ez.name,
  8246. label: _ez.name,
  8247. });
  8248. }
  8249. }
  8250. }
  8251. this.targetArray = targetArray;
  8252. this.$forceUpdate();
  8253. },
  8254. /*添加评价 */
  8255. addEList(index, tIndex) {
  8256. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  8257. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  8258. value: "",
  8259. detail: "",
  8260. score: 5,
  8261. })
  8262. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  8263. { value: "", detail: "", score: 5 },
  8264. ]);
  8265. this.$forceUpdate();
  8266. },
  8267. forceUpdate() {
  8268. this.$forceUpdate();
  8269. },
  8270. deletEList(index, tIndex, eIndex) {
  8271. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  8272. eIndex,
  8273. 1
  8274. );
  8275. this.$forceUpdate();
  8276. },
  8277. getChoosePic(t) {
  8278. this.chooseType = t;
  8279. this.getAllBanner();
  8280. },
  8281. getAllBanner() {
  8282. this.sysPicVisible = true;
  8283. let params = {
  8284. t: this.chooseType,
  8285. };
  8286. this.ajax
  8287. .get(this.$store.state.api + "selectAllBanner", params)
  8288. .then((res) => {
  8289. this.sysPic = res.data[0];
  8290. })
  8291. .catch((err) => {
  8292. console.error(err);
  8293. });
  8294. },
  8295. // getClass() {
  8296. // let params = {
  8297. // oid: this.oid,
  8298. // };
  8299. // this.ajax
  8300. // .get(this.$store.state.api + "selectClassBySchool", params)
  8301. // .then((res) => {
  8302. // this.classJuri = res.data[0];
  8303. // })
  8304. // .catch((err) => {
  8305. // console.error(err);
  8306. // });
  8307. // },
  8308. deleteSysPic() {
  8309. this.cover = [];
  8310. this.isSysPic = false;
  8311. this.isSysPic2 = false;
  8312. },
  8313. deleteSelectPic() {
  8314. this.selectJson.url = "";
  8315. },
  8316. setEListStar() {
  8317. this.$forceUpdate();
  8318. },
  8319. deletRateList(i) {
  8320. this.rateJson.splice(i, 1);
  8321. },
  8322. addRateList() {
  8323. this.rateJson.push({ detail: "", score: 5, value: "" });
  8324. },
  8325. addSt() {
  8326. this.sentenceList.push({
  8327. sentenceTitle: "",
  8328. addSentence: [],
  8329. rightAnswer: [],
  8330. });
  8331. },
  8332. addSen(i) {
  8333. if (!this.sentenceList[i].sentenceTitle) {
  8334. this.$message.error("请填写卡片内容!");
  8335. return;
  8336. }
  8337. if (this.sentenceList[i].sentenceTitle.length > 10) {
  8338. this.$message.error("卡片内容字数不能超过10位");
  8339. return;
  8340. }
  8341. if (this.sentenceList[i].addSentence.indexOf(this.sentenceList[i].sentenceTitle) !== -1) {
  8342. this.$message.error("不能添加重复的卡片内容!");
  8343. return;
  8344. }
  8345. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  8346. // this.isPushTitleList.push(this.sentenceTitle);
  8347. this.sentenceList[i].sentenceTitle = "";
  8348. },
  8349. setRightAnswer(s, i, j) {
  8350. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  8351. this.sentenceList[i].rightAnswer.push(s);
  8352. }
  8353. },
  8354. returnCard(r, i, j) {
  8355. this.sentenceList[i].rightAnswer.splice(j, 1);
  8356. },
  8357. addSentenceTool() {
  8358. for (var i = 0; i < this.sentenceList.length; i++) {
  8359. if (this.sentenceList[i].rightAnswer.length == 0) {
  8360. this.$message.error(`请将题目${i + 1}设置完整。`);
  8361. return;
  8362. }
  8363. if (
  8364. this.sentenceList[i].addSentence.length !=
  8365. this.sentenceList[i].rightAnswer.length
  8366. ) {
  8367. this.$message.error(`请将题目${i + 1}设置完整。`);
  8368. return;
  8369. }
  8370. }
  8371. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8372. this.taskCount
  8373. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  8374. this.sentenceList = [
  8375. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  8376. ];
  8377. this.dialogVisibleSentence = false;
  8378. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8379. // itemTaskIndex
  8380. // ].toolChoose[toolIndex].tool = [];
  8381. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8382. // itemTaskIndex
  8383. // ].toolChoose[toolIndex].tool.push(i);
  8384. if (
  8385. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8386. .toolChoose[this.toolIndex].tool != 47
  8387. ) {
  8388. this.addTools(47, this.taskCount, this.toolIndex);
  8389. }
  8390. },
  8391. addTableJson() {
  8392. // if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  8393. // this.$message.error("请将信息填写完整!");
  8394. // return;
  8395. // }
  8396. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8397. this.taskCount
  8398. ].toolChoose[this.toolIndex].tableJson = this.tableJson;
  8399. // this.tableJson = [{ text: "" }];
  8400. // this.dialogVisibleTable = false;
  8401. this.$message.success("上传成功");
  8402. if (
  8403. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8404. .toolChoose[this.toolIndex].tool != 48
  8405. ) {
  8406. this.addTools(48, this.taskCount, this.toolIndex);
  8407. }
  8408. },
  8409. addWordJson() {
  8410. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8411. this.taskCount
  8412. ].toolChoose[this.toolIndex].wordJson = this.wordJson;
  8413. // this.wordJson = [{ text: "" }];
  8414. // this.dialogVisibleWord = false;
  8415. this.$message.success("上传成功");
  8416. if (
  8417. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8418. .toolChoose[this.toolIndex].tool != 52
  8419. ) {
  8420. this.addTools(52, this.taskCount, this.toolIndex);
  8421. }
  8422. },
  8423. addMoreUpload() {
  8424. if (this.uploadJson.length == 0) {
  8425. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8426. this.taskCount
  8427. ].toolChoose[this.toolIndex].uploadJson = [];
  8428. } else {
  8429. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8430. this.taskCount
  8431. ].toolChoose[this.toolIndex].uploadJson = this.uploadJson;
  8432. }
  8433. this.uploadJson = [];
  8434. this.dialogVisibleMoreUpload = false;
  8435. if (
  8436. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8437. .toolChoose[this.toolIndex].tool != 50
  8438. ) {
  8439. this.addTools(50, this.taskCount, this.toolIndex);
  8440. }
  8441. },
  8442. addPreTime() {
  8443. if (this.preTime == 0) {
  8444. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8445. this.taskCount
  8446. ].toolChoose[this.toolIndex].preTime = 0;
  8447. } else {
  8448. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8449. this.taskCount
  8450. ].toolChoose[this.toolIndex].preTime = this.preTime;
  8451. }
  8452. this.preTime = 0;
  8453. this.dialogVisiblePreTime = false;
  8454. if (
  8455. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8456. .toolChoose[this.toolIndex].tool != 10
  8457. ) {
  8458. this.addTools(10, this.taskCount, this.toolIndex);
  8459. }
  8460. },
  8461. goToTask(i) {
  8462. this.toolIndexType = ''
  8463. if(this.isClickColor == (i + 1)){
  8464. if(this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen){
  8465. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  8466. }else{
  8467. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  8468. }
  8469. this.$forceUpdate();
  8470. return;
  8471. }
  8472. if(this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen){
  8473. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  8474. }else{
  8475. document.querySelectorAll(".basic_box")[0].scrollTop =
  8476. document.querySelectorAll(".taskBorder")[i].offsetTop - 100;
  8477. this.isClickColor = i + 1;
  8478. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  8479. }
  8480. this.$forceUpdate();
  8481. },
  8482. taskMove(type, index) {
  8483. this.$confirm(
  8484. "切换任务顺序将删除所有工具的提交成果,是否继续此操作?",
  8485. "提示",
  8486. {
  8487. confirmButtonText: "确定",
  8488. cancelButtonText: "取消",
  8489. type: "warning",
  8490. }
  8491. )
  8492. .then(() => {
  8493. if (type == 1) {
  8494. if (index > 0) {
  8495. let a = JSON.parse(
  8496. JSON.stringify(
  8497. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8498. index - 1
  8499. ]
  8500. )
  8501. );
  8502. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  8503. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8504. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8505. }
  8506. } else {
  8507. if (
  8508. index <
  8509. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  8510. ) {
  8511. let a = JSON.parse(
  8512. JSON.stringify(
  8513. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8514. index + 1
  8515. ]
  8516. )
  8517. );
  8518. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  8519. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8520. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8521. }
  8522. }
  8523. this.$forceUpdate();
  8524. })
  8525. .catch(() => {
  8526. return;
  8527. });
  8528. },
  8529. stageMove(type, index) {
  8530. if (type == 1) {
  8531. if (index > 0) {
  8532. let a = JSON.parse(
  8533. JSON.stringify(
  8534. this.unitJson3[index - 1]
  8535. )
  8536. );
  8537. let acid = JSON.parse(JSON.stringify(this.unitJson3[index - 1].chapterInfo[0].chapterid))
  8538. let bcid = JSON.parse(JSON.stringify(this.unitJson3[index].chapterInfo[0].chapterid))
  8539. this.unitJson3[index - 1] = this.unitJson3[index];
  8540. this.unitJson3[index] = a;
  8541. this.unitJson3[index - 1].chapterInfo[0].chapterid = acid;
  8542. this.unitJson3[index].chapterInfo[0].chapterid = bcid;
  8543. }
  8544. } else {
  8545. if (
  8546. index <
  8547. this.unitJson3.length - 1
  8548. ) {
  8549. let a = JSON.parse(
  8550. JSON.stringify(
  8551. this.unitJson3[
  8552. index + 1
  8553. ]
  8554. )
  8555. );
  8556. let acid = JSON.parse(JSON.stringify(this.unitJson3[index + 1].chapterInfo[0].chapterid))
  8557. let bcid = JSON.parse(JSON.stringify(this.unitJson3[index].chapterInfo[0].chapterid))
  8558. this.unitJson3[index + 1] =
  8559. this.unitJson3[index];
  8560. this.unitJson3[index] = a;
  8561. this.unitJson3[index + 1].chapterInfo[0].chapterid = acid;
  8562. this.unitJson3[index].chapterInfo[0].chapterid = bcid;
  8563. }
  8564. }
  8565. this.$forceUpdate();
  8566. },
  8567. addGroup(i) {
  8568. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  8569. this.groupJson.group.push({
  8570. name: "第" + (this.groupJson.group.length + 1) + "组",
  8571. });
  8572. },
  8573. deleteGroup(i) {
  8574. this.groupJson.group.splice(i, 1);
  8575. },
  8576. numberPan() {
  8577. if (/[^\d]/.test(this.groupJson.number) || this.groupJson.number < 2 || this.groupJson.number > 10) {
  8578. this.$message.error('请输入2-10的数字')
  8579. this.groupJson.number = ''
  8580. }
  8581. },
  8582. addGroupJson() {
  8583. for (var i = 0; i < this.groupJson.group.length; i++) {
  8584. if (!this.groupJson.group[i].name) {
  8585. this.$message.error("请将信息填写完整!");
  8586. return;
  8587. }
  8588. }
  8589. if (!this.groupJson.number) {
  8590. this.$message.error("请将信息填写完整!");
  8591. return;
  8592. }
  8593. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8594. this.taskCount
  8595. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  8596. JSON.stringify(this.groupJson)
  8597. );
  8598. this.dialogVisibleGroup = false;
  8599. this.groupJson = {};
  8600. if (
  8601. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8602. .toolChoose[this.toolIndex].tool != 49
  8603. ) {
  8604. this.addTools(49, this.taskCount, this.toolIndex);
  8605. }
  8606. },
  8607. updateTime(preTime) {
  8608. this.preTime = preTime;
  8609. },
  8610. InviteChange(val) {
  8611. console.log(val);
  8612. return;
  8613. let array = JSON.parse(JSON.stringify(val));
  8614. this.inviteCode = this.inviteCode.filter((el) => {
  8615. if (val.indexOf(el.cid) != -1) {
  8616. array.splice(array.indexOf(el.cid), 1);
  8617. return el;
  8618. }
  8619. });
  8620. for (var i = 0; i < array.length; i++) {
  8621. this.getInviteCode(array[i]);
  8622. }
  8623. },
  8624. async getInviteCode(cid) {
  8625. let code = this.randomNumber();
  8626. let params = {
  8627. code: code,
  8628. oid: this.oid,
  8629. };
  8630. let type = 1;
  8631. for (var i = 0; i < this.inviteCode.length; i++) {
  8632. if (this.inviteCode[i].cid != cid && code == this.inviteCode[i].ic) {
  8633. type = 2;
  8634. }
  8635. }
  8636. if (type == 2) {
  8637. this.getInviteCode(cid);
  8638. return;
  8639. }
  8640. const res = await this.ajax.get(
  8641. this.$store.state.api + "selectInviteCode2",
  8642. params
  8643. );
  8644. if (
  8645. res.data.length &&
  8646. res.data[0].length &&
  8647. res.data[0][0].courseId != this.cid
  8648. ) {
  8649. this.getInviteCode(cid);
  8650. return;
  8651. }
  8652. let array = [];
  8653. for (var i = 0; i < this.inviteCode.length; i++) {
  8654. array.push(this.inviteCode[i].cid);
  8655. }
  8656. if (array.indexOf(cid) != -1) {
  8657. this.inviteCode[array.indexOf(cid)].ic = code;
  8658. } else {
  8659. this.inviteCode.push({ cid: cid, ic: code });
  8660. }
  8661. },
  8662. OpenInviteD(cid) {
  8663. let array = [];
  8664. this.icode = "";
  8665. for (var i = 0; i < this.inviteCode.length; i++) {
  8666. array.push(this.inviteCode[i].cid);
  8667. }
  8668. if (array.indexOf(cid) != -1) {
  8669. this.icode = this.inviteCode[array.indexOf(cid)].ic;
  8670. }
  8671. this.inviteId = cid;
  8672. this.dialogVisibleInvite = true;
  8673. },
  8674. addInvite() {
  8675. let reg = /^[A-Za-z0-9]{4,}$/;
  8676. if (!reg.test(this.icode)) {
  8677. this.$message.error("请输入至少四位数字或英文组合的随机码");
  8678. return;
  8679. }
  8680. let type = 1;
  8681. for (var i = 0; i < this.inviteCode.length; i++) {
  8682. if (
  8683. this.inviteCode[i].cid != this.inviteId &&
  8684. this.icode == this.inviteCode[i].ic
  8685. ) {
  8686. type = 2;
  8687. }
  8688. }
  8689. if (type == 2) {
  8690. this.$message.error("已有此随机码,不能重复");
  8691. return;
  8692. }
  8693. let params = {
  8694. code: this.icode,
  8695. oid: this.oid,
  8696. };
  8697. this.ajax
  8698. .get(this.$store.state.api + "selectInviteCode", params)
  8699. .then((res) => {
  8700. if (
  8701. res.data.length &&
  8702. res.data[0].length &&
  8703. res.data[0][0].courseId != this.cid
  8704. ) {
  8705. this.$message.error("已有此随机码,不能重复");
  8706. return;
  8707. }
  8708. let array = [];
  8709. for (var i = 0; i < this.inviteCode.length; i++) {
  8710. array.push(this.inviteCode[i].cid);
  8711. }
  8712. if (array.indexOf(this.inviteId) != -1) {
  8713. this.inviteCode[array.indexOf(this.inviteId)].ic = this.icode;
  8714. } else {
  8715. this.inviteCode.push({ cid: this.inviteId, ic: this.icode });
  8716. }
  8717. this.icode = "";
  8718. this.dialogVisibleInvite = false;
  8719. })
  8720. .catch((err) => {
  8721. console.error(err);
  8722. });
  8723. },
  8724. randomNumber() {
  8725. // 随机生成两位数
  8726. // let num = Math.floor(Math.random() * 900) + 100;
  8727. // 生成 0 到 99 之间的随机整数
  8728. const randomNumber = Math.floor(Math.random() * 100);
  8729. // 如果随机数小于 10,补上前导零
  8730. const num =
  8731. randomNumber < 10 ? "0" + randomNumber : randomNumber.toString();
  8732. // 随机生成两个大写字母
  8733. let letters = "";
  8734. let chars2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  8735. for (let i = 0; i < 3; i++) {
  8736. letters += chars2.charAt(Math.floor(Math.random() * chars2.length));
  8737. }
  8738. // 随机生成两位数字和字母的组合
  8739. let mix = "";
  8740. let chars =
  8741. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  8742. for (let i = 0; i < 3; i++) {
  8743. let char = chars.charAt(Math.floor(Math.random() * chars.length));
  8744. mix += char;
  8745. }
  8746. // 随机选择一种类型
  8747. let type = Math.floor(Math.random() * 3);
  8748. return num;
  8749. // 根据类型输出结果
  8750. switch (type) {
  8751. case 0:
  8752. console.log(num); // 输出两位数
  8753. return num;
  8754. case 1:
  8755. console.log(letters); // 输出两个大写字母
  8756. return letters;
  8757. case 2:
  8758. console.log(mix); // 输出两位数字和字母的组合
  8759. return mix;
  8760. }
  8761. },
  8762. getPaste() {
  8763. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  8764. if (!iframe) {
  8765. return;
  8766. }
  8767. let copyData = iframe.contentWindow.copyData;
  8768. if (copyData && copyData.stageData && copyData.stageData.length) {
  8769. this.isPasteStage = true
  8770. }
  8771. if (copyData && copyData.selectData.length) {
  8772. this.isPasteChoice = true
  8773. }
  8774. if (copyData && copyData.tasksData && copyData.tasksData.length) {
  8775. this.isPasteTask = true
  8776. }
  8777. },
  8778. searchImage() {
  8779. var _this = this;
  8780. _this.imageList = []
  8781. if (!_this.searchImageValue) {
  8782. _this.sysPicVisible2 = true
  8783. return
  8784. }
  8785. _this.imageloading = true
  8786. _this.ajax.post('https://gpt.cocorobo.cn/search_image', {
  8787. page: _this.ppage,
  8788. pagesize: 9,
  8789. query: _this.searchImageValue
  8790. }).then(function (response) {
  8791. // console.log(response.data.data);
  8792. var data = response.data.FunctionResponse.result;
  8793. for (var i = 0; i < data.length; i++) {
  8794. _this.imageList.push({ url: data[i].thumbnail })
  8795. }
  8796. _this.imageloading = false
  8797. }).catch(function (error) {
  8798. console.log(error);
  8799. });
  8800. _this.sysPicVisible2 = true
  8801. },
  8802. changePicture() {
  8803. this.ppage++
  8804. this.searchImage()
  8805. },
  8806. resetImage() {
  8807. this.ppage = 1
  8808. this.searchImage()
  8809. },
  8810. jumpGj(i, j) {
  8811. if((i+1) != this.isClickColor){
  8812. this.isClickColor = (i + 1)
  8813. }
  8814. var a = document.scrollingElement;
  8815. this.toolIndexType = `gj${i}${j}`
  8816. let target = document.querySelector(`#gj${i}${j}`);
  8817. if (target) {
  8818. target.scrollIntoView(true);
  8819. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[j].isFold3 = true
  8820. setTimeout(() => {
  8821. this.$refs.unitBox.scrollTop = this.$refs.unitBox.scrollTop - 100;
  8822. }, 0);
  8823. }
  8824. },
  8825. },
  8826. beforeDestroy() {
  8827. clearTimeout(this.timer);
  8828. this.timer = null;
  8829. clearInterval(this.timer2);
  8830. this.timer2 = null;
  8831. clearInterval(this.pasteTimer);
  8832. this.pasteTimer = null;
  8833. },
  8834. beforeRouteLeave(to, from, next) {
  8835. clearTimeout(this.timer);
  8836. this.timer = null;
  8837. clearInterval(this.timer2);
  8838. this.timer2 = null;
  8839. clearInterval(this.pasteTimer);
  8840. this.pasteTimer = null;
  8841. next();
  8842. },
  8843. created() {
  8844. this.getStudent();
  8845. this.getTeacher();
  8846. this.getClass();
  8847. this.selectGrage();
  8848. this.getTemplate();
  8849. // this.selectType();
  8850. this.selectEva();
  8851. this.loading = false;
  8852. this.timer2 = setInterval(() => {
  8853. this.selectEva();
  8854. }, 5000);
  8855. this.pasteTimer = setInterval(() => {
  8856. this.getPaste();
  8857. }, 1000);
  8858. setTimeout(() => {
  8859. this.selectCourseDetail();
  8860. }, 500);
  8861. },
  8862. };
  8863. </script>
  8864. <style scoped>
  8865. @media screen and (max-width: 1280px) {
  8866. .mbCss {
  8867. flex-direction: column !important;
  8868. }
  8869. .pjCss {
  8870. width: 100% !important;
  8871. }
  8872. .evaCss {
  8873. width: 100% !important;
  8874. }
  8875. }
  8876. .dialog_diy>>>.el-dialog__header {
  8877. background: #3c3c3c !important;
  8878. padding: 15px 20px;
  8879. }
  8880. .dialog_diy>>>.el-dialog__title {
  8881. color: #fff;
  8882. }
  8883. .dialog_diy>>>.el-dialog__headerbtn {
  8884. top: 19px;
  8885. }
  8886. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  8887. color: #fff;
  8888. }
  8889. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  8890. color: #fff;
  8891. }
  8892. .dialog_diy>>>.el-dialog__body,
  8893. .dialog_diy>>>.el-dialog__footer {
  8894. background: #fafafa;
  8895. }
  8896. .dialog_diy3>>>.el-dialog__body,
  8897. .dialog_diy3>>>.el-dialog__footer {
  8898. background: #eee !important;
  8899. }
  8900. .dialog_diy3>>>.el-dialog__body {
  8901. padding: 20px 20px;
  8902. }
  8903. .dialog_diyStage>>>.el-dialog__body {
  8904. padding: 10px;
  8905. }
  8906. .source_diy>>>.el-dialog {
  8907. height: 100% !important;
  8908. margin: 0 auto !important;
  8909. }
  8910. .source_diy>>>.el-dialog__body {
  8911. height: calc(100% - 185px);
  8912. overflow: auto;
  8913. background: #e6eaf0;
  8914. }
  8915. .source_diy>>>.el-dialog__footer {
  8916. background: #e6eaf0 !important;
  8917. }
  8918. .left {
  8919. border-right: 1px solid rgb(60, 94, 143);
  8920. display: flex;
  8921. flex-direction: column;
  8922. align-items: center;
  8923. min-height: 600px;
  8924. width: 385px;
  8925. height: 80%;
  8926. }
  8927. .tips {
  8928. color: rgb(128, 128, 128);
  8929. font-size: 12px;
  8930. width: 270px;
  8931. margin: 40px;
  8932. }
  8933. .pb_content {
  8934. height: 100% !important;
  8935. /* margin: 0 20px 0 20px; */
  8936. }
  8937. .pb_content_body {
  8938. width: 100% !important;
  8939. height: 100%;
  8940. }
  8941. .info_solid {
  8942. width: 270px;
  8943. height: 30px;
  8944. border-left: 1px solid #bdbdbd;
  8945. margin: 10px 0px 10px 30px;
  8946. }
  8947. .info_steps {
  8948. width: 270px;
  8949. font-size: 0.875rem;
  8950. display: flex;
  8951. align-items: center;
  8952. }
  8953. .info_steps span:nth-child(1) {
  8954. width: 30px;
  8955. height: 30px;
  8956. background: rgba(0, 0, 0, 0.38);
  8957. display: block;
  8958. color: #fff;
  8959. border-radius: 40px;
  8960. text-align: center;
  8961. line-height: 30px;
  8962. }
  8963. .steps_active {
  8964. background: #3d67bc !important;
  8965. }
  8966. .info_steps span:nth-child(2) {
  8967. margin-left: 5px;
  8968. }
  8969. .right {
  8970. height: 100%;
  8971. width: 100%;
  8972. display: flex;
  8973. overflow: hidden;
  8974. flex-direction: column;
  8975. }
  8976. .basic_box {
  8977. margin: 0 auto;
  8978. position: relative;
  8979. padding: 0 20px 0 20px;
  8980. }
  8981. .basic_box_success {
  8982. width: 100%;
  8983. min-height: 455px;
  8984. padding: 50px 0;
  8985. position: relative;
  8986. text-align: center;
  8987. border-bottom: 1px solid #bfbfbf;
  8988. box-sizing: border-box;
  8989. display: flex;
  8990. align-items: center;
  8991. flex-direction: column;
  8992. justify-content: center;
  8993. }
  8994. .info_title {
  8995. font-size: 1.5em;
  8996. margin-right: 25px;
  8997. /* margin: 20px 30px 20px 30px; */
  8998. }
  8999. .bInfo_title {
  9000. text-align: left;
  9001. margin: 10px 0;
  9002. }
  9003. .small_title {
  9004. font-size: 14px;
  9005. line-height: 40px;
  9006. }
  9007. .chapter_beizhu {
  9008. font-size: 12px;
  9009. font-weight: bold;
  9010. float: right;
  9011. color: rgb(128, 128, 128);
  9012. margin-top: 5px;
  9013. }
  9014. .chapter_uploadBox1 {
  9015. text-align: left;
  9016. background-color: rgb(242, 242, 242);
  9017. width: 100%;
  9018. height: 67px;
  9019. padding: 0px 15px;
  9020. border-radius: 8px;
  9021. overflow: hidden;
  9022. font-size: 16px;
  9023. box-sizing: border-box;
  9024. position: relative;
  9025. }
  9026. .chapter_add {
  9027. width: 100%;
  9028. height: 32px;
  9029. margin-top: 15px;
  9030. cursor: pointer;
  9031. }
  9032. .chapter_add_l {
  9033. margin-left: 5px;
  9034. width: 30px;
  9035. height: 30px;
  9036. float: left;
  9037. border: 1px solid #aaa;
  9038. color: #aaa;
  9039. border-radius: 50%;
  9040. font-size: 25px;
  9041. text-align: center;
  9042. }
  9043. .chapter_add_r {
  9044. font-size: 18px;
  9045. height: 40px;
  9046. line-height: 30px;
  9047. text-indent: 10px;
  9048. color: #aaa;
  9049. }
  9050. .chapter_add_r span {
  9051. font-size: 12px;
  9052. color: rgb(204, 204, 204);
  9053. }
  9054. .chapter_add_input {
  9055. display: none;
  9056. }
  9057. .line {
  9058. width: 85%;
  9059. margin: 0 auto;
  9060. border-top: 1px solid #e5e5e5;
  9061. margin-top: 20px;
  9062. }
  9063. .info_btnBox {
  9064. width: calc(100%);
  9065. display: flex;
  9066. justify-content: center;
  9067. height: 80px;
  9068. align-items: center;
  9069. background: #fff;
  9070. margin: 0 auto;
  9071. border-top: 2px solid rgb(228, 232, 237);
  9072. box-sizing: border-box;
  9073. }
  9074. .info_btnBox2 {
  9075. width: calc(100%);
  9076. display: flex;
  9077. justify-content: center;
  9078. height: 20px;
  9079. align-items: center;
  9080. background: #fff;
  9081. margin: 0 auto;
  9082. border-top: 2px solid rgb(228, 232, 237);
  9083. box-sizing: border-box;
  9084. overflow: hidden;
  9085. cursor: pointer;
  9086. }
  9087. .info_btnBox3 {
  9088. width: calc(100%);
  9089. display: flex;
  9090. justify-content: flex-end;
  9091. padding: 0 20px;
  9092. height: 60px;
  9093. align-items: center;
  9094. background: unset;
  9095. margin: 0 auto;
  9096. /* border-top: 1px solid rgb(228, 232, 237); */
  9097. box-sizing: border-box;
  9098. overflow: hidden;
  9099. cursor: pointer;
  9100. background: #fff;
  9101. border-radius: 10px;
  9102. }
  9103. .info_btn+.info_btn {
  9104. margin-left: 15px;
  9105. }
  9106. .info_btn,
  9107. .teacherWord {
  9108. color: #fff;
  9109. background-color: #0f7eff;
  9110. padding: 8px 24px;
  9111. font-size: 0.9375rem;
  9112. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  9113. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  9114. min-width: 64px;
  9115. font-weight: 500;
  9116. border-radius: 4px;
  9117. box-sizing: border-box;
  9118. border: none;
  9119. cursor: pointer;
  9120. }
  9121. .teacherWord {
  9122. width: 105px !important;
  9123. text-align: center !important;
  9124. line-height: 36px !important;
  9125. padding: 0 !important;
  9126. font-size: 14px !important;
  9127. margin: 10px 0 !important;
  9128. }
  9129. .wordTeacher {
  9130. display: flex;
  9131. flex-direction: column;
  9132. width: 145px;
  9133. text-align: center;
  9134. font-size: 14px;
  9135. margin: 30px 0 0 10px;
  9136. background: #fff;
  9137. position: relative;
  9138. border-radius: 5px;
  9139. padding: 25px 0px;
  9140. }
  9141. .wordPic {
  9142. margin: 0 auto;
  9143. width: 60px;
  9144. height: 60px;
  9145. cursor: pointer;
  9146. }
  9147. .deleteWord {
  9148. width: 22px;
  9149. height: 22px;
  9150. position: absolute;
  9151. right: 5px;
  9152. top: -15px;
  9153. cursor: pointer;
  9154. display: none;
  9155. z-index: 999;
  9156. }
  9157. .wordPic>img,
  9158. .deleteWord>img,
  9159. .addToolImg>img {
  9160. width: 100%;
  9161. height: 100%;
  9162. }
  9163. .info_btn:hover {
  9164. background-color: #4f7cd5 !important;
  9165. }
  9166. .cru_selectBox {
  9167. display: flex;
  9168. margin: 24px 0 10px;
  9169. flex-wrap: nowrap;
  9170. white-space: nowrap;
  9171. overflow: auto;
  9172. position: relative;
  9173. height: 40px;
  9174. max-width: calc(100% - 175px);
  9175. }
  9176. .cru_selectBox::-webkit-scrollbar {
  9177. /*滚动条整体样式*/
  9178. width: 6px;
  9179. /*高宽分别对应横竖滚动条的尺寸*/
  9180. height: 6px;
  9181. }
  9182. /*定义滚动条轨道 内阴影+圆角*/
  9183. .cru_selectBox::-webkit-scrollbar-track {
  9184. border-radius: 10px;
  9185. background-color: #eee;
  9186. }
  9187. /*定义滑块 内阴影+圆角*/
  9188. .cru_selectBox::-webkit-scrollbar-thumb {
  9189. border-radius: 10px;
  9190. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  9191. background-color: rgba(0, 0, 0, 0.1);
  9192. }
  9193. .cru_line {
  9194. position: absolute;
  9195. bottom: 0px;
  9196. transition: all 0.5s;
  9197. left: 0px;
  9198. width: 50px;
  9199. height: 4px;
  9200. left: 10px;
  9201. border-radius: 2px;
  9202. background: #3681FC;
  9203. }
  9204. .cru_select {
  9205. font-size: 18px;
  9206. margin-right: 20px;
  9207. margin-left: 5px;
  9208. cursor: pointer;
  9209. color: #0E1E33;
  9210. }
  9211. .cru_select:hover{
  9212. color: #3681FC !important;
  9213. }
  9214. .cru_selected {
  9215. color: #3681FC !important;
  9216. font-weight: bold;
  9217. }
  9218. .chapter_contentbox {
  9219. display: flex;
  9220. align-items: center;
  9221. margin-top: 15px;
  9222. }
  9223. .chapter_contentbox .cc_title {
  9224. margin: 0px;
  9225. color: black;
  9226. display: block;
  9227. white-space: nowrap;
  9228. overflow: hidden;
  9229. text-overflow: ellipsis;
  9230. margin-right: 20px;
  9231. font-size: 18px;
  9232. height: 20px;
  9233. line-height: 22px;
  9234. min-width: fit-content;
  9235. display: flex;
  9236. }
  9237. .chapter_contentbox .cc_title::before {
  9238. content: '';
  9239. height: 100%;
  9240. width: 3px;
  9241. background: #3681FC;
  9242. border-radius: 3px;
  9243. opacity: 1;
  9244. display: block;
  9245. margin-right: 10px;
  9246. }
  9247. .chapter_contentbox .cc_input {
  9248. width: 100%;
  9249. display: flex;
  9250. }
  9251. .show_taskD {
  9252. min-width: fit-content;
  9253. margin-left: 10px;
  9254. display: flex;
  9255. align-items: center;
  9256. font-size: 14px;
  9257. cursor: pointer;
  9258. color: #717C8D;
  9259. }
  9260. .show_taskD>img {
  9261. width: 15px;
  9262. margin-right: 5px;
  9263. transition: .2s all;
  9264. transform: rotate(-90deg);
  9265. }
  9266. .show_taskD.show>img {
  9267. transform: rotate(0deg);
  9268. }
  9269. .show_toolD {
  9270. min-width: fit-content;
  9271. margin-left: 10px;
  9272. display: flex;
  9273. align-items: center;
  9274. font-size: 14px;
  9275. cursor: pointer;
  9276. color: #717C8D;
  9277. position: absolute;
  9278. right: 45px;
  9279. top: 5px;
  9280. }
  9281. .show_toolD>img {
  9282. width: 15px;
  9283. margin-right: 5px;
  9284. transition: .2s all;
  9285. transform: rotate(-90deg);
  9286. }
  9287. .show_toolD.show>img {
  9288. transform: rotate(0deg);
  9289. }
  9290. .remove {
  9291. background-image: url("../../assets/icon/new/delete_u.png");
  9292. cursor: pointer;
  9293. opacity: 0.5;
  9294. width: 30px;
  9295. min-width: 30px;
  9296. height: 30px;
  9297. background-size: 100% 100%;
  9298. background-repeat: no-repeat;
  9299. margin-left: 10px;
  9300. }
  9301. .remove1 {
  9302. background-image: url("../../assets/remove1.png");
  9303. background-repeat: no-repeat;
  9304. background-position: 5px 10px;
  9305. width: 40px;
  9306. height: 50px;
  9307. cursor: pointer;
  9308. margin-left: 10px;
  9309. }
  9310. .binfo_input {
  9311. width: 100%;
  9312. margin: 0;
  9313. padding: 12px 14px;
  9314. display: block;
  9315. min-width: 0;
  9316. outline: none;
  9317. box-sizing: border-box;
  9318. background: none;
  9319. border: none;
  9320. border-radius: 4px;
  9321. background: #fff;
  9322. font-size: 16px;
  9323. resize: none;
  9324. font-family: 'Microsoft YaHei';
  9325. min-height: 48px;
  9326. /* border: 1px solid #3682fc00; */
  9327. border: 1.5px solid #CAD1DC;
  9328. }
  9329. .binfo_textarea {
  9330. border: 1.5px solid #CAD1DC;
  9331. font-size: 16px;
  9332. resize: none;
  9333. background: #f6f6f6;
  9334. font-family: 'Microsoft YaHei';
  9335. }
  9336. .binfo_input:focus-visible {
  9337. border: 1.5px solid #3681FC !important;
  9338. }
  9339. .time {
  9340. display: flex;
  9341. margin: 35px 0 80px 0;
  9342. }
  9343. .chapter_btnbox {
  9344. width: 160px;
  9345. border-radius: 5px;
  9346. border: 2px dashed gray;
  9347. display: flex;
  9348. padding: 8px 50px;
  9349. align-items: center;
  9350. justify-content: center;
  9351. margin: 30px auto 0;
  9352. cursor: pointer;
  9353. }
  9354. .icon_add {
  9355. position: relative;
  9356. width: 24px;
  9357. padding-top: 20px;
  9358. border-radius: 100%;
  9359. border-width: 2px;
  9360. border-style: solid;
  9361. border-color: gray;
  9362. }
  9363. .icon_add i:nth-child(1) {
  9364. position: absolute;
  9365. left: 50%;
  9366. top: 50%;
  9367. height: 60%;
  9368. transform: translate(-50%, -50%);
  9369. border-width: 1px;
  9370. border-style: solid;
  9371. border-color: inherit;
  9372. }
  9373. .icon_add i:nth-child(2) {
  9374. position: absolute;
  9375. top: 50%;
  9376. left: 50%;
  9377. width: 60%;
  9378. transform: translate(-50%, -50%);
  9379. border-width: 1px;
  9380. border-style: solid;
  9381. border-color: inherit;
  9382. }
  9383. .chapter_btn_w {
  9384. font-size: 0.9375rem;
  9385. font-weight: bold;
  9386. color: gray;
  9387. margin-left: 20px;
  9388. }
  9389. .disUoloadSty>>>.el-icon-plus {
  9390. display: none !important;
  9391. /* 上传按钮隐藏 */
  9392. }
  9393. .imgLeft {
  9394. margin: 15px 0;
  9395. }
  9396. .add_info_box {
  9397. margin: 20px 0 0;
  9398. display: flex;
  9399. flex-wrap: wrap;
  9400. }
  9401. .add_info_box button {
  9402. margin: 0 20px 10px 0;
  9403. }
  9404. .add_info_box2 {
  9405. display: flex;
  9406. align-items: center;
  9407. flex-wrap: wrap;
  9408. }
  9409. .add_info_box2::after {
  9410. content: "提示:支持上传10M以内的PPT和Word文件、5M以内的Excel文件, PDF文件不限制大小。";
  9411. color: red;
  9412. font-size: 14px;
  9413. margin-bottom: 10px;
  9414. }
  9415. .add_chapters_box {
  9416. text-align: left;
  9417. background-color: #fff;
  9418. width: 100%;
  9419. border-radius: 4px;
  9420. font-size: 16px;
  9421. box-sizing: border-box;
  9422. position: relative;
  9423. padding: 0 15px;
  9424. height: auto;
  9425. overflow-y: auto;
  9426. overflow-x: hidden;
  9427. border: 1px solid #CAD1DC;
  9428. }
  9429. .add_chapters_box.add_c_none {
  9430. display: flex;
  9431. justify-content: center;
  9432. align-items: center;
  9433. padding: 15px;
  9434. }
  9435. .add_c_none>img {
  9436. width: 25px;
  9437. }
  9438. .add_chapters_box.add_c_none>span {
  9439. font-size: 14px;
  9440. font-weight: 400;
  9441. margin: 0 0 5px 5px;
  9442. }
  9443. .homework_box {
  9444. display: flex;
  9445. align-items: flex-start;
  9446. flex-wrap: wrap;
  9447. margin: 15px 0 0 0;
  9448. flex-direction: column;
  9449. align-content: flex-start;
  9450. }
  9451. .course_homework {
  9452. display: flex;
  9453. justify-content: center;
  9454. flex-direction: row;
  9455. align-items: center;
  9456. margin: 0 10px 0 0;
  9457. }
  9458. .course_homework>>>.el-input__inner {
  9459. width: 140px;
  9460. margin-left: 15px;
  9461. }
  9462. .chapter_upload_move {
  9463. position: relative;
  9464. background-color: #fff;
  9465. position: absolute;
  9466. width: 100%;
  9467. top: 0px;
  9468. left: 0px;
  9469. border: 1px solid #eee;
  9470. border-radius: 5px;
  9471. transition: width 2s;
  9472. -moz-transition: width 2s;
  9473. -webkit-transition: width 2s;
  9474. -o-transition: width 2s;
  9475. }
  9476. .chapter_upload_l_i {
  9477. background-image: url("../../assets/icon.png");
  9478. background-position: 3px -165px;
  9479. width: 30px;
  9480. height: 30px;
  9481. margin: 10px auto 0 auto;
  9482. }
  9483. .course_input_box {
  9484. display: flex;
  9485. margin-right: 20px;
  9486. width: 100%;
  9487. align-items: center;
  9488. position: relative;
  9489. }
  9490. .course_input_box>.binfo_input {
  9491. width: calc(100% - 0 - 200px - 20px);
  9492. margin: 0 10px;
  9493. }
  9494. .bb_courseIcon {
  9495. width: 57px;
  9496. height: 45px;
  9497. background: #F0F4FA;
  9498. border-radius: 5px 0px 0px 5px;
  9499. display: flex;
  9500. align-items: center;
  9501. justify-content: center;
  9502. border-right: 1.5px solid rgb(202, 209, 220);
  9503. box-sizing: border-box;
  9504. position: absolute;
  9505. left:1.5px
  9506. }
  9507. .bb_courseIcon>img {
  9508. width: 25px;
  9509. height: auto
  9510. }
  9511. .big_box {
  9512. /* margin-top: 20px; */
  9513. display: flex;
  9514. justify-content: space-between;
  9515. /* border-bottom: 1px solid #E0E2ED; */
  9516. }
  9517. .left_first {
  9518. display: flex;
  9519. flex-direction: column;
  9520. flex-wrap: nowrap;
  9521. width: calc(100% - 310px);
  9522. padding: 20px;
  9523. box-sizing: border-box;
  9524. background: #fff;
  9525. border-radius: 5px;
  9526. }
  9527. .right_first {
  9528. width: 300px;
  9529. display: flex;
  9530. align-items: center;
  9531. justify-content: center;
  9532. /* border-left: 1px solid #E0E2ED; */
  9533. box-sizing: border-box;
  9534. padding: 20px;
  9535. flex-direction: column;
  9536. background: #fff;
  9537. border-radius: 5px;
  9538. }
  9539. .ai_box {
  9540. width: 204px;
  9541. display: flex;
  9542. justify-content: flex-end;
  9543. margin-bottom: 15px;
  9544. }
  9545. .ai_content {
  9546. display: flex;
  9547. align-items: center;
  9548. font-size: 14px;
  9549. padding: 7px 20px;
  9550. box-sizing: border-box;
  9551. box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.16);
  9552. border-radius: 12px;
  9553. font-weight: 700;
  9554. cursor: pointer;
  9555. }
  9556. .ai_content>img {
  9557. width: 40px;
  9558. margin-right: 5px;
  9559. }
  9560. .c_info_title {
  9561. padding: 15px 0 15px 0;
  9562. font-size: 16px;
  9563. font-weight: bold;
  9564. margin: 0 0 0 20px;
  9565. box-sizing: border-box;
  9566. display: flex;
  9567. align-items: center;
  9568. line-height:20px;
  9569. }
  9570. .c_info_title::before {
  9571. content: '';
  9572. display: block;
  9573. width: 3px;
  9574. height: 20px;
  9575. background: #0061FF;
  9576. border-radius: 3px;
  9577. margin: 0 5px 0 0;
  9578. }
  9579. .right_title {
  9580. height: 30px;
  9581. padding: 15px 0 15px 20px;
  9582. border-bottom: 1px solid #f2f2f2;
  9583. font-size: 1.5em;
  9584. font-weight: bold;
  9585. color: #0f7eff;
  9586. margin: 0 auto;
  9587. }
  9588. .people {
  9589. border: 1px solid rgb(229 229 229);
  9590. /* height: 495px; */
  9591. height: 350px;
  9592. border-radius: 5px;
  9593. width: 100%;
  9594. overflow: auto;
  9595. }
  9596. .people_top {
  9597. display: flex;
  9598. width: 100%;
  9599. /* justify-content: space-between; */
  9600. /* align-items: center; */
  9601. flex-direction: column;
  9602. padding: 10px 10px 0;
  9603. box-sizing: border-box;
  9604. }
  9605. .people_nav,
  9606. .people_top_right {
  9607. /* padding: 20px 0 0 20px; */
  9608. }
  9609. .people_top_right {
  9610. height: 40px;
  9611. margin-bottom: 10px;
  9612. }
  9613. .people_search {
  9614. display: flex;
  9615. position: relative;
  9616. }
  9617. .people_search>>>.el-input__inner {
  9618. /* height: 25px; */
  9619. width: 95%;
  9620. }
  9621. .search_img {
  9622. width: 20px;
  9623. height: 20px;
  9624. position: absolute;
  9625. right: 30px;
  9626. top: 50%;
  9627. transform: translateY(-50%);
  9628. }
  9629. .search_img>img {
  9630. width: 100%;
  9631. height: 100%;
  9632. }
  9633. .people_name {
  9634. display: flex;
  9635. justify-content: flex-start;
  9636. padding: 20px 10px;
  9637. flex-direction: column;
  9638. flex-wrap: wrap;
  9639. }
  9640. .p_box {
  9641. position: relative;
  9642. }
  9643. .people_name>>>.el-checkbox {
  9644. width: 100%;
  9645. display: flex;
  9646. align-items: center;
  9647. margin-bottom: 10px;
  9648. }
  9649. .people_name>>>.el-checkbox__label {
  9650. text-overflow: ellipsis;
  9651. overflow: hidden;
  9652. width: calc(100%);
  9653. }
  9654. .people_name2>>>.el-checkbox__label {
  9655. width: calc(100% - 130px);
  9656. }
  9657. .inviteCode {
  9658. position: absolute;
  9659. right: 30px;
  9660. color: #237ade;
  9661. top: 0;
  9662. cursor: pointer;
  9663. font-size: 13px;
  9664. }
  9665. .noneInvite {
  9666. color: #a8a8a8;
  9667. }
  9668. .inviteImg {
  9669. position: absolute;
  9670. right: 5px;
  9671. top: 0;
  9672. width: 20px;
  9673. }
  9674. .right_img {
  9675. width: 150px;
  9676. height: 150px;
  9677. margin: 0 auto;
  9678. }
  9679. .right_img>img {
  9680. width: 100%;
  9681. height: 100%;
  9682. }
  9683. .number {
  9684. margin-top: 20px;
  9685. color: #4aa6ff;
  9686. text-decoration: underline;
  9687. }
  9688. .success_button {
  9689. display: flex;
  9690. text-align: center;
  9691. margin: 5% 0 auto;
  9692. flex-direction: row;
  9693. justify-content: center;
  9694. }
  9695. .look_course {
  9696. margin-right: 40px;
  9697. background: #3d67bc;
  9698. width: 200px;
  9699. height: 35px;
  9700. line-height: 35px;
  9701. color: #fff;
  9702. text-align: center;
  9703. font-size: 14px;
  9704. border-radius: 5px;
  9705. cursor: pointer;
  9706. }
  9707. .attend_others {
  9708. width: 250px;
  9709. background: #4fb13c;
  9710. height: 35px;
  9711. line-height: 35px;
  9712. color: #fff;
  9713. text-align: center;
  9714. font-size: 14px;
  9715. border-radius: 5px;
  9716. cursor: pointer;
  9717. }
  9718. .dialog_diy2>>>.el-dialog__body {
  9719. text-align: center;
  9720. }
  9721. .write_togother {
  9722. position: absolute;
  9723. right: 45px;
  9724. display: flex;
  9725. top: 5%;
  9726. }
  9727. .write_people {
  9728. font-size: 14px;
  9729. line-height: 50px;
  9730. padding-right: 10px;
  9731. }
  9732. .end_write {
  9733. background: #3d67bc;
  9734. color: #fff;
  9735. width: 100px;
  9736. height: 35px;
  9737. line-height: 35px;
  9738. text-align: center;
  9739. font-size: 14px;
  9740. border-radius: 5px;
  9741. cursor: pointer;
  9742. }
  9743. .chapter_upload+.chapter_upload {
  9744. /* margin-top: 15px; */
  9745. border-top: 1px solid #E7EBF1;
  9746. }
  9747. .chapter_upload {
  9748. height: 45px;
  9749. position: relative;
  9750. display: flex;
  9751. align-items: center;
  9752. width: 100%;
  9753. min-height: 45px;
  9754. /* box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16); */
  9755. /* border-radius: 4px; */
  9756. overflow: hidden;
  9757. box-sizing: border-box;
  9758. }
  9759. .chapter_upload_t {
  9760. background-color: #fff;
  9761. position: absolute;
  9762. height: 100%;
  9763. top: 0px;
  9764. left: 0px;
  9765. box-sizing: border-box;
  9766. }
  9767. .chapter_upload_o {
  9768. width: 100%;
  9769. height: 100%;
  9770. position: relative;
  9771. z-index: 1;
  9772. }
  9773. .chapter_upload_ic {
  9774. margin: 0 15px 0px auto;
  9775. display: flex;
  9776. align-items: center;
  9777. }
  9778. .chapter_upload_ic_l {
  9779. width: 50px;
  9780. height: 50px;
  9781. float: left;
  9782. }
  9783. .chapter_upload_ic_l div {
  9784. width: 30px;
  9785. height: 35px;
  9786. background: url("../../assets/icon/icon.png");
  9787. }
  9788. .chapter_upload_ic_edit {
  9789. height: 100%;
  9790. display: flex;
  9791. align-items: center;
  9792. cursor: pointer;
  9793. margin: 0 10px 0 0;
  9794. }
  9795. .chapter_upload_ic_edit div {
  9796. width: 18px;
  9797. height: 18px;
  9798. background-image: url("../../assets/icon/new/edit_u.png");
  9799. background-size: 100% 100%;
  9800. }
  9801. .chapter_upload_ic_r {
  9802. height: 100%;
  9803. display: flex;
  9804. align-items: center;
  9805. cursor: pointer;
  9806. }
  9807. .chapter_upload_ic_r div {
  9808. width: 18px;
  9809. height: 18px;
  9810. background-image: url("../../assets/icon/new/delete_u.png");
  9811. background-size: 100% 100%;
  9812. }
  9813. .chapter_upload_n {
  9814. display: flex;
  9815. text-indent: 10px;
  9816. text-decoration: none;
  9817. text-overflow: ellipsis;
  9818. white-space: nowrap;
  9819. overflow: hidden;
  9820. width: 55%;
  9821. margin-left: 10px;
  9822. cursor: pointer;
  9823. margin-top: 2px;
  9824. align-items: center;
  9825. }
  9826. .chapter_upload_l_i2,
  9827. .chapter_upload_l_i3,
  9828. .chapter_upload_l_i8,
  9829. .chapter_upload_l_i6,
  9830. .chapter_upload_l_i12,
  9831. .chapter_upload_l_i14,
  9832. .chapter_upload_l_i13 {
  9833. width: 15px;
  9834. height: 15px;
  9835. background-size: 100% 100%;
  9836. }
  9837. .chapter_upload_l_i2 {
  9838. background-image: url("../../assets/icon/new/u_word.png");
  9839. }
  9840. .chapter_upload_l_i3 {
  9841. background-image: url("../../assets/icon/new/u_video.png");
  9842. }
  9843. .chapter_upload_l_i8 {
  9844. background-image: url("../../assets/icon/new/u_url.png");
  9845. }
  9846. .chapter_upload_l_i14 {
  9847. background-image: url("../../assets/icon/new/u_source.png");
  9848. }
  9849. .chapter_upload_l_i6 {
  9850. background-image: url("../../assets/icon/new/u_picture.png");
  9851. }
  9852. .chapter_upload_l_i12 {
  9853. background-image: url("../../assets/icon/new/u_word.png");
  9854. }
  9855. .chapter_upload_l_i13 {
  9856. background-image: url("../../assets/icon/new/u_img.png");
  9857. }
  9858. .chapter_upload_noSee {
  9859. background-image: url("../../assets/icon/new/u_noUpload.png");
  9860. width: 18px;
  9861. height: 18px;
  9862. background-size: 100% 100%;
  9863. display: block;
  9864. margin-right: 10px;
  9865. }
  9866. .chapter_upload_ud {
  9867. display: flex;
  9868. flex-direction: row;
  9869. justify-content: center;
  9870. margin: 0 10px 0 0;
  9871. }
  9872. .chapter_upload_ud>.chapter_upload_up {
  9873. margin-bottom: 0;
  9874. margin-right: 10px;
  9875. }
  9876. .chapter_upload_down,
  9877. .chapter_upload_up {
  9878. width: 20px;
  9879. height: 20px;
  9880. background: #e4eaf2;
  9881. cursor: pointer;
  9882. margin: 0 auto;
  9883. border-radius: 5px;
  9884. display: flex;
  9885. justify-content: center;
  9886. align-items: center;
  9887. }
  9888. .chapter_upload_up::after,
  9889. .chapter_upload_down::after {
  9890. content: '';
  9891. background-image: url('../../assets/icon/new/downBtn.png');
  9892. width: 13px;
  9893. height: 13px;
  9894. background-size: 100% 100%;
  9895. display: block;
  9896. }
  9897. .chapter_upload_up::after {
  9898. background-image: url('../../assets/icon/new/upBtn.png') !important;
  9899. }
  9900. .chapter_upload_up {
  9901. margin-bottom: 5px;
  9902. }
  9903. .addWordStyle {
  9904. display: flex;
  9905. flex-direction: row;
  9906. justify-content: flex-start;
  9907. overflow-x: auto;
  9908. white-space: nowrap;
  9909. flex-wrap: wrap;
  9910. }
  9911. /* table 样式 */
  9912. .cont>>>table {
  9913. border-top: 1px solid #ccc;
  9914. border-left: 1px solid #ccc;
  9915. }
  9916. .cont>>>table td,
  9917. .cont>>>table th {
  9918. border-bottom: 1px solid #ccc;
  9919. border-right: 1px solid #ccc;
  9920. /* padding: 20px 5px; */
  9921. padding: 5px 10px;
  9922. max-width: 0px;
  9923. height: 30px;
  9924. vertical-align: baseline;
  9925. }
  9926. .cont>>>table th {
  9927. border-bottom: 2px solid #ccc;
  9928. text-align: center;
  9929. }
  9930. /* blockquote 样式 */
  9931. .cont>>>blockquote {
  9932. display: block;
  9933. border-left: 8px solid #d0e5f2;
  9934. padding: 5px 10px;
  9935. margin: 10px 0;
  9936. line-height: 1.4;
  9937. font-size: 100%;
  9938. background-color: #f1f1f1;
  9939. }
  9940. /* code 样式 */
  9941. .cont>>>code {
  9942. display: inline-block;
  9943. /* *display: inline; */
  9944. zoom: 1;
  9945. background-color: #f1f1f1;
  9946. border-radius: 3px;
  9947. padding: 3px 5px;
  9948. margin: 0 3px;
  9949. }
  9950. .cont>>>pre code {
  9951. display: block;
  9952. }
  9953. /* ul ol 样式 */
  9954. .cont>>>ul,
  9955. ol {
  9956. margin: 10px 0 10px 20px;
  9957. }
  9958. .wordbox {
  9959. display: flex;
  9960. flex-wrap: wrap;
  9961. cursor: pointer;
  9962. width: 100%;
  9963. }
  9964. .checkword {
  9965. width: 22px;
  9966. height: 22px;
  9967. margin: 10px auto 0;
  9968. cursor: pointer;
  9969. }
  9970. .checkword img {
  9971. width: 100%;
  9972. }
  9973. .stepBg {
  9974. display: flex;
  9975. justify-content: space-between;
  9976. align-items: center;
  9977. background: #fff;
  9978. width: calc(100%);
  9979. margin: 0 auto;
  9980. }
  9981. .stepBorder {
  9982. height: 3px !important;
  9983. background: #CAD1DC;
  9984. width: 100px !important;
  9985. margin: 0 15px !important;
  9986. position: relative;
  9987. }
  9988. .border-active {
  9989. background: #3681FC !important
  9990. }
  9991. .border-active::before,
  9992. .border-active::after {
  9993. border-color: #3681FC !important
  9994. }
  9995. .stepBorder::before,
  9996. .stepBorder::after {
  9997. content: '';
  9998. width: 9px;
  9999. height: 9px;
  10000. background: #FFFFFF;
  10001. opacity: 1;
  10002. border: 2px solid #ACB4BF;
  10003. display: block;
  10004. box-sizing: border-box;
  10005. border-radius: 50%;
  10006. position: absolute;
  10007. top: 50%;
  10008. transform: translateY(-50%);
  10009. }
  10010. .stepBorder::after {
  10011. right: -9px;
  10012. }
  10013. .stepTop {
  10014. width: 100%;
  10015. /* border-radius: 10px; */
  10016. display: flex;
  10017. justify-content: center;
  10018. align-items: center;
  10019. flex-wrap: nowrap;
  10020. background: #fff;
  10021. /* top: 18%; */
  10022. height: 80px;
  10023. border-bottom: 2px solid rgb(228, 232, 237);
  10024. box-sizing: border-box;
  10025. }
  10026. .stepTop2 {
  10027. width: 100%;
  10028. /* border-radius: 10px; */
  10029. display: flex;
  10030. justify-content: center;
  10031. align-items: center;
  10032. flex-wrap: nowrap;
  10033. background: #fff;
  10034. /* top: 18%; */
  10035. height: 20px;
  10036. border-bottom: 2px solid rgb(228, 232, 237);
  10037. box-sizing: border-box;
  10038. overflow: hidden;
  10039. cursor: pointer;
  10040. }
  10041. .stepTop>div img {
  10042. width: 100%;
  10043. }
  10044. .stepTop>div {
  10045. height: 50px;
  10046. width: 180px;
  10047. cursor: pointer;
  10048. margin: 10px 0;
  10049. border-radius: 10px;
  10050. }
  10051. .first,
  10052. .second,
  10053. .third,
  10054. .four {
  10055. background: #3681FC;
  10056. height: 90px;
  10057. color: #fff;
  10058. display: flex;
  10059. flex-direction: row;
  10060. align-items: center;
  10061. justify-content: center;
  10062. }
  10063. .first>div:nth-child(1),
  10064. .second>div:nth-child(1),
  10065. .third>div:nth-child(1),
  10066. .four>div:nth-child(1) {
  10067. margin: 5px 10px 0 0;
  10068. width: 2rem;
  10069. }
  10070. .firstNo,
  10071. .secondNo,
  10072. .thirdNo,
  10073. .fourNo {
  10074. background: #e7e7e7;
  10075. color: #adadad;
  10076. display: flex;
  10077. flex-direction: row;
  10078. align-items: center;
  10079. justify-content: center;
  10080. }
  10081. .firstNo>div:nth-child(1),
  10082. .secondNo>div:nth-child(1),
  10083. .thirdNo>div:nth-child(1),
  10084. .fourNo>div:nth-child(1) {
  10085. margin: 5px 10px 0 0;
  10086. width: 2rem;
  10087. }
  10088. .uploadWidth>>>.el-upload {
  10089. width: 60px;
  10090. height: 60px;
  10091. position: relative;
  10092. }
  10093. .addPeople {
  10094. background: #fa6060;
  10095. width: 150px;
  10096. height: 40px;
  10097. color: #fff;
  10098. border-radius: 5px;
  10099. text-align: center;
  10100. line-height: 40px;
  10101. font-size: 14px;
  10102. cursor: pointer;
  10103. }
  10104. .kcImg {
  10105. width: 60px;
  10106. margin-left: 10px;
  10107. }
  10108. .zyImg {
  10109. width: 55px;
  10110. margin: 0 10px;
  10111. }
  10112. .deleteZy {
  10113. width: 20px;
  10114. position: absolute;
  10115. top: 5px;
  10116. right: 5px;
  10117. cursor: pointer;
  10118. }
  10119. .kcImg>img,
  10120. .zyImg>img,
  10121. .deleteZy>img {
  10122. width: 100%;
  10123. height: 100%;
  10124. }
  10125. .zyBox {
  10126. display: flex;
  10127. flex-direction: row;
  10128. align-items: center;
  10129. background: #67d37d;
  10130. color: #fff;
  10131. width: 210px;
  10132. margin: 20px 20px 0 0;
  10133. border-radius: 10px;
  10134. height: 70px;
  10135. position: relative;
  10136. }
  10137. .upCss {
  10138. display: flex;
  10139. flex-direction: row;
  10140. justify-content: flex-start;
  10141. }
  10142. .upCss>>>.el-icon-plus {
  10143. position: none !important;
  10144. width: 200px;
  10145. height: 100px;
  10146. display: flex;
  10147. flex-wrap: nowrap;
  10148. flex-direction: column;
  10149. align-items: center;
  10150. justify-content: center;
  10151. border: 1px dashed #ccc;
  10152. min-width: 78px;
  10153. min-height: 100px;
  10154. z-index: 999;
  10155. }
  10156. .upCss>>>.el-upload-list__item-name {
  10157. width: 100px;
  10158. white-space: nowrap;
  10159. overflow: hidden;
  10160. text-overflow: ellipsis;
  10161. }
  10162. .upCss>>>.el-upload-list__item .el-icon-close {
  10163. font-size: 20px;
  10164. z-index: 9999;
  10165. }
  10166. .addStageImg {
  10167. min-width: 20px;
  10168. min-height: 20px;
  10169. width: 20px;
  10170. height: 20px;
  10171. cursor: pointer;
  10172. }
  10173. .addHW {
  10174. width: 28px;
  10175. height: 28px;
  10176. cursor: pointer;
  10177. }
  10178. .addStageImg>img,
  10179. .addHW>img {
  10180. width: 100%;
  10181. height: 100%;
  10182. }
  10183. .addNewPP>>>.el-dialog__body {
  10184. padding: 5px 20px;
  10185. }
  10186. .addNewPP>>>.el-dialog {
  10187. margin-top: 5vh !important;
  10188. }
  10189. .addNewPP2>>>.el-dialog__body {
  10190. padding: 5px 0;
  10191. }
  10192. .addNewPP2>>>.el-dialog {
  10193. margin-top: 5vh !important;
  10194. }
  10195. .isHeight {
  10196. height: 680px;
  10197. }
  10198. .toolChoose {
  10199. display: flex;
  10200. /* width: 100%; */
  10201. flex-direction: row;
  10202. flex-wrap: wrap;
  10203. }
  10204. .tool {
  10205. display: flex;
  10206. flex-direction: column;
  10207. flex-wrap: nowrap;
  10208. width: fit-content;
  10209. margin: 10px 0 10px 0;
  10210. align-items: center;
  10211. }
  10212. .tool+.tool {
  10213. margin-right: 45px;
  10214. }
  10215. .whiteBIcon {
  10216. width: 80px;
  10217. cursor: pointer;
  10218. display: flex;
  10219. flex-direction: column;
  10220. flex-wrap: nowrap;
  10221. align-items: center;
  10222. font-size: 14px;
  10223. }
  10224. .whiteBIcon>img,
  10225. .toolIcon>img,
  10226. .arrow>img {
  10227. width: 100%;
  10228. height: 100%;
  10229. }
  10230. .check img {
  10231. width: 20px;
  10232. height: 20px;
  10233. }
  10234. .whiteBIcon>img {
  10235. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  10236. border-radius: 15px;
  10237. }
  10238. .whiteBIcon>div:nth-child(2) {
  10239. height: 20px;
  10240. line-height: 20px;
  10241. }
  10242. .check {
  10243. /* width: 20px;
  10244. height: 20px; */
  10245. cursor: pointer;
  10246. margin: 10px 0 0;
  10247. }
  10248. .checkDiv {
  10249. display: flex;
  10250. align-items: center;
  10251. }
  10252. .checkDiv span {
  10253. margin-left: 5px;
  10254. color: #858585;
  10255. }
  10256. .customWidth>>>.el-dialog {
  10257. min-width: 500px !important;
  10258. }
  10259. .a_addBox {
  10260. margin: 10px 0;
  10261. background: #fff;
  10262. padding: 15px;
  10263. /* max-height: 600px; */
  10264. overflow: auto;
  10265. }
  10266. .a_add_box {
  10267. border-bottom: 2px solid #eee;
  10268. padding-bottom: 25px;
  10269. }
  10270. .a_add_head {
  10271. display: flex;
  10272. align-items: center;
  10273. justify-content: space-between;
  10274. margin: 10px 0 0 0;
  10275. font-size: 18px;
  10276. }
  10277. .a_add_checkType {
  10278. margin-top: 10px;
  10279. display: flex;
  10280. font-size: 14px;
  10281. align-items: center;
  10282. }
  10283. .a_add_checkType span {
  10284. box-sizing: border-box;
  10285. padding: 0 0 5px 0;
  10286. cursor: pointer;
  10287. }
  10288. .a_add_checkType span+span {
  10289. margin-left: 10px;
  10290. }
  10291. .a_add_checkType .active {
  10292. border-bottom: 2px solid #409eff;
  10293. color: #409eff;
  10294. }
  10295. .a_add_head .a_add_head_input {
  10296. /* width: 540px; */
  10297. width: 100%;
  10298. }
  10299. .a_add_head .a_add_head_div {
  10300. display: flex;
  10301. align-items: center;
  10302. justify-content: space-between;
  10303. }
  10304. .a_add_body {
  10305. display: flex;
  10306. /* align-items: center; */
  10307. align-items: flex-end;
  10308. }
  10309. .a_add_input {
  10310. display: flex;
  10311. align-items: center;
  10312. flex-wrap: wrap;
  10313. }
  10314. .a_add_input_choice {
  10315. flex-direction: column;
  10316. margin-right: 10px;
  10317. }
  10318. .a_add_input_choice>>>.el-radio {
  10319. display: flex;
  10320. align-items: center;
  10321. flex-direction: row-reverse;
  10322. margin: 30px 0 0 0;
  10323. position: relative;
  10324. }
  10325. .a_add_input_choice>>>.el-checkbox {
  10326. display: flex;
  10327. align-items: center;
  10328. flex-direction: row-reverse;
  10329. margin: 30px 0 0 0;
  10330. position: relative;
  10331. }
  10332. .width100 {
  10333. width: 100%;
  10334. }
  10335. .a_add_input .a_add_persent {
  10336. width: 100%;
  10337. }
  10338. .a_add_persent_div {
  10339. width: 100%;
  10340. display: flex;
  10341. align-items: center;
  10342. }
  10343. .a_add_persent_div span {
  10344. margin: 5px 0;
  10345. }
  10346. .a_add_persent_div span:nth-child(1) {
  10347. width: 30%;
  10348. }
  10349. .a_add_persent_div span:nth-child(2) {
  10350. width: 7%;
  10351. }
  10352. .a_add_persent_div span:nth-child(3) {
  10353. width: 40%;
  10354. }
  10355. .a_add_body_div {
  10356. display: flex;
  10357. align-items: center;
  10358. justify-content: center;
  10359. /* flex-direction: column; */
  10360. position: absolute;
  10361. right: -20px;
  10362. transform: translateX(100%);
  10363. }
  10364. .a_add_body_div>>>.el-button--primary {
  10365. background: #466b99;
  10366. border: none;
  10367. }
  10368. .all_choose {
  10369. display: flex;
  10370. flex-direction: row;
  10371. align-items: flex-start;
  10372. width: 100%;
  10373. }
  10374. .all_choose+.all_choose {
  10375. /* margin-top: 10px */
  10376. }
  10377. .all_choose>span {
  10378. min-width: fit-content;
  10379. display: block;
  10380. white-space: nowrap;
  10381. overflow: hidden;
  10382. text-overflow: ellipsis;
  10383. margin-right: 20px;
  10384. font-weight: bold;
  10385. font-size: 14px;
  10386. }
  10387. .all_choose>>>.el-checkbox-group {
  10388. display: flex;
  10389. flex-direction: row;
  10390. width: 100%;
  10391. flex-wrap: wrap;
  10392. align-content: center;
  10393. justify-content: flex-start;
  10394. align-items: center;
  10395. margin-top: 3px;
  10396. }
  10397. .all_choose>.el-checkbox-group>>>.el-checkbox {
  10398. margin-bottom: 10px;
  10399. display: flex;
  10400. flex-direction: row;
  10401. align-items: center;
  10402. margin-right: 10px;
  10403. }
  10404. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  10405. min-width: 80px;
  10406. overflow: hidden;
  10407. width: 80px;
  10408. text-overflow: ellipsis;
  10409. white-space: nowrap;
  10410. }
  10411. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  10412. width: auto;
  10413. }
  10414. .choose>div:nth-child(3)>span {
  10415. /* letter-spacing: 0 !important; */
  10416. }
  10417. .choose {
  10418. display: flex;
  10419. flex-direction: column;
  10420. flex-wrap: nowrap;
  10421. height: 100%;
  10422. justify-content: space-evenly;
  10423. align-items: flex-start;
  10424. }
  10425. .both {
  10426. display: flex;
  10427. flex-direction: row;
  10428. flex-wrap: wrap;
  10429. width: 100%;
  10430. align-items: center;
  10431. justify-content: flex-start;
  10432. margin: 15px 0;
  10433. }
  10434. .notice>>>.el-dialog {
  10435. width: 500px !important;
  10436. text-align: center;
  10437. }
  10438. .notice>>>.el-button {
  10439. margin-top: 20px;
  10440. }
  10441. .whiteBg {
  10442. /* background: #fff; */
  10443. border-radius: 10px;
  10444. }
  10445. .wb_j_box {
  10446. display: flex;
  10447. width: 100%;
  10448. padding: 0 20px 0;
  10449. box-sizing: border-box;
  10450. }
  10451. .wb_j_box_content {
  10452. width: calc(100% - 55% - 100px);
  10453. display: flex;
  10454. align-items: center;
  10455. }
  10456. .wb_j_box_p_box {
  10457. max-width: calc(100% - 200px);
  10458. word-break: break-all;
  10459. overflow: hidden;
  10460. margin: 0 0 0 10px;
  10461. font-size: 14px;
  10462. color: #6e6e6e;
  10463. z-index: 999;
  10464. }
  10465. .chooseWho {
  10466. display: flex;
  10467. width: 410px;
  10468. flex-direction: row;
  10469. flex-wrap: nowrap;
  10470. justify-content: space-between;
  10471. padding-bottom: 10px;
  10472. }
  10473. .chooseWho>div {
  10474. cursor: pointer;
  10475. padding-bottom: 10px;
  10476. font-weight: bold;
  10477. }
  10478. .isChooseActive {
  10479. color: #3e88f4;
  10480. border-bottom: 2px solid #2f80f3;
  10481. }
  10482. .toolSort {
  10483. display: flex;
  10484. flex-direction: row;
  10485. flex-wrap: wrap;
  10486. justify-content: flex-start;
  10487. align-items: flex-start;
  10488. }
  10489. .toolSort>div {
  10490. margin-right: 45px;
  10491. }
  10492. .tools {
  10493. width: 100%;
  10494. display: flex;
  10495. flex-direction: column;
  10496. flex-wrap: nowrap;
  10497. align-items: flex-start;
  10498. }
  10499. .leftTools,
  10500. .rightTools {
  10501. width: 50%;
  10502. }
  10503. .leftTools+.leftTools {
  10504. border-top: 1px solid #dbdbdb;
  10505. padding-top: 30px;
  10506. }
  10507. .rightTools {
  10508. display: flex;
  10509. flex-direction: row;
  10510. flex-wrap: nowrap;
  10511. justify-content: space-around;
  10512. }
  10513. .firstToolList {
  10514. display: flex;
  10515. flex-direction: column;
  10516. flex-wrap: nowrap;
  10517. align-items: center;
  10518. }
  10519. .iconList {
  10520. display: flex;
  10521. flex-direction: row;
  10522. flex-wrap: wrap;
  10523. justify-content: flex-start;
  10524. align-items: center;
  10525. margin: 20px 0 5px 0;
  10526. width: 240px;
  10527. min-width: 240px;
  10528. }
  10529. .iconTool {
  10530. display: flex;
  10531. flex-direction: column;
  10532. flex-wrap: nowrap;
  10533. align-items: center;
  10534. justify-content: flex-start;
  10535. margin: 15px 10px;
  10536. }
  10537. .toolIcon {
  10538. width: 50px;
  10539. }
  10540. .taskBorder {
  10541. border: 1px solid #CAD1DC;
  10542. border-radius: 10px;
  10543. margin-top: 20px;
  10544. min-height: 670px;
  10545. position: relative;
  10546. background: #fff;
  10547. padding: 20px;
  10548. overflow: hidden;
  10549. box-sizing: border-box;
  10550. }
  10551. .smallTaskBorder {
  10552. height: 280px;
  10553. min-height: 280px !important;
  10554. overflow: hidden;
  10555. }
  10556. /* .taskBorder>div {
  10557. padding: 30px 30px 10px;
  10558. } */
  10559. .addTaskBorder {
  10560. /* border: 2px solid #5E9AFC; */
  10561. border-radius: 8px;
  10562. margin-top: 10px;
  10563. cursor: pointer;
  10564. /* height: 50px;
  10565. line-height: 50px; */
  10566. background: #fff;
  10567. padding: 15px 0;
  10568. display: flex;
  10569. align-items: center;
  10570. justify-content: center;
  10571. }
  10572. /* .addTaskBorder>div {
  10573. margin: 0 auto;
  10574. display: flex;
  10575. align-items: center;
  10576. justify-content: center;
  10577. }
  10578. .addTaskBorder>div>img {
  10579. width: 20px;
  10580. }
  10581. .addTaskBorder>div>span {
  10582. font-size: 16px;
  10583. margin-left: 10px;
  10584. color: #5E9AFC;
  10585. } */
  10586. .funBlock {
  10587. display: flex;
  10588. padding: 15px 0;
  10589. flex-direction: row;
  10590. justify-content: center;
  10591. align-items: center;
  10592. position: absolute;
  10593. right: 0;
  10594. bottom: 0;
  10595. background: #fff;
  10596. width: 100%;
  10597. height: 60px;
  10598. }
  10599. .fold {
  10600. display: flex;
  10601. margin: 0 20px;
  10602. flex-direction: row;
  10603. align-items: center;
  10604. cursor: pointer;
  10605. color: #2b7bff;
  10606. }
  10607. .arrow {
  10608. margin-right: 8px;
  10609. width: 16px;
  10610. height: 16px;
  10611. min-width: 16px;
  10612. min-height: 16px;
  10613. background-size: 100% 100%;
  10614. display: block;
  10615. background-image: url(../../assets/icon/new/u_up.png);
  10616. /* border-left: 7px solid transparent;
  10617. border-bottom: 7px solid #717C8D;
  10618. border-top: 0px solid transparent;
  10619. border-right: 7px solid transparent; */
  10620. /* box-sizing: border-box; */
  10621. transition: all .3s;
  10622. }
  10623. .arrowZ {
  10624. transform: rotate(180deg);
  10625. }
  10626. .addToolFun {
  10627. display: flex;
  10628. width: 150px;
  10629. flex-direction: row;
  10630. align-items: center;
  10631. justify-content: center;
  10632. border: 2px dashed #CAD1DC;
  10633. border-radius: 5px;
  10634. height: 50px;
  10635. margin: 35px auto 0;
  10636. cursor: pointer;
  10637. }
  10638. .addToolFun2 {
  10639. display: flex;
  10640. width: 150px;
  10641. border: 2px dashed #CAD1DC;
  10642. flex-direction: row;
  10643. align-items: center;
  10644. justify-content: center;
  10645. border-radius: 5px;
  10646. height: 50px;
  10647. margin: 0 auto 0;
  10648. cursor: pointer;
  10649. }
  10650. .addToolFun2>div,
  10651. .addToolFun>div {
  10652. display: flex;
  10653. line-height: 50px;
  10654. }
  10655. .addToolImg {
  10656. width: 20px;
  10657. height: 20px;
  10658. margin-right: 10px;
  10659. }
  10660. .addToolsDia>>>.el-dialog__body {
  10661. padding: 20px;
  10662. }
  10663. .addToolsDia>>>.el-dialog__body>.toolChoose {
  10664. padding: 0;
  10665. }
  10666. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools {
  10667. padding: 0;
  10668. border-bottom: none;
  10669. margin-bottom: 0;
  10670. }
  10671. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools>.chooseWho {
  10672. width: 100%;
  10673. }
  10674. .lineCss>>>.el-form-item__label {
  10675. width: auto !important;
  10676. }
  10677. .lineCss>>>.el-form-item__content {
  10678. margin-left: 50px !important;
  10679. }
  10680. .newSteps {
  10681. display: flex;
  10682. width: 100% !important;
  10683. /* height: 80px; */
  10684. cursor: pointer;
  10685. margin: 10px 0;
  10686. border-radius: 10px;
  10687. flex-direction: row;
  10688. align-content: center;
  10689. justify-content: center;
  10690. align-items: center;
  10691. margin: 0 !important;
  10692. }
  10693. /* 评价样式 */
  10694. .elist_css {
  10695. padding-bottom: 75px !important;
  10696. }
  10697. .elist_title {
  10698. margin-bottom: 10px;
  10699. }
  10700. .elist_input {}
  10701. .elist_input_box {
  10702. display: flex;
  10703. align-items: center;
  10704. flex-wrap: wrap;
  10705. }
  10706. .elist_input_box+.elist_input_box {
  10707. margin-top: 30px;
  10708. }
  10709. .elist_input .elist_input_box input {
  10710. font: inherit;
  10711. color: currentColor;
  10712. /* width: 200px; */
  10713. max-width: 200px;
  10714. padding: 8px 14px;
  10715. display: block;
  10716. min-width: 0;
  10717. outline: none;
  10718. border: 1px solid rgba(0, 0, 0, 0.23);
  10719. border-radius: 4px;
  10720. box-sizing: border-box;
  10721. background: #fff;
  10722. margin: 0 20px 0 0;
  10723. }
  10724. .elist_input .elist_input_box span {
  10725. height: 36px;
  10726. line-height: 36px;
  10727. color: rgb(82, 82, 82);
  10728. min-width: 80px;
  10729. }
  10730. .elist_input .elist_input_box .remove {
  10731. height: 20px;
  10732. width: 20px;
  10733. min-height: 20px;
  10734. min-width: 20px;
  10735. background-size: 100% 100%;
  10736. background-position: unset;
  10737. margin-left: 5px;
  10738. }
  10739. .elist_input_box>>>.el-rate {
  10740. display: flex;
  10741. height: 36px;
  10742. align-items: center;
  10743. }
  10744. .elist_input_box .elist_inptu_text {
  10745. width: 100%;
  10746. display: flex;
  10747. align-items: center;
  10748. margin-top: 10px;
  10749. }
  10750. .elist_input_box .elist_inptu_text input {
  10751. /* width: 500px; */
  10752. width: 100%;
  10753. max-width: unset;
  10754. }
  10755. .elist_input_box>>>.el-rate__icon {
  10756. font-size: 24px;
  10757. }
  10758. .elist_btn {
  10759. margin-top: 10px;
  10760. }
  10761. .lineTitle {
  10762. /* margin-top: 15px; */
  10763. width: 110px;
  10764. font-size: 16px;
  10765. display: flex;
  10766. align-items: center;
  10767. line-height: 20px;
  10768. }
  10769. .lineTitle::before {
  10770. content: '';
  10771. display: block;
  10772. width: 3px;
  10773. height: 20px;
  10774. background: #0061FF;
  10775. border-radius: 3px;
  10776. margin: 0 5px 0 0;
  10777. }
  10778. .courseTop {
  10779. display: flex;
  10780. flex-direction: row;
  10781. justify-content: space-between;
  10782. align-items: center;
  10783. width: calc(100% - 40px);
  10784. margin: 0 auto;
  10785. padding: 10px 0;
  10786. }
  10787. .stepsNav {
  10788. display: flex;
  10789. flex-direction: row;
  10790. justify-content: flex-start;
  10791. align-items: center;
  10792. }
  10793. .stepsWord {
  10794. font-size: 18px;
  10795. color: #fff;
  10796. font-weight: bold;
  10797. margin-left: auto;
  10798. background: rgb(15, 126, 255);
  10799. border-radius: 5px;
  10800. padding: 3px 25px;
  10801. box-sizing: border-box;
  10802. }
  10803. .stepBox {
  10804. width: calc(100% - 40px);
  10805. height: calc(100% - 50px);
  10806. overflow: hidden;
  10807. border-radius: 5px;
  10808. margin: 0 auto;
  10809. }
  10810. .rightBox {
  10811. width: calc(100%);
  10812. background: #F0F2F5;
  10813. /* border-radius: 10px; */
  10814. overflow: auto;
  10815. height: calc(100% - 150px);
  10816. margin: 0 auto;
  10817. position: relative;
  10818. box-sizing: border-box;
  10819. }
  10820. .e_add_top {
  10821. display: flex;
  10822. justify-content: space-between;
  10823. background: #fff;
  10824. position: absolute;
  10825. right: 20px;
  10826. height: 50px;
  10827. align-items: center;
  10828. }
  10829. .e_add_title2 {
  10830. display: flex;
  10831. align-items: center;
  10832. }
  10833. .e_add_title2 span {
  10834. width: 40px;
  10835. }
  10836. .e_add_title {
  10837. display: flex;
  10838. align-items: center;
  10839. color: #b8b8b8;
  10840. font-size: 18px;
  10841. position: relative;
  10842. height: 40px;
  10843. }
  10844. .e_add_title span {
  10845. margin-right: 10px;
  10846. }
  10847. .e_add_title .el_input {
  10848. width: 300px;
  10849. }
  10850. .e_add_title>>>.el-input__inner {
  10851. width: 400px;
  10852. }
  10853. .e_add_btn {}
  10854. .e_add_content {
  10855. display: flex;
  10856. width: 100%;
  10857. }
  10858. .e_add_list {
  10859. background: #fff;
  10860. height: 500px;
  10861. width: 210px;
  10862. position: relative;
  10863. margin: 15px 5px 0 0;
  10864. flex-shrink: 0;
  10865. display: flex;
  10866. flex-direction: column;
  10867. }
  10868. .e_add_list_title {
  10869. font-size: 20px;
  10870. width: 100%;
  10871. box-sizing: border-box;
  10872. padding: 15px 40px;
  10873. text-align: center;
  10874. border-bottom: 1px solid #eaeaea;
  10875. position: relative;
  10876. display: flex;
  10877. align-items: center;
  10878. justify-content: center;
  10879. height: 57px;
  10880. background: #f6f6f6;
  10881. }
  10882. .e_add_list_title span {
  10883. overflow: hidden;
  10884. white-space: nowrap;
  10885. text-overflow: ellipsis;
  10886. }
  10887. .e_add_list_title img {
  10888. position: absolute;
  10889. right: 15px;
  10890. width: 25px;
  10891. cursor: pointer;
  10892. top: 50%;
  10893. transform: translateY(-50%);
  10894. }
  10895. .e_add_list_body {
  10896. height: calc(100% - 187px);
  10897. overflow: auto;
  10898. }
  10899. .e_add_list_child {
  10900. width: 100%;
  10901. display: flex;
  10902. align-items: center;
  10903. justify-content: center;
  10904. position: relative;
  10905. box-sizing: border-box;
  10906. padding: 15px 40px;
  10907. text-align: center;
  10908. }
  10909. .e_add_list_child span {
  10910. overflow: hidden;
  10911. white-space: nowrap;
  10912. text-overflow: ellipsis;
  10913. cursor: pointer;
  10914. }
  10915. .e_add_list_child img {
  10916. position: absolute;
  10917. right: 10px;
  10918. width: 21px;
  10919. cursor: pointer;
  10920. top: 50%;
  10921. transform: translateY(-50%);
  10922. }
  10923. .e_add_list_child+.e_add_list_child {
  10924. border-top: 1px solid #eaeaea;
  10925. }
  10926. .e_add_list_child .active {
  10927. color: #409eff;
  10928. }
  10929. .e_add_list_btn {
  10930. position: absolute;
  10931. bottom: 0;
  10932. height: 50px;
  10933. background: rgb(120, 120, 254);
  10934. width: 100%;
  10935. color: #fff;
  10936. font-size: 16px;
  10937. text-align: center;
  10938. line-height: 50px;
  10939. cursor: pointer;
  10940. }
  10941. .e_add_list_detail {
  10942. position: absolute;
  10943. bottom: 0;
  10944. height: 130px;
  10945. background: rgb(120, 120, 254);
  10946. width: 100%;
  10947. color: #fff;
  10948. font-size: 16px;
  10949. display: flex;
  10950. align-items: center;
  10951. justify-content: center;
  10952. }
  10953. .e_add_list_detail textarea {
  10954. height: 90%;
  10955. width: 95%;
  10956. border: none;
  10957. resize: none;
  10958. outline: none;
  10959. padding: 5px;
  10960. box-sizing: border-box;
  10961. }
  10962. .e_add_list_pbox {
  10963. width: 100%;
  10964. }
  10965. .e_add_list_pbox_title {
  10966. height: 50px;
  10967. background: #fff;
  10968. display: flex;
  10969. align-items: center;
  10970. width: 100%;
  10971. box-sizing: border-box;
  10972. padding: 0 20px;
  10973. flex-direction: row;
  10974. flex-wrap: wrap;
  10975. }
  10976. .type_title {
  10977. font-size: 18px;
  10978. font-weight: 700;
  10979. }
  10980. .type_content {
  10981. font-size: 16px;
  10982. margin-left: 30px;
  10983. }
  10984. .type_content span+span {
  10985. margin-left: 20px;
  10986. }
  10987. .type_content span {
  10988. cursor: pointer;
  10989. padding-bottom: 5px;
  10990. box-sizing: border-box;
  10991. }
  10992. .type_content .active {
  10993. color: #409eff;
  10994. border-bottom: 2px solid #409eff;
  10995. }
  10996. .e_add_list_pbox_content {
  10997. height: calc(100% - 50px);
  10998. display: flex;
  10999. align-items: center;
  11000. width: 100%;
  11001. background: #fff;
  11002. }
  11003. .mbCss {
  11004. width: 100%;
  11005. display: flex;
  11006. flex-direction: row;
  11007. flex-wrap: nowrap;
  11008. align-content: center;
  11009. align-items: flex-start;
  11010. justify-content: flex-start;
  11011. }
  11012. .pjCss {
  11013. /* width: 42%; */
  11014. width: calc(100% - 55%);
  11015. display: flex;
  11016. flex-direction: column;
  11017. flex-wrap: nowrap;
  11018. align-items: flex-start;
  11019. }
  11020. .e_box {
  11021. display: flex;
  11022. flex-wrap: wrap;
  11023. max-height: 500px;
  11024. align-items: flex-start;
  11025. overflow: auto;
  11026. }
  11027. .e_card {
  11028. border: 1px solid #ccc;
  11029. background: #fff;
  11030. margin-right: 20px;
  11031. width: 270px;
  11032. display: flex;
  11033. flex-direction: column;
  11034. align-items: center;
  11035. border-radius: 5px;
  11036. margin-top: 10px;
  11037. text-align: center;
  11038. }
  11039. .e_card_picture {
  11040. margin: 10px 0;
  11041. }
  11042. .e_card_picture>img {
  11043. width: 50px;
  11044. }
  11045. .e_card_name {
  11046. width: 100%;
  11047. padding: 0 10px;
  11048. box-sizing: border-box;
  11049. margin-bottom: 10px;
  11050. overflow: hidden;
  11051. text-overflow: ellipsis;
  11052. white-space: nowrap;
  11053. }
  11054. .e_card_time {
  11055. width: 100%;
  11056. padding: 0 10px;
  11057. box-sizing: border-box;
  11058. font-size: 15px;
  11059. color: #c3c3c3;
  11060. margin-bottom: 10px;
  11061. }
  11062. .e_card_btn {
  11063. height: 40px;
  11064. display: flex;
  11065. align-items: center;
  11066. width: 100%;
  11067. background: rgb(244, 244, 244);
  11068. }
  11069. .e_card_btn:hover {
  11070. background: rgb(221 221 221);
  11071. }
  11072. .e_card_btn span {
  11073. flex: 1 1 auto;
  11074. text-align: center;
  11075. cursor: pointer;
  11076. }
  11077. .addEva {
  11078. border: 1px solid #ccc;
  11079. background: #fff;
  11080. margin-right: 20px;
  11081. width: 270px;
  11082. height: 149px;
  11083. display: flex;
  11084. flex-direction: column;
  11085. align-items: center;
  11086. border-radius: 5px;
  11087. margin-top: 10px;
  11088. text-align: center;
  11089. cursor: pointer;
  11090. justify-content: center;
  11091. }
  11092. .addEva>img {
  11093. width: 50px;
  11094. object-fit: cover;
  11095. }
  11096. .uploadFm {
  11097. border: 1px dashed #ccc;
  11098. width: 100%;
  11099. height: 140px;
  11100. position: relative;
  11101. cursor: pointer;
  11102. display: flex;
  11103. flex-direction: column;
  11104. justify-content: center;
  11105. align-items: center;
  11106. font-size: 14px;
  11107. color: #6e6e6e;
  11108. }
  11109. .uploadFm>img {
  11110. width: 50px;
  11111. }
  11112. .fileCss {
  11113. width: 100%;
  11114. display: flex;
  11115. flex-direction: row;
  11116. flex-wrap: nowrap;
  11117. justify-content: space-around;
  11118. align-items: center;
  11119. padding-top: 15px;
  11120. }
  11121. .fileCss>div {
  11122. display: flex;
  11123. flex-direction: column;
  11124. align-items: center;
  11125. }
  11126. .fileCss .spanName {
  11127. margin-top: 10px
  11128. }
  11129. .sysPicBox {
  11130. display: flex;
  11131. flex-direction: row;
  11132. flex-wrap: wrap;
  11133. align-content: flex-start;
  11134. height: 435px;
  11135. overflow: auto;
  11136. position: relative;
  11137. }
  11138. .picNone {
  11139. position: absolute;
  11140. left: 50%;
  11141. top: 45%;
  11142. transform: translate(-50%, -50%);
  11143. width: fit-content;
  11144. color: #9c9c9c;
  11145. }
  11146. .sysPic {
  11147. width: 200px;
  11148. height: 115px;
  11149. margin: 0 20px 20px 0;
  11150. cursor: pointer;
  11151. }
  11152. .sysPic>img,
  11153. .isSysPic>img,
  11154. .deletePic>img {
  11155. width: 100%;
  11156. height: 100%;
  11157. object-fit: cover;
  11158. }
  11159. .isSysPic {
  11160. width: 200px;
  11161. height: 115px;
  11162. position: relative;
  11163. }
  11164. .deletePic {
  11165. width: 20px;
  11166. height: 20px;
  11167. position: absolute;
  11168. top: 0;
  11169. right: 0;
  11170. cursor: pointer;
  11171. }
  11172. .select_box1 {
  11173. height: 100%;
  11174. }
  11175. .select_box1_img {
  11176. background: #fff;
  11177. border-radius: 5px;
  11178. padding: 15px;
  11179. box-sizing: border-box;
  11180. margin-bottom: 20px;
  11181. }
  11182. .select_box1_title {
  11183. padding: 0 0 15px 0;
  11184. border-bottom: 1px solid #eee;
  11185. margin-bottom: 15px;
  11186. }
  11187. .select_box1_title span:nth-child(1) {
  11188. font-size: 16px;
  11189. margin-right: 20px;
  11190. color: #000;
  11191. }
  11192. .select_box1_title span:nth-child(2) {
  11193. font-size: 14px;
  11194. color: rgb(112, 112, 112);
  11195. }
  11196. .select_box1_add_img {}
  11197. .select_box1_select {
  11198. background: #fff;
  11199. border-radius: 5px;
  11200. padding: 15px;
  11201. box-sizing: border-box;
  11202. height: calc(100% - 200px);
  11203. overflow: auto;
  11204. }
  11205. .select_box2 {
  11206. height: 100%;
  11207. }
  11208. .select_box2_title {
  11209. background: #fff;
  11210. border-radius: 5px;
  11211. padding: 5px 10px;
  11212. box-sizing: border-box;
  11213. margin-bottom: 10px;
  11214. }
  11215. .select_box2_box {
  11216. display: flex;
  11217. height: calc(100% - 30px);
  11218. }
  11219. .select_box2_img {
  11220. width: calc(100% - 310px);
  11221. height: 100%;
  11222. overflow: auto;
  11223. background: #fff;
  11224. border-radius: 5px;
  11225. }
  11226. .select_box2_img img {
  11227. width: 100%;
  11228. }
  11229. .select_box2_answer {
  11230. background: #fff;
  11231. margin-left: 10px;
  11232. border-radius: 5px;
  11233. width: 300px;
  11234. overflow: auto;
  11235. height: 100%;
  11236. display: flex;
  11237. flex-direction: column;
  11238. align-items: center;
  11239. padding-top: 10px;
  11240. box-sizing: border-box;
  11241. }
  11242. .select_box2_answer_box {
  11243. margin: 0 0 10px 0;
  11244. width: 85%;
  11245. }
  11246. .rate_textarea {
  11247. font: inherit;
  11248. color: currentColor;
  11249. width: 100%;
  11250. padding: 8px 14px;
  11251. display: block;
  11252. min-width: 0;
  11253. outline: none;
  11254. border: 1px solid rgba(0, 0, 0, 0.23);
  11255. border-radius: 4px;
  11256. box-sizing: border-box;
  11257. background: #fff;
  11258. margin: 0 20px 0 0;
  11259. resize: none;
  11260. }
  11261. .select_answer_title {
  11262. text-align: left;
  11263. width: 85%;
  11264. margin-bottom: 10px;
  11265. font-size: 18px;
  11266. color: #8e8e8e;
  11267. }
  11268. .mask {
  11269. background-color: rgb(0 0 0 / 30%);
  11270. /* position: fixed; */
  11271. position: absolute;
  11272. top: 0;
  11273. left: 0;
  11274. width: 100%;
  11275. height: 100%;
  11276. z-index: 90;
  11277. display: flex;
  11278. align-items: center;
  11279. justify-content: center;
  11280. }
  11281. .progressBox {
  11282. width: 300px;
  11283. height: 150px;
  11284. background: #fff;
  11285. border-radius: 10px;
  11286. box-shadow: 0 0 6px 1px #bfbfbf;
  11287. display: flex;
  11288. align-items: center;
  11289. justify-content: center;
  11290. flex-direction: column;
  11291. position: relative;
  11292. color: #6c6c6c;
  11293. }
  11294. .progressBox>>>.el-progress-bar__outer {
  11295. background-color: #d1dfff !important;
  11296. }
  11297. .progressBox .lbox {
  11298. height: 50px;
  11299. font-size: 19px;
  11300. display: flex;
  11301. align-items: center;
  11302. color: #747474;
  11303. }
  11304. .progressBox .lbox img {
  11305. width: 40px;
  11306. margin-right: 20px;
  11307. }
  11308. .closeCss {
  11309. position: absolute;
  11310. top: 8px;
  11311. right: 8px;
  11312. cursor: pointer;
  11313. width: 20px;
  11314. height: 20px;
  11315. }
  11316. .closeCss>img {
  11317. width: 100%;
  11318. height: 100%;
  11319. }
  11320. .updateTips::before {
  11321. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  11322. font-size: 14px;
  11323. margin-left: 20px;
  11324. font-weight: 400;
  11325. color: #ff3a3a;
  11326. margin-bottom: 10px;
  11327. display: block;
  11328. }
  11329. .updateMask {
  11330. width: 100%;
  11331. z-index: 3;
  11332. top: 0;
  11333. position: absolute;
  11334. /* background-color: rgba(0,0,0,.3); */
  11335. }
  11336. .t_j_box {
  11337. display: flex;
  11338. }
  11339. .t_j_box span:nth-child(1) {
  11340. width: 15%;
  11341. overflow: hidden;
  11342. margin-right: 10px;
  11343. text-overflow: ellipsis;
  11344. white-space: nowrap;
  11345. }
  11346. .t_j_box span:nth-child(2) {
  11347. width: 30%;
  11348. overflow: hidden;
  11349. text-overflow: ellipsis;
  11350. margin-right: 10px;
  11351. }
  11352. .t_j_box span:nth-child(3) {
  11353. max-width: calc(55% - 20px);
  11354. overflow: hidden;
  11355. text-overflow: ellipsis;
  11356. }
  11357. .sentenBox {
  11358. background: #fff;
  11359. height: 600px;
  11360. overflow: auto;
  11361. background-image: url("../../assets/icon/conSentences/csBg.png");
  11362. background-position: 102%;
  11363. background-repeat: no-repeat;
  11364. background-size: 60%;
  11365. }
  11366. .sentenBox>.sentenContent {
  11367. padding-bottom: 10px;
  11368. width: 97%;
  11369. margin: 0 auto;
  11370. }
  11371. .sentenBox>.sentenContent+.sentenContent {
  11372. border-top: 1px solid #cbcbcb;
  11373. }
  11374. .addSen {
  11375. background: #409efe;
  11376. width: 90px;
  11377. color: #fff;
  11378. height: 35px;
  11379. text-align: center;
  11380. line-height: 35px;
  11381. border-radius: 5px;
  11382. float: right;
  11383. margin: 10px 20px 0 0;
  11384. cursor: pointer;
  11385. }
  11386. .sentenTop {
  11387. display: flex;
  11388. flex-direction: row;
  11389. flex-wrap: nowrap;
  11390. align-items: center;
  11391. }
  11392. .sentenTop::before {
  11393. content: attr(index);
  11394. background: #3681fc;
  11395. border-radius: 50%;
  11396. color: #fff;
  11397. width: 25px;
  11398. height: 25px;
  11399. min-width: 25px;
  11400. min-height: 25px;
  11401. text-align: center;
  11402. line-height: 25px;
  11403. margin-right: 5px;
  11404. }
  11405. .sentenTop>div:nth-child(2) {
  11406. width: 300px;
  11407. margin: 0 15px;
  11408. }
  11409. .sentenTop>div:nth-child(3) {
  11410. background: #409efe;
  11411. color: #fff;
  11412. width: 65px;
  11413. height: 35px;
  11414. text-align: center;
  11415. line-height: 35px;
  11416. border-radius: 5px;
  11417. cursor: pointer;
  11418. }
  11419. .cardList {
  11420. padding: 30px 0 20px 0;
  11421. display: flex;
  11422. flex-direction: row;
  11423. flex-wrap: wrap;
  11424. align-items: center;
  11425. box-sizing: border-box;
  11426. border-bottom: 1px solid #f4f4f4;
  11427. width: 98%;
  11428. margin: 0 auto;
  11429. }
  11430. .rightCardList {
  11431. display: flex;
  11432. flex-wrap: wrap;
  11433. }
  11434. .cardBox {
  11435. display: flex;
  11436. flex-direction: row;
  11437. flex-wrap: wrap;
  11438. align-items: center;
  11439. align-content: center;
  11440. }
  11441. .isCard,
  11442. .isCard1 {
  11443. width: auto;
  11444. padding: 0 20px;
  11445. height: 65px;
  11446. text-align: center;
  11447. line-height: 65px;
  11448. font-size: 14px;
  11449. cursor: pointer;
  11450. background-image: url("../../assets/icon/conSentences/titleBorder.png");
  11451. background-size: 100% 100%;
  11452. position: relative;
  11453. z-index: 99;
  11454. }
  11455. .isCard1 {
  11456. background-image: url("../../assets/icon/conSentences/answerBorder.png");
  11457. }
  11458. .isCard:hover .deleteWord {
  11459. display: block;
  11460. }
  11461. .isCard>div:nth-child(1),
  11462. .isCard1>div:nth-child(1) {
  11463. white-space: nowrap;
  11464. overflow: hidden;
  11465. text-overflow: ellipsis;
  11466. width: 100%;
  11467. margin: 0 auto;
  11468. }
  11469. .card {
  11470. width: 140px;
  11471. height: 65px;
  11472. }
  11473. .card>img {
  11474. width: 100%;
  11475. height: 100%;
  11476. }
  11477. .rightCardBox {
  11478. width: 98%;
  11479. margin: 10px auto 0;
  11480. }
  11481. .rightCardBox>div:nth-child(1) {
  11482. margin-bottom: 10px;
  11483. }
  11484. .cardCss {
  11485. display: flex;
  11486. flex-direction: column;
  11487. flex-wrap: nowrap;
  11488. align-items: center;
  11489. border-bottom: 3px solid #b4c3d3;
  11490. padding: 0 0 5px 0;
  11491. /* margin-right: 10px; */
  11492. }
  11493. .cardCss>div:nth-child(2) {
  11494. background: #5b7b9d;
  11495. color: #fff;
  11496. width: 20px;
  11497. height: 20px;
  11498. border-radius: 50%;
  11499. text-align: center;
  11500. line-height: 20px;
  11501. }
  11502. .sentenTopBox {
  11503. display: flex;
  11504. flex-direction: row;
  11505. flex-wrap: nowrap;
  11506. align-items: center;
  11507. justify-content: space-between;
  11508. padding: 55px 0 0 20px;
  11509. box-sizing: border-box;
  11510. width: 85%;
  11511. }
  11512. .stepsBottom {
  11513. width: 100%;
  11514. box-shadow: 0 0 10px 10px #f7f7f7;
  11515. /* background: #f7f7f7; */
  11516. border-radius: 10px;
  11517. overflow: hidden;
  11518. height: 100%
  11519. }
  11520. .navTop {
  11521. background: #53749b;
  11522. color: #fff;
  11523. height: 40px;
  11524. line-height: 40px;
  11525. padding-left: 15px;
  11526. font-size: 18px;
  11527. }
  11528. .navBottom {
  11529. /* background: #6b91b7; */
  11530. height: 100%;
  11531. overflow: auto;
  11532. }
  11533. .navTask {
  11534. display: flex;
  11535. flex-direction: row;
  11536. flex-wrap: nowrap;
  11537. align-items: center;
  11538. padding: 10px 10px 10px 0;
  11539. cursor: pointer;
  11540. background: #ffffff;
  11541. width: 95%;
  11542. margin: 10px auto 0;
  11543. box-sizing: border-box;
  11544. border-radius: 5px;
  11545. flex-wrap: wrap;
  11546. }
  11547. .navTask::before{
  11548. content: '';
  11549. display:block;
  11550. width:16px;
  11551. height:16px;
  11552. background-image: url(../../assets/icon/new/icon_arrow.png);
  11553. background-size:100%;
  11554. margin-left:10px;
  11555. }
  11556. .noImage::before{
  11557. display: none;
  11558. background-image: unset !important;
  11559. }
  11560. .isNavOpen::before{
  11561. background-image: url(../../assets/icon/new/icon_arrow_a.png) !important;
  11562. }
  11563. .isNavTask {
  11564. /* background: #3681FC; */
  11565. background: #EEF3FB;
  11566. }
  11567. .isNavTask .nt_taskName {
  11568. /* color: #fff !important; */
  11569. font-weight: bold !important;
  11570. color: #0061FF !important;
  11571. }
  11572. .isNavTask .nt_taskTitle {
  11573. /* color: #AECCFE !important; */
  11574. font-weight: bold !important;
  11575. color: #0061FF !important;
  11576. }
  11577. .navTask .nt_taskBox {
  11578. width: calc(100% - 85px);
  11579. padding: 0 10px 0 5px;
  11580. box-sizing: border-box;
  11581. box-sizing: border-box;
  11582. display: flex;
  11583. flex-direction: row;
  11584. flex-wrap: nowrap;
  11585. align-items: baseline;
  11586. }
  11587. .navTask .nt_taskTitle {
  11588. /* color: #717C8D; */
  11589. color: #060E17;
  11590. line-height: 25px;
  11591. font-size: 16px;
  11592. min-width: 45px;
  11593. }
  11594. .navTask .nt_taskName {
  11595. /* color: #fff; */
  11596. /* max-width: 130px; */
  11597. /* width: 100%; */
  11598. max-width: calc(100% - 50px);
  11599. white-space: nowrap;
  11600. overflow: hidden;
  11601. text-overflow: ellipsis;
  11602. font-size: 16px;
  11603. color: #060E17;
  11604. /* color: #0E1E33; */
  11605. }
  11606. .gjBox {
  11607. width: calc(100% - 25px);
  11608. padding: 0 0 0 0;
  11609. box-sizing: border-box;
  11610. border-left: 1px solid #CAD1DC;
  11611. margin-left: 25px;
  11612. }
  11613. .gjBox > div{
  11614. display:flex;
  11615. align-items:center;
  11616. }
  11617. .gjBox > div::before{
  11618. content: '';
  11619. height:1px;
  11620. width:10px;
  11621. background: #CAD1DC;
  11622. display: block;
  11623. margin-right:5px;
  11624. }
  11625. .gjCss {
  11626. display: flex;
  11627. flex-direction: row;
  11628. flex-wrap: nowrap;
  11629. align-items: center;
  11630. padding: 15px 0;
  11631. box-sizing: border-box;
  11632. font-size: 14px;
  11633. cursor: pointer;
  11634. }
  11635. .isGjCss {
  11636. color: #0061ff;
  11637. }
  11638. .groupBox {}
  11639. .groupContent+.groupContent {
  11640. margin-top: 30px;
  11641. }
  11642. .groupTitle {
  11643. font-size: 24px;
  11644. color: rgb(80, 80, 80);
  11645. margin-bottom: 20px;
  11646. }
  11647. .groupName {
  11648. display: flex;
  11649. align-items: center;
  11650. }
  11651. .groupn {
  11652. font-size: 15px;
  11653. margin-right: 10px;
  11654. }
  11655. .groupName+.groupName {
  11656. margin-top: 15px;
  11657. }
  11658. .groupBtn {
  11659. margin-left: 10px;
  11660. }
  11661. .groupContent>>>.el-input-number.is-without-controls .el-input__inner {
  11662. text-align: left;
  11663. }
  11664. .radioBox>div {
  11665. margin: 10px 0 0 10px;
  11666. }
  11667. .radioBox>>>.el-radio__input,
  11668. .radioBox>>>.el-checkbox__inner {
  11669. margin-left: 10px;
  11670. }
  11671. .radioBox>>>.el-radio__label,
  11672. .radioBox>>>.el-checkbox__label {
  11673. display: flex;
  11674. align-items: center;
  11675. }
  11676. .inImg {
  11677. width: 50px;
  11678. }
  11679. .inImg>img {
  11680. width: 100%;
  11681. height: 100%;
  11682. object-fit: cover;
  11683. }
  11684. .upCss>>>.el-upload-list--picture .el-upload-list__item {
  11685. height: auto;
  11686. padding: 10px;
  11687. margin: 0;
  11688. }
  11689. .upCss >>> .el-upload-list{
  11690. width: 100%;
  11691. }
  11692. .upCss>>>.el-upload-list--picture .el-upload-list__item-thumbnail {
  11693. width: 100%;
  11694. height: 120px;
  11695. object-fit: contain;
  11696. background: unset;
  11697. margin-left: 0;
  11698. }
  11699. .upCss>>>.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name {
  11700. display: none;
  11701. }
  11702. .tcMember+.tcMember::before {
  11703. content: "、";
  11704. }
  11705. .xzUpImg {
  11706. width: 25px;
  11707. height: 25px;
  11708. min-width: 25px;
  11709. min-height: 25px;
  11710. cursor: pointer;
  11711. margin: 0 10px;
  11712. }
  11713. .xzUpImg>img {
  11714. width: 100%;
  11715. height: 100%;
  11716. }
  11717. .closeCss {
  11718. position: absolute;
  11719. top: 8px;
  11720. right: 8px;
  11721. cursor: pointer;
  11722. width: 20px;
  11723. height: 20px;
  11724. }
  11725. .closeCss>img {
  11726. width: 100%;
  11727. height: 100%;
  11728. }
  11729. .moveBtn {
  11730. display: flex;
  11731. flex-direction: row;
  11732. flex-wrap: nowrap;
  11733. align-items: center;
  11734. width: 55px;
  11735. }
  11736. .timuUpImg {
  11737. display: flex;
  11738. flex-direction: row;
  11739. align-items: center;
  11740. width: 100%;
  11741. margin-right: 10px;
  11742. }
  11743. .timuUpImg>div:nth-child(1) {
  11744. margin-right: 10px;
  11745. display: flex;
  11746. align-items: center;
  11747. width: 100%;
  11748. }
  11749. .timuImgBox {
  11750. margin: 10px 0;
  11751. display: flex;
  11752. flex-direction: column;
  11753. flex-wrap: wrap;
  11754. align-items: flex-start;
  11755. }
  11756. .timuImg {
  11757. width: 100px;
  11758. margin: 5px 0;
  11759. cursor: pointer;
  11760. position: relative;
  11761. }
  11762. .timuImg:hover .deleteWord {
  11763. display: block;
  11764. }
  11765. .deleteWord {
  11766. width: 25px;
  11767. height: 25px;
  11768. position: absolute;
  11769. right: -5px;
  11770. top: -5px;
  11771. cursor: pointer;
  11772. display: none;
  11773. }
  11774. .timuImg>img,
  11775. .deleteWord>img {
  11776. width: 100%;
  11777. height: 100%;
  11778. object-fit: cover;
  11779. }
  11780. .e_add_delete {
  11781. cursor: pointer;
  11782. margin-left: 10px;
  11783. }
  11784. .pType_box {
  11785. margin-top: 30px;
  11786. align-items: flex-end;
  11787. }
  11788. .noneBox {
  11789. height: 200px;
  11790. width: 100%;
  11791. display: flex;
  11792. align-items: center;
  11793. justify-content: center;
  11794. flex-direction: column;
  11795. /* margin-top: 150px; */
  11796. }
  11797. .noneBox>img {
  11798. width: 95px;
  11799. }
  11800. .noneBox>span {
  11801. margin-top: 10px;
  11802. color: #717C8D;
  11803. }
  11804. .rb_c_box {
  11805. width: 100%;
  11806. height: 100%;
  11807. display: flex;
  11808. /* padding: 20px; */
  11809. box-sizing: border-box;
  11810. justify-content: space-between;
  11811. }
  11812. .rb_c_box_left {
  11813. height: 100%;
  11814. background: #fff;
  11815. width: 270px;
  11816. min-width: 270px;
  11817. border-radius: 8px;
  11818. margin-right: 10px;
  11819. }
  11820. .rb_c_box_right {
  11821. height: 100%;
  11822. width: calc(100%);
  11823. overflow: hidden;
  11824. }
  11825. .rb_c_box_btn {
  11826. display: flex;
  11827. justify-content: flex-start;
  11828. height: 50px;
  11829. align-items: center;
  11830. }
  11831. .rb_c_box_right>.basic_box {
  11832. background: #fff;
  11833. border-radius: 8px;
  11834. height: calc(100% - 0px);
  11835. overflow: auto;
  11836. }
  11837. .textarea_css {
  11838. display: block;
  11839. resize: none;
  11840. padding: 10px 15px;
  11841. line-height: 1.5;
  11842. box-sizing: border-box;
  11843. width: 100%;
  11844. font-size: 14px;
  11845. color: #606266;
  11846. background-color: #FFF;
  11847. background-image: none;
  11848. border: 1px solid #DCDFE6;
  11849. border-radius: 4px;
  11850. transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
  11851. outline: none;
  11852. overflow: hidden;
  11853. height: 46px;
  11854. font-family: 'Microsoft YaHei';
  11855. }
  11856. .textarea_css::-webkit-input-placeholder {
  11857. color: #C0C4CC
  11858. }
  11859. .textarea_css:focus {
  11860. border-color: #409EFF;
  11861. outline: 0;
  11862. }
  11863. .addEditor>>>.text {
  11864. height: auto;
  11865. min-height: 100px;
  11866. }
  11867. .addEditor>>>.w-e-text-container {
  11868. min-height: 100px;
  11869. }
  11870. .moveBtn2 {
  11871. flex-direction: column;
  11872. width: fit-content;
  11873. margin: 0 10px 0 10px;
  11874. }
  11875. .moveBtn2 .chapter_upload_down,
  11876. .moveBtn2 .chapter_upload_up {
  11877. width: 16px;
  11878. height: 16px;
  11879. }
  11880. .moveBtn2 .chapter_upload_up::after,
  11881. .moveBtn2 .chapter_upload_down::after {
  11882. width: 10px;
  11883. height: 10px;
  11884. }
  11885. .fullStyle>>>.el-dialog__body {
  11886. height: calc(100% - 125px) !important;
  11887. box-sizing: border-box;
  11888. }
  11889. .fullStyle>>>.el-dialog {
  11890. width: 100% !important;
  11891. max-width: 100% !important;
  11892. height: 100% !important;
  11893. margin: 0 !important;
  11894. }
  11895. .fullStyle {
  11896. width: 100% !important;
  11897. max-width: 100% !important;
  11898. height: 100% !important;
  11899. margin: 0 auto !important;
  11900. }
  11901. .wb_j_box_btn {
  11902. width: calc(100% - 30px);
  11903. display: flex;
  11904. height: 40px;
  11905. border: 1.5px solid #CAD1DC;
  11906. border-radius: 4px;
  11907. box-sizing: border-box;
  11908. align-items: center;
  11909. font-size: 14px;
  11910. cursor: pointer;
  11911. overflow: hidden;
  11912. }
  11913. .wb_j_box_btn:hover{
  11914. border: 1.5px solid #0061FF;
  11915. }
  11916. .wb_j_box_title {
  11917. background: #F0F4FA;
  11918. height: 100%;
  11919. line-height: 40px;
  11920. width: 90px;
  11921. text-align: center;
  11922. color: #060E17;
  11923. border-right: 1.5px solid #CAD1DC;
  11924. box-sizing: border-box;
  11925. }
  11926. .wb_j_box_btn_c {
  11927. width: calc(100% - 90px);
  11928. padding: 0 35px 0 10px;
  11929. box-sizing: border-box;
  11930. position: relative;
  11931. }
  11932. .wb_j_box_span {
  11933. width: 100%;
  11934. overflow: hidden;
  11935. white-space: nowrap;
  11936. text-overflow: ellipsis;
  11937. word-wrap: break-word;
  11938. color: #717C8D;
  11939. }
  11940. .wb_j_box_arrow {
  11941. content: '';
  11942. width: 14px;
  11943. height: 14px;
  11944. background: url(../../assets/icon/new/u_arrow.png);
  11945. background-size: 100% 100%;
  11946. position: absolute;
  11947. right: 12px;
  11948. top: 50%;
  11949. transform: translateY(-50%);
  11950. }
  11951. .check_classBox{
  11952. height: 400px;
  11953. display: flex;
  11954. border-top: 1.5px solid #E7EBF1;
  11955. border-bottom: 1.5px solid #E7EBF1;
  11956. }
  11957. .check_class_right{
  11958. width: 130px;
  11959. border-right: 1px solid #E7EBF1;
  11960. display: flex;
  11961. align-items: center;
  11962. flex-direction: column;
  11963. height: 100%;
  11964. overflow: auto;
  11965. padding: 15px 0;
  11966. box-sizing: border-box;
  11967. }
  11968. .check_class{
  11969. width: 85%;
  11970. border-radius: 5px;
  11971. height: 30px;
  11972. line-height: 30px;
  11973. text-align: center;
  11974. padding: 0 10px;
  11975. box-sizing: border-box;
  11976. cursor:pointer;
  11977. white-space: nowrap;
  11978. overflow: hidden;
  11979. text-overflow: ellipsis;
  11980. }
  11981. .check_class.activeX{
  11982. background: #E0EAFB;
  11983. color:#3681FC;
  11984. font-weight:700;
  11985. }
  11986. .check_class + .check_class{
  11987. margin-top: 15px;
  11988. }
  11989. .check_class_left{
  11990. background: #FAFAFA;
  11991. width: calc(100% - 130px);
  11992. padding: 15px;
  11993. box-sizing: border-box;
  11994. }
  11995. .check_class_left_title{
  11996. font-size: 16px;
  11997. font-weight: 700;
  11998. margin-bottom: 10px;
  11999. }
  12000. .check_class_item{
  12001. display: flex;
  12002. flex-wrap: wrap;
  12003. height: calc(100% - 45px);
  12004. overflow: auto;
  12005. justify-content: flex-start;
  12006. align-items: flex-start;
  12007. align-content: flex-start;
  12008. }
  12009. .class_item{
  12010. margin: 0 15px 15px 0;
  12011. }
  12012. .class_item:hover >>> .el-checkbox__label{
  12013. color:#409EFF;
  12014. }
  12015. .class_item >>> .el-checkbox__label{
  12016. color: #0E1E33;
  12017. }
  12018. .class_item:hover >>> .el-checkbox__inner{
  12019. border-color: #409EFF;
  12020. }
  12021. .class_item >>> .el-checkbox, .class_item >>> .el-checkbox__input{
  12022. display: flex;
  12023. align-items: center;
  12024. }</style>