addCourse.vue 219 KB

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