addCourse.vue 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="stepBg">
  6. <div v-if="steps == 1" class="first" @click="navSteps(1)">
  7. <div>
  8. <img src="../../assets/icon/first.png" alt />
  9. </div>
  10. <div>填写基本信息</div>
  11. </div>
  12. <div v-else class="firstNo" @click="navSteps(1)">
  13. <div>
  14. <img src="../../assets/icon/firstNo.png" alt />
  15. </div>
  16. <div>填写基本信息</div>
  17. </div>
  18. <div v-show="cidType === 0" class="secondNo">
  19. <div v-if="steps == 2" class="newSteps second" @click="navSteps(2)">
  20. <div style="margin: 5px 10px 0 0; width: 2rem">
  21. <img src="../../assets/icon/second.png" alt />
  22. </div>
  23. <div>选择课程框架</div>
  24. </div>
  25. <div v-else class="newSteps secondNo" @click="navSteps(2)">
  26. <div>
  27. <img src="../../assets/icon/secondNo.png" alt />
  28. </div>
  29. <div>选择课程框架</div>
  30. </div>
  31. </div>
  32. <div v-if="steps == 3" class="third" @click="navSteps(3)">
  33. <div>
  34. <img src="../../assets/icon/third.png" alt />
  35. </div>
  36. <div>上传课程内容</div>
  37. </div>
  38. <div v-else class="thirdNo" @click="navSteps(3)">
  39. <div>
  40. <img src="../../assets/icon/thirdNo.png" alt />
  41. </div>
  42. <div>上传课程内容</div>
  43. </div>
  44. <div v-if="steps == 4" class="four">
  45. <div>
  46. <img src="../../assets/icon/four.png" alt />
  47. </div>
  48. <div>上传完成</div>
  49. </div>
  50. <div v-else class="fourNo">
  51. <div>
  52. <img src="../../assets/icon/fourNo.png" alt />
  53. </div>
  54. <div>上传完成</div>
  55. </div>
  56. </div>
  57. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  58. <div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
  59. <div class="courseTop">
  60. <div class="stepsNav">
  61. <h3 class="info_title" v-if="steps == 1">课程内容填写</h3>
  62. <h3 class="info_title" v-if="steps == 2">请选择课程框架</h3>
  63. <h3 class="info_title" v-if="steps == 3">课程内容填写</h3>
  64. <h3 class="info_title" v-if="steps == 4">上传课程</h3>
  65. <el-breadcrumb
  66. separator-class="el-icon-arrow-right"
  67. style="margin-top: 15px"
  68. >
  69. <el-breadcrumb-item
  70. :to="{ path: '/course?userid=' + userid + '&oid=' + oid }"
  71. >课程管理</el-breadcrumb-item
  72. >
  73. <el-breadcrumb-item>
  74. <span style="color: rgb(15, 126, 255)">添加课程</span>
  75. </el-breadcrumb-item>
  76. </el-breadcrumb>
  77. </div>
  78. <div
  79. v-if="steps == 1 || steps == 2 || steps == 3"
  80. class="stepsWord"
  81. >
  82. {{
  83. steps == 1
  84. ? "第一步"
  85. : steps == 2
  86. ? "第二步"
  87. : steps == 3
  88. ? "第三步"
  89. : ""
  90. }}
  91. </div>
  92. </div>
  93. <div class="rightBox" v-if="this.steps == 1">
  94. <div class="whiteBg">
  95. <div class="right_title">课程基本信息</div>
  96. <div class="basic_box">
  97. <div class="big_box">
  98. <div class="left_first">
  99. <div>
  100. <div>
  101. <div class="bInfo_title" style="margin-bottom: 15px">
  102. <!-- <span style="color: red">*</span> -->
  103. 课程名称
  104. </div>
  105. <div style="display: flex; margin-right: 20px">
  106. <img
  107. src="../../assets/icon/projectName.png"
  108. alt
  109. style="margin-right: 8px"
  110. />
  111. <input
  112. type="text"
  113. placeholder="请输入课程名称"
  114. class="binfo_input"
  115. v-model="courseName"
  116. />
  117. </div>
  118. </div>
  119. <div class="both">
  120. <div class="choose">
  121. <div
  122. class="all_choose"
  123. v-for="(item, index) in CourseType[0]"
  124. :key="index"
  125. >
  126. <span>{{ item.name }}</span>
  127. <el-checkbox-group v-model="courseTypeId">
  128. <el-checkbox
  129. v-for="item1 in CourseTypeJson[item.id]"
  130. :key="item1.id"
  131. :label="item1.id"
  132. >{{ item1.name }}</el-checkbox
  133. >
  134. </el-checkbox-group>
  135. </div>
  136. </div>
  137. </div>
  138. </div>
  139. </div>
  140. </div>
  141. </div>
  142. </div>
  143. <div class="whiteBg" style="border-radius: 0">
  144. <div class="right_first">
  145. <div class="right_title">上传封面与成员</div>
  146. <div
  147. style="
  148. padding: 0 0 50px 20px;
  149. display: flex;
  150. align-items: baseline;
  151. justify-content: flex-start;
  152. margin: 0 auto;
  153. "
  154. >
  155. <div>
  156. <div class="bInfo_title" style="margin-top: 0 !important">
  157. 课程封面
  158. </div>
  159. <el-upload
  160. :class="{ disUoloadSty: noneBtnImg }"
  161. class="upCss"
  162. action="#"
  163. list-type="picture"
  164. v-loading="uploadLoading1"
  165. :http-request="beforeUpload1"
  166. ref="upload1"
  167. :on-preview="handlePictureCardPreview"
  168. :on-remove="handle_remove1"
  169. :show-file-list="true"
  170. :file-list="cover"
  171. accept="image/*"
  172. :limit="1"
  173. :on-exceed="onExceed"
  174. >
  175. <i class="el-icon-plus"></i>
  176. </el-upload>
  177. </div>
  178. <div
  179. style="
  180. display: flex;
  181. flex-flow: row nowrap;
  182. flex-direction: row;
  183. flex-wrap: wrap;
  184. align-items: baseline;
  185. margin: 0 30px;
  186. "
  187. >
  188. <!-- <div style="margin: 0 80px">
  189. <div class="bInfo_title">
  190. 选择项目成员
  191. </div>
  192. <div
  193. class="addPeople"
  194. @click="addPP"
  195. v-if="this.checkboxList.length == 0"
  196. >添加成员</div>
  197. <div class="addPeople" @click="addPP" v-else>已添加,点击查看</div>
  198. </div>-->
  199. <div style="margin: 0 30px 0 0">
  200. <div class="bInfo_title">添加权限</div>
  201. <div class="addPeople" @click="dialogVisibleClass = true">
  202. 添加权限
  203. </div>
  204. </div>
  205. <div
  206. style="flex: 0.5 1 0%; margin: 0"
  207. v-if="courseUserid != '' ? courseUserid == userid : true"
  208. >
  209. <div class="bInfo_title">协同编辑</div>
  210. <div
  211. class="addPeople"
  212. @click="dialogVisibleMember = true"
  213. style="background: #6b92c9"
  214. >
  215. 添加协同成员
  216. </div>
  217. </div>
  218. </div>
  219. </div>
  220. </div>
  221. </div>
  222. <div class="whiteBg" style="border-radius: 0; margin-top: 15px">
  223. <div class="right_title">课程简要描述</div>
  224. <div style="width: 95%; margin: 15px auto">
  225. <div style="width: 55%">
  226. <textarea
  227. rows="8"
  228. class="binfo_input"
  229. cols
  230. v-model="courseText"
  231. ></textarea>
  232. </div>
  233. </div>
  234. <!-- <div style="width: 95%; margin: 15px auto">
  235. <el-switch
  236. v-model="isTeacherSee"
  237. active-text="允许给其他老师查看"
  238. style="padding-bottom: 30px"
  239. ></el-switch>
  240. </div>-->
  241. <div style="width: 95%; margin: 15px auto">
  242. <el-switch
  243. v-model="isTeacherSee"
  244. active-text="是否公开此课程"
  245. style="padding-bottom: 30px"
  246. ></el-switch>
  247. </div>
  248. </div>
  249. <div
  250. class="whiteBg"
  251. style="border-radius: 0; margin-top: 15px; padding-bottom: 20px"
  252. >
  253. <div class="right_title">目标管理</div>
  254. <div style="margin: 15px auto; padding: 0 0 0 20px">
  255. <div
  256. style="
  257. width: 100%%;
  258. display: flex;
  259. flex-direction: row;
  260. flex-wrap: nowrap;
  261. align-content: center;
  262. align-items: center;
  263. justify-content: space-between;
  264. "
  265. >
  266. <div
  267. style="
  268. display: flex;
  269. flex-flow: row nowrap;
  270. align-items: flex-start;
  271. width: 100%;
  272. flex-direction: column;
  273. flex-wrap: nowrap;
  274. position: relative;
  275. "
  276. >
  277. <!-- <div style="margin-right: 15px; min-width: 120px">
  278. 请选择评价指标
  279. </div>
  280. <div>
  281. <el-select
  282. v-model="evalua"
  283. placeholder="请选择体系"
  284. @change="checkEva"
  285. >
  286. <el-option
  287. v-for="(e, eIndex) in evaJuri"
  288. :key="eIndex"
  289. :label="e.title"
  290. :value="e.id"
  291. ></el-option>
  292. </el-select>
  293. </div> -->
  294. <!-- <div
  295. @click="openT"
  296. class="addPeople"
  297. style="
  298. background: #6b92c9;
  299. margin: 0 0 0 15px;
  300. position: absolute;
  301. right: 23%;
  302. "
  303. >
  304. 前往设置目标管理
  305. </div> -->
  306. <div class="e_box">
  307. <div
  308. class="e_card"
  309. v-for="(item, index) in evaJuri"
  310. :key="index"
  311. >
  312. <div class="e_card_picture">
  313. <img src="../../assets/e_picture.png" />
  314. </div>
  315. <div class="e_card_name">
  316. <span>{{ item.title }}</span>
  317. </div>
  318. <!-- <div class="e_card_time">
  319. <span>{{ item.time }}</span>
  320. </div> -->
  321. <div class="e_card_btn">
  322. <span @click="checkEva(item.id)">导入</span>
  323. <!-- <span @click="openT">前往设置</span> -->
  324. </div>
  325. </div>
  326. <div class="addEva" @click="openT">
  327. <img src="../../assets/icon/addEva.png" alt="" />
  328. </div>
  329. <div
  330. v-if="evaJuri.length === 0"
  331. style="margin: 0 auto; color: #6e6e6e"
  332. >
  333. 暂无数据
  334. </div>
  335. </div>
  336. </div>
  337. </div>
  338. <div
  339. v-if="evalua"
  340. style="
  341. border: 1px solid #e5e5e5;
  342. width: 95%;
  343. margin-top: 30px;
  344. box-shadow: 3px 1px 15px 3px #e0e0e0;
  345. "
  346. >
  347. <div class="e_add_top">
  348. <div class="e_add_title">
  349. <span>当前使用目标管理</span>
  350. <span>{{ eTitle }}</span>
  351. <img
  352. src="../../assets/line.png"
  353. class="cru_line"
  354. style="
  355. width: 125px;
  356. height: 20px;
  357. bottom: -10px;
  358. left: 155px;
  359. "
  360. />
  361. <!-- <el-input
  362. v-model="eTitle"
  363. placeholder="请输入名称"
  364. @change="setMindData"
  365. ></el-input>-->
  366. </div>
  367. </div>
  368. <div class="e_add_content">
  369. <div class="e_add_list_pbox">
  370. <div class="e_add_list_pbox_title">
  371. <span class="type_title">切换模式</span>
  372. <div class="type_content">
  373. <span
  374. :class="{ active: typeMode == 1 }"
  375. @click="OtherMb(1)"
  376. >目标树</span
  377. >
  378. <span
  379. :class="{ active: typeMode == 2 }"
  380. @click="OtherMb(2)"
  381. >目标罗盘</span
  382. >
  383. <span
  384. :class="{ active: typeMode == 3 }"
  385. @click="OtherMb(3)"
  386. >目标看板</span
  387. >
  388. </div>
  389. </div>
  390. <div class="e_add_list_pbox_content">
  391. <Mind
  392. :showBar="false"
  393. :mindData="data"
  394. v-show="typeMode == 1"
  395. ></Mind>
  396. <Sunburst
  397. :Josn="eJson"
  398. :num="eJSONNum"
  399. style="width: 100%"
  400. v-if="typeMode == 2"
  401. ></Sunburst>
  402. <SeeBoard
  403. :Josn="eJson"
  404. :num="eJSONNum"
  405. :ename="eTitle"
  406. style="width: 100%"
  407. v-if="typeMode == 3"
  408. ></SeeBoard>
  409. </div>
  410. </div>
  411. </div>
  412. </div>
  413. </div>
  414. </div>
  415. </div>
  416. <div class="rightBox" v-if="this.steps == 2">
  417. <div
  418. class="basic_box"
  419. style="padding: 20px 30px 0px !important; box-sizing: border-box"
  420. >
  421. <!-- <div
  422. style="
  423. color: #b8b8b8;
  424. background: #fff;
  425. width: 26%;
  426. height: 40px;
  427. border-radius: 15px;
  428. padding-left: 20px;
  429. line-height: 40px;
  430. font-size: 17px;
  431. box-shadow: 0px 1px 2px 2px #e0e0e0;
  432. "
  433. >-->
  434. <div
  435. class="right_title"
  436. style="border: none; margin: 0; padding: 0"
  437. >
  438. 请选择合适的课程模板
  439. </div>
  440. <div class="wordbox">
  441. <div
  442. class="wordTeacher"
  443. v-for="(aa, indexF) in templateArray"
  444. :key="indexF"
  445. @click="checkTemplate(aa)"
  446. >
  447. <div class="wordPic">
  448. <img src="../../assets/icon/wordMub.png" alt />
  449. </div>
  450. <div
  451. style="
  452. margin-top: 10px;
  453. line-height: 19px;
  454. overflow: hidden;
  455. text-overflow: ellipsis;
  456. white-space: nowrap;
  457. padding: 0 20px;
  458. "
  459. >
  460. {{ aa.title }}
  461. </div>
  462. </div>
  463. <div class="wordTeacher" @click="checkTemplate2()">
  464. <div class="wordPic">
  465. <img src="../../assets/icon/wordMub.png" alt />
  466. </div>
  467. <div
  468. style="
  469. margin-top: 10px;
  470. line-height: 19px;
  471. overflow: hidden;
  472. text-overflow: ellipsis;
  473. white-space: nowrap;
  474. padding: 0 20px;
  475. "
  476. >
  477. 新建课程
  478. </div>
  479. </div>
  480. <div class="wordTeacher" @click="checkTemplate1()">
  481. <div class="wordPic">
  482. <img src="../../assets/icon/wordMub.png" alt />
  483. </div>
  484. <div
  485. style="
  486. margin-top: 10px;
  487. line-height: 19px;
  488. overflow: hidden;
  489. text-overflow: ellipsis;
  490. white-space: nowrap;
  491. padding: 0 20px;
  492. "
  493. >
  494. 我的课程
  495. </div>
  496. </div>
  497. </div>
  498. </div>
  499. </div>
  500. <div class="rightBox" v-if="this.steps == 3">
  501. <div class="basic_box">
  502. <div
  503. style="display: flex; flex-direction: row; align-items: center"
  504. >
  505. <div class="cru_selectBox">
  506. <div
  507. v-for="(item, index) in unitJson"
  508. :key="index"
  509. class="cru_select"
  510. :class="unitIndex == index ? 'cru_selected' : ''"
  511. @click="unitSet(index)"
  512. >
  513. 第{{ index + 1 }}阶段
  514. </div>
  515. <img
  516. src="../../assets/line.png"
  517. class="cru_line"
  518. :style="{
  519. left: offsetLetfPx + 'px',
  520. }"
  521. />
  522. </div>
  523. <div class="addStageImg" @click="addunit()">
  524. <img src="../../assets/icon/add.png" alt />
  525. </div>
  526. </div>
  527. <div
  528. style="margin: 0 0 40px 0"
  529. v-for="(item, index) in unitJson[unitIndex].chapterInfo"
  530. :key="index"
  531. >
  532. <div>
  533. <div class="chapter_contentbox">
  534. <div>第{{ unitIndex + 1 }}阶段</div>
  535. <div>
  536. <input
  537. type="text"
  538. placeholder="阶段标题"
  539. class="binfo_input"
  540. v-model="unitJson[unitIndex].dyName"
  541. />
  542. </div>
  543. <div
  544. v-if="unitJson.length > 1"
  545. @click="deleteUnit(unitIndex)"
  546. ></div>
  547. </div>
  548. </div>
  549. <div
  550. style="
  551. margin: 50px 0px 10px;
  552. font-size: 1.5em;
  553. font-weight: 700;
  554. color: #0f7eff;
  555. "
  556. >
  557. 添加任务
  558. </div>
  559. <div
  560. class="taskBorder"
  561. v-for="(itemTask, itemTaskIndex) in item.taskJson"
  562. :key="itemTaskIndex"
  563. >
  564. <div>
  565. <div>
  566. <div style="font-size: 22px; color: #8e8e8e">
  567. 任务{{ itemTaskIndex + 1 }}
  568. </div>
  569. <div
  570. class="chapter_contentbox"
  571. style="
  572. flex-direction: row;
  573. justify-content: flex-start;
  574. align-items: center;
  575. "
  576. >
  577. <div
  578. style="
  579. border-left: 6px solid #5699e8;
  580. height: 20px;
  581. padding-left: 10px;
  582. line-height: 22px;
  583. "
  584. >
  585. 任务名称
  586. </div>
  587. <div>
  588. <input
  589. type="text"
  590. placeholder="输入任务名称"
  591. class="binfo_input"
  592. style="border-radius: 4px"
  593. v-model="
  594. unitJson[unitIndex].chapterInfo[0].taskJson[
  595. itemTaskIndex
  596. ].task
  597. "
  598. />
  599. </div>
  600. <div
  601. class="remove"
  602. v-if="item.taskJson.length > 1"
  603. @click="deleteTask(itemTaskIndex)"
  604. style="position: absolute; right: 55px"
  605. ></div>
  606. </div>
  607. <div
  608. style="
  609. display: flex;
  610. margin: 0 0 20px 0;
  611. flex-direction: row;
  612. justify-content: flex-start;
  613. align-items: center;
  614. width: 70.5% !important;
  615. padding-top: 30px;
  616. "
  617. >
  618. <div class="lineTitle">任务描述</div>
  619. <div class="line"></div>
  620. </div>
  621. <div>
  622. <editor-bar
  623. style="width: 90% !important; margin: 0"
  624. placeholder="请输入任务描述"
  625. v-model="
  626. unitJson[unitIndex].chapterInfo[0].taskJson[
  627. itemTaskIndex
  628. ].taskDetail
  629. "
  630. @change="change"
  631. ></editor-bar>
  632. <!-- <textarea
  633. rows="6"
  634. class="binfo_input"
  635. placeholder="请输入任务描述"
  636. cols
  637. style="width: 70.5% !important; height: 120px"
  638. v-model="
  639. unitJson[unitIndex].chapterInfo[0].taskJson[
  640. itemTaskIndex
  641. ].taskDetail
  642. "
  643. ></textarea>-->
  644. </div>
  645. </div>
  646. </div>
  647. <div
  648. class="basic_box"
  649. style="
  650. margin: 0;
  651. min-height: 0;
  652. width: 90% !important;
  653. paddint-top: 10px !important;
  654. "
  655. >
  656. <div
  657. style="
  658. display: flex;
  659. margin: 0 0 20px 0;
  660. flex-direction: row;
  661. justify-content: flex-start;
  662. align-items: center;
  663. "
  664. >
  665. <div class="lineTitle">学习内容</div>
  666. <div class="line"></div>
  667. </div>
  668. <div>
  669. <div
  670. class="add_chapters_box"
  671. v-if="
  672. itemTask.chapterData &&
  673. itemTask.chapterData.length == 0
  674. "
  675. style="height: 185px"
  676. ></div>
  677. <div
  678. v-else
  679. class="add_chapters_box"
  680. style="display: flex; flex-direction: column"
  681. >
  682. <div
  683. class="chapter_upload"
  684. v-for="(item1, index1) in itemTask.chapterData"
  685. :key="item1.id"
  686. @click="
  687. getChapterData(
  688. $event,
  689. unitIndex,
  690. index,
  691. index1,
  692. item1.type
  693. )
  694. "
  695. >
  696. <div
  697. class="chapter_upload_t"
  698. style="width: 100%"
  699. ></div>
  700. <div
  701. class="chapter_upload_o"
  702. style="
  703. position: relative;
  704. display: flex;
  705. align-items: center;
  706. "
  707. >
  708. <div
  709. class="chapter_upload_l"
  710. style="padding: 1px 0 0 10px"
  711. >
  712. <div
  713. v-if="item1.type == 2"
  714. class="chapter_upload_l_i1"
  715. ></div>
  716. <div
  717. v-if="
  718. item1.type == 3 ||
  719. item1.type == 6 ||
  720. item1.type == 7
  721. "
  722. class="chapter_upload_l_i5"
  723. style="margin-left: 1px"
  724. ></div>
  725. <div
  726. v-if="item1.type == 8"
  727. class="chapter_upload_l_i8"
  728. style="margin-left: 1px"
  729. ></div>
  730. </div>
  731. <div
  732. class="chapter_upload_ic"
  733. style="
  734. cursor: pointer;
  735. position: absolute;
  736. width: 45px;
  737. right: 0;
  738. top: 0;
  739. "
  740. >
  741. <div class="chapter_upload_ic_l"></div>
  742. <div
  743. class="chapter_upload_ic_r"
  744. style="position: absolute"
  745. @click.stop="
  746. deleteChapterData(
  747. $event,
  748. unitIndex,
  749. index,
  750. index1,
  751. itemTaskIndex
  752. )
  753. "
  754. >
  755. <div></div>
  756. </div>
  757. </div>
  758. <div class="chapter_upload_n">
  759. <input
  760. v-if="
  761. item1.type == 2 ||
  762. item1.type == 3 ||
  763. item1.type == 7
  764. "
  765. :placeholder="item1.name"
  766. @change="
  767. updataVideoT(
  768. $event,
  769. unitIndex,
  770. chapterIndex,
  771. index1
  772. )
  773. "
  774. style="
  775. border: none;
  776. outline: none;
  777. width: 80%;
  778. minwidth: 215px;
  779. z-index: 99;
  780. font-size: 14px;
  781. white-space: nowrap;
  782. overflow: hidden;
  783. text-overflow: ellipsis;
  784. "
  785. />
  786. <input
  787. :placeholder="item1.name"
  788. v-if="item1.type == 6"
  789. style="
  790. border: none;
  791. outline: none;
  792. width: 80%;
  793. white-space: nowrap;
  794. overflow: hidden;
  795. text-overflow: ellipsis;
  796. "
  797. readonly="true"
  798. @click="selectAttText(itemTaskIndex, index1)"
  799. />
  800. <input
  801. :placeholder="item1.name"
  802. v-if="item1.type == 8"
  803. style="
  804. border: none;
  805. outline: none;
  806. width: 80%;
  807. white-space: nowrap;
  808. overflow: hidden;
  809. text-overflow: ellipsis;
  810. "
  811. readonly="true"
  812. @click="selectLine(itemTaskIndex, index1)"
  813. />
  814. <div
  815. class="chapter_upload_ud"
  816. style="z-index: 99"
  817. >
  818. <div
  819. class="chapter_upload_up"
  820. @click="
  821. upCd($event, unitIndex, index, index1)
  822. "
  823. ></div>
  824. <div
  825. class="chapter_upload_down"
  826. @click="
  827. downCd($event, unitIndex, index, index1)
  828. "
  829. ></div>
  830. </div>
  831. </div>
  832. </div>
  833. </div>
  834. </div>
  835. </div>
  836. <div class="add_info_box">
  837. <button class="info_btn" @click="addImg($event)">
  838. 添加教学视频
  839. <input
  840. type="file"
  841. accept="video/mp4, video/quicktime, video/x-msvideo"
  842. style="display: none"
  843. capture="camera"
  844. v-if="inputShow"
  845. @change="
  846. beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  847. "
  848. />
  849. </button>
  850. <button class="info_btn" @click="addImg($event)">
  851. 添加教学附件
  852. <input
  853. type="file"
  854. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  855. style="display: none"
  856. v-if="inputShow"
  857. @change="
  858. beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  859. "
  860. />
  861. </button>
  862. <button
  863. class="info_btn"
  864. @click="addAttText(itemTaskIndex)"
  865. >
  866. 添加图文
  867. </button>
  868. <button class="info_btn" @click="openLine(itemTaskIndex)">
  869. 添加链接
  870. </button>
  871. </div>
  872. </div>
  873. <div
  874. style="
  875. flex-direction: row;
  876. justify-content: flex-start;
  877. align-items: center;
  878. padding: 0 0 0 30px;
  879. paddint-top: 10px !important;
  880. "
  881. >
  882. <div
  883. style="
  884. display: flex;
  885. flex-direction: row;
  886. align-items: center;
  887. margin-bottom: 20px;
  888. "
  889. >
  890. <div class="lineTitle">练习内容</div>
  891. <div class="line" style="width: 90%"></div>
  892. </div>
  893. </div>
  894. <div class="toolChoose" style="padding: 0 0 0 30px">
  895. <div class="tools">
  896. <div
  897. class="leftTools"
  898. style="
  899. width: 95%;
  900. padding: 0 0 15px 0;
  901. border-bottom: 1px solid #efefef;
  902. margin-bottom: 15px;
  903. "
  904. v-for="(itemTool, toolIndex) in itemTask.toolChoose"
  905. :key="toolIndex"
  906. >
  907. <div>
  908. <textarea
  909. rows="3"
  910. type="text"
  911. placeholder="添加工具描述"
  912. class="binfo_input"
  913. style="margin: 0 0 20px 0; width: 71.5% !important"
  914. v-model="itemTool.toolDetail"
  915. ></textarea>
  916. </div>
  917. <div
  918. style="
  919. display: flex;
  920. flex-direction: row;
  921. align-items: baseline;
  922. flex-wrap: nowrap;
  923. justify-content: flex-start;
  924. position: relative;
  925. "
  926. >
  927. <div style="margin-right: 20px; font-weight: bold">
  928. 工具 {{ toolIndex + 1 }} :
  929. </div>
  930. <div class="chooseWho">
  931. <div
  932. :class="
  933. itemTool.toolType == 0 ? 'isChooseActive' : ''
  934. "
  935. @click="(itemTool.toolType = 0), $forceUpdate()"
  936. >
  937. 互动类
  938. </div>
  939. <div
  940. :class="
  941. itemTool.toolType == 1 ? 'isChooseActive' : ''
  942. "
  943. @click="(itemTool.toolType = 1), $forceUpdate()"
  944. >
  945. 思维类
  946. </div>
  947. <div
  948. :class="
  949. itemTool.toolType == 2 ? 'isChooseActive' : ''
  950. "
  951. @click="(itemTool.toolType = 2), $forceUpdate()"
  952. >
  953. 评价类
  954. </div>
  955. <div
  956. :class="
  957. itemTool.toolType == 3 ? 'isChooseActive' : ''
  958. "
  959. @click="(itemTool.toolType = 3), $forceUpdate()"
  960. >
  961. 编程类
  962. </div>
  963. <div
  964. :class="
  965. itemTool.toolType == 5 ? 'isChooseActive' : ''
  966. "
  967. @click="(itemTool.toolType = 5), $forceUpdate()"
  968. >
  969. 学科类
  970. </div>
  971. <div
  972. :class="
  973. itemTool.toolType == 4 ? 'isChooseActive' : ''
  974. "
  975. @click="(itemTool.toolType = 4), $forceUpdate()"
  976. >
  977. 其他
  978. </div>
  979. </div>
  980. <div
  981. class="remove"
  982. @click="deleteTool(itemTaskIndex, toolIndex)"
  983. v-if="itemTask.toolChoose.length > 1"
  984. style="position: absolute; right: 55px"
  985. ></div>
  986. </div>
  987. <div style="min-height: 163px">
  988. <div class="toolSort" v-if="itemTool.toolType == 0">
  989. <!-- <div class="tool">
  990. <div
  991. class="whiteBIcon"
  992. @click="addTools(8, itemTaskIndex, toolIndex)"
  993. >
  994. <img src="../../assets/icon/secondToolList/library.png" alt />
  995. <div style="margin: 5px 0">素材库</div>
  996. </div>
  997. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  998. <img
  999. src="../../assets/icon/checkNo.png"
  1000. alt
  1001. v-if="itemTool.tool.indexOf(8) == -1"
  1002. />
  1003. <img src="../../assets/icon/checkedIs.png" alt v-else />
  1004. </div>
  1005. </div>-->
  1006. <!-- <div class="tool">
  1007. <div
  1008. class="whiteBIcon"
  1009. @click="addTools(17, itemTaskIndex, toolIndex)"
  1010. >
  1011. <img
  1012. src="../../assets/icon/secondToolList/library.png"
  1013. alt
  1014. />
  1015. <div style="margin: 5px 0">学习资料</div>
  1016. </div>
  1017. <div
  1018. class="check"
  1019. @click="addTools(17, itemTaskIndex, toolIndex)"
  1020. >
  1021. <img
  1022. src="../../assets/icon/checkNo.png"
  1023. alt
  1024. v-if="itemTool.tool.indexOf(17) == -1"
  1025. />
  1026. <img
  1027. src="../../assets/icon/checkedIs.png"
  1028. alt
  1029. v-else
  1030. />
  1031. </div>
  1032. </div> -->
  1033. <div class="tool">
  1034. <div
  1035. class="whiteBIcon"
  1036. @click="addTools(10, itemTaskIndex, toolIndex)"
  1037. >
  1038. <img
  1039. src="../../assets/icon/thirdToolList/time.png"
  1040. alt
  1041. />
  1042. <div style="margin: 5px 0">倒计时</div>
  1043. </div>
  1044. <div
  1045. class="check"
  1046. @click="addTools(10, itemTaskIndex, toolIndex)"
  1047. >
  1048. <img
  1049. src="../../assets/icon/checkNo.png"
  1050. alt
  1051. v-if="itemTool.tool.indexOf(10) == -1"
  1052. />
  1053. <img
  1054. src="../../assets/icon/checkedIs.png"
  1055. alt
  1056. v-else
  1057. />
  1058. </div>
  1059. </div>
  1060. </div>
  1061. <div class="toolSort" v-if="itemTool.toolType == 1">
  1062. <div class="tool">
  1063. <div
  1064. class="whiteBIcon"
  1065. @click="addTools(7, itemTaskIndex, toolIndex)"
  1066. >
  1067. <img
  1068. src="../../assets/icon/secondToolList/mindNetwork.png"
  1069. alt
  1070. />
  1071. <div style="margin: 5px 0">思维网格</div>
  1072. </div>
  1073. <div
  1074. class="check"
  1075. @click="addTools(7, itemTaskIndex, toolIndex)"
  1076. >
  1077. <img
  1078. src="../../assets/icon/checkNo.png"
  1079. alt
  1080. v-if="itemTool.tool.indexOf(7) == -1"
  1081. />
  1082. <img
  1083. src="../../assets/icon/checkedIs.png"
  1084. alt
  1085. v-else
  1086. />
  1087. </div>
  1088. </div>
  1089. <div class="tool">
  1090. <div
  1091. class="whiteBIcon"
  1092. @click="addTools(1, itemTaskIndex, toolIndex)"
  1093. >
  1094. <img
  1095. src="../../assets/icon/secondToolList/whiteBoard.png"
  1096. alt
  1097. />
  1098. <div style="margin: 5px 0">电子白板</div>
  1099. </div>
  1100. <div
  1101. class="check"
  1102. @click="addTools(1, itemTaskIndex, toolIndex)"
  1103. >
  1104. <img
  1105. src="../../assets/icon/checkNo.png"
  1106. alt
  1107. v-if="itemTool.tool.indexOf(1) == -1"
  1108. />
  1109. <img
  1110. src="../../assets/icon/checkedIs.png"
  1111. alt
  1112. v-else
  1113. />
  1114. </div>
  1115. </div>
  1116. <div class="tool">
  1117. <div
  1118. class="whiteBIcon"
  1119. @click="addTools(2, itemTaskIndex, toolIndex)"
  1120. >
  1121. <img
  1122. src="../../assets/icon/secondToolList/note.png"
  1123. alt
  1124. />
  1125. <div style="margin: 5px 0">便签</div>
  1126. </div>
  1127. <div
  1128. class="check"
  1129. @click="addTools(2, itemTaskIndex, toolIndex)"
  1130. >
  1131. <img
  1132. src="../../assets/icon/checkNo.png"
  1133. alt
  1134. v-if="itemTool.tool.indexOf(2) == -1"
  1135. />
  1136. <img
  1137. src="../../assets/icon/checkedIs.png"
  1138. alt
  1139. v-else
  1140. />
  1141. </div>
  1142. </div>
  1143. <div class="tool">
  1144. <div
  1145. class="whiteBIcon"
  1146. @click="addTools(6, itemTaskIndex, toolIndex)"
  1147. >
  1148. <img
  1149. src="../../assets/icon/secondToolList/doc.png"
  1150. alt
  1151. />
  1152. <div style="margin: 5px 0">协同文档</div>
  1153. </div>
  1154. <div
  1155. class="check"
  1156. @click="addTools(6, itemTaskIndex, toolIndex)"
  1157. >
  1158. <img
  1159. src="../../assets/icon/checkNo.png"
  1160. alt
  1161. v-if="itemTool.tool.indexOf(6) == -1"
  1162. />
  1163. <img
  1164. src="../../assets/icon/checkedIs.png"
  1165. alt
  1166. v-else
  1167. />
  1168. </div>
  1169. </div>
  1170. <div class="tool">
  1171. <div
  1172. class="whiteBIcon"
  1173. @click="addTools(3, itemTaskIndex, toolIndex)"
  1174. >
  1175. <img
  1176. src="../../assets/icon/secondToolList/mindMapping.png"
  1177. alt
  1178. />
  1179. <div style="margin: 5px 0">思维导图</div>
  1180. </div>
  1181. <div
  1182. class="check"
  1183. @click="addTools(3, itemTaskIndex, toolIndex)"
  1184. >
  1185. <img
  1186. src="../../assets/icon/checkNo.png"
  1187. alt
  1188. v-if="itemTool.tool.indexOf(3) == -1"
  1189. />
  1190. <img
  1191. src="../../assets/icon/checkedIs.png"
  1192. alt
  1193. v-else
  1194. />
  1195. </div>
  1196. </div>
  1197. </div>
  1198. <div class="toolSort" v-if="itemTool.toolType == 2">
  1199. <!-- <div class="tool">
  1200. <div
  1201. class="whiteBIcon"
  1202. @click="addTools(5, itemTaskIndex, toolIndex)"
  1203. >
  1204. <img
  1205. src="../../assets/icon/thirdToolList/score.png"
  1206. alt
  1207. />
  1208. <div style="margin: 5px 0">量规评分</div>
  1209. </div>
  1210. <div
  1211. class="check"
  1212. @click="addTools(5, itemTaskIndex, toolIndex)"
  1213. >
  1214. <img
  1215. src="../../assets/icon/checkNo.png"
  1216. alt
  1217. v-if="itemTool.tool.indexOf(5) == -1"
  1218. />
  1219. <img
  1220. src="../../assets/icon/checkedIs.png"
  1221. alt
  1222. v-else
  1223. />
  1224. </div>
  1225. </div>-->
  1226. <div class="tool">
  1227. <div
  1228. class="whiteBIcon"
  1229. @click="openTools(itemTaskIndex, 4, toolIndex)"
  1230. >
  1231. <img
  1232. src="../../assets/icon/thirdToolList/ask.png"
  1233. alt
  1234. />
  1235. <div style="margin: 5px 0">问卷调查</div>
  1236. </div>
  1237. <div
  1238. class="check"
  1239. @click="addTools(4, itemTaskIndex, toolIndex)"
  1240. >
  1241. <img
  1242. src="../../assets/icon/checkNo.png"
  1243. alt
  1244. v-if="itemTool.tool.indexOf(4) == -1"
  1245. />
  1246. <img
  1247. src="../../assets/icon/checkedIs.png"
  1248. alt
  1249. v-else
  1250. />
  1251. </div>
  1252. </div>
  1253. <div class="tool">
  1254. <div
  1255. class="whiteBIcon"
  1256. @click="openTools(itemTaskIndex, 15, toolIndex)"
  1257. >
  1258. <img
  1259. src="../../assets/icon/thirdToolList/answer.png"
  1260. alt
  1261. />
  1262. <div style="margin: 5px 0">问答工具</div>
  1263. </div>
  1264. <div
  1265. class="check"
  1266. @click="addTools(15, itemTaskIndex, toolIndex)"
  1267. >
  1268. <img
  1269. src="../../assets/icon/checkNo.png"
  1270. alt
  1271. v-if="itemTool.tool.indexOf(15) == -1"
  1272. />
  1273. <img
  1274. src="../../assets/icon/checkedIs.png"
  1275. alt
  1276. v-else
  1277. />
  1278. </div>
  1279. </div>
  1280. <div class="tool">
  1281. <div
  1282. class="whiteBIcon"
  1283. @click="addTools(16, itemTaskIndex, toolIndex)"
  1284. >
  1285. <img
  1286. src="../../assets/icon/thirdToolList/work.png"
  1287. alt
  1288. />
  1289. <div style="margin: 5px 0">作业提交</div>
  1290. </div>
  1291. <div
  1292. class="check"
  1293. @click="addTools(16, itemTaskIndex, toolIndex)"
  1294. >
  1295. <img
  1296. src="../../assets/icon/checkNo.png"
  1297. alt
  1298. v-if="itemTool.tool.indexOf(16) == -1"
  1299. />
  1300. <img
  1301. src="../../assets/icon/checkedIs.png"
  1302. alt
  1303. v-else
  1304. />
  1305. </div>
  1306. </div>
  1307. </div>
  1308. <div class="toolSort" v-if="itemTool.toolType == 3">
  1309. <div class="tool">
  1310. <div
  1311. class="whiteBIcon"
  1312. @click="addTools(18, itemTaskIndex, toolIndex)"
  1313. >
  1314. <img
  1315. src="../../assets/icon/thirdToolList/trainPlatform.png"
  1316. alt
  1317. />
  1318. <div style="margin: 5px 0">训练平台</div>
  1319. </div>
  1320. <div
  1321. class="check"
  1322. @click="addTools(18, itemTaskIndex, toolIndex)"
  1323. >
  1324. <img
  1325. src="../../assets/icon/checkNo.png"
  1326. alt
  1327. v-if="itemTool.tool.indexOf(18) == -1"
  1328. />
  1329. <img
  1330. src="../../assets/icon/checkedIs.png"
  1331. alt
  1332. v-else
  1333. />
  1334. </div>
  1335. </div>
  1336. <div class="tool">
  1337. <div
  1338. class="whiteBIcon"
  1339. @click="addTools(21, itemTaskIndex, toolIndex)"
  1340. >
  1341. <img
  1342. src="../../assets/icon/fourthToolList/program.png"
  1343. alt
  1344. />
  1345. <div style="margin: 5px 0">编程平台</div>
  1346. </div>
  1347. <div
  1348. class="check"
  1349. @click="addTools(21, itemTaskIndex, toolIndex)"
  1350. >
  1351. <img
  1352. src="../../assets/icon/checkNo.png"
  1353. alt
  1354. v-if="itemTool.tool.indexOf(21) == -1"
  1355. />
  1356. <img
  1357. src="../../assets/icon/checkedIs.png"
  1358. alt
  1359. v-else
  1360. />
  1361. </div>
  1362. </div>
  1363. <div class="tool">
  1364. <div
  1365. class="whiteBIcon"
  1366. @click="addTools(22, itemTaskIndex, toolIndex)"
  1367. >
  1368. <img
  1369. src="../../assets/icon/fourthToolList/AIprogram2.png"
  1370. alt
  1371. />
  1372. <div style="margin: 5px 0">AI体验</div>
  1373. </div>
  1374. <div
  1375. class="check"
  1376. @click="addTools(22, itemTaskIndex, toolIndex)"
  1377. >
  1378. <img
  1379. src="../../assets/icon/checkNo.png"
  1380. alt
  1381. v-if="itemTool.tool.indexOf(22) == -1"
  1382. />
  1383. <img
  1384. src="../../assets/icon/checkedIs.png"
  1385. alt
  1386. v-else
  1387. />
  1388. </div>
  1389. </div>
  1390. <div class="tool">
  1391. <div
  1392. class="whiteBIcon"
  1393. @click="addTools(23, itemTaskIndex, toolIndex)"
  1394. >
  1395. <img
  1396. src="../../assets/icon/fourthToolList/Pythonprogram.png"
  1397. alt
  1398. />
  1399. <div style="margin: 5px 0">Python</div>
  1400. </div>
  1401. <div
  1402. class="check"
  1403. @click="addTools(23, itemTaskIndex, toolIndex)"
  1404. >
  1405. <img
  1406. src="../../assets/icon/checkNo.png"
  1407. alt
  1408. v-if="itemTool.tool.indexOf(23) == -1"
  1409. />
  1410. <img
  1411. src="../../assets/icon/checkedIs.png"
  1412. alt
  1413. v-else
  1414. />
  1415. </div>
  1416. </div>
  1417. <div class="tool">
  1418. <div
  1419. class="whiteBIcon"
  1420. @click="addTools(24, itemTaskIndex, toolIndex)"
  1421. >
  1422. <img
  1423. src="../../assets/icon/fourthToolList/program.png"
  1424. alt
  1425. />
  1426. <div style="margin: 5px 0">AI平台</div>
  1427. </div>
  1428. <div
  1429. class="check"
  1430. @click="addTools(24, itemTaskIndex, toolIndex)"
  1431. >
  1432. <img
  1433. src="../../assets/icon/checkNo.png"
  1434. alt
  1435. v-if="itemTool.tool.indexOf(24) == -1"
  1436. />
  1437. <img
  1438. src="../../assets/icon/checkedIs.png"
  1439. alt
  1440. v-else
  1441. />
  1442. </div>
  1443. </div>
  1444. <div class="tool">
  1445. <div
  1446. class="whiteBIcon"
  1447. @click="addTools(32, itemTaskIndex, toolIndex)"
  1448. >
  1449. <img
  1450. src="../../assets/icon/thirdToolList/code.png"
  1451. alt
  1452. />
  1453. <div style="margin: 5px 0">源码编辑</div>
  1454. </div>
  1455. <div
  1456. class="check"
  1457. @click="addTools(32, itemTaskIndex, toolIndex)"
  1458. >
  1459. <img
  1460. src="../../assets/icon/checkNo.png"
  1461. alt
  1462. v-if="itemTool.tool.indexOf(32) == -1"
  1463. />
  1464. <img
  1465. src="../../assets/icon/checkedIs.png"
  1466. alt
  1467. v-else
  1468. />
  1469. </div>
  1470. </div>
  1471. </div>
  1472. <div class="toolSort" v-if="itemTool.toolType == 5">
  1473. <div class="tool">
  1474. <div
  1475. class="whiteBIcon"
  1476. @click="addTools(28, itemTaskIndex, toolIndex)"
  1477. >
  1478. <img
  1479. src="../../assets/icon/secondToolList/translation.png"
  1480. alt
  1481. />
  1482. <div style="margin: 5px 0">翻译</div>
  1483. </div>
  1484. <div
  1485. class="check"
  1486. @click="addTools(28, itemTaskIndex, toolIndex)"
  1487. >
  1488. <img
  1489. src="../../assets/icon/checkNo.png"
  1490. alt
  1491. v-if="itemTool.tool.indexOf(28) == -1"
  1492. />
  1493. <img
  1494. src="../../assets/icon/checkedIs.png"
  1495. alt
  1496. v-else
  1497. />
  1498. </div>
  1499. </div>
  1500. <div class="tool">
  1501. <div
  1502. class="whiteBIcon"
  1503. @click="addTools(37, itemTaskIndex, toolIndex)"
  1504. >
  1505. <img
  1506. src="../../assets/icon/secondToolList/mohe.png"
  1507. alt
  1508. />
  1509. <div style="margin: 5px 0">魔盒识字</div>
  1510. </div>
  1511. <div
  1512. class="check"
  1513. @click="addTools(37, itemTaskIndex, toolIndex)"
  1514. >
  1515. <img
  1516. src="../../assets/icon/checkNo.png"
  1517. alt
  1518. v-if="itemTool.tool.indexOf(37) == -1"
  1519. />
  1520. <img
  1521. src="../../assets/icon/checkedIs.png"
  1522. alt
  1523. v-else
  1524. />
  1525. </div>
  1526. </div>
  1527. <div class="tool">
  1528. <div
  1529. class="whiteBIcon"
  1530. @click="addTools(38, itemTaskIndex, toolIndex)"
  1531. >
  1532. <img
  1533. src="../../assets/icon/secondToolList/24game.png"
  1534. alt
  1535. />
  1536. <div style="margin: 5px 0">24点</div>
  1537. </div>
  1538. <div
  1539. class="check"
  1540. @click="addTools(38, itemTaskIndex, toolIndex)"
  1541. >
  1542. <img
  1543. src="../../assets/icon/checkNo.png"
  1544. alt
  1545. v-if="itemTool.tool.indexOf(38) == -1"
  1546. />
  1547. <img
  1548. src="../../assets/icon/checkedIs.png"
  1549. alt
  1550. v-else
  1551. />
  1552. </div>
  1553. </div>
  1554. <div class="tool">
  1555. <div
  1556. class="whiteBIcon"
  1557. @click="addTools(31, itemTaskIndex, toolIndex)"
  1558. >
  1559. <img
  1560. src="../../assets/icon/secondToolList/networkPanel.png"
  1561. alt
  1562. />
  1563. <div style="margin: 5px 0">数学画板</div>
  1564. </div>
  1565. <div
  1566. class="check"
  1567. @click="addTools(31, itemTaskIndex, toolIndex)"
  1568. >
  1569. <img
  1570. src="../../assets/icon/checkNo.png"
  1571. alt
  1572. v-if="itemTool.tool.indexOf(31) == -1"
  1573. />
  1574. <img
  1575. src="../../assets/icon/checkedIs.png"
  1576. alt
  1577. v-else
  1578. />
  1579. </div>
  1580. </div>
  1581. <div class="tool">
  1582. <div
  1583. class="whiteBIcon"
  1584. @click="addTools(39, itemTaskIndex, toolIndex)"
  1585. >
  1586. <img
  1587. src="../../assets/icon/secondToolList/GeoGebra.png"
  1588. alt
  1589. />
  1590. <div style="margin: 5px 0">GeoGebra</div>
  1591. </div>
  1592. <div
  1593. class="check"
  1594. @click="addTools(39, itemTaskIndex, toolIndex)"
  1595. >
  1596. <img
  1597. src="../../assets/icon/checkNo.png"
  1598. alt
  1599. v-if="itemTool.tool.indexOf(39) == -1"
  1600. />
  1601. <img
  1602. src="../../assets/icon/checkedIs.png"
  1603. alt
  1604. v-else
  1605. />
  1606. </div>
  1607. </div>
  1608. </div>
  1609. <div class="toolSort" v-if="itemTool.toolType == 4">
  1610. <div class="tool">
  1611. <div
  1612. class="whiteBIcon"
  1613. @click="addTools(26, itemTaskIndex, toolIndex)"
  1614. >
  1615. <img
  1616. src="../../assets/icon/thirdToolList/courseDesign.png"
  1617. alt
  1618. />
  1619. <div style="margin: 5px 0">课程设计</div>
  1620. </div>
  1621. <div
  1622. class="check"
  1623. @click="addTools(26, itemTaskIndex, toolIndex)"
  1624. >
  1625. <img
  1626. src="../../assets/icon/checkNo.png"
  1627. alt
  1628. v-if="itemTool.tool.indexOf(26) == -1"
  1629. />
  1630. <img
  1631. src="../../assets/icon/checkedIs.png"
  1632. alt
  1633. v-else
  1634. />
  1635. </div>
  1636. </div>
  1637. <div class="tool">
  1638. <div
  1639. class="whiteBIcon"
  1640. @click="addTools(25, itemTaskIndex, toolIndex)"
  1641. >
  1642. <img
  1643. src="../../assets/icon/thirdToolList/evalua.png"
  1644. alt
  1645. />
  1646. <div style="margin: 5px 0">目标管理</div>
  1647. </div>
  1648. <div
  1649. class="check"
  1650. @click="addTools(25, itemTaskIndex, toolIndex)"
  1651. >
  1652. <img
  1653. src="../../assets/icon/checkNo.png"
  1654. alt
  1655. v-if="itemTool.tool.indexOf(25) == -1"
  1656. />
  1657. <img
  1658. src="../../assets/icon/checkedIs.png"
  1659. alt
  1660. v-else
  1661. />
  1662. </div>
  1663. </div>
  1664. </div>
  1665. </div>
  1666. </div>
  1667. <div
  1668. class="addToolFun"
  1669. @click="addToolFun(itemTaskIndex)"
  1670. >
  1671. <div class="addToolImg">
  1672. <img src="../../assets/icon/add.png" alt />
  1673. </div>
  1674. <div>添加工具</div>
  1675. </div>
  1676. </div>
  1677. </div>
  1678. <div class="elist_css">
  1679. <div class="elist_title">
  1680. <div
  1681. style="
  1682. display: flex;
  1683. flex-direction: row;
  1684. align-items: center;
  1685. margin-bottom: 20px;
  1686. "
  1687. >
  1688. <div class="lineTitle">评价设置</div>
  1689. <div class="line" style="width: 90%"></div>
  1690. </div>
  1691. </div>
  1692. <div class="mbCss">
  1693. <div class="pjCss">
  1694. <div
  1695. v-if="itemTask.eList && itemTask.eList.length"
  1696. class="elist_input"
  1697. >
  1698. <div
  1699. v-for="(eItem, eIndex) in itemTask.eList"
  1700. :key="eIndex"
  1701. class="elist_input_box"
  1702. >
  1703. <span>评价名称:</span>
  1704. <input
  1705. type="input"
  1706. v-model="itemTask.eList[eIndex].value"
  1707. placeholder="填写评价名称"
  1708. />
  1709. <span>评星等级:</span>
  1710. <el-rate
  1711. v-model="itemTask.eList[eIndex].score"
  1712. @change="setEListStar()"
  1713. disabled
  1714. ></el-rate>
  1715. <div
  1716. class="remove"
  1717. @click="
  1718. deletEList(unitIndex, itemTaskIndex, eIndex)
  1719. "
  1720. ></div>
  1721. <div class="elist_inptu_text">
  1722. <span>评价描述:</span>
  1723. <input
  1724. type="input"
  1725. v-model="itemTask.eList[eIndex].detail"
  1726. placeholder="填写评价描述"
  1727. />
  1728. </div>
  1729. </div>
  1730. </div>
  1731. <div
  1732. class="addToolFun"
  1733. @click="addEList(unitIndex, itemTaskIndex)"
  1734. style="margin: 35px 35px 0 0"
  1735. >
  1736. <div class="addToolImg">
  1737. <img src="../../assets/icon/add.png" alt />
  1738. </div>
  1739. <div>添加</div>
  1740. </div>
  1741. </div>
  1742. <div
  1743. v-if="evalua"
  1744. style="
  1745. border: 1px solid #e5e5e5;
  1746. width: 55%;
  1747. margin-top: 20px;
  1748. box-shadow: 3px 1px 15px 3px #e0e0e0;
  1749. "
  1750. class="evaCss"
  1751. >
  1752. <div class="e_add_top">
  1753. <div class="e_add_title">
  1754. <span>当前使用目标管理</span>
  1755. <span>{{ eTitle }}</span>
  1756. <img
  1757. src="../../assets/line.png"
  1758. class="cru_line"
  1759. style="
  1760. width: 125px;
  1761. height: 20px;
  1762. bottom: -10px;
  1763. left: 155px;
  1764. "
  1765. />
  1766. <!-- <el-input
  1767. v-model="eTitle"
  1768. placeholder="请输入名称"
  1769. @change="setMindData"
  1770. ></el-input>-->
  1771. </div>
  1772. </div>
  1773. <div class="e_add_content" style="width: 100%">
  1774. <div class="e_add_list_pbox" style="width: 100%">
  1775. <div class="e_add_list_pbox_title">
  1776. <span class="type_title">切换模式</span>
  1777. <div class="type_content">
  1778. <span
  1779. :class="{ active: typeMode == 1 }"
  1780. @click="OtherMb(1)"
  1781. >目标树</span
  1782. >
  1783. <span
  1784. :class="{ active: typeMode == 2 }"
  1785. @click="OtherMb(2)"
  1786. >目标罗盘</span
  1787. >
  1788. <span
  1789. :class="{ active: typeMode == 3 }"
  1790. @click="OtherMb(3)"
  1791. >目标看板</span
  1792. >
  1793. </div>
  1794. </div>
  1795. <div class="e_add_list_pbox_content">
  1796. <Mind
  1797. :showBar="false"
  1798. :mindData="data"
  1799. style="width: 100%"
  1800. :jsmindId="
  1801. unitIndex + '-' + itemTaskIndex + 'mind'
  1802. "
  1803. v-if="typeMode == 1"
  1804. ></Mind>
  1805. <Sunburst
  1806. :Josn="eJson"
  1807. :num="eJSONNum"
  1808. style="width: 100%"
  1809. v-if="typeMode == 2"
  1810. ></Sunburst>
  1811. <SeeBoard
  1812. :Josn="eJson"
  1813. :num="eJSONNum"
  1814. :ename="eTitle"
  1815. style="width: 100%"
  1816. v-if="typeMode == 3"
  1817. ></SeeBoard>
  1818. </div>
  1819. </div>
  1820. </div>
  1821. </div>
  1822. </div>
  1823. </div>
  1824. <div class="funBlock" style="padding: 0">
  1825. <div class="fold">
  1826. <div @click="fold(itemTaskIndex, $event, 1)">折叠</div>
  1827. <div class="arrow">
  1828. <img src="../../assets/icon/fold.png" alt />
  1829. </div>
  1830. </div>
  1831. <div class="fold">
  1832. <div @click="fold(itemTaskIndex, $event, 0)">展开</div>
  1833. <div class="arrow">
  1834. <img src="../../assets/icon/expand.png" alt />
  1835. </div>
  1836. </div>
  1837. </div>
  1838. </div>
  1839. <div class="addTaskBorder" @click="addTaskBorder">
  1840. <div>
  1841. <img src="../../assets/icon/addHw.png" alt />
  1842. <span>添加任务</span>
  1843. </div>
  1844. </div>
  1845. </div>
  1846. </div>
  1847. </div>
  1848. <div
  1849. style="
  1850. width: calc(100% - 20px);
  1851. background: rgb(255, 255, 255);
  1852. border-radius: 10px;
  1853. "
  1854. v-if="this.steps == 4"
  1855. >
  1856. <div class="basic_box_success">
  1857. <div class="right_img">
  1858. <img src="../../assets/icon/right.png" alt />
  1859. </div>
  1860. <div style="font-weight: bold">成功</div>
  1861. <!-- <div>您的课程编号</div>
  1862. <div class="number">{{ number }}</div>-->
  1863. <!-- <div class="success_button">
  1864. <div class="look_course" @click="isNoFinsh">
  1865. 邀请老师协同编辑
  1866. </div>
  1867. <div class="attend_others" @click="goCourse">预览课程</div>
  1868. </div> -->
  1869. </div>
  1870. </div>
  1871. <div class="info_btnBox">
  1872. <button
  1873. class="info_btn"
  1874. v-if="steps == 1"
  1875. @click="goTo('/course?userid=' + userid + '&oid=' + oid)"
  1876. >
  1877. 返回课程
  1878. </button>
  1879. <button
  1880. class="info_btn"
  1881. v-if="steps > 1 && steps != 5"
  1882. @click="lastSteps"
  1883. >
  1884. {{ steps == 4 ? "返回首页" : "上一步" }}
  1885. </button>
  1886. <button class="info_btn" v-if="steps < 5" @click="nextSteps">
  1887. {{ steps == 3 ? "确认上传" : "下一步" }}
  1888. </button>
  1889. </div>
  1890. </div>
  1891. </div>
  1892. </div>
  1893. <el-dialog
  1894. title="提示"
  1895. :visible.sync="dialogVisible"
  1896. :append-to-body="true"
  1897. width="25%"
  1898. :before-close="handleClose"
  1899. class="dialog_diy2 customWidth"
  1900. >
  1901. <div>请复制该链接邀请协同编辑</div>
  1902. <div>http://www.boomyon.com/index-zhang.com</div>
  1903. <span slot="footer" class="dialog-footer">
  1904. <el-button type="primary">复制链接分享</el-button>
  1905. <el-button @click="dialogVisible = false">取消</el-button>
  1906. </span>
  1907. </el-dialog>
  1908. <el-dialog
  1909. :title="updateBoolean2 ? '查看文档' : '添加文档'"
  1910. :visible.sync="dialogVisible1"
  1911. :append-to-body="true"
  1912. width="25%"
  1913. :before-close="handleClose"
  1914. class="dialog_diy2 customWidth"
  1915. >
  1916. <el-form>
  1917. <el-form-item label="文档标题">
  1918. <el-input
  1919. v-model="tTitle"
  1920. auto-complete="off"
  1921. placeholder="请输入文档标题名..."
  1922. ></el-input>
  1923. </el-form-item>
  1924. <div>文档简介</div>
  1925. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  1926. </el-form>
  1927. <span slot="footer" class="dialog-footer">
  1928. <el-button @click="dialogVisible1 = false">取 消</el-button>
  1929. <el-button type="primary" @click="addWord" v-if="!updateBoolean2"
  1930. >添加</el-button
  1931. >
  1932. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  1933. </span>
  1934. </el-dialog>
  1935. <el-dialog
  1936. title="添加文档"
  1937. :visible.sync="dialogVisible2"
  1938. :append-to-body="true"
  1939. width="500px"
  1940. :before-close="handleClose"
  1941. class="dialog_diy"
  1942. >
  1943. <el-form>
  1944. <el-form-item label="文档标题">
  1945. <el-input
  1946. v-model="templateC.title"
  1947. auto-complete="off"
  1948. placeholder="请输入文档标题名..."
  1949. ></el-input>
  1950. </el-form-item>
  1951. <div>文档内容</div>
  1952. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  1953. </el-form>
  1954. <span slot="footer" class="dialog-footer">
  1955. <el-button @click="clearChoose">取 消</el-button>
  1956. <el-button type="primary" @click="wordNext()">确定</el-button>
  1957. </span>
  1958. </el-dialog>
  1959. <el-dialog
  1960. title="添加富文本"
  1961. :visible.sync="dialogVisible6"
  1962. :append-to-body="true"
  1963. width="500px"
  1964. :before-close="handleClose"
  1965. class="dialog_diy"
  1966. >
  1967. <el-form>
  1968. <el-form-item label="文本标题">
  1969. <el-input
  1970. v-model="AttText.title"
  1971. auto-complete="off"
  1972. @input="change2"
  1973. placeholder="请输入文本标题..."
  1974. ></el-input>
  1975. </el-form-item>
  1976. <div>富文本内容</div>
  1977. <editor-bar v-model="AttText.text" @change="change"></editor-bar>
  1978. </el-form>
  1979. <span slot="footer" class="dialog-footer">
  1980. <el-button @click="clearAttText">取 消</el-button>
  1981. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  1982. </span>
  1983. </el-dialog>
  1984. <el-dialog
  1985. title="添加链接"
  1986. :visible.sync="dialogVisible7"
  1987. :append-to-body="true"
  1988. width="500px"
  1989. :before-close="handleClose"
  1990. class="dialog_diy lineCss"
  1991. >
  1992. <el-form>
  1993. <el-form-item label="链接" :label-width="formLabelWidth">
  1994. <span>
  1995. <el-input
  1996. placeholder="请输入链接"
  1997. clearable
  1998. v-model="line"
  1999. class="add_input"
  2000. ></el-input>
  2001. </span>
  2002. </el-form-item>
  2003. </el-form>
  2004. <span slot="footer" class="dialog-footer">
  2005. <el-button @click="clearLine">取 消</el-button>
  2006. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  2007. </span>
  2008. </el-dialog>
  2009. <el-dialog
  2010. title="添加课程成员"
  2011. :visible.sync="dialogVisible3"
  2012. :append-to-body="true"
  2013. width="25%"
  2014. height="80%"
  2015. :before-close="handleClose"
  2016. class="addNewPP customWidth"
  2017. >
  2018. <div class="people">
  2019. <div class="people_top">
  2020. <div class="people_nav">选择成员</div>
  2021. <div class="people_top_right">
  2022. <div class="people_search">
  2023. <el-input
  2024. placeholder="搜索成员"
  2025. v-model="searchPeople"
  2026. ></el-input>
  2027. <div class="search_img" @click="searchStudent">
  2028. <img src="../../assets/icon/search.png" alt />
  2029. </div>
  2030. </div>
  2031. </div>
  2032. </div>
  2033. <el-checkbox-group v-model="checkboxList" class="people_name">
  2034. <el-checkbox
  2035. v-for="item in studentJuri"
  2036. :key="item.userid"
  2037. :label="item.userid"
  2038. >{{ item.name ? item.name : "暂无学生可选" }}</el-checkbox
  2039. >
  2040. </el-checkbox-group>
  2041. </div>
  2042. <span slot="footer" class="dialog-footer">
  2043. <el-button @click="dialogVisible3 = false">取 消</el-button>
  2044. <el-button type="primary" @click="isAddPP">确定</el-button>
  2045. </span>
  2046. </el-dialog>
  2047. <el-dialog
  2048. title="添加权限"
  2049. :visible.sync="dialogVisibleClass"
  2050. :append-to-body="true"
  2051. width="400px"
  2052. height="80%"
  2053. :before-close="handleClose"
  2054. class="addNewPP"
  2055. >
  2056. <div class="people" style="height: 300px">
  2057. <div class="people_top">
  2058. <div class="people_nav">选择班级</div>
  2059. </div>
  2060. <el-checkbox-group v-model="checkboxList2" class="people_name">
  2061. <div v-for="(item, index) in grade" :key="item.id">
  2062. <el-checkbox :label="item.id">
  2063. {{ item.name ? item.name : "暂无班级可选" }}
  2064. </el-checkbox>
  2065. <div>
  2066. <span>{{ index }}</span>
  2067. </div>
  2068. </div>
  2069. </el-checkbox-group>
  2070. </div>
  2071. <span slot="footer" class="dialog-footer">
  2072. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  2073. <el-button type="primary" @click="isAddClass">确定</el-button>
  2074. </span>
  2075. </el-dialog>
  2076. <el-dialog
  2077. title="添加协同成员"
  2078. :visible.sync="dialogVisibleMember"
  2079. :append-to-body="true"
  2080. width="25%"
  2081. height="80%"
  2082. :before-close="handleClose"
  2083. class="addNewPP customWidth"
  2084. >
  2085. <div class="people">
  2086. <div class="people_top">
  2087. <div class="people_nav">选择成员</div>
  2088. <div class="people_top_right">
  2089. <div class="people_search">
  2090. <el-input
  2091. placeholder="搜索成员"
  2092. v-model="searchTN"
  2093. @keyup.enter.native="getTeacher"
  2094. ></el-input>
  2095. <div class="search_img" @click="getTeacher">
  2096. <img src="../../assets/icon/search.png" alt />
  2097. </div>
  2098. </div>
  2099. </div>
  2100. </div>
  2101. <el-checkbox-group
  2102. v-model="checkboxList3"
  2103. class="people_name"
  2104. v-if="teacherJuri.length"
  2105. >
  2106. <el-checkbox
  2107. v-for="item in teacherJuri"
  2108. :key="item.userid"
  2109. :label="item.userid"
  2110. >
  2111. {{ (item.name ? item.name : "暂无姓名") + " " + item.username }}
  2112. </el-checkbox>
  2113. </el-checkbox-group>
  2114. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  2115. </div>
  2116. <span slot="footer" class="dialog-footer">
  2117. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  2118. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  2119. </span>
  2120. </el-dialog>
  2121. <el-dialog
  2122. title="创建问卷调查"
  2123. :visible.sync="dialogVisible5"
  2124. :append-to-body="true"
  2125. width="800px"
  2126. :before-close="handleClose"
  2127. class="dialog_diy"
  2128. >
  2129. <div>
  2130. <div
  2131. class="a_add_title"
  2132. style="
  2133. display: flex;
  2134. flex-direction: row;
  2135. align-items: center;
  2136. justify-content: center;
  2137. "
  2138. >
  2139. <div style="margin-right: 20px; font-size: 20px">问卷标题:</div>
  2140. <el-input
  2141. v-model="askJson.askTitle"
  2142. placeholder="请输入问卷标题"
  2143. style="width: 400px"
  2144. ></el-input>
  2145. </div>
  2146. <div class="a_addBox">
  2147. <div style="font-size: 16px; color: #c7c7c7">请输入问卷内容</div>
  2148. <div
  2149. class="a_add_box"
  2150. v-for="(item1, index1) in askJson.askCount"
  2151. :key="index1"
  2152. >
  2153. <div class="a_add_head">
  2154. <div>
  2155. {{ index1 + 1 + "、" }}
  2156. <el-input
  2157. class="a_add_head_input"
  2158. v-model="askJson.askJson[index1].askstitle"
  2159. placeholder="请输入问卷题目..."
  2160. ></el-input>
  2161. </div>
  2162. <div class="a_add_head_div">
  2163. <el-button type="primary" size="small" @click="addAskList()"
  2164. >添加</el-button
  2165. >
  2166. <el-button
  2167. type="primary"
  2168. size="small"
  2169. @click="deleteAskList()"
  2170. v-if="index1 != 0"
  2171. >删除</el-button
  2172. >
  2173. </div>
  2174. </div>
  2175. <div class="a_add_body">
  2176. <div class="a_add_input">
  2177. <el-input
  2178. v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"
  2179. :key="checkIndex"
  2180. v-model="askJson.askJson[index1].checkList[checkIndex]"
  2181. placeholder="请输入选项..."
  2182. style="width: 150px; margin: 10px 10px 0 0"
  2183. ></el-input>
  2184. </div>
  2185. <div class="a_add_body_div">
  2186. <el-button
  2187. style="margin: 10px 0px 0 0"
  2188. type="primary"
  2189. size="small"
  2190. @click="addcheckList(askJson.askJson[index1])"
  2191. >添加</el-button
  2192. >
  2193. <el-button
  2194. type="primary"
  2195. size="small"
  2196. style="margin: 10px 0 0 0"
  2197. @click="deletecheckList(askJson.askJson[index1])"
  2198. v-if="askJson.askJson[index1].askItem != 1"
  2199. >删除</el-button
  2200. >
  2201. </div>
  2202. </div>
  2203. </div>
  2204. </div>
  2205. </div>
  2206. <span slot="footer" class="dialog-footer">
  2207. <el-button @click="dialogVisible5 = false">取 消</el-button>
  2208. <el-button type="primary" @click="addAsk">确 定</el-button>
  2209. </span>
  2210. </el-dialog>
  2211. <el-dialog
  2212. title="添加工具"
  2213. :visible.sync="dialogVisible4"
  2214. :append-to-body="true"
  2215. width="600px"
  2216. :before-close="handleClose"
  2217. class="dialog_diy addToolsDia"
  2218. >
  2219. <div class="toolChoose" style="padding: 0 0 0 30px">
  2220. <div class="tools">
  2221. <div
  2222. class="leftTools"
  2223. style="
  2224. width: 95%;
  2225. padding: 0 0 15px 0;
  2226. border-bottom: 1px solid #efefef;
  2227. margin-bottom: 15px;
  2228. "
  2229. v-for="(itemTools, itemToolsIndex) in chapTools"
  2230. :key="itemToolsIndex"
  2231. >
  2232. <div
  2233. style="
  2234. display: flex;
  2235. flex-direction: row;
  2236. align-items: baseline;
  2237. flex-wrap: nowrap;
  2238. justify-content: flex-start;
  2239. position: relative;
  2240. "
  2241. >
  2242. <div class="chooseWho">
  2243. <div
  2244. :class="chapToolsType == 0 ? 'isChooseActive' : ''"
  2245. @click="chapToolsType = 0"
  2246. >
  2247. 互动类
  2248. </div>
  2249. <div
  2250. :class="chapToolsType == 1 ? 'isChooseActive' : ''"
  2251. @click="chapToolsType = 1"
  2252. >
  2253. 思维类
  2254. </div>
  2255. <div
  2256. :class="chapToolsType == 2 ? 'isChooseActive' : ''"
  2257. @click="chapToolsType = 2"
  2258. >
  2259. 评价类
  2260. </div>
  2261. <div
  2262. :class="chapToolsType == 2 ? 'isChooseActive' : ''"
  2263. @click="chapToolsType = 2"
  2264. >
  2265. 其他
  2266. </div>
  2267. </div>
  2268. </div>
  2269. <div style="min-height: 163px">
  2270. <div class="toolSort" v-if="chapToolsType == 0">
  2271. <div class="tool">
  2272. <div class="whiteBIcon" @click="chapAddTools(8)">
  2273. <img
  2274. src="../../assets/icon/secondToolList/library.png"
  2275. alt
  2276. />
  2277. <div style="margin: 5px 0">素材库</div>
  2278. </div>
  2279. <div class="check" @click="chapAddTools(8)">
  2280. <img
  2281. src="../../assets/icon/checkNo.png"
  2282. alt
  2283. v-if="itemTools.tools.indexOf(8) == -1"
  2284. />
  2285. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2286. </div>
  2287. </div>
  2288. </div>
  2289. <div class="toolSort" v-if="chapToolsType == 1">
  2290. <div class="tool">
  2291. <div class="whiteBIcon" @click="chapAddTools(7)">
  2292. <img
  2293. src="../../assets/icon/secondToolList/mindNetwork.png"
  2294. alt
  2295. />
  2296. <div style="margin: 5px 0">思维网格</div>
  2297. </div>
  2298. <div class="check" @click="chapAddTools(7)">
  2299. <img
  2300. src="../../assets/icon/checkNo.png"
  2301. alt
  2302. v-if="itemTools.tools.indexOf(7) == -1"
  2303. />
  2304. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2305. </div>
  2306. </div>
  2307. <div class="tool">
  2308. <div class="whiteBIcon" @click="chapAddTools(1)">
  2309. <img
  2310. src="../../assets/icon/secondToolList/whiteBoard.png"
  2311. alt
  2312. />
  2313. <div style="margin: 5px 0">电子白板</div>
  2314. </div>
  2315. <div class="check" @click="chapAddTools(1)">
  2316. <img
  2317. src="../../assets/icon/checkNo.png"
  2318. alt
  2319. v-if="itemTools.tools.indexOf(1) == -1"
  2320. />
  2321. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2322. </div>
  2323. </div>
  2324. <div class="tool">
  2325. <div class="whiteBIcon" @click="chapAddTools(2)">
  2326. <img src="../../assets/icon/secondToolList/note.png" alt />
  2327. <div style="margin: 5px 0">便签</div>
  2328. </div>
  2329. <div class="check" @click="chapAddTools(2)">
  2330. <img
  2331. src="../../assets/icon/checkNo.png"
  2332. alt
  2333. v-if="itemTools.tools.indexOf(2) == -1"
  2334. />
  2335. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2336. </div>
  2337. </div>
  2338. <div class="tool">
  2339. <div class="whiteBIcon" @click="chapAddTools(6)">
  2340. <img src="../../assets/icon/secondToolList/doc.png" alt />
  2341. <div style="margin: 5px 0">协同文档</div>
  2342. </div>
  2343. <div class="check" @click="chapAddTools(6)">
  2344. <img
  2345. src="../../assets/icon/checkNo.png"
  2346. alt
  2347. v-if="itemTools.tools.indexOf(6) == -1"
  2348. />
  2349. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2350. </div>
  2351. </div>
  2352. <div class="tool">
  2353. <div class="whiteBIcon" @click="chapAddTools(3)">
  2354. <img
  2355. src="../../assets/icon/secondToolList/mindMapping.png"
  2356. alt
  2357. />
  2358. <div style="margin: 5px 0">思维导图</div>
  2359. </div>
  2360. <div class="check" @click="chapAddTools(3)">
  2361. <img
  2362. src="../../assets/icon/checkNo.png"
  2363. alt
  2364. v-if="itemTools.tools.indexOf(3) == -1"
  2365. />
  2366. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2367. </div>
  2368. </div>
  2369. <div class="tool">
  2370. <div class="whiteBIcon" @click="chapAddTools(31)">
  2371. <img
  2372. src="../../assets/icon/secondToolList/networkPanel.png"
  2373. alt
  2374. />
  2375. <div style="margin: 5px 0">数学画板</div>
  2376. </div>
  2377. <div class="check" @click="chapAddTools(31)">
  2378. <img
  2379. src="../../assets/icon/checkNo.png"
  2380. alt
  2381. v-if="itemTools.tools.indexOf(31) == -1"
  2382. />
  2383. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2384. </div>
  2385. </div>
  2386. </div>
  2387. <div class="toolSort" v-if="chapToolsType == 2">
  2388. <div class="tool">
  2389. <div class="whiteBIcon" @click="chapAddTools(5)">
  2390. <img src="../../assets/icon/thirdToolList/score.png" alt />
  2391. <div style="margin: 5px 0">量规评分</div>
  2392. </div>
  2393. <div class="check" @click="chapAddTools(5)">
  2394. <img
  2395. src="../../assets/icon/checkNo.png"
  2396. alt
  2397. v-if="itemTools.tools.indexOf(5) == -1"
  2398. />
  2399. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2400. </div>
  2401. </div>
  2402. <div class="tool">
  2403. <div
  2404. class="whiteBIcon"
  2405. @click="openTools(chapCount, 4, null)"
  2406. >
  2407. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  2408. <div style="margin: 5px 0">问卷调查</div>
  2409. </div>
  2410. <div class="check" @click="chapAddTools(4)">
  2411. <img
  2412. src="../../assets/icon/checkNo.png"
  2413. alt
  2414. v-if="itemTools.tools.indexOf(4) == -1"
  2415. />
  2416. <img src="../../assets/icon/checkedIs.png" alt v-else />
  2417. </div>
  2418. </div>
  2419. </div>
  2420. </div>
  2421. <div>
  2422. <input
  2423. type="text"
  2424. placeholder="添加工具描述"
  2425. class="binfo_input"
  2426. style="margin: 20px 0; width: 71.5% !important"
  2427. v-model="itemTools.toolDetail"
  2428. />
  2429. </div>
  2430. </div>
  2431. </div>
  2432. </div>
  2433. <span slot="footer" class="dialog-footer">
  2434. <el-button @click="dialogVisible4 = false">取 消</el-button>
  2435. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  2436. </span>
  2437. </el-dialog>
  2438. <el-dialog
  2439. title="添加问答"
  2440. :visible.sync="dialogVisible8"
  2441. :append-to-body="true"
  2442. width="500px"
  2443. :before-close="handleClose"
  2444. class="dialog_diy"
  2445. >
  2446. <div>
  2447. <div
  2448. class="a_add_title"
  2449. style="
  2450. display: flex;
  2451. flex-direction: column;
  2452. align-items: flex-start;
  2453. justify-content: center;
  2454. "
  2455. >
  2456. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  2457. <el-input
  2458. v-model="answerQ"
  2459. placeholder="请输入您要问的问题"
  2460. ></el-input>
  2461. </div>
  2462. </div>
  2463. <span slot="footer" class="dialog-footer">
  2464. <el-button @click="dialogVisible8 = false">取 消</el-button>
  2465. <el-button type="primary" @click="addAnswer">确 定</el-button>
  2466. </span>
  2467. </el-dialog>
  2468. </div>
  2469. </template>
  2470. <script>
  2471. import "../../common/aws-sdk-2.235.1.min.js";
  2472. import $ from "jquery";
  2473. import EditorBar from "../../components/tools/wangEnduit";
  2474. import Mind from "../tools/jsmind2";
  2475. import Sunburst from "../tools/sunburst";
  2476. import SeeBoard from "../tools/seeBoard";
  2477. export default {
  2478. components: { EditorBar, Mind, Sunburst, SeeBoard },
  2479. data() {
  2480. return {
  2481. checkAll: false,
  2482. checkedCities: [],
  2483. isIndeterminate: true,
  2484. steps: 1,
  2485. nbOrder: 0,
  2486. courseId: "",
  2487. chapToolsType: 0,
  2488. chapTools: [
  2489. {
  2490. tools: [],
  2491. toolDetail: "",
  2492. },
  2493. ],
  2494. line: "",
  2495. lineCount: 0,
  2496. lineType: 0,
  2497. chapCount: 0,
  2498. courseName: "",
  2499. isTeacherSee: true,
  2500. courseText: "",
  2501. formLabelWidth: "100px",
  2502. uploadLoading1: false,
  2503. noneBtnImg: false,
  2504. updateBoolean2: false,
  2505. unitIndex: 0,
  2506. taskCount: 0,
  2507. dialogVisible: false,
  2508. dialogVisible1: false,
  2509. dialogVisible2: false,
  2510. dialogVisible3: false,
  2511. dialogVisible4: false,
  2512. dialogVisible5: false,
  2513. dialogVisible6: false,
  2514. dialogVisible7: false,
  2515. dialogVisible8: false,
  2516. dialogVisible9: false,
  2517. dialogVisibleClass: false,
  2518. dialogVisibleMember: false,
  2519. publicTool: 0,
  2520. searchPeople: "",
  2521. searchTN: "",
  2522. userid: this.$route.query.userid,
  2523. oid: this.$route.query.oid,
  2524. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  2525. cover: [], //课程封面
  2526. myWord: [],
  2527. evaJuri: [],
  2528. evalua: "",
  2529. eTitle: "",
  2530. eJson: {},
  2531. fid: "", //一级
  2532. sid: "", //二级
  2533. tid: "", //二级
  2534. typeMode: 1,
  2535. eJSONNum: 0,
  2536. data: {
  2537. meta: {
  2538. name: "example",
  2539. author: "dd@163.com",
  2540. version: "0.2",
  2541. },
  2542. format: "node_array",
  2543. data: [{ id: "root", isroot: true, topic: "" }],
  2544. },
  2545. askJson: {
  2546. askCount: 1,
  2547. askTitle: "",
  2548. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  2549. },
  2550. unitJson2: [],
  2551. unitJson: [
  2552. {
  2553. dyName: "", //单元标题
  2554. chapterInfo: [
  2555. {
  2556. isread: false,
  2557. chapterid: this.guid(),
  2558. title: "",
  2559. courseName: "",
  2560. taskJson: [
  2561. {
  2562. task: "",
  2563. taskDetail: "",
  2564. chapterData: [],
  2565. toolText: "",
  2566. toolChoose: [
  2567. {
  2568. tool: [],
  2569. toolDetail: "",
  2570. toolType: 0,
  2571. askCount: 1,
  2572. askTitle: "",
  2573. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  2574. },
  2575. ],
  2576. isShowTools: false,
  2577. askCount: 1,
  2578. isFold: 0,
  2579. askTitle: "",
  2580. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  2581. checkJson: [{ checkCount: [], checkPerent: [] }],
  2582. homeworkList: [],
  2583. },
  2584. ],
  2585. itemCount: 1,
  2586. fileList1: [],
  2587. video: [],
  2588. testData: [],
  2589. pData: [],
  2590. templateArray: [],
  2591. },
  2592. ],
  2593. },
  2594. ],
  2595. studentJuri: [],
  2596. teacherJuri: [],
  2597. checkboxList: [],
  2598. checkboxList2: [],
  2599. checkboxList3: [],
  2600. number: "",
  2601. tTitle: "",
  2602. tdetail: "",
  2603. templateC: {},
  2604. AttText: {},
  2605. AttTextType: 0,
  2606. AttTextIndex: 0,
  2607. cTemplate: "",
  2608. CourseType: [],
  2609. CourseTypeJson: {},
  2610. courseTypeId: [],
  2611. courseTypeSon: [],
  2612. clearArray: [],
  2613. loading: false,
  2614. toolType: 0,
  2615. inputShow: true,
  2616. toolIndex: 0,
  2617. cidType: 0,
  2618. answerQ: "",
  2619. grade: [],
  2620. courseUserid: "",
  2621. timer: null,
  2622. checkId: "",
  2623. isDelete: 1,
  2624. addindex: 0,
  2625. };
  2626. },
  2627. computed: {
  2628. offsetLetfPx: function () {
  2629. //addnum可以直接在模板语法里面用,相当于data内的值
  2630. return (
  2631. $(".cru_select")[this.unitIndex] &&
  2632. $(".cru_select")[this.unitIndex].offsetLeft
  2633. );
  2634. },
  2635. },
  2636. watch: {
  2637. unitIndex(newValue, oldValue) {
  2638. if (this.isDelete == 2) {
  2639. this.isDelete = 1;
  2640. return;
  2641. }
  2642. if (this.cid != "") {
  2643. let _unitIndex = oldValue;
  2644. if (
  2645. JSON.stringify(this.unitJson2[_unitIndex]) ==
  2646. JSON.stringify(this.unitJson[_unitIndex])
  2647. ) {
  2648. return;
  2649. }
  2650. let cPan = 1;
  2651. for (
  2652. var j = 0;
  2653. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  2654. j++
  2655. ) {
  2656. if (
  2657. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  2658. .length > 1
  2659. ) {
  2660. for (
  2661. var z = 0;
  2662. z <
  2663. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  2664. .length;
  2665. z++
  2666. ) {
  2667. if (
  2668. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  2669. .toolChoose[z].tool.length
  2670. ) {
  2671. this.$message.error("请把工具添加完整");
  2672. cPan = 2;
  2673. break;
  2674. }
  2675. }
  2676. }
  2677. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  2678. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  2679. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  2680. (ele) => {
  2681. return ele.value != "";
  2682. }
  2683. );
  2684. }
  2685. }
  2686. if (cPan == 2) {
  2687. this.unitIndex = oldValue;
  2688. return;
  2689. }
  2690. for (var i = 0; i < this.unitJson.length; i++) {
  2691. if (this.addindex != i) {
  2692. delete this.unitJson[i].isUpdate;
  2693. }
  2694. }
  2695. this.addindex = -1;
  2696. let params = [
  2697. {
  2698. cid: this.cid,
  2699. chapters: JSON.stringify(this.unitJson),
  2700. uid: this.userid,
  2701. unitIndex: _unitIndex,
  2702. },
  2703. ];
  2704. this.ajax
  2705. .post(this.$store.state.api + "updateWorkNew4", params)
  2706. .then((res) => {
  2707. // this.$message({
  2708. // message: "修改成功",
  2709. // type: "success",
  2710. // });
  2711. // this.courseId = this.cid;
  2712. })
  2713. .catch((err) => {
  2714. this.$message.error("修改失败");
  2715. console.error(err);
  2716. });
  2717. }
  2718. },
  2719. },
  2720. methods: {
  2721. handleCheckAllChange(val) {
  2722. this.checkedCities = val ? cityOptions : [];
  2723. this.isIndeterminate = false;
  2724. },
  2725. handleCheckedCitiesChange(value) {
  2726. let checkedCount = value.length;
  2727. this.checkAll = checkedCount === this.cities.length;
  2728. this.isIndeterminate =
  2729. checkedCount > 0 && checkedCount < this.cities.length;
  2730. },
  2731. addHw(e) {
  2732. var el = e.currentTarget;
  2733. el.getElementsByTagName("input")[0].click();
  2734. },
  2735. change(val) {
  2736. console.log(val);
  2737. },
  2738. change2(val) {
  2739. console.log(val);
  2740. this.$forceUpdate();
  2741. },
  2742. handleClose(done) {
  2743. done();
  2744. },
  2745. imgChange1(file, fileList, type, itemTaskIndex) {
  2746. if (type == 1) {
  2747. var _tmp = this.cover;
  2748. } else if (
  2749. type == 2 ||
  2750. type == 3 ||
  2751. type == 6 ||
  2752. type == 7 ||
  2753. type == 8
  2754. ) {
  2755. var _tmp =
  2756. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  2757. .chapterData;
  2758. } else if (type == 4) {
  2759. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  2760. } else {
  2761. var _tmp =
  2762. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  2763. .homeworkList;
  2764. }
  2765. this.noneBtnImg = _tmp.length >= 1;
  2766. },
  2767. goTo(path) {
  2768. this.$router.push(path);
  2769. },
  2770. guid() {
  2771. var _num,
  2772. i,
  2773. _guid = "";
  2774. for (i = 0; i < 32; i++) {
  2775. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  2776. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  2777. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  2778. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  2779. _guid += "-";
  2780. }
  2781. }
  2782. return _guid;
  2783. },
  2784. lastSteps() {
  2785. if (this.steps == 4) {
  2786. this.goTo("/course?userid=" + this.userid + "&oid=" + this.oid);
  2787. } else {
  2788. if (this.cidType == 0) {
  2789. this.steps--;
  2790. if (this.steps == 1) {
  2791. setTimeout(() => {
  2792. this.checkEva(this.checkId);
  2793. }, 0);
  2794. }
  2795. } else {
  2796. if (this.steps == 3) {
  2797. this.steps = 1;
  2798. setTimeout(() => {
  2799. this.checkEva(this.checkId);
  2800. }, 0);
  2801. }
  2802. }
  2803. }
  2804. },
  2805. navSteps(s) {
  2806. if (this.courseName == "") {
  2807. this.$message.error("请将信息填写完整");
  2808. return;
  2809. }
  2810. if (this.cidType == 0) {
  2811. if (this.steps == 1) {
  2812. if (this.cid == "" || this.cid == undefined) {
  2813. this.addWork();
  2814. } else {
  2815. if (this.userid != this.courseUserid) {
  2816. // this.updateWork2();
  2817. } else {
  2818. this.updateWork();
  2819. }
  2820. }
  2821. }
  2822. if (s == 1) {
  2823. this.steps = 1;
  2824. setTimeout(() => {
  2825. this.checkEva(this.checkId);
  2826. }, 0);
  2827. }
  2828. if (s == 2) {
  2829. this.steps = 2;
  2830. }
  2831. if (s == 3) {
  2832. this.cTemplate = this.templateC.content;
  2833. this.dialogVisible2 = false;
  2834. this.steps = 3;
  2835. setTimeout(() => {
  2836. this.checkEva(this.checkId);
  2837. }, 1000);
  2838. }
  2839. } else {
  2840. if (this.steps == 1) {
  2841. if (this.cid == "" || this.cid == undefined) {
  2842. this.addWork();
  2843. } else {
  2844. if (this.userid != this.courseUserid) {
  2845. // this.updateWork2();
  2846. } else {
  2847. this.updateWork();
  2848. }
  2849. }
  2850. }
  2851. if (s == 1) {
  2852. this.steps = 1;
  2853. setTimeout(() => {
  2854. this.checkEva(this.checkId);
  2855. }, 0);
  2856. }
  2857. if (s == 3) {
  2858. this.cTemplate = this.templateC.content;
  2859. this.dialogVisible2 = false;
  2860. this.steps = 3;
  2861. setTimeout(() => {
  2862. this.checkEva(this.checkId);
  2863. }, 1000);
  2864. }
  2865. }
  2866. this.$refs.stepBox.scrollTop = 0;
  2867. },
  2868. nextSteps() {
  2869. if (this.cidType == 1) {
  2870. if (this.steps == 1) {
  2871. if (this.courseName != "") {
  2872. this.steps = 3;
  2873. setTimeout(() => {
  2874. this.checkEva(this.checkId);
  2875. }, 1000);
  2876. if (this.cid == "" || this.cid == undefined) {
  2877. this.addWork();
  2878. } else {
  2879. if (this.userid != this.courseUserid) {
  2880. // this.updateWork2();
  2881. } else {
  2882. this.updateWork();
  2883. }
  2884. }
  2885. } else {
  2886. this.$message.error("请将信息填写完整");
  2887. return;
  2888. }
  2889. } else if (this.steps == 3) {
  2890. if (this.cid == "" || this.cid == undefined) {
  2891. if (this.courseName == "") {
  2892. this.$message.error("请将信息填写完整");
  2893. return;
  2894. } else {
  2895. this.addWork();
  2896. this.steps++;
  2897. }
  2898. } else {
  2899. if (this.courseName == "") {
  2900. this.$message.error("请将信息填写完整");
  2901. return;
  2902. } else {
  2903. if (this.userid != this.courseUserid) {
  2904. this.updateWork2();
  2905. } else {
  2906. this.updateWork();
  2907. }
  2908. this.steps++;
  2909. }
  2910. }
  2911. }
  2912. } else {
  2913. if (this.steps == 1) {
  2914. if (this.courseName != "") {
  2915. if (this.cid == "" || this.cid == undefined) {
  2916. this.addWork();
  2917. } else {
  2918. if (this.userid != this.courseUserid) {
  2919. // this.updateWork2();
  2920. } else {
  2921. this.updateWork();
  2922. }
  2923. }
  2924. this.steps++;
  2925. } else {
  2926. this.$message.error("请将信息填写完整");
  2927. return;
  2928. }
  2929. } else if (this.steps == 2) {
  2930. if (this.templateC.id != "" || this.templateC.id != undefined) {
  2931. this.cTemplate = this.templateC.content;
  2932. }
  2933. this.dialogVisible2 = false;
  2934. this.steps++;
  2935. setTimeout(() => {
  2936. this.checkEva(this.checkId);
  2937. }, 1000);
  2938. } else if (this.steps == 3) {
  2939. if (this.cid == "" || this.cid == undefined) {
  2940. if (this.courseName == "") {
  2941. this.$message.error("请将信息填写完整");
  2942. return;
  2943. } else {
  2944. this.addWork();
  2945. this.steps++;
  2946. }
  2947. } else {
  2948. if (this.courseName == "") {
  2949. this.$message.error("请将信息填写完整");
  2950. return;
  2951. } else {
  2952. if (this.userid != this.courseUserid) {
  2953. this.updateWork2();
  2954. } else {
  2955. this.updateWork();
  2956. }
  2957. this.steps++;
  2958. }
  2959. }
  2960. }
  2961. }
  2962. this.$refs.stepBox.scrollTop = 0;
  2963. },
  2964. unitSet(i) {
  2965. this.unitIndex = i;
  2966. },
  2967. time() {
  2968. if (!this.now) {
  2969. this.now = new Date().getTime();
  2970. return true;
  2971. } else {
  2972. let time = new Date().getTime();
  2973. if (time - this.now > 3000) {
  2974. this.now = time;
  2975. return true;
  2976. } else {
  2977. return false;
  2978. }
  2979. }
  2980. },
  2981. deleteUnit(i) {
  2982. var _this = this;
  2983. if (_this.time()) {
  2984. _this
  2985. .$confirm("确定删除此单元吗?", "提示", {
  2986. confirmButtonText: "确定",
  2987. cancelButtonText: "取消",
  2988. type: "warning",
  2989. })
  2990. .then(() => {
  2991. _this.isDelete = 2;
  2992. // _this.unitIndex = _this.unitIndex - 1;
  2993. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  2994. // _this.$message.success("删除成功");
  2995. })
  2996. .catch(() => {
  2997. return;
  2998. });
  2999. }
  3000. },
  3001. deleteWork(chapid) {
  3002. let params = [
  3003. {
  3004. cid: this.cid,
  3005. chapters: JSON.stringify(this.unitJson),
  3006. uid: this.userid,
  3007. chapid: chapid,
  3008. },
  3009. ];
  3010. this.ajax
  3011. .post(this.$store.state.api + "deleteWork", params)
  3012. .then((res) => {
  3013. this.$message({
  3014. message: "删除成功",
  3015. type: "success",
  3016. });
  3017. this.unitJson.splice(this.unitIndex, 1);
  3018. this.unitIndex = this.unitIndex - 1;
  3019. })
  3020. .catch((err) => {
  3021. this.$message.error("修改失败");
  3022. console.error(err);
  3023. });
  3024. },
  3025. deleteTool(itemTaskIndex, i) {
  3026. var _this = this;
  3027. if (_this.time()) {
  3028. _this
  3029. .$confirm("确定删除此工具吗?", "提示", {
  3030. confirmButtonText: "确定",
  3031. cancelButtonText: "取消",
  3032. type: "warning",
  3033. })
  3034. .then(() => {
  3035. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  3036. itemTaskIndex
  3037. ].toolChoose.splice(i, 1);
  3038. _this.$message.success("删除成功");
  3039. })
  3040. .catch(() => {
  3041. return;
  3042. });
  3043. }
  3044. },
  3045. openT() {
  3046. window.parent.postMessage({ tools: "25" }, "*");
  3047. },
  3048. deleteTask(i) {
  3049. var _this = this;
  3050. if (_this.time()) {
  3051. _this
  3052. .$confirm("确定删除此任务吗?", "提示", {
  3053. confirmButtonText: "确定",
  3054. cancelButtonText: "取消",
  3055. type: "warning",
  3056. })
  3057. .then(() => {
  3058. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  3059. i,
  3060. 1
  3061. );
  3062. _this.$message.success("删除成功");
  3063. })
  3064. .catch(() => {
  3065. return;
  3066. });
  3067. }
  3068. },
  3069. handlePictureCardPreview(file) {
  3070. this.dialogImageUrl = file.url;
  3071. },
  3072. clean(i, c) {
  3073. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  3074. },
  3075. handle_remove1(file, fileList, type) {
  3076. var _tmp = this.cover;
  3077. for (var i = 0, len = _tmp.length; i < len; i++) {
  3078. if (_tmp[i].uid == file.uid) {
  3079. _tmp.splice(i, 1);
  3080. break;
  3081. }
  3082. this.cover = _tmp;
  3083. }
  3084. this.noneBtnImg = _tmp.length >= 1;
  3085. },
  3086. addImg(e) {
  3087. var el = e.currentTarget;
  3088. el.getElementsByTagName("input")[0].click();
  3089. },
  3090. addChaptersTools(i) {
  3091. this.chapTools = [
  3092. {
  3093. tools: [],
  3094. toolDetail: "",
  3095. },
  3096. ];
  3097. this.chapCount = i;
  3098. this.dialogVisible4 = true;
  3099. },
  3100. isNoFinsh() {
  3101. this.$message.warning("功能正在开发中");
  3102. },
  3103. addAttText(i) {
  3104. this.AttText = {
  3105. title: "",
  3106. text: "",
  3107. };
  3108. this.taskCount = i;
  3109. this.AttTextType = 0;
  3110. this.$forceUpdate();
  3111. this.dialogVisible6 = true;
  3112. },
  3113. openLine(i) {
  3114. this.line = "";
  3115. this.lineCount = i;
  3116. this.lineType = 0;
  3117. this.$forceUpdate();
  3118. this.dialogVisible7 = true;
  3119. },
  3120. beforeUpload1(event, type) {
  3121. const loading = this.openLoading();
  3122. var file = event.file;
  3123. var credentials = {
  3124. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  3125. secretAccessKey: "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",
  3126. }; //秘钥形式的登录上传
  3127. window.AWS.config.update(credentials);
  3128. window.AWS.config.region = "cn-northwest-1"; //设置区域
  3129. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  3130. var _this = this;
  3131. if (file) {
  3132. var params = {
  3133. Key:
  3134. file.name.split(".")[0] +
  3135. new Date().getTime() +
  3136. "." +
  3137. file.name.split(".")[file.name.split(".").length - 1],
  3138. ContentType: file.type,
  3139. Body: file,
  3140. "Access-Control-Allow-Credentials": "*",
  3141. ACL: "public-read",
  3142. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  3143. var options = {
  3144. partSize: 2048 * 1024 * 1024,
  3145. queueSize: 2,
  3146. leavePartsOnError: true,
  3147. };
  3148. bucket
  3149. .upload(params, options)
  3150. .on("httpUploadProgress", function (evt) {
  3151. //这里可以写进度条
  3152. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  3153. })
  3154. .send(function (err, data) {
  3155. loading.close();
  3156. if (err) {
  3157. var a = _this.$refs.upload1.uploadFiles;
  3158. a.splice(a.length - 1, a.length);
  3159. _this.$message.error("上传失败");
  3160. } else {
  3161. _this.cover.push({
  3162. name: file.name,
  3163. url: data.Location,
  3164. uid: file.uid,
  3165. });
  3166. _this.imgChange1(null, null, 1, null);
  3167. console.log(data.Location);
  3168. }
  3169. });
  3170. }
  3171. },
  3172. beforeUpload(data) {
  3173. this.$refs.upload1.uploadFiles;
  3174. this.uploadLoading1 = true;
  3175. var file = data.file;
  3176. var credentials = {
  3177. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  3178. secretAccessKey: "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",
  3179. }; //秘钥形式的登录上传
  3180. window.AWS.config.update(credentials);
  3181. window.AWS.config.region = "cn-northwest-1"; //设置区域
  3182. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  3183. var _this = this;
  3184. if (file) {
  3185. var params = {
  3186. Key:
  3187. file.name.split(".")[0] +
  3188. new Date().getTime() +
  3189. "." +
  3190. file.name.split(".")[file.name.split(".").length - 1],
  3191. ContentType: file.type,
  3192. Body: file,
  3193. "Access-Control-Allow-Credentials": "*",
  3194. ACL: "public-read",
  3195. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  3196. var options = {
  3197. partSize: 2048 * 1024 * 1024,
  3198. queueSize: 2,
  3199. leavePartsOnError: true,
  3200. };
  3201. bucket
  3202. .upload(params, options)
  3203. .on("httpUploadProgress", function (evt) {
  3204. //这里可以写进度条
  3205. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  3206. })
  3207. .send(function (err, data) {
  3208. _this.uploadLoading1 = false;
  3209. if (err) {
  3210. var a = _this.$refs.upload1.uploadFiles;
  3211. a.splice(a.length - 1, a.length);
  3212. _this.$message.error("上传失败");
  3213. } else {
  3214. //上传成功处理
  3215. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  3216. name: file.name,
  3217. url: data.Location,
  3218. uid: file.uid,
  3219. });
  3220. _this.imgChange();
  3221. console.log(data.Location);
  3222. }
  3223. });
  3224. }
  3225. },
  3226. onExceed() {
  3227. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  3228. },
  3229. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  3230. const loading = this.openLoading();
  3231. var file = event.target.files[0];
  3232. this.inputShow = false;
  3233. var credentials = {
  3234. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  3235. secretAccessKey: "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",
  3236. }; //秘钥形式的登录上传
  3237. window.AWS.config.update(credentials);
  3238. window.AWS.config.region = "cn-northwest-1"; //设置区域
  3239. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  3240. var _this = this;
  3241. if (type == 3) {
  3242. var b = [
  3243. "DOC",
  3244. "DOCX",
  3245. "DOCM",
  3246. "DOTM",
  3247. "DOTX",
  3248. "PPTX",
  3249. "PPSX",
  3250. "PPT",
  3251. "PPS",
  3252. "PPTM",
  3253. "POTM",
  3254. "PPAM",
  3255. "POTX",
  3256. "PPSM",
  3257. ];
  3258. if (
  3259. b.indexOf(
  3260. file.name
  3261. .split(".")
  3262. [file.name.split(".").length - 1].toLocaleUpperCase()
  3263. ) != -1
  3264. ) {
  3265. if (file.size / 1024 / 1024 > 10) {
  3266. this.$message.error("上传文件大于10兆,请重新选择文件!");
  3267. loading.close();
  3268. return;
  3269. }
  3270. } else {
  3271. if (file.size / 1024 / 1024 > 5) {
  3272. this.$message.error("添加成上传文件大于5兆,请重新选择文件!");
  3273. loading.close();
  3274. return;
  3275. }
  3276. }
  3277. }
  3278. if (file) {
  3279. var params = {
  3280. Key:
  3281. file.name.split(".")[0] +
  3282. new Date().getTime() +
  3283. "." +
  3284. file.name.split(".")[file.name.split(".").length - 1],
  3285. ContentType: file.type,
  3286. Body: file,
  3287. "Access-Control-Allow-Credentials": "*",
  3288. ACL: "public-read",
  3289. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  3290. var options = {
  3291. partSize: 2048 * 1024 * 1024,
  3292. queueSize: 2,
  3293. leavePartsOnError: true,
  3294. };
  3295. bucket
  3296. .upload(params, options)
  3297. .on("httpUploadProgress", function (evt) {
  3298. //这里可以写进度条
  3299. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  3300. })
  3301. .send(function (err, data) {
  3302. loading.close();
  3303. _this.inputShow = true;
  3304. if (err) {
  3305. var a = _this.$refs.upload1.uploadFiles;
  3306. a.splice(a.length - 1, a.length);
  3307. _this.$message.error("上传失败");
  3308. } else {
  3309. if (type == 2 || type == 3) {
  3310. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  3311. itemTaskIndex
  3312. ].chapterData.push({
  3313. name: file.name,
  3314. url: data.Location,
  3315. uid: file.uid,
  3316. type: type,
  3317. });
  3318. _this.imgChange1(null, null, type, itemTaskIndex);
  3319. } else if (type == 4) {
  3320. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  3321. itemTaskIndex
  3322. ].fileList1.push({
  3323. name: file.name,
  3324. url: data.Location,
  3325. uid: file.uid,
  3326. });
  3327. _this.imgChange1(null, null, type, itemTaskIndex);
  3328. } else if (type == 5) {
  3329. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  3330. itemTaskIndex
  3331. ].homeworkList.push({
  3332. name: file.name,
  3333. url: data.Location,
  3334. uid: file.uid,
  3335. });
  3336. _this.imgChange1(null, null, type, itemTaskIndex);
  3337. }
  3338. console.log(data.Location);
  3339. }
  3340. });
  3341. }
  3342. },
  3343. addunit() {
  3344. this.unitJson.push({
  3345. dyName: "", //单元标题
  3346. isUpdate: 1,
  3347. chapterInfo: [
  3348. {
  3349. isread: false,
  3350. chapterid: this.guid(),
  3351. title: "",
  3352. courseName: "",
  3353. taskJson: [
  3354. {
  3355. task: "",
  3356. taskDetail: "",
  3357. chapterData: [],
  3358. toolText: "",
  3359. toolChoose: [
  3360. {
  3361. tool: [],
  3362. toolDetail: "",
  3363. toolType: 0,
  3364. askCount: 1,
  3365. askTitle: "",
  3366. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3367. },
  3368. ],
  3369. isShowTools: false,
  3370. askCount: 1,
  3371. isFold: 0,
  3372. askTitle: "",
  3373. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3374. checkJson: [{ checkCount: [], checkPerent: [] }],
  3375. homeworkList: [],
  3376. },
  3377. ],
  3378. itemCount: 1,
  3379. fileList1: [],
  3380. video: [],
  3381. testData: [],
  3382. pData: [],
  3383. templateArray: [],
  3384. },
  3385. ],
  3386. });
  3387. this.addindex = this.unitJson.length - 1;
  3388. setTimeout(() => {
  3389. this.unitIndex = this.unitJson.length - 1;
  3390. this.unitSet(this.unitIndex);
  3391. }, 0);
  3392. },
  3393. addToolFun(itemTaskIndex) {
  3394. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  3395. itemTaskIndex
  3396. ].toolChoose.push({
  3397. tool: [],
  3398. toolDetail: "",
  3399. toolType: 0,
  3400. askCount: 1,
  3401. askTitle: "",
  3402. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3403. });
  3404. },
  3405. addTaskBorder() {
  3406. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  3407. task: "",
  3408. taskDetail: "",
  3409. chapterData: [],
  3410. toolText: "",
  3411. toolChoose: [
  3412. {
  3413. tool: [],
  3414. toolDetail: "",
  3415. toolType: 0,
  3416. askCount: 1,
  3417. askTitle: "",
  3418. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3419. },
  3420. ],
  3421. isShowTools: false,
  3422. askCount: 1,
  3423. isFold: 0,
  3424. askTitle: "",
  3425. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3426. checkJson: [{ checkCount: [], checkPerent: [] }],
  3427. homeworkList: [],
  3428. });
  3429. },
  3430. add(e, i) {
  3431. var el = e.currentTarget;
  3432. el.getElementsByTagName("input")[0].click();
  3433. },
  3434. fold(i, e, type) {
  3435. var a = e.path[3];
  3436. var b = e.path[2];
  3437. if (type == 1) {
  3438. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  3439. a.className += " smallTaskBorder";
  3440. b.className += " funBlockTop";
  3441. } else {
  3442. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  3443. a.className = "taskBorder";
  3444. b.className = "funBlock";
  3445. }
  3446. console.log(e);
  3447. },
  3448. deleteHomeworkBox(unitIndex, index, i) {
  3449. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  3450. this.taskCount
  3451. ].homeworkList.splice(i, 1);
  3452. },
  3453. getStudent() {
  3454. let params = {
  3455. oid: this.oid,
  3456. cu: "",
  3457. cn: this.searchPeople,
  3458. };
  3459. this.ajax
  3460. .get(this.$store.state.api + "selectStudentAdd", params)
  3461. .then((res) => {
  3462. this.studentJuri = res.data[0];
  3463. })
  3464. .catch((err) => {
  3465. this.isLoading = false;
  3466. console.error(err);
  3467. });
  3468. },
  3469. getTeacher() {
  3470. let params = {
  3471. oid: this.oid,
  3472. cu: "",
  3473. cn: this.searchTN,
  3474. };
  3475. this.ajax
  3476. .get(this.$store.state.api + "selectTeacherAdd", params)
  3477. .then((res) => {
  3478. let teacherJuri = res.data[0];
  3479. for (var i = 0; i < teacherJuri.length; i++) {
  3480. if (teacherJuri[i].userid == this.userid) {
  3481. teacherJuri.splice(i, 1);
  3482. break;
  3483. }
  3484. }
  3485. this.teacherJuri = teacherJuri;
  3486. })
  3487. .catch((err) => {
  3488. console.error(err);
  3489. });
  3490. },
  3491. searchStudent() {
  3492. this.getStudent();
  3493. },
  3494. //获取班级列表
  3495. getClass() {
  3496. let params = {
  3497. oid: this.oid,
  3498. };
  3499. this.ajax
  3500. .get(this.$store.state.api + "selectClassBySchool", params)
  3501. .then((res) => {
  3502. this.grade = res.data[0];
  3503. })
  3504. .catch((err) => {
  3505. this.isLoading = false;
  3506. console.error(err);
  3507. });
  3508. },
  3509. getChapterData(e, i, j, ic, type) {
  3510. e.stopPropagation();
  3511. this.updataC = true;
  3512. this.icc = ic;
  3513. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  3514. console.log("还不能下载图片喔");
  3515. }
  3516. },
  3517. deleteChapterData(e, i, j, ic, taskI) {
  3518. e.stopPropagation();
  3519. this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  3520. },
  3521. updataVideoT(e, i, j, ic) {
  3522. e.stopPropagation();
  3523. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3524. ic
  3525. ].name = e.target.value;
  3526. },
  3527. upCd(e, i, j, ic) {
  3528. e.stopPropagation();
  3529. if (ic == 0) {
  3530. return;
  3531. }
  3532. var a =
  3533. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3534. ic - 1
  3535. ];
  3536. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3537. ic - 1
  3538. ] =
  3539. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3540. ic
  3541. ];
  3542. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[ic] =
  3543. a;
  3544. },
  3545. downCd(e, i, j, ic) {
  3546. e.stopPropagation();
  3547. if (ic == this.unitJson[i].chapterInfo[j].chapterData.length - 1) {
  3548. return;
  3549. }
  3550. var a =
  3551. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3552. ic + 1
  3553. ];
  3554. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3555. ic + 1
  3556. ] =
  3557. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  3558. ic
  3559. ];
  3560. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[ic] =
  3561. a;
  3562. },
  3563. addWork() {
  3564. let cPan = 1;
  3565. for (var i = 0; i < this.unitJson.length; i++) {
  3566. for (
  3567. var j = 0;
  3568. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  3569. j++
  3570. ) {
  3571. if (
  3572. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  3573. ) {
  3574. for (
  3575. var z = 0;
  3576. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  3577. z++
  3578. ) {
  3579. if (
  3580. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  3581. .length
  3582. ) {
  3583. this.$message.error("请把工具添加完整");
  3584. cPan = 2;
  3585. break;
  3586. }
  3587. }
  3588. }
  3589. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  3590. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  3591. i
  3592. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  3593. return ele.value != "";
  3594. });
  3595. }
  3596. }
  3597. }
  3598. if (cPan == 2) {
  3599. this.steps--;
  3600. return;
  3601. }
  3602. for (var i = 0; i < this.unitJson.length; i++) {
  3603. delete this.unitJson[i].isUpdate;
  3604. }
  3605. let params = [
  3606. {
  3607. uid: this.userid,
  3608. title: this.courseName,
  3609. brief: this.courseText.replace(/%/g, "%25"),
  3610. cover:
  3611. this.cover.length > 0
  3612. ? JSON.stringify(this.cover)
  3613. : JSON.stringify([
  3614. {
  3615. name: "noBanner.jpg",
  3616. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/noBanner1656409780264.jpg",
  3617. uid: 1656409780264,
  3618. status: "success",
  3619. },
  3620. ]),
  3621. evaId: this.evalua,
  3622. astudent:
  3623. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  3624. see: this.isTeacherSee == true ? 1 : 0,
  3625. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  3626. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  3627. courseType: JSON.stringify(this.courseTypeId),
  3628. ateacher:
  3629. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  3630. },
  3631. ];
  3632. this.ajax
  3633. .post(this.$store.state.api + "addWorkNew2", params)
  3634. .then((res) => {
  3635. console.log(this.steps);
  3636. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  3637. this.$message({
  3638. message: "新增成功",
  3639. type: "success",
  3640. });
  3641. }
  3642. this.number = res.data.ordernumber;
  3643. this.courseId = res.data.courseId;
  3644. this.cid = res.data.courseId;
  3645. this.courseUserid = this.userid;
  3646. this.islogin = true;
  3647. })
  3648. .catch((err) => {
  3649. this.$message.error("新增失败");
  3650. console.error(err);
  3651. });
  3652. },
  3653. goCourse() {
  3654. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  3655. },
  3656. updateWork2() {
  3657. let _unitIndex = this.unitIndex;
  3658. let cPan = 1;
  3659. for (
  3660. var j = 0;
  3661. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  3662. j++
  3663. ) {
  3664. if (
  3665. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3666. .length > 1
  3667. ) {
  3668. for (
  3669. var z = 0;
  3670. z <
  3671. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3672. .length;
  3673. z++
  3674. ) {
  3675. if (
  3676. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose[
  3677. z
  3678. ].tool.length
  3679. ) {
  3680. this.$message.error("请把工具添加完整");
  3681. cPan = 2;
  3682. break;
  3683. }
  3684. }
  3685. }
  3686. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  3687. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  3688. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  3689. (ele) => {
  3690. return ele.value != "";
  3691. }
  3692. );
  3693. }
  3694. }
  3695. if (cPan == 2) {
  3696. this.steps--;
  3697. return;
  3698. }
  3699. let params = [
  3700. {
  3701. cid: this.cid,
  3702. chapters: JSON.stringify(this.unitJson),
  3703. uid: this.userid,
  3704. unitIndex: _unitIndex,
  3705. },
  3706. ];
  3707. this.ajax
  3708. .post(this.$store.state.api + "updateWorkNew4", params)
  3709. .then((res) => {
  3710. this.$message({
  3711. message: "修改成功",
  3712. type: "success",
  3713. });
  3714. this.courseId = this.cid;
  3715. })
  3716. .catch((err) => {
  3717. this.$message.error("修改失败");
  3718. console.error(err);
  3719. });
  3720. },
  3721. updateWork() {
  3722. let cPan = 1;
  3723. for (var i = 0; i < this.unitJson.length; i++) {
  3724. for (
  3725. var j = 0;
  3726. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  3727. j++
  3728. ) {
  3729. if (
  3730. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  3731. ) {
  3732. for (
  3733. var z = 0;
  3734. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  3735. z++
  3736. ) {
  3737. if (
  3738. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  3739. .length
  3740. ) {
  3741. this.$message.error("请把工具添加完整");
  3742. cPan = 2;
  3743. break;
  3744. }
  3745. }
  3746. }
  3747. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  3748. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  3749. i
  3750. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  3751. return ele.value != "";
  3752. });
  3753. }
  3754. }
  3755. }
  3756. if (cPan == 2) {
  3757. this.steps--;
  3758. return;
  3759. }
  3760. for (var i = 0; i < this.unitJson.length; i++) {
  3761. delete this.unitJson[i].isUpdate;
  3762. }
  3763. let params = [
  3764. {
  3765. cid: this.cid,
  3766. title: this.courseName,
  3767. brief: this.courseText.replace(/%/g, "%25"),
  3768. cover:
  3769. this.cover.length > 0
  3770. ? JSON.stringify(this.cover)
  3771. : JSON.stringify([
  3772. {
  3773. name: "noBanner.jpg",
  3774. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/noBanner1656409780264.jpg",
  3775. uid: 1656409780264,
  3776. status: "success",
  3777. },
  3778. ]),
  3779. evaId: this.evalua,
  3780. astudent:
  3781. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  3782. see: this.isTeacherSee == true ? 1 : 0,
  3783. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  3784. template: this.myWord != "undefined" ? this.myWord : [],
  3785. uid: this.userid,
  3786. courseType: JSON.stringify(this.courseTypeId),
  3787. ateacher:
  3788. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  3789. },
  3790. ];
  3791. this.ajax
  3792. .post(this.$store.state.api + "updateWorkNew2", params)
  3793. .then((res) => {
  3794. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  3795. if (this.cidType == 1) {
  3796. this.$message({
  3797. message: "修改成功",
  3798. type: "success",
  3799. });
  3800. } else {
  3801. this.$message({
  3802. message: "新增成功",
  3803. type: "success",
  3804. });
  3805. }
  3806. }
  3807. this.number = this.nbOrder;
  3808. this.courseId = this.cid;
  3809. })
  3810. .catch((err) => {
  3811. this.$message.error("修改失败");
  3812. console.error(err);
  3813. });
  3814. },
  3815. guid() {
  3816. var _num,
  3817. i,
  3818. _guid = "";
  3819. for (i = 0; i < 32; i++) {
  3820. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  3821. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  3822. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  3823. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  3824. _guid += "-";
  3825. }
  3826. }
  3827. return _guid;
  3828. },
  3829. insertWord() {
  3830. this.dialogVisible1 = true;
  3831. this.updateBoolean2 = false;
  3832. this.tTitle = "";
  3833. this.tdetail = "";
  3834. },
  3835. addWord() {
  3836. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  3837. name: this.tTitle,
  3838. content: this.tdetail,
  3839. uid: this.guid(),
  3840. });
  3841. this.dialogVisible1 = false;
  3842. },
  3843. upWord() {},
  3844. selectWord(uid, i, c) {
  3845. this.dialogVisible1 = true;
  3846. this.updateBoolean2 = true;
  3847. if (
  3848. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  3849. ) {
  3850. this.tTitle =
  3851. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  3852. this.tdetail =
  3853. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  3854. }
  3855. },
  3856. isAddPP() {
  3857. if (this.checkboxList.length > 0) {
  3858. this.$message({
  3859. message: "添加成功",
  3860. type: "success",
  3861. });
  3862. this.dialogVisible3 = false;
  3863. } else {
  3864. this.$message({
  3865. message: "请添加课程成员",
  3866. type: "error",
  3867. });
  3868. }
  3869. },
  3870. isAddClass() {
  3871. this.dialogVisibleClass = false;
  3872. },
  3873. isAddPPTeacher() {
  3874. this.dialogVisibleMember = false;
  3875. },
  3876. getTemplate() {
  3877. this.ajax
  3878. .get(this.$store.state.api + "getCourseTemplateT", "")
  3879. .then((res) => {
  3880. this.templateArray = res.data[0];
  3881. })
  3882. .catch((err) => {});
  3883. },
  3884. clearChoose() {
  3885. this.clearArray.splice(this.templateC.id, 1);
  3886. this.dialogVisible2 = false;
  3887. },
  3888. clearAttText() {
  3889. this.AttText = {
  3890. title: "",
  3891. text: "",
  3892. };
  3893. this.dialogVisible6 = false;
  3894. },
  3895. clearLine() {
  3896. this.line = "";
  3897. this.dialogVisible7 = false;
  3898. },
  3899. checkTemplate(res) {
  3900. let _this = this;
  3901. _this
  3902. .$confirm("确定选择此模板吗?", "提示", {
  3903. confirmButtonText: "确定",
  3904. cancelButtonText: "取消",
  3905. type: "warning",
  3906. })
  3907. .then(() => {
  3908. _this.unitJson = JSON.parse(res.chapters);
  3909. _this.steps++;
  3910. setTimeout(() => {
  3911. this.checkEva(this.checkId);
  3912. }, 1000);
  3913. })
  3914. .catch(() => {
  3915. return;
  3916. });
  3917. },
  3918. checkTemplate1(w) {
  3919. this.steps++;
  3920. },
  3921. checkTemplate2() {
  3922. let _this = this;
  3923. _this
  3924. .$confirm("确定选择空模板吗?", "提示", {
  3925. confirmButtonText: "确定",
  3926. cancelButtonText: "取消",
  3927. type: "warning",
  3928. })
  3929. .then(() => {
  3930. _this.unitJson = [
  3931. {
  3932. dyName: "", //单元标题
  3933. chapterInfo: [
  3934. {
  3935. isread: false,
  3936. chapterid: this.guid(),
  3937. title: "",
  3938. courseName: "",
  3939. taskJson: [
  3940. {
  3941. task: "",
  3942. taskDetail: "",
  3943. chapterData: [],
  3944. toolText: "",
  3945. toolChoose: [
  3946. {
  3947. tool: [],
  3948. toolDetail: "",
  3949. toolType: 0,
  3950. askCount: 1,
  3951. askTitle: "",
  3952. askJson: [
  3953. { askstitle: "", askItem: 1, checkList: [] },
  3954. ],
  3955. },
  3956. ],
  3957. isShowTools: false,
  3958. askCount: 1,
  3959. isFold: 0,
  3960. askTitle: "",
  3961. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3962. checkJson: [{ checkCount: [], checkPerent: [] }],
  3963. homeworkList: [],
  3964. },
  3965. ],
  3966. itemCount: 1,
  3967. fileList1: [],
  3968. video: [],
  3969. testData: [],
  3970. pData: [],
  3971. templateArray: [],
  3972. },
  3973. ],
  3974. },
  3975. ];
  3976. this.steps++;
  3977. })
  3978. .catch(() => {
  3979. return;
  3980. });
  3981. },
  3982. wordNext() {
  3983. this.dialogVisible2 = false;
  3984. },
  3985. isAddOrUpdateAttText() {
  3986. if (this.AttTextType == 0) {
  3987. this.addAttTextMessage();
  3988. } else {
  3989. this.updateAttText();
  3990. }
  3991. },
  3992. isAddOrUpdateLine() {
  3993. if (this.lineType == 0) {
  3994. this.addLine();
  3995. } else {
  3996. this.updateLine();
  3997. }
  3998. },
  3999. addAttTextMessage() {
  4000. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4001. this.taskCount
  4002. ].chapterData.push({
  4003. name: this.AttText.title,
  4004. url: this.AttText.text,
  4005. type: 6,
  4006. });
  4007. this.imgChange1(null, null, 6, this.taskCount);
  4008. this.dialogVisible6 = false;
  4009. },
  4010. selectAttText(itemTaskIndex, i) {
  4011. this.AttText.title =
  4012. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4013. itemTaskIndex
  4014. ].chapterData[i].name;
  4015. this.AttText.text =
  4016. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4017. itemTaskIndex
  4018. ].chapterData[i].url;
  4019. this.taskCount = itemTaskIndex;
  4020. this.AttTextIndex = i;
  4021. this.AttTextType = 1;
  4022. this.dialogVisible6 = true;
  4023. },
  4024. updateAttText() {
  4025. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4026. this.taskCount
  4027. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  4028. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4029. this.taskCount
  4030. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  4031. this.dialogVisible6 = false;
  4032. },
  4033. addLine() {
  4034. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4035. this.lineCount
  4036. ].chapterData.push({
  4037. name: "链接",
  4038. url: this.line,
  4039. type: 8,
  4040. });
  4041. this.imgChange1(null, null, 8, this.lineCount);
  4042. this.dialogVisible7 = false;
  4043. },
  4044. selectLine(itemTaskIndex, i) {
  4045. this.line =
  4046. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4047. itemTaskIndex
  4048. ].chapterData[i].url;
  4049. this.taskCount = itemTaskIndex;
  4050. this.lineCount = i;
  4051. this.lineType = 1;
  4052. this.dialogVisible7 = true;
  4053. },
  4054. updateLine() {
  4055. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4056. this.taskCount
  4057. ].chapterData[this.lineCount].url = this.line;
  4058. this.dialogVisible7 = false;
  4059. },
  4060. addPP() {
  4061. this.dialogVisible3 = true;
  4062. },
  4063. goTo(path) {
  4064. this.$router.push(path);
  4065. },
  4066. openTools(itemTaskIndex, i, toolIndex) {
  4067. this.toolIndex = toolIndex;
  4068. this.taskCount = itemTaskIndex;
  4069. if (i == 4) {
  4070. if (toolIndex == null) {
  4071. var a =
  4072. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4073. .chapterData;
  4074. for (var i = 0; i < a.length; i++) {
  4075. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  4076. this.askJson =
  4077. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4078. itemTaskIndex
  4079. ].chapterData[i].askJson;
  4080. }
  4081. }
  4082. } else {
  4083. this.askJson = JSON.parse(
  4084. JSON.stringify(
  4085. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4086. itemTaskIndex
  4087. ].toolChoose[toolIndex]
  4088. )
  4089. );
  4090. }
  4091. this.dialogVisible5 = true;
  4092. } else if (i == 15) {
  4093. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4094. itemTaskIndex
  4095. ].toolChoose[toolIndex].answerQ
  4096. ? JSON.parse(
  4097. JSON.stringify(
  4098. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4099. itemTaskIndex
  4100. ].toolChoose[toolIndex].answerQ
  4101. )
  4102. )
  4103. : "";
  4104. this.dialogVisible8 = true;
  4105. }
  4106. },
  4107. chapAddTools(i) {
  4108. if (this.chapTools[0].tools.length == 0) {
  4109. this.chapTools[0].tools.push(i);
  4110. } else {
  4111. if (this.chapTools[0].tools.indexOf(i) != -1) {
  4112. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  4113. } else {
  4114. this.chapTools[0].tools.push(i);
  4115. }
  4116. }
  4117. this.$forceUpdate();
  4118. },
  4119. addChaptersDataTools() {
  4120. if (this.chapTools[0].tools.indexOf(4) != -1) {
  4121. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4122. this.chapCount
  4123. ].chapterData.push({
  4124. name: this.chapTools[0].toolDetail,
  4125. url: this.chapTools[0].tools,
  4126. type: 7,
  4127. askJson: this.askJson,
  4128. });
  4129. } else {
  4130. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4131. this.chapCount
  4132. ].chapterData.push({
  4133. name: this.chapTools[0].toolDetail,
  4134. url: this.chapTools[0].tools,
  4135. type: 7,
  4136. });
  4137. }
  4138. this.imgChange1(null, null, 7, this.chapCount);
  4139. this.dialogVisible4 = false;
  4140. },
  4141. addTools(i, itemTaskIndex, toolIndex) {
  4142. // if (
  4143. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4144. // .toolChoose[toolIndex].tool.length == 0
  4145. // ) {
  4146. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4147. // itemTaskIndex
  4148. // ].toolChoose[toolIndex].tool.push(i);
  4149. // } else {
  4150. // if (
  4151. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4152. // itemTaskIndex
  4153. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  4154. // ) {
  4155. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4156. // itemTaskIndex
  4157. // ].toolChoose[toolIndex].tool.splice(
  4158. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4159. // itemTaskIndex
  4160. // ].toolChoose[toolIndex].tool.indexOf(i),
  4161. // 1
  4162. // );
  4163. // } else {
  4164. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4165. // itemTaskIndex
  4166. // ].toolChoose[toolIndex].tool.push(i);
  4167. // }
  4168. // console.log(
  4169. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4170. // .toolChoose[toolIndex].tool
  4171. // );
  4172. // }
  4173. if (i == 4) {
  4174. if (
  4175. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4176. .toolChoose[toolIndex].askJson.askTitle == "" ||
  4177. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4178. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  4179. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4180. .toolChoose[toolIndex].askJson[0].checkList < 2
  4181. ) {
  4182. this.openTools(itemTaskIndex, 4, toolIndex);
  4183. // this.$message({
  4184. // message: "请填写完整问卷内容",
  4185. // type: "error",
  4186. // });
  4187. return;
  4188. }
  4189. }
  4190. if (i == 15) {
  4191. if (
  4192. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4193. .toolChoose[toolIndex].answerQ ||
  4194. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4195. .toolChoose[toolIndex].answerQ == ""
  4196. ) {
  4197. this.openTools(itemTaskIndex, 15, toolIndex);
  4198. // this.$message({
  4199. // message: "请填写问答内容",
  4200. // type: "error",
  4201. // });
  4202. return;
  4203. }
  4204. }
  4205. if (
  4206. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4207. .toolChoose[toolIndex].tool.length > 0
  4208. ) {
  4209. if (
  4210. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4211. itemTaskIndex
  4212. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  4213. ) {
  4214. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4215. itemTaskIndex
  4216. ].toolChoose[toolIndex].tool.splice(
  4217. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4218. itemTaskIndex
  4219. ].toolChoose[toolIndex].tool.indexOf(i),
  4220. 1
  4221. );
  4222. } else {
  4223. // this.$message({
  4224. // message: "每个工具只能添加一个",
  4225. // type: "error",
  4226. // });
  4227. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4228. itemTaskIndex
  4229. ].toolChoose[toolIndex].tool = [];
  4230. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4231. itemTaskIndex
  4232. ].toolChoose[toolIndex].tool.push(i);
  4233. }
  4234. } else {
  4235. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4236. itemTaskIndex
  4237. ].toolChoose[toolIndex].tool.push(i);
  4238. }
  4239. this.$forceUpdate();
  4240. },
  4241. addAskList() {
  4242. this.askJson.askJson.push({
  4243. askstitle: "",
  4244. askItem: 1,
  4245. checkList: [],
  4246. });
  4247. this.askJson.askCount++;
  4248. },
  4249. deleteAskList() {
  4250. this.askJson.askJson.splice(-1);
  4251. this.askJson.askCount--;
  4252. },
  4253. addcheckList(json) {
  4254. json.checkList.length++;
  4255. json.askItem++;
  4256. },
  4257. deletecheckList(json) {
  4258. json.checkList.length--;
  4259. json.askItem--;
  4260. },
  4261. addAsk() {
  4262. if (this.askJson.askTitle === "") {
  4263. this.$message.error("问卷调查标题不能为空!");
  4264. return;
  4265. }
  4266. var aj = this.askJson.askJson;
  4267. var b = 1;
  4268. for (var i = 0; i < aj.length; i++) {
  4269. if (aj[i].askstitle === "") {
  4270. var a = 1;
  4271. for (let index = 0; index < aj[i].askItem; index++) {
  4272. const element = aj[i].checkList[index]
  4273. ? aj[i].checkList[index]
  4274. : "";
  4275. if (element != "") {
  4276. b++;
  4277. this.$message.error("填写了问卷调查选项,问卷调查题目不能为空!");
  4278. return;
  4279. } else {
  4280. a++;
  4281. }
  4282. }
  4283. if (b == 1) {
  4284. this.$message.error("至少填写一个问题");
  4285. return;
  4286. }
  4287. } else if (aj[i].askstitle != "") {
  4288. for (let index = 0; index < aj[i].askItem; index++) {
  4289. const element = aj[i].checkList[index]
  4290. ? aj[i].checkList[index]
  4291. : "";
  4292. var index = 0;
  4293. for (var z = 0; z < aj[i].checkList.length; z++) {
  4294. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  4295. if (checkC != "") {
  4296. index++;
  4297. } else {
  4298. this.$message.error("问卷调查选项不能为空!");
  4299. return;
  4300. }
  4301. }
  4302. b++;
  4303. if (index < 2) {
  4304. this.$message.error(
  4305. "填写了问卷调查的题目,问卷调查选项至少要有两项!"
  4306. );
  4307. return;
  4308. }
  4309. }
  4310. }
  4311. }
  4312. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  4313. var elc = el.checkList.filter((element) => {
  4314. return element != "";
  4315. });
  4316. return el.askstitle != "" && elc.length != 0;
  4317. });
  4318. if (!this.dialogVisible4) {
  4319. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4320. this.taskCount
  4321. ].toolChoose[this.toolIndex] = this.askJson;
  4322. }
  4323. this.dialogVisible5 = false;
  4324. },
  4325. addAnswer() {
  4326. if (this.answerQ == "") {
  4327. this.$message.error("请输入您想要问的问题");
  4328. return;
  4329. }
  4330. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4331. this.taskCount
  4332. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  4333. this.dialogVisible8 = false;
  4334. },
  4335. selectCourseDetail() {
  4336. if (this.cid == "" || this.cid == undefined) {
  4337. console.log("这是新增课程");
  4338. } else {
  4339. this.cidType = 1;
  4340. let params = {
  4341. cid: this.cid,
  4342. };
  4343. this.ajax
  4344. .get(this.$store.state.api + "select_course_detail", params)
  4345. .then((res) => {
  4346. this.loading = true;
  4347. this.unitJson = JSON.parse(res.data[0][0].chapters);
  4348. for (var j in this.unitJson) {
  4349. for (var i in this.unitJson[j].chapterInfo) {
  4350. this.unitJson[j].chapterInfo[i].taskJson[
  4351. this.taskCount
  4352. ].toolChoose = this.unitJson[j].chapterInfo[i].taskJson[
  4353. this.taskCount
  4354. ].toolChoose
  4355. ? this.unitJson[j].chapterInfo[i].taskJson[this.taskCount]
  4356. .toolChoose
  4357. : [];
  4358. }
  4359. }
  4360. this.courseName = res.data[0][0].title;
  4361. this.courseText = res.data[0][0].brief;
  4362. this.evalua = res.data[0][0].evaId;
  4363. this.cover = JSON.parse(res.data[0][0].cover);
  4364. this.noneBtnImg = this.cover.length >= 1;
  4365. // this.checkboxList =
  4366. // res.data[0][0].course_student.length > 0
  4367. // ? JSON.parse(res.data[0][0].course_student)
  4368. // : [];
  4369. this.checkboxList2 = res.data[0][0].juri
  4370. ? res.data[0][0].juri.split(",")
  4371. : [];
  4372. this.checkboxList3 = res.data[0][0].course_teacher
  4373. ? res.data[0][0].course_teacher.split(",")
  4374. : [];
  4375. // this.isTeacherSee =
  4376. // res.data[0][0].is_teacher_look == 0 ? true : false;
  4377. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  4378. this.myWord = res.data[0][0].template;
  4379. this.templateC.id = "123";
  4380. this.courseUserid = res.data[0][0].userid;
  4381. this.nbOrder = res.data[0][0].ordernumber;
  4382. for (var i = 0; i < res.data[1].length; i++) {
  4383. this.courseTypeId.push(res.data[1][i].typeid);
  4384. }
  4385. console.log(this.courseTypeId);
  4386. // if (this.timer) clearInterval(this.timer);
  4387. if (this.timer) clearTimeout(this.timer);
  4388. this.timer = null;
  4389. // this.timer = setInterval(() => {
  4390. this.seleteCourseUpdate();
  4391. // }, 5000);
  4392. this.$forceUpdate();
  4393. setTimeout(() => {
  4394. this.checkEva(this.evalua);
  4395. }, 0);
  4396. })
  4397. .catch((err) => {
  4398. console.error(err);
  4399. });
  4400. }
  4401. },
  4402. seleteCourseUpdate() {
  4403. let params = {
  4404. cid: this.cid,
  4405. };
  4406. this.ajax
  4407. .get(this.$store.state.api + "select_course_detail", params)
  4408. .then((res) => {
  4409. // console.log(this.unitJson);
  4410. let unitJson = JSON.parse(res.data[0][0].chapters);
  4411. // this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  4412. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  4413. let _unitJson = [];
  4414. let _chapAarry = [];
  4415. let _unitIndex = this.unitIndex;
  4416. let index = 1;
  4417. let chapindex;
  4418. if (_unitJson2.length > unitJson.length) {
  4419. for (let c = 0; c < _unitJson2.length; c++) {
  4420. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  4421. }
  4422. for (let j = 0; j < unitJson.length; j++) {
  4423. let count = 0;
  4424. for (let k = 0; k < _unitJson2.length; k++) {
  4425. if (
  4426. unitJson[j].chapterInfo[0].chapterid ==
  4427. _unitJson2[k].chapterInfo[0].chapterid
  4428. ) {
  4429. count++;
  4430. _chapAarry.splice(
  4431. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  4432. 1
  4433. );
  4434. _unitJson.push(unitJson[j]);
  4435. break;
  4436. }
  4437. }
  4438. // if(count === 0){
  4439. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  4440. // }
  4441. }
  4442. for (let k = 0; k < _unitJson2.length; k++) {
  4443. if (_unitJson2[k].isUpdate == 1) {
  4444. _chapAarry.splice(
  4445. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  4446. 1
  4447. );
  4448. _unitJson.push(_unitJson2[k]);
  4449. }
  4450. }
  4451. console.log(_chapAarry);
  4452. for (let d = 0; d < _unitJson2.length; d++) {
  4453. if (
  4454. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  4455. ) {
  4456. if (_unitIndex == d) {
  4457. index = 2;
  4458. }
  4459. chapindex = d;
  4460. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  4461. }
  4462. }
  4463. } else {
  4464. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  4465. }
  4466. for (let i = 0; i < unitJson.length; i++) {
  4467. if (
  4468. i < _unitJson.length - 1 &&
  4469. _unitJson[i].chapterInfo[0].chapterid !=
  4470. unitJson[i].chapterInfo[0].chapterid
  4471. ) {
  4472. _unitJson.splice(i, 0, unitJson[i]);
  4473. } else if (i > _unitJson.length - 1) {
  4474. _unitJson.push(unitJson[i]);
  4475. } else if (
  4476. _unitJson[i].chapterInfo[0].chapterid ==
  4477. unitJson[i].chapterInfo[0].chapterid
  4478. ) {
  4479. _unitJson[i] = unitJson[i];
  4480. }
  4481. // if (i == _unitIndex) {
  4482. // continue;
  4483. // } else
  4484. }
  4485. if (_chapAarry.length && index != 2) {
  4486. if (chapindex < _unitIndex) {
  4487. this.isDelete = 2;
  4488. this.unitIndex--;
  4489. }else {
  4490. this.isDelete = 2;
  4491. this.unitIndex++;
  4492. }
  4493. // else if (
  4494. // _unitJson2[this.unitIndex].chapterInfo[0].chapterid !=
  4495. // _unitJson[this.unitIndex].chapterInfo[0].chapterid
  4496. // ) {
  4497. // this.isDelete = 2;
  4498. // for (let n = 0; n < _unitJson.length; n++) {
  4499. // if (
  4500. // _unitJson2[this.unitIndex].chapterInfo[0].chapterid ==
  4501. // _unitJson[n].chapterInfo[0].chapterid
  4502. // ) {
  4503. // this.unitIndex = n;
  4504. // _unitJson[n] = _unitJson2[this.unitIndex];
  4505. // break;
  4506. // }
  4507. // }
  4508. // }
  4509. } else if(index != 2) {
  4510. _unitJson[this.unitIndex] = _unitJson2[this.unitIndex];
  4511. }
  4512. if (index == 1) {
  4513. this.unitJson = _unitJson;
  4514. this.$forceUpdate();
  4515. this.timer = setTimeout(() => {
  4516. this.seleteCourseUpdate();
  4517. }, 3000);
  4518. } else if (index == 2) {
  4519. let _this = this;
  4520. _this
  4521. .$confirm(
  4522. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  4523. "提示",
  4524. {
  4525. confirmButtonText: "需要",
  4526. cancelButtonText: "取消",
  4527. type: "warning",
  4528. }
  4529. )
  4530. .then(() => {
  4531. _this.restoreWork(
  4532. _chapAarry[0],
  4533. _unitJson,
  4534. chapindex,
  4535. _unitJson2
  4536. );
  4537. })
  4538. .catch(() => {
  4539. _this.unitJson = _unitJson;
  4540. _this.$forceUpdate();
  4541. _this.timer = setTimeout(() => {
  4542. _this.seleteCourseUpdate();
  4543. }, 3000);
  4544. });
  4545. }
  4546. })
  4547. .catch((err) => {
  4548. console.error(err);
  4549. });
  4550. },
  4551. restoreWork(chapid, unitJson, chapindex, unitJson2) {
  4552. let params = [
  4553. {
  4554. cid: this.cid,
  4555. chapters: JSON.stringify(this.unitJson),
  4556. uid: this.userid,
  4557. chapid: chapid,
  4558. },
  4559. ];
  4560. this.ajax
  4561. .post(this.$store.state.api + "restoreWork", params)
  4562. .then((res) => {
  4563. this.$message({
  4564. message: "恢复成功",
  4565. type: "success",
  4566. });
  4567. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  4568. this.unitJson = unitJson;
  4569. this.$forceUpdate();
  4570. this.timer = setTimeout(() => {
  4571. this.seleteCourseUpdate();
  4572. }, 3000);
  4573. })
  4574. .catch((err) => {
  4575. this.$message.error("修改失败");
  4576. console.error(err);
  4577. });
  4578. },
  4579. getTypeName() {
  4580. console.log(this.courseTypeId);
  4581. this.$forceUpdate();
  4582. },
  4583. selectType() {
  4584. this.ajax
  4585. .get(this.$store.state.api + "selectType")
  4586. .then((res) => {
  4587. this.CourseType = res.data;
  4588. for (var i = 0; i < res.data[0].length; i++) {
  4589. if (!this.cid) {
  4590. this.courseTypeId[res.data[0][i].id] = "";
  4591. }
  4592. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  4593. if (res.data[0][i].name == "栏目") {
  4594. this.CourseType[0][i].name = "主题";
  4595. }
  4596. }
  4597. for (var j = 0; j < res.data[1].length; j++) {
  4598. if (res.data[0][i].id == res.data[1][j].pid) {
  4599. if (!this.CourseTypeJson[res.data[0][i].id]) {
  4600. this.CourseTypeJson[res.data[0][i].id] = [];
  4601. }
  4602. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  4603. }
  4604. }
  4605. }
  4606. this.selectTypeByOid();
  4607. })
  4608. .catch((err) => {
  4609. console.error(err);
  4610. });
  4611. },
  4612. selectTypeByOid() {
  4613. let params = {
  4614. oid: this.oid,
  4615. };
  4616. this.ajax
  4617. .get(this.$store.state.api + "selectTypeByOid", params)
  4618. .then((res) => {
  4619. for (var i = 0; i < res.data[0].length; i++) {
  4620. for (var j = 0; j < res.data[1].length; j++) {
  4621. if (res.data[0][i].id == res.data[1][j].pid) {
  4622. if (!this.CourseTypeJson[res.data[0][i].id]) {
  4623. this.CourseTypeJson[res.data[0][i].id] = [];
  4624. }
  4625. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  4626. }
  4627. }
  4628. }
  4629. })
  4630. .catch((err) => {
  4631. console.error(err);
  4632. });
  4633. },
  4634. OtherMb(type) {
  4635. this.typeMode = type;
  4636. setTimeout(() => {
  4637. this.checkEva(this.checkId);
  4638. }, 0);
  4639. },
  4640. checkEva(id) {
  4641. this.selectEva();
  4642. this.evalua = id;
  4643. this.checkId = id;
  4644. if (this.evalua != "") {
  4645. for (var i = 0; i < this.evaJuri.length; i++) {
  4646. if (this.evalua == this.evaJuri[i].id) {
  4647. this.eTitle = this.evaJuri[i].title;
  4648. this.eJson = JSON.parse(this.evaJuri[i].content);
  4649. }
  4650. }
  4651. this.data.data = [];
  4652. this.$forceUpdate();
  4653. setTimeout(() => {
  4654. this.setMindData();
  4655. }, 500);
  4656. }
  4657. },
  4658. selectEva() {
  4659. let params = {
  4660. oid: this.oid,
  4661. };
  4662. this.ajax
  4663. .get(this.$store.state.api + "selectAllEvaluation", params)
  4664. .then((res) => {
  4665. this.evaJuri = res.data[0];
  4666. })
  4667. .catch((err) => {
  4668. console.error(err);
  4669. });
  4670. },
  4671. setMindData() {
  4672. this.data.data = [];
  4673. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  4674. let _eJson = Object.keys(this.eJson);
  4675. let _e = this.eJson;
  4676. for (let i = 0; i < _eJson.length; i++) {
  4677. let element = _e[_eJson[i]];
  4678. this.data.data.push({
  4679. id: element.id,
  4680. parentid: "root",
  4681. topic: element.name,
  4682. });
  4683. let _eJsonc = Object.keys(element.child);
  4684. let _e2 = element.child;
  4685. for (let j = 0; j < _eJsonc.length; j++) {
  4686. let _ec = _e2[_eJsonc[j]];
  4687. this.data.data.push({
  4688. id: _ec.id,
  4689. parentid: element.id,
  4690. topic: _ec.name,
  4691. });
  4692. let _eJsonz = Object.keys(_ec.child);
  4693. let _e3 = _ec.child;
  4694. for (let z = 0; z < _eJsonz.length; z++) {
  4695. let _ez = _e3[_eJsonz[z]];
  4696. this.data.data.push({
  4697. id: _ez.id,
  4698. parentid: _ec.id,
  4699. topic: _ez.name,
  4700. });
  4701. }
  4702. }
  4703. }
  4704. this.$forceUpdate();
  4705. },
  4706. /*添加评价 */
  4707. addEList(index, tIndex) {
  4708. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  4709. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  4710. value: "",
  4711. detail: "",
  4712. score: 5,
  4713. })
  4714. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  4715. { value: "", detail: "", score: 5 },
  4716. ]);
  4717. this.$forceUpdate();
  4718. },
  4719. deletEList(index, tIndex, eIndex) {
  4720. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  4721. eIndex,
  4722. 1
  4723. );
  4724. this.$forceUpdate();
  4725. },
  4726. setEListStar() {
  4727. this.$forceUpdate();
  4728. },
  4729. },
  4730. beforeDestroy() {
  4731. clearTimeout(this.timer);
  4732. this.timer = null;
  4733. },
  4734. beforeRouteLeave(to, from, next) {
  4735. clearTimeout(this.timer);
  4736. this.timer = null;
  4737. next();
  4738. },
  4739. created() {
  4740. this.getStudent();
  4741. this.getTeacher();
  4742. this.getClass();
  4743. this.getTemplate();
  4744. this.selectType();
  4745. this.selectEva();
  4746. this.loading = false;
  4747. setTimeout(() => {
  4748. this.selectCourseDetail();
  4749. this.selectEva();
  4750. }, 500);
  4751. },
  4752. };
  4753. </script>
  4754. <style scoped>
  4755. @media screen and (max-width: 1024px) {
  4756. .mbCss {
  4757. flex-direction: column !important;
  4758. }
  4759. .pjCss {
  4760. width: 100% !important;
  4761. }
  4762. .evaCss {
  4763. width: 100% !important;
  4764. }
  4765. }
  4766. .dialog_diy >>> .el-dialog__header {
  4767. background: #3d67bc !important;
  4768. padding: 15px 20px;
  4769. }
  4770. .dialog_diy >>> .el-dialog__title {
  4771. color: #fff;
  4772. }
  4773. .dialog_diy >>> .el-dialog__headerbtn {
  4774. top: 19px;
  4775. }
  4776. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  4777. color: #fff;
  4778. }
  4779. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  4780. color: #fff;
  4781. }
  4782. .dialog_diy >>> .el-dialog__body,
  4783. .dialog_diy >>> .el-dialog__footer {
  4784. background: #fafafa;
  4785. }
  4786. .left {
  4787. border-right: 1px solid rgb(60, 94, 143);
  4788. display: flex;
  4789. flex-direction: column;
  4790. align-items: center;
  4791. min-height: 600px;
  4792. width: 385px;
  4793. height: 80%;
  4794. }
  4795. .tips {
  4796. color: rgb(128, 128, 128);
  4797. font-size: 12px;
  4798. width: 270px;
  4799. margin: 40px;
  4800. }
  4801. .pb_content {
  4802. height: 100% !important;
  4803. /* margin: 0 20px 0 20px; */
  4804. }
  4805. .pb_content_body {
  4806. width: 100% !important;
  4807. height: 100%;
  4808. }
  4809. .info_solid {
  4810. width: 270px;
  4811. height: 30px;
  4812. border-left: 1px solid #bdbdbd;
  4813. margin: 10px 0px 10px 30px;
  4814. }
  4815. .info_steps {
  4816. width: 270px;
  4817. font-size: 0.875rem;
  4818. display: flex;
  4819. align-items: center;
  4820. }
  4821. .info_steps span:nth-child(1) {
  4822. width: 30px;
  4823. height: 30px;
  4824. background: rgba(0, 0, 0, 0.38);
  4825. display: block;
  4826. color: #fff;
  4827. border-radius: 40px;
  4828. text-align: center;
  4829. line-height: 30px;
  4830. }
  4831. .steps_active {
  4832. background: #3d67bc !important;
  4833. }
  4834. .info_steps span:nth-child(2) {
  4835. margin-left: 5px;
  4836. }
  4837. .right {
  4838. height: 100%;
  4839. width: 100%;
  4840. display: flex;
  4841. overflow: hidden;
  4842. }
  4843. .basic_box {
  4844. margin: 0 auto;
  4845. position: relative;
  4846. padding: 0 20px 0 20px;
  4847. }
  4848. .basic_box_success {
  4849. width: 100%;
  4850. min-height: 455px;
  4851. padding: 50px 0;
  4852. position: relative;
  4853. text-align: center;
  4854. border-bottom: 1px solid #bfbfbf;
  4855. box-sizing: border-box;
  4856. display: flex;
  4857. align-items: center;
  4858. flex-direction: column;
  4859. justify-content: center;
  4860. }
  4861. .info_title {
  4862. font-size: 1.5em;
  4863. margin-right: 25px;
  4864. /* margin: 20px 30px 20px 30px; */
  4865. }
  4866. .bInfo_title {
  4867. text-align: left;
  4868. margin: 10px 0;
  4869. }
  4870. .small_title {
  4871. font-size: 14px;
  4872. line-height: 40px;
  4873. }
  4874. .chapter_beizhu {
  4875. font-size: 12px;
  4876. font-weight: bold;
  4877. float: right;
  4878. color: rgb(128, 128, 128);
  4879. margin-top: 5px;
  4880. }
  4881. .chapter_uploadBox1 {
  4882. text-align: left;
  4883. background-color: rgb(242, 242, 242);
  4884. width: 100%;
  4885. height: 67px;
  4886. padding: 0px 15px;
  4887. border-radius: 8px;
  4888. overflow: hidden;
  4889. font-size: 16px;
  4890. box-sizing: border-box;
  4891. position: relative;
  4892. }
  4893. .chapter_add {
  4894. width: 100%;
  4895. height: 32px;
  4896. margin-top: 15px;
  4897. cursor: pointer;
  4898. }
  4899. .chapter_add_l {
  4900. margin-left: 5px;
  4901. width: 30px;
  4902. height: 30px;
  4903. float: left;
  4904. border: 1px solid #aaa;
  4905. color: #aaa;
  4906. border-radius: 50%;
  4907. font-size: 25px;
  4908. text-align: center;
  4909. }
  4910. .chapter_add_r {
  4911. font-size: 18px;
  4912. height: 40px;
  4913. line-height: 30px;
  4914. text-indent: 10px;
  4915. color: #aaa;
  4916. }
  4917. .chapter_add_r span {
  4918. font-size: 12px;
  4919. color: rgb(204, 204, 204);
  4920. }
  4921. .chapter_add_input {
  4922. display: none;
  4923. }
  4924. .line {
  4925. width: 85%;
  4926. margin: 0 auto;
  4927. border-top: 1px solid #e5e5e5;
  4928. margin-top: 20px;
  4929. }
  4930. .info_btnBox {
  4931. width: 100%;
  4932. display: flex;
  4933. justify-content: space-evenly;
  4934. margin: 20px 0 25px 0;
  4935. }
  4936. .info_btn,
  4937. .teacherWord {
  4938. color: #fff;
  4939. background-color: #0f7eff;
  4940. padding: 8px 24px;
  4941. font-size: 0.9375rem;
  4942. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  4943. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  4944. min-width: 64px;
  4945. font-weight: 500;
  4946. border-radius: 4px;
  4947. box-sizing: border-box;
  4948. border: none;
  4949. cursor: pointer;
  4950. }
  4951. .teacherWord {
  4952. width: 105px !important;
  4953. text-align: center !important;
  4954. line-height: 36px !important;
  4955. padding: 0 !important;
  4956. font-size: 14px !important;
  4957. margin: 10px 0 !important;
  4958. }
  4959. .wordTeacher {
  4960. display: flex;
  4961. flex-direction: column;
  4962. width: 20%;
  4963. text-align: center;
  4964. font-size: 14px;
  4965. margin: 30px 30px 0 10px;
  4966. background: #fff;
  4967. position: relative;
  4968. border-radius: 5px;
  4969. padding: 25px 0px;
  4970. }
  4971. .wordPic {
  4972. margin: 0 auto;
  4973. width: 60px;
  4974. height: 60px;
  4975. cursor: pointer;
  4976. }
  4977. .deleteWord {
  4978. width: 22px;
  4979. height: 22px;
  4980. position: absolute;
  4981. right: 20px;
  4982. top: -10px;
  4983. cursor: pointer;
  4984. }
  4985. .wordPic > img,
  4986. .deleteWord > img,
  4987. .addToolImg > img {
  4988. width: 100%;
  4989. height: 100%;
  4990. }
  4991. .info_btn:hover {
  4992. background-color: #4f7cd5 !important;
  4993. }
  4994. .cru_selectBox {
  4995. display: flex;
  4996. margin: 24px 0 10px;
  4997. flex-wrap: nowrap;
  4998. white-space: nowrap;
  4999. overflow: auto;
  5000. position: relative;
  5001. height: 47px;
  5002. }
  5003. .cru_selectBox::-webkit-scrollbar {
  5004. /*滚动条整体样式*/
  5005. width: 6px;
  5006. /*高宽分别对应横竖滚动条的尺寸*/
  5007. height: 6px;
  5008. }
  5009. /*定义滚动条轨道 内阴影+圆角*/
  5010. .cru_selectBox::-webkit-scrollbar-track {
  5011. border-radius: 10px;
  5012. background-color: #eee;
  5013. }
  5014. /*定义滑块 内阴影+圆角*/
  5015. .cru_selectBox::-webkit-scrollbar-thumb {
  5016. border-radius: 10px;
  5017. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  5018. background-color: rgba(0, 0, 0, 0.1);
  5019. }
  5020. .cru_line {
  5021. position: absolute;
  5022. bottom: 0px;
  5023. transition: all 0.5s;
  5024. left: 0px;
  5025. width: 125px;
  5026. margin-left: -25px;
  5027. }
  5028. .cru_select {
  5029. font-size: 21px;
  5030. margin-right: 37px;
  5031. margin-left: 5px;
  5032. cursor: pointer;
  5033. color: #a6a6a6;
  5034. }
  5035. .cru_selected {
  5036. color: #0b7fc2 !important;
  5037. }
  5038. .chapter_contentbox {
  5039. display: flex;
  5040. align-items: center;
  5041. margin-top: 15px;
  5042. }
  5043. .chapter_contentbox div:nth-child(1) {
  5044. /* width: 150px; */
  5045. margin: 0px;
  5046. /* font-size: 2em; */
  5047. color: black;
  5048. display: block;
  5049. white-space: nowrap;
  5050. overflow: hidden;
  5051. text-overflow: ellipsis;
  5052. /* font-weight: 600; */
  5053. margin-right: 20px;
  5054. font-size: 18px;
  5055. }
  5056. .chapter_contentbox div:nth-child(2) {
  5057. width: 380px;
  5058. }
  5059. .chapter_contentbox div:nth-child(3),
  5060. .remove {
  5061. background-image: url(../../assets/remove.png);
  5062. cursor: pointer;
  5063. opacity: 0.5;
  5064. width: 40px;
  5065. height: 50px;
  5066. background-repeat: no-repeat;
  5067. background-position: 5px 10px;
  5068. }
  5069. .binfo_input {
  5070. font: inherit;
  5071. color: currentColor;
  5072. width: 100%;
  5073. margin: 0;
  5074. /* padding: 15px 14px; */
  5075. padding: 8px 14px;
  5076. display: block;
  5077. min-width: 0;
  5078. outline: none;
  5079. box-sizing: content-box;
  5080. background: none;
  5081. border: 1px solid rgba(0, 0, 0, 0.23);
  5082. border-radius: 4px;
  5083. box-sizing: border-box;
  5084. background: #fff;
  5085. font-size: 18px;
  5086. }
  5087. .binfo_input:focus-visible {
  5088. border: 1px solid rgba(61, 103, 188);
  5089. }
  5090. .time {
  5091. display: flex;
  5092. margin: 35px 0 80px 0;
  5093. }
  5094. .chapter_btnbox {
  5095. width: 160px;
  5096. border-radius: 5px;
  5097. border: 2px dashed gray;
  5098. display: flex;
  5099. padding: 8px 50px;
  5100. align-items: center;
  5101. justify-content: center;
  5102. margin: 30px auto 0;
  5103. cursor: pointer;
  5104. }
  5105. .icon_add {
  5106. position: relative;
  5107. width: 24px;
  5108. padding-top: 20px;
  5109. border-radius: 100%;
  5110. border-width: 2px;
  5111. border-style: solid;
  5112. border-color: gray;
  5113. }
  5114. .icon_add i:nth-child(1) {
  5115. position: absolute;
  5116. left: 50%;
  5117. top: 50%;
  5118. height: 60%;
  5119. transform: translate(-50%, -50%);
  5120. border-width: 1px;
  5121. border-style: solid;
  5122. border-color: inherit;
  5123. }
  5124. .icon_add i:nth-child(2) {
  5125. position: absolute;
  5126. top: 50%;
  5127. left: 50%;
  5128. width: 60%;
  5129. transform: translate(-50%, -50%);
  5130. border-width: 1px;
  5131. border-style: solid;
  5132. border-color: inherit;
  5133. }
  5134. .chapter_btn_w {
  5135. font-size: 0.9375rem;
  5136. font-weight: bold;
  5137. color: gray;
  5138. margin-left: 20px;
  5139. }
  5140. .disUoloadSty >>> .el-icon-plus {
  5141. display: none !important; /* 上传按钮隐藏 */
  5142. }
  5143. .imgLeft {
  5144. margin: 15px 0;
  5145. }
  5146. .add_info_box {
  5147. margin: 20px 0;
  5148. }
  5149. .add_info_box button {
  5150. margin: 0 10px 10px 0;
  5151. }
  5152. .add_chapters_box {
  5153. text-align: left;
  5154. background-color: rgb(232 234 237);
  5155. width: 100%;
  5156. padding: 0px 15px;
  5157. border-radius: 15px;
  5158. font-size: 16px;
  5159. box-sizing: border-box;
  5160. position: relative;
  5161. padding: 0 10px 5px 10px;
  5162. height: 185px;
  5163. overflow-y: auto;
  5164. overflow-x: hidden;
  5165. }
  5166. .homework_box {
  5167. display: flex;
  5168. align-items: flex-start;
  5169. flex-wrap: wrap;
  5170. margin: 15px 0 0 0;
  5171. flex-direction: column;
  5172. align-content: flex-start;
  5173. }
  5174. .course_homework {
  5175. display: flex;
  5176. justify-content: center;
  5177. flex-direction: row;
  5178. align-items: center;
  5179. margin: 0 10px 0 0;
  5180. }
  5181. .course_homework >>> .el-input__inner {
  5182. width: 140px;
  5183. margin-left: 15px;
  5184. }
  5185. .chapter_upload_move {
  5186. position: relative;
  5187. background-color: #fff;
  5188. position: absolute;
  5189. width: 100%;
  5190. top: 0px;
  5191. left: 0px;
  5192. border: 1px solid #eee;
  5193. border-radius: 5px;
  5194. transition: width 2s;
  5195. -moz-transition: width 2s;
  5196. -webkit-transition: width 2s;
  5197. -o-transition: width 2s;
  5198. }
  5199. .chapter_upload_l_i {
  5200. background-image: url("../../assets/icon.png");
  5201. background-position: 3px -165px;
  5202. width: 30px;
  5203. height: 30px;
  5204. margin: 10px auto 0 auto;
  5205. }
  5206. .left_first {
  5207. display: flex;
  5208. flex-direction: column;
  5209. flex-wrap: nowrap;
  5210. }
  5211. .right_first {
  5212. width: 100%;
  5213. height: 100%;
  5214. margin-top: 15px;
  5215. }
  5216. .right_title {
  5217. height: 30px;
  5218. padding: 15px 0 15px 20px;
  5219. border-bottom: 1px solid #f2f2f2;
  5220. font-size: 1.5em;
  5221. font-weight: bold;
  5222. color: #0f7eff;
  5223. margin: 0 auto;
  5224. }
  5225. .people {
  5226. border: 1px solid rgb(229 229 229);
  5227. height: 495px;
  5228. border-radius: 5px;
  5229. width: 100%;
  5230. overflow: auto;
  5231. }
  5232. .people_top {
  5233. display: flex;
  5234. width: 100%;
  5235. justify-content: space-between;
  5236. align-items: center;
  5237. }
  5238. .people_nav,
  5239. .people_top_right {
  5240. padding: 20px 0 0 20px;
  5241. }
  5242. .people_search {
  5243. display: flex;
  5244. position: relative;
  5245. }
  5246. .people_search >>> .el-input__inner {
  5247. height: 25px;
  5248. width: 95%;
  5249. }
  5250. .search_img {
  5251. width: 20px;
  5252. height: 20px;
  5253. position: absolute;
  5254. right: 15px;
  5255. top: 3px;
  5256. }
  5257. .search_img > img {
  5258. width: 100%;
  5259. height: 100%;
  5260. }
  5261. .people_name {
  5262. display: flex;
  5263. justify-content: flex-start;
  5264. padding: 20px 0 0 25px;
  5265. flex-direction: column;
  5266. flex-wrap: wrap;
  5267. }
  5268. .people_name >>> .el-checkbox {
  5269. width: 100%;
  5270. display: flex;
  5271. align-items: center;
  5272. margin-bottom: 10px;
  5273. }
  5274. .people_name >>> .el-checkbox__label {
  5275. text-overflow: ellipsis;
  5276. overflow: hidden;
  5277. width: 100%;
  5278. }
  5279. .right_img {
  5280. width: 150px;
  5281. height: 150px;
  5282. margin: 0 auto;
  5283. }
  5284. .right_img > img {
  5285. width: 100%;
  5286. height: 100%;
  5287. }
  5288. .number {
  5289. margin-top: 20px;
  5290. color: #4aa6ff;
  5291. text-decoration: underline;
  5292. }
  5293. .success_button {
  5294. display: flex;
  5295. text-align: center;
  5296. margin: 5% 0 auto;
  5297. flex-direction: row;
  5298. justify-content: center;
  5299. }
  5300. .look_course {
  5301. margin-right: 40px;
  5302. background: #3d67bc;
  5303. width: 200px;
  5304. height: 35px;
  5305. line-height: 35px;
  5306. color: #fff;
  5307. text-align: center;
  5308. font-size: 14px;
  5309. border-radius: 5px;
  5310. cursor: pointer;
  5311. }
  5312. .attend_others {
  5313. width: 250px;
  5314. background: #4fb13c;
  5315. height: 35px;
  5316. line-height: 35px;
  5317. color: #fff;
  5318. text-align: center;
  5319. font-size: 14px;
  5320. border-radius: 5px;
  5321. cursor: pointer;
  5322. }
  5323. .dialog_diy2 >>> .el-dialog__body {
  5324. text-align: center;
  5325. }
  5326. .write_togother {
  5327. position: absolute;
  5328. right: 45px;
  5329. display: flex;
  5330. top: 5%;
  5331. }
  5332. .write_people {
  5333. font-size: 14px;
  5334. line-height: 50px;
  5335. padding-right: 10px;
  5336. }
  5337. .end_write {
  5338. background: #3d67bc;
  5339. color: #fff;
  5340. width: 100px;
  5341. height: 35px;
  5342. line-height: 35px;
  5343. text-align: center;
  5344. font-size: 14px;
  5345. border-radius: 5px;
  5346. cursor: pointer;
  5347. }
  5348. .chapter_upload {
  5349. height: 50px;
  5350. margin-top: 12px;
  5351. position: relative;
  5352. display: flex;
  5353. align-items: center;
  5354. width: 100%;
  5355. min-height: 50px;
  5356. }
  5357. .chapter_upload_t {
  5358. background-color: #fff;
  5359. position: absolute;
  5360. height: 100%;
  5361. top: 0px;
  5362. left: 0px;
  5363. border-radius: 40px;
  5364. box-sizing: border-box;
  5365. box-shadow: 0 0 3px 3px #dfdfdf;
  5366. }
  5367. .chapter_upload_o {
  5368. width: 100%;
  5369. height: 100%;
  5370. position: relative;
  5371. z-index: 1;
  5372. }
  5373. .chapter_upload_ic {
  5374. height: 30px;
  5375. float: right;
  5376. }
  5377. .chapter_upload_ic_l {
  5378. width: 50px;
  5379. height: 50px;
  5380. float: left;
  5381. }
  5382. .chapter_upload_ic_l div {
  5383. width: 30px;
  5384. height: 35px;
  5385. background: url("../../assets/icon/icon.png");
  5386. }
  5387. .chapter_upload_ic_r {
  5388. width: 50px;
  5389. height: 50px;
  5390. float: left;
  5391. margin-left: 0px;
  5392. display: flex;
  5393. align-items: center;
  5394. }
  5395. .chapter_upload_ic_r div {
  5396. width: 25px;
  5397. height: 25px;
  5398. background-image: url("../../assets/delete.png");
  5399. background-size: 100% 100%;
  5400. }
  5401. .chapter_upload_n {
  5402. display: flex;
  5403. text-indent: 10px;
  5404. text-decoration: none;
  5405. text-overflow: ellipsis;
  5406. white-space: nowrap;
  5407. overflow: hidden;
  5408. width: 55%;
  5409. margin-left: 10px;
  5410. cursor: pointer;
  5411. margin-top: 2px;
  5412. }
  5413. .chapter_upload_l_i1 {
  5414. background-image: url("../../assets/icon/video.png");
  5415. width: 28px;
  5416. height: 28px;
  5417. background-size: 100% 100%;
  5418. }
  5419. .chapter_upload_l_i5 {
  5420. background-image: url("../../assets/icon/word.png");
  5421. width: 24px;
  5422. height: 24px;
  5423. background-size: 100% 100%;
  5424. }
  5425. .chapter_upload_l_i8 {
  5426. background-image: url("../../assets/icon/line.png");
  5427. width: 24px;
  5428. height: 24px;
  5429. background-size: 100% 100%;
  5430. }
  5431. .chapter_upload_ud {
  5432. display: flex;
  5433. flex-direction: column;
  5434. margin-left: 5px;
  5435. justify-content: center;
  5436. }
  5437. .chapter_upload_up {
  5438. background-image: url("../../assets/icon/up.png");
  5439. width: 17px;
  5440. height: 15px;
  5441. background-size: 100% 100%;
  5442. cursor: pointer;
  5443. }
  5444. .chapter_upload_down {
  5445. background-image: url("../../assets/icon/down.png");
  5446. width: 17px;
  5447. height: 15px;
  5448. margin: 2px auto 0 auto;
  5449. background-size: 100% 100%;
  5450. cursor: pointer;
  5451. }
  5452. .addWordStyle {
  5453. display: flex;
  5454. flex-direction: row;
  5455. justify-content: flex-start;
  5456. overflow-x: auto;
  5457. white-space: nowrap;
  5458. flex-wrap: wrap;
  5459. }
  5460. /* table 样式 */
  5461. .cont >>> table {
  5462. border-top: 1px solid #ccc;
  5463. border-left: 1px solid #ccc;
  5464. }
  5465. .cont >>> table td,
  5466. .cont >>> table th {
  5467. border-bottom: 1px solid #ccc;
  5468. border-right: 1px solid #ccc;
  5469. padding: 3px 5px;
  5470. }
  5471. .cont >>> table th {
  5472. border-bottom: 2px solid #ccc;
  5473. text-align: center;
  5474. }
  5475. /* blockquote 样式 */
  5476. .cont >>> blockquote {
  5477. display: block;
  5478. border-left: 8px solid #d0e5f2;
  5479. padding: 5px 10px;
  5480. margin: 10px 0;
  5481. line-height: 1.4;
  5482. font-size: 100%;
  5483. background-color: #f1f1f1;
  5484. }
  5485. /* code 样式 */
  5486. .cont >>> code {
  5487. display: inline-block;
  5488. *display: inline;
  5489. *zoom: 1;
  5490. background-color: #f1f1f1;
  5491. border-radius: 3px;
  5492. padding: 3px 5px;
  5493. margin: 0 3px;
  5494. }
  5495. .cont >>> pre code {
  5496. display: block;
  5497. }
  5498. /* ul ol 样式 */
  5499. .cont >>> ul,
  5500. ol {
  5501. margin: 10px 0 10px 20px;
  5502. }
  5503. .wordbox {
  5504. display: flex;
  5505. flex-wrap: wrap;
  5506. cursor: pointer;
  5507. width: 100%;
  5508. }
  5509. .checkword {
  5510. width: 22px;
  5511. height: 22px;
  5512. margin: 10px auto 0;
  5513. cursor: pointer;
  5514. }
  5515. .checkword img {
  5516. width: 100%;
  5517. }
  5518. .stepBg {
  5519. margin: 0 25px 0 0;
  5520. /* width: 17%; */
  5521. min-width: 300px;
  5522. width: 300px;
  5523. /* border-radius: 10px; */
  5524. display: flex;
  5525. flex-direction: column;
  5526. justify-content: flex-start;
  5527. align-items: center;
  5528. flex-wrap: nowrap;
  5529. background: #fff;
  5530. min-height: 700px;
  5531. height: 100%;
  5532. /* top: 18%; */
  5533. }
  5534. .stepBg > div {
  5535. height: 80px;
  5536. width: 85%;
  5537. cursor: pointer;
  5538. margin: 10px 0;
  5539. border-radius: 10px;
  5540. }
  5541. .first,
  5542. .second,
  5543. .third,
  5544. .four {
  5545. background: #4a83d0;
  5546. height: 90px;
  5547. color: #fff;
  5548. display: flex;
  5549. flex-direction: row;
  5550. align-items: center;
  5551. justify-content: center;
  5552. }
  5553. .first > div:nth-child(1),
  5554. .second > div:nth-child(1),
  5555. .third > div:nth-child(1),
  5556. .four > div:nth-child(1) {
  5557. margin: 5px 10px 0 0;
  5558. width: 2rem;
  5559. }
  5560. .firstNo,
  5561. .secondNo,
  5562. .thirdNo,
  5563. .fourNo {
  5564. background: #e7e7e7;
  5565. color: #adadad;
  5566. display: flex;
  5567. flex-direction: row;
  5568. align-items: center;
  5569. justify-content: center;
  5570. }
  5571. .firstNo > div:nth-child(1),
  5572. .secondNo > div:nth-child(1),
  5573. .thirdNo > div:nth-child(1),
  5574. .fourNo > div:nth-child(1) {
  5575. margin: 5px 10px 0 0;
  5576. width: 2rem;
  5577. }
  5578. .uploadWidth >>> .el-upload {
  5579. width: 60px;
  5580. height: 60px;
  5581. position: relative;
  5582. }
  5583. .addPeople {
  5584. background: #fa6060;
  5585. width: 150px;
  5586. height: 40px;
  5587. color: #fff;
  5588. border-radius: 5px;
  5589. text-align: center;
  5590. line-height: 40px;
  5591. font-size: 14px;
  5592. cursor: pointer;
  5593. margin-top: 20px;
  5594. }
  5595. .kcImg {
  5596. width: 60px;
  5597. margin-left: 10px;
  5598. }
  5599. .zyImg {
  5600. width: 55px;
  5601. margin: 0 10px;
  5602. }
  5603. .deleteZy {
  5604. width: 20px;
  5605. position: absolute;
  5606. top: 5px;
  5607. right: 5px;
  5608. cursor: pointer;
  5609. }
  5610. .kcImg > img,
  5611. .zyImg > img,
  5612. .deleteZy > img {
  5613. width: 100%;
  5614. height: 100%;
  5615. }
  5616. .zyBox {
  5617. display: flex;
  5618. flex-direction: row;
  5619. align-items: center;
  5620. background: #67d37d;
  5621. color: #fff;
  5622. width: 210px;
  5623. margin: 20px 20px 0 0;
  5624. border-radius: 10px;
  5625. height: 70px;
  5626. position: relative;
  5627. }
  5628. .upCss {
  5629. display: flex;
  5630. flex-direction: row;
  5631. justify-content: flex-start;
  5632. }
  5633. .upCss >>> .el-icon-plus {
  5634. position: none !important;
  5635. width: 200px;
  5636. height: 100px;
  5637. display: flex;
  5638. flex-wrap: nowrap;
  5639. flex-direction: column;
  5640. align-items: center;
  5641. justify-content: center;
  5642. border: 1px dashed #ccc;
  5643. min-width: 78px;
  5644. min-height: 100px;
  5645. z-index: 999;
  5646. }
  5647. .upCss >>> .el-upload-list__item-name {
  5648. width: 100px;
  5649. white-space: nowrap;
  5650. overflow: hidden;
  5651. text-overflow: ellipsis;
  5652. }
  5653. .addStageImg {
  5654. min-width: 25px;
  5655. min-height: 25px;
  5656. width: 25px;
  5657. height: 25px;
  5658. cursor: pointer;
  5659. }
  5660. .addHW {
  5661. width: 28px;
  5662. height: 28px;
  5663. cursor: pointer;
  5664. }
  5665. .addStageImg > img,
  5666. .addHW > img {
  5667. width: 100%;
  5668. height: 100%;
  5669. }
  5670. .addNewPP >>> .el-dialog__body {
  5671. padding: 5px 20px;
  5672. }
  5673. .isHeight {
  5674. height: 680px;
  5675. }
  5676. .toolChoose {
  5677. display: flex;
  5678. /* width: 100%; */
  5679. flex-direction: row;
  5680. flex-wrap: wrap;
  5681. }
  5682. .tool {
  5683. display: flex;
  5684. flex-direction: column;
  5685. flex-wrap: nowrap;
  5686. width: fit-content;
  5687. margin: 10px 0 10px 0;
  5688. align-items: center;
  5689. }
  5690. .tool + .tool {
  5691. margin-right: 45px;
  5692. }
  5693. .whiteBIcon {
  5694. width: 80px;
  5695. cursor: pointer;
  5696. display: flex;
  5697. flex-direction: column;
  5698. flex-wrap: nowrap;
  5699. align-items: center;
  5700. }
  5701. .whiteBIcon > img,
  5702. .check > img,
  5703. .toolIcon > img,
  5704. .arrow > img {
  5705. width: 100%;
  5706. height: 100%;
  5707. }
  5708. .whiteBIcon > img {
  5709. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  5710. border-radius: 15px;
  5711. }
  5712. .check {
  5713. width: 20px;
  5714. height: 20px;
  5715. cursor: pointer;
  5716. margin: 10px 0;
  5717. }
  5718. .customWidth >>> .el-dialog {
  5719. min-width: 500px !important;
  5720. }
  5721. .a_addBox {
  5722. margin: 10px 0;
  5723. background: #fff;
  5724. padding: 15px;
  5725. max-height: 400px;
  5726. overflow: auto;
  5727. }
  5728. .a_add_box {
  5729. border-bottom: 2px solid #eee;
  5730. padding-bottom: 10px;
  5731. }
  5732. .a_add_head {
  5733. display: flex;
  5734. align-items: center;
  5735. justify-content: space-between;
  5736. margin: 10px 0;
  5737. font-size: 18px;
  5738. }
  5739. .a_add_head .a_add_head_input {
  5740. width: 300px;
  5741. }
  5742. .a_add_head .a_add_head_div {
  5743. display: flex;
  5744. align-items: center;
  5745. justify-content: space-between;
  5746. }
  5747. .a_add_body {
  5748. display: flex;
  5749. align-items: center;
  5750. }
  5751. .a_add_input {
  5752. display: flex;
  5753. align-items: center;
  5754. flex-wrap: wrap;
  5755. }
  5756. .width100 {
  5757. width: 100%;
  5758. }
  5759. .a_add_input .a_add_persent {
  5760. width: 100%;
  5761. }
  5762. .a_add_persent_div {
  5763. width: 100%;
  5764. display: flex;
  5765. align-items: center;
  5766. }
  5767. .a_add_persent_div span {
  5768. margin: 5px 0;
  5769. }
  5770. .a_add_persent_div span:nth-child(1) {
  5771. width: 30%;
  5772. }
  5773. .a_add_persent_div span:nth-child(2) {
  5774. width: 7%;
  5775. }
  5776. .a_add_persent_div span:nth-child(3) {
  5777. width: 40%;
  5778. }
  5779. .a_add_body_div {
  5780. display: flex;
  5781. align-items: center;
  5782. justify-content: center;
  5783. flex-direction: column;
  5784. }
  5785. .all_choose {
  5786. display: flex;
  5787. flex-direction: row;
  5788. align-items: flex-start;
  5789. width: 100%;
  5790. }
  5791. .all_choose > span {
  5792. width: 100px;
  5793. display: block;
  5794. letter-spacing: 14px;
  5795. white-space: nowrap;
  5796. overflow: hidden;
  5797. text-overflow: ellipsis;
  5798. }
  5799. .all_choose >>> .el-checkbox-group {
  5800. display: flex;
  5801. flex-direction: row;
  5802. width: 100%;
  5803. flex-wrap: wrap;
  5804. align-content: center;
  5805. justify-content: flex-start;
  5806. align-items: center;
  5807. margin-top: 3px;
  5808. }
  5809. .all_choose > .el-checkbox-group >>> .el-checkbox {
  5810. margin-bottom: 10px;
  5811. display: flex;
  5812. flex-direction: row;
  5813. align-items: center;
  5814. }
  5815. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label {
  5816. min-width: 80px;
  5817. overflow: hidden;
  5818. width: 80px;
  5819. text-overflow: ellipsis;
  5820. white-space: nowrap;
  5821. }
  5822. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label:hover {
  5823. width: auto;
  5824. }
  5825. .choose > div:nth-child(3) > span {
  5826. letter-spacing: 0 !important;
  5827. }
  5828. .choose {
  5829. display: flex;
  5830. flex-direction: column;
  5831. flex-wrap: nowrap;
  5832. height: 100%;
  5833. justify-content: space-evenly;
  5834. align-items: flex-start;
  5835. }
  5836. .both {
  5837. display: flex;
  5838. flex-direction: row;
  5839. flex-wrap: wrap;
  5840. width: 100%;
  5841. align-items: center;
  5842. justify-content: flex-start;
  5843. margin: 30px 0;
  5844. }
  5845. .notice >>> .el-dialog {
  5846. width: 500px !important;
  5847. text-align: center;
  5848. }
  5849. .notice >>> .el-button {
  5850. margin-top: 20px;
  5851. }
  5852. .whiteBg {
  5853. background: #fff;
  5854. border-radius: 10px;
  5855. }
  5856. .chooseWho {
  5857. display: flex;
  5858. width: 380px;
  5859. flex-direction: row;
  5860. flex-wrap: nowrap;
  5861. justify-content: space-between;
  5862. padding-bottom: 10px;
  5863. }
  5864. .chooseWho > div {
  5865. cursor: pointer;
  5866. padding-bottom: 10px;
  5867. font-weight: bold;
  5868. }
  5869. .isChooseActive {
  5870. color: #3e88f4;
  5871. border-bottom: 2px solid #2f80f3;
  5872. }
  5873. .toolSort {
  5874. display: flex;
  5875. flex-direction: row;
  5876. flex-wrap: wrap;
  5877. justify-content: flex-start;
  5878. align-items: flex-start;
  5879. }
  5880. .toolSort > div {
  5881. margin-right: 45px;
  5882. }
  5883. .tools {
  5884. width: 100%;
  5885. display: flex;
  5886. flex-direction: column;
  5887. flex-wrap: nowrap;
  5888. align-items: flex-start;
  5889. }
  5890. .leftTools,
  5891. .rightTools {
  5892. width: 50%;
  5893. }
  5894. .rightTools {
  5895. display: flex;
  5896. flex-direction: row;
  5897. flex-wrap: nowrap;
  5898. justify-content: space-around;
  5899. }
  5900. .firstToolList {
  5901. display: flex;
  5902. flex-direction: column;
  5903. flex-wrap: nowrap;
  5904. align-items: center;
  5905. }
  5906. .iconList {
  5907. display: flex;
  5908. flex-direction: row;
  5909. flex-wrap: wrap;
  5910. justify-content: flex-start;
  5911. align-items: center;
  5912. margin: 20px 0 5px 0;
  5913. width: 240px;
  5914. min-width: 240px;
  5915. }
  5916. .iconTool {
  5917. display: flex;
  5918. flex-direction: column;
  5919. flex-wrap: nowrap;
  5920. align-items: center;
  5921. justify-content: flex-start;
  5922. margin: 15px 10px;
  5923. }
  5924. .toolIcon {
  5925. width: 50px;
  5926. }
  5927. .taskBorder {
  5928. border: 1px solid #e1e1e1;
  5929. border-radius: 10px;
  5930. margin-top: 20px;
  5931. min-height: 1160px;
  5932. position: relative;
  5933. background: #fbfbfb;
  5934. }
  5935. .smallTaskBorder {
  5936. height: 170px;
  5937. min-height: 170px !important;
  5938. overflow: hidden;
  5939. }
  5940. .taskBorder > div {
  5941. padding: 30px 0 10px 30px;
  5942. }
  5943. .addTaskBorder {
  5944. border: 2px solid #e1e1e1;
  5945. border-radius: 10px;
  5946. margin-top: 25px;
  5947. cursor: pointer;
  5948. }
  5949. .addTaskBorder > div {
  5950. margin: 0 auto;
  5951. display: flex;
  5952. align-items: center;
  5953. justify-content: center;
  5954. }
  5955. .addTaskBorder > div > img {
  5956. width: 100px;
  5957. }
  5958. .addTaskBorder > div > span {
  5959. font-size: 23px;
  5960. color: #dbdbdb;
  5961. }
  5962. .funBlock {
  5963. display: flex;
  5964. padding: 15px 0;
  5965. flex-direction: row;
  5966. justify-content: flex-end;
  5967. align-items: center;
  5968. position: absolute;
  5969. right: 15px;
  5970. bottom: 35px;
  5971. }
  5972. .fold {
  5973. display: flex;
  5974. margin: 0 10px;
  5975. flex-direction: row;
  5976. align-items: center;
  5977. cursor: pointer;
  5978. }
  5979. .arrow {
  5980. width: 15px;
  5981. height: 15px;
  5982. margin-left: 10px;
  5983. }
  5984. .addToolFun {
  5985. display: flex;
  5986. width: 150px;
  5987. flex-direction: row;
  5988. align-items: center;
  5989. justify-content: center;
  5990. border: 1px dashed;
  5991. border-radius: 5px;
  5992. height: 50px;
  5993. margin: 35px auto 0;
  5994. cursor: pointer;
  5995. }
  5996. .addToolImg {
  5997. width: 30px;
  5998. height: 30px;
  5999. margin-right: 20px;
  6000. }
  6001. .addToolsDia >>> .el-dialog__body {
  6002. padding: 20px;
  6003. }
  6004. .addToolsDia >>> .el-dialog__body > .toolChoose {
  6005. padding: 0;
  6006. }
  6007. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools {
  6008. padding: 0;
  6009. border-bottom: none;
  6010. margin-bottom: 0;
  6011. }
  6012. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools > .chooseWho {
  6013. width: 100%;
  6014. }
  6015. .lineCss >>> .el-form-item__label {
  6016. width: auto !important;
  6017. }
  6018. .lineCss >>> .el-form-item__content {
  6019. margin-left: 50px !important;
  6020. }
  6021. .newSteps {
  6022. display: flex;
  6023. width: 100% !important;
  6024. height: 80px;
  6025. cursor: pointer;
  6026. margin: 10px 0;
  6027. border-radius: 10px;
  6028. flex-direction: row;
  6029. align-content: center;
  6030. justify-content: center;
  6031. align-items: center;
  6032. margin: 0 !important;
  6033. }
  6034. /* 评价样式 */
  6035. .elist_css {
  6036. padding-bottom: 60px !important;
  6037. }
  6038. .elist_title {
  6039. margin-bottom: 10px;
  6040. }
  6041. .elist_input {
  6042. }
  6043. .elist_input_box {
  6044. display: flex;
  6045. align-items: center;
  6046. flex-wrap: wrap;
  6047. }
  6048. .elist_input_box + .elist_input_box {
  6049. margin-top: 30px;
  6050. }
  6051. .elist_input .elist_input_box input {
  6052. font: inherit;
  6053. color: currentColor;
  6054. /* width: 200px; */
  6055. max-width: 200px;
  6056. padding: 8px 14px;
  6057. display: block;
  6058. min-width: 0;
  6059. outline: none;
  6060. border: 1px solid rgba(0, 0, 0, 0.23);
  6061. border-radius: 4px;
  6062. box-sizing: border-box;
  6063. background: #fff;
  6064. margin: 0 20px 0 0;
  6065. }
  6066. .elist_input .elist_input_box span {
  6067. height: 36px;
  6068. line-height: 36px;
  6069. color: rgb(82, 82, 82);
  6070. min-width: 80px;
  6071. }
  6072. .elist_input .elist_input_box .remove {
  6073. height: 20px;
  6074. width: 20px;
  6075. background-size: 100% 100%;
  6076. background-position: unset;
  6077. margin-left: 5px;
  6078. }
  6079. .elist_input_box >>> .el-rate {
  6080. display: flex;
  6081. height: 36px;
  6082. align-items: center;
  6083. }
  6084. .elist_input_box .elist_inptu_text {
  6085. width: 100%;
  6086. display: flex;
  6087. align-items: center;
  6088. margin-top: 10px;
  6089. }
  6090. .elist_input_box .elist_inptu_text input {
  6091. /* width: 500px; */
  6092. width: 100%;
  6093. max-width: unset;
  6094. }
  6095. .elist_input_box >>> .el-rate__icon {
  6096. font-size: 24px;
  6097. }
  6098. .elist_btn {
  6099. margin-top: 10px;
  6100. }
  6101. .lineTitle {
  6102. margin-top: 15px;
  6103. width: 110px;
  6104. }
  6105. .courseTop {
  6106. display: flex;
  6107. flex-direction: row;
  6108. justify-content: flex-start;
  6109. align-items: center;
  6110. /* width: 100%; */
  6111. width: calc(100% - 20px);
  6112. /* background: rgb(255, 255, 255); */
  6113. /* border-radius: 10px; */
  6114. padding: 20px 0;
  6115. }
  6116. .stepsNav {
  6117. display: flex;
  6118. flex-direction: row;
  6119. justify-content: flex-start;
  6120. align-items: center;
  6121. }
  6122. .stepsWord {
  6123. font-size: 18px;
  6124. color: #fff;
  6125. font-weight: bold;
  6126. margin-left: auto;
  6127. background: rgb(15, 126, 255);
  6128. border-radius: 5px;
  6129. padding: 3px 25px;
  6130. box-sizing: border-box;
  6131. }
  6132. .rightBox {
  6133. width: calc(100% - 20px);
  6134. background: rgb(255, 255, 255);
  6135. border-radius: 10px;
  6136. overflow: auto;
  6137. }
  6138. .e_add_top {
  6139. display: flex;
  6140. justify-content: space-between;
  6141. padding: 20px 20px 0 20px;
  6142. border-radius: 3px;
  6143. background: #fff;
  6144. }
  6145. .e_add_title2 {
  6146. display: flex;
  6147. align-items: center;
  6148. }
  6149. .e_add_title2 span {
  6150. width: 40px;
  6151. }
  6152. .e_add_title {
  6153. display: flex;
  6154. align-items: center;
  6155. color: #b8b8b8;
  6156. font-size: 18px;
  6157. position: relative;
  6158. height: 40px;
  6159. }
  6160. .e_add_title span {
  6161. margin-right: 10px;
  6162. }
  6163. .e_add_title .el_input {
  6164. width: 300px;
  6165. }
  6166. .e_add_title >>> .el-input__inner {
  6167. width: 400px;
  6168. }
  6169. .e_add_btn {
  6170. }
  6171. .e_add_content {
  6172. display: flex;
  6173. width: 100%;
  6174. }
  6175. .e_add_list {
  6176. background: #fff;
  6177. height: 500px;
  6178. width: 210px;
  6179. position: relative;
  6180. margin: 15px 5px 0 0;
  6181. flex-shrink: 0;
  6182. display: flex;
  6183. flex-direction: column;
  6184. }
  6185. .e_add_list_title {
  6186. font-size: 20px;
  6187. width: 100%;
  6188. box-sizing: border-box;
  6189. padding: 15px 40px;
  6190. text-align: center;
  6191. border-bottom: 1px solid #eaeaea;
  6192. position: relative;
  6193. display: flex;
  6194. align-items: center;
  6195. justify-content: center;
  6196. height: 57px;
  6197. background: #f6f6f6;
  6198. }
  6199. .e_add_list_title span {
  6200. overflow: hidden;
  6201. white-space: nowrap;
  6202. text-overflow: ellipsis;
  6203. }
  6204. .e_add_list_title img {
  6205. position: absolute;
  6206. right: 15px;
  6207. width: 25px;
  6208. cursor: pointer;
  6209. top: 50%;
  6210. transform: translateY(-50%);
  6211. }
  6212. .e_add_list_body {
  6213. height: calc(100% - 187px);
  6214. overflow: auto;
  6215. }
  6216. .e_add_list_child {
  6217. width: 100%;
  6218. display: flex;
  6219. align-items: center;
  6220. justify-content: center;
  6221. position: relative;
  6222. box-sizing: border-box;
  6223. padding: 15px 40px;
  6224. text-align: center;
  6225. }
  6226. .e_add_list_child span {
  6227. overflow: hidden;
  6228. white-space: nowrap;
  6229. text-overflow: ellipsis;
  6230. cursor: pointer;
  6231. }
  6232. .e_add_list_child img {
  6233. position: absolute;
  6234. right: 10px;
  6235. width: 21px;
  6236. cursor: pointer;
  6237. top: 50%;
  6238. transform: translateY(-50%);
  6239. }
  6240. .e_add_list_child + .e_add_list_child {
  6241. border-top: 1px solid #eaeaea;
  6242. }
  6243. .e_add_list_child .active {
  6244. color: #409eff;
  6245. }
  6246. .e_add_list_btn {
  6247. position: absolute;
  6248. bottom: 0;
  6249. height: 50px;
  6250. background: rgb(120, 120, 254);
  6251. width: 100%;
  6252. color: #fff;
  6253. font-size: 16px;
  6254. text-align: center;
  6255. line-height: 50px;
  6256. cursor: pointer;
  6257. }
  6258. .e_add_list_detail {
  6259. position: absolute;
  6260. bottom: 0;
  6261. height: 130px;
  6262. background: rgb(120, 120, 254);
  6263. width: 100%;
  6264. color: #fff;
  6265. font-size: 16px;
  6266. display: flex;
  6267. align-items: center;
  6268. justify-content: center;
  6269. }
  6270. .e_add_list_detail textarea {
  6271. height: 90%;
  6272. width: 95%;
  6273. border: none;
  6274. resize: none;
  6275. outline: none;
  6276. padding: 5px;
  6277. box-sizing: border-box;
  6278. }
  6279. .e_add_list_pbox {
  6280. width: 100%;
  6281. }
  6282. .e_add_list_pbox_title {
  6283. height: 50px;
  6284. background: #fff;
  6285. display: flex;
  6286. align-items: center;
  6287. width: 100%;
  6288. box-sizing: border-box;
  6289. padding: 0 20px;
  6290. flex-direction: row;
  6291. flex-wrap: wrap;
  6292. }
  6293. .type_title {
  6294. font-size: 18px;
  6295. font-weight: 700;
  6296. }
  6297. .type_content {
  6298. font-size: 16px;
  6299. margin-left: 30px;
  6300. }
  6301. .type_content span + span {
  6302. margin-left: 20px;
  6303. }
  6304. .type_content span {
  6305. cursor: pointer;
  6306. padding-bottom: 5px;
  6307. box-sizing: border-box;
  6308. }
  6309. .type_content .active {
  6310. color: #409eff;
  6311. border-bottom: 2px solid #409eff;
  6312. }
  6313. .e_add_list_pbox_content {
  6314. height: calc(100% - 50px);
  6315. display: flex;
  6316. align-items: center;
  6317. width: 100%;
  6318. background: #fff;
  6319. }
  6320. .mbCss {
  6321. width: 100%;
  6322. display: flex;
  6323. flex-direction: row;
  6324. flex-wrap: nowrap;
  6325. align-content: center;
  6326. align-items: flex-start;
  6327. justify-content: flex-start;
  6328. }
  6329. .pjCss {
  6330. /* width: 42%; */
  6331. width: calc(100% - 55%);
  6332. display: flex;
  6333. flex-direction: column;
  6334. flex-wrap: nowrap;
  6335. align-items: flex-start;
  6336. margin-top: 1.5%;
  6337. }
  6338. .e_box {
  6339. display: flex;
  6340. flex-wrap: wrap;
  6341. max-height: 500px;
  6342. align-items: flex-start;
  6343. overflow: auto;
  6344. }
  6345. .e_card {
  6346. border: 1px solid #ccc;
  6347. background: #fff;
  6348. margin-right: 20px;
  6349. width: 270px;
  6350. display: flex;
  6351. flex-direction: column;
  6352. align-items: center;
  6353. border-radius: 5px;
  6354. margin-top: 10px;
  6355. text-align: center;
  6356. }
  6357. .e_card_picture {
  6358. margin: 10px 0;
  6359. }
  6360. .e_card_picture > img {
  6361. width: 50px;
  6362. }
  6363. .e_card_name {
  6364. width: 100%;
  6365. padding: 0 10px;
  6366. box-sizing: border-box;
  6367. margin-bottom: 10px;
  6368. overflow: hidden;
  6369. text-overflow: ellipsis;
  6370. white-space: nowrap;
  6371. }
  6372. .e_card_time {
  6373. width: 100%;
  6374. padding: 0 10px;
  6375. box-sizing: border-box;
  6376. font-size: 15px;
  6377. color: #c3c3c3;
  6378. margin-bottom: 10px;
  6379. }
  6380. .e_card_btn {
  6381. height: 40px;
  6382. display: flex;
  6383. align-items: center;
  6384. width: 100%;
  6385. background: rgb(244, 244, 244);
  6386. }
  6387. .e_card_btn:hover {
  6388. background: rgb(221 221 221);
  6389. }
  6390. .e_card_btn span {
  6391. flex: 1 1 auto;
  6392. text-align: center;
  6393. cursor: pointer;
  6394. }
  6395. .addEva {
  6396. border: 1px solid #ccc;
  6397. background: #fff;
  6398. margin-right: 20px;
  6399. width: 270px;
  6400. height: 149px;
  6401. display: flex;
  6402. flex-direction: column;
  6403. align-items: center;
  6404. border-radius: 5px;
  6405. margin-top: 10px;
  6406. text-align: center;
  6407. cursor: pointer;
  6408. justify-content: center;
  6409. }
  6410. .addEva > img {
  6411. width: 50px;
  6412. object-fit: cover;
  6413. }
  6414. </style>