addCourse.vue 345 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="stepBg">
  6. <div class="stepTop">
  7. <div v-if="steps == 1" class="first" @click="navSteps(1)">
  8. <div>
  9. <img src="../../assets/icon/first.png" alt />
  10. </div>
  11. <div>填写基本信息</div>
  12. </div>
  13. <div v-else class="firstNo" @click="navSteps(1)">
  14. <div>
  15. <img src="../../assets/icon/firstNo.png" alt />
  16. </div>
  17. <div>填写基本信息</div>
  18. </div>
  19. <div v-show="cidType === 0" class="secondNo">
  20. <div 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" class="four">
  46. <div>
  47. <img src="../../assets/icon/four.png" alt />
  48. </div>
  49. <div>上传完成</div>
  50. </div>
  51. <div v-else class="fourNo">
  52. <div>
  53. <img src="../../assets/icon/fourNo.png" alt />
  54. </div>
  55. <div>上传完成</div>
  56. </div>
  57. </div>
  58. <div class="stepsBottom" v-if="steps == 3 && unitJson[unitIndex].easy != 1">
  59. <div class="navTop">辅助导航</div>
  60. <div class="navBottom">
  61. <div class="navTask" :class="{
  62. isNavTask: isClickColor > 0 && isClickColor == tIndex + 1,
  63. }" v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
  64. .taskJson" :key="tIndex" @click="goToTask(tIndex)">
  65. <div>任务{{ tIndex + 1 }}</div>
  66. <div>
  67. <el-tooltip effect="light" :content="t.task" placement="top">
  68. <span>{{ t.task }}</span>
  69. </el-tooltip>
  70. </div>
  71. <div class="moveBtn" v-if="unitJson[unitIndex].chapterInfo[0].taskJson.length > 1">
  72. <div class="chapter_upload_up" style="width: 15px; height: 15px" @click.stop="taskMove(1, tIndex)">
  73. </div>
  74. <div class="chapter_upload_down" style="width: 15px; height: 15px; margin: 2px 0 0"
  75. @click.stop="taskMove(2, tIndex)"></div>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  82. <div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
  83. <div class="courseTop">
  84. <div class="stepsNav">
  85. <h3 class="info_title" v-if="steps == 1">填写基本信息</h3>
  86. <h3 class="info_title" v-if="steps == 2">请选择课程模式</h3>
  87. <h3 class="info_title" v-if="steps == 3">上传课程内容</h3>
  88. <h3 class="info_title" v-if="steps == 4">上传课程</h3>
  89. <el-breadcrumb separator-class="el-icon-arrow-right" style="margin-top: 15px">
  90. <el-breadcrumb-item :to="{
  91. path:
  92. '/course?userid=' +
  93. userid +
  94. '&oid=' +
  95. oid +
  96. '&org=' +
  97. org +
  98. '&role=' +
  99. role,
  100. }">课程管理</el-breadcrumb-item>
  101. <el-breadcrumb-item>
  102. <span style="color: rgb(15, 126, 255)">添加课程</span>
  103. </el-breadcrumb-item>
  104. </el-breadcrumb>
  105. <el-button type="primary" @click="pasteTask" size="small"
  106. v-if="steps == 3"
  107. style="margin-left: 20px;">智能粘贴</el-button>
  108. </div>
  109. <div v-if="steps == 1 || steps == 2 || steps == 3" class="stepsWord">
  110. {{
  111. steps == 1
  112. ? "第一步"
  113. : steps == 2
  114. ? "第二步"
  115. : steps == 3
  116. ? cidType === 0
  117. ? "第三步"
  118. : "第二步"
  119. : ""
  120. }}
  121. </div>
  122. </div>
  123. <div class="rightBox" v-if="this.steps == 1" @mousewheel="scrollChange">
  124. <div class="updateMask" :style="{
  125. height: rightBoxHeight ? rightBoxHeight + 'px' : '100%',
  126. }" v-if="cid && userid != courseUserid && role != '1'"></div>
  127. <div class="whiteBg">
  128. <div class="right_title" :class="{ updateTips: cid && userid != courseUserid && role != '1' }">
  129. 课程基本信息
  130. </div>
  131. <div class="basic_box">
  132. <div class="big_box">
  133. <div class="left_first">
  134. <div>
  135. <div>
  136. <div class="bInfo_title" style="margin-bottom: 15px">
  137. <!-- <span style="color: red">*</span> -->
  138. 课程名称
  139. </div>
  140. <div style="display: flex; margin-right: 20px">
  141. <img src="../../assets/icon/projectName.png" alt style="margin-right: 8px" />
  142. <input type="text" placeholder="请输入课程名称" class="binfo_input" v-model="courseName" />
  143. </div>
  144. </div>
  145. <div class="pType_box all_choose" v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
  146. <span>类型</span>
  147. <!-- 学科+ 主题+ 未来+ -->
  148. <el-radio-group @change="CourseType2Change" v-model="pTypeCheckName"
  149. style="display: flex; align-items: center">
  150. <div class="all_choose" style="width: 100px" v-for="(item, index) in CourseType2" :key="index">
  151. <el-radio :label="item.name">{{
  152. item.name
  153. }}</el-radio>
  154. </div>
  155. </el-radio-group>
  156. </div>
  157. <div class="both">
  158. <div class="choose">
  159. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
  160. <span v-if="CourseTypeJson[item.id].length > 0 &&
  161. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  162. ? pTypeCheck.indexOf(item.id) != -1
  163. : true)
  164. ">{{ item.name }}</span>
  165. <el-checkbox-group v-model="courseTypeId" v-if="CourseTypeJson[item.id].length > 0 &&
  166. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  167. ? pTypeCheck.indexOf(item.id) != -1
  168. : true)
  169. ">
  170. <el-checkbox v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.id">{{
  171. item1.name }}</el-checkbox>
  172. </el-checkbox-group>
  173. <!-- <div
  174. v-else
  175. style="font-size: 14px; margin-left: -8px"
  176. >
  177. 暂无
  178. </div> -->
  179. </div>
  180. </div>
  181. </div>
  182. </div>
  183. </div>
  184. </div>
  185. </div>
  186. </div>
  187. <div class="whiteBg" style="border-radius: 0">
  188. <div class="right_first">
  189. <div class="right_title">上传封面与成员</div>
  190. <div style="
  191. padding: 0 0 50px 20px;
  192. display: flex;
  193. align-items: baseline;
  194. justify-content: flex-start;
  195. margin: 0 auto;
  196. ">
  197. <div>
  198. <div class="bInfo_title" style="margin-top: 0 !important">
  199. 课程封面
  200. </div>
  201. <div class="uploadFm" @click="choosePicVisible = true" v-if="cover.length == 0">
  202. <img src="../../assets/icon/addPoster.png" alt="" />
  203. </div>
  204. <el-upload :class="{ disUoloadSty: noneBtnImg }" class="upCss" action="#" list-type="picture"
  205. v-loading="uploadLoading1" :http-request="beforeUpload1" ref="upload1"
  206. :on-preview="handlePictureCardPreview" :on-remove="handle_remove1" :show-file-list="true"
  207. :file-list="cover" accept="image/*" :limit="1" :on-exceed="onExceed" v-else>
  208. <i class="el-icon-plus"></i>
  209. </el-upload>
  210. </div>
  211. <div style="
  212. display: flex;
  213. flex-flow: row nowrap;
  214. flex-direction: row;
  215. flex-wrap: wrap;
  216. align-items: baseline;
  217. margin: 0 30px;
  218. ">
  219. <!-- <div style="margin: 0 80px">
  220. <div class="bInfo_title">
  221. 选择课程成员
  222. </div>
  223. <div
  224. class="addPeople"
  225. @click="addPP"
  226. v-if="this.checkboxList.length == 0"
  227. >添加成员</div>
  228. <div class="addPeople" @click="addPP" v-else>已添加,点击查看</div>
  229. </div>-->
  230. <div style="margin: 0 30px 0 0; width: 150px">
  231. <div class="bInfo_title">添加班级</div>
  232. <div class="addPeople" @click="(dialogVisibleClass = true),
  233. (classSearch = ''),
  234. getClass()
  235. ">
  236. 添加班级
  237. </div>
  238. <div v-if="checkboxList2.length" style="
  239. max-width: 100%;
  240. word-break: break-all;
  241. overflow: hidden;
  242. margin-top: 10px;
  243. font-size: 14px;
  244. color: #6e6e6e;
  245. ">
  246. <span :class="{ tcMember: getClassC(tc) }" v-for="(tc, tcIndex) in checkboxList2"
  247. :key="tcIndex">{{ getClassC(tc) }}</span>
  248. </div>
  249. </div>
  250. <div style="flex: 0.5 1 0%; margin: 0; width: 180px"
  251. v-if="courseUserid != '' ? (courseUserid == userid || role == '1') : true">
  252. <div class="bInfo_title">协同编辑</div>
  253. <div class="addPeople" @click="openMember" style="background: #6b92c9">
  254. 添加协同成员
  255. </div>
  256. <div v-if="checkboxList3.length" style="
  257. max-width: 100%;
  258. word-break: break-all;
  259. overflow: hidden;
  260. margin-top: 10px;
  261. font-size: 14px;
  262. color: #6e6e6e;
  263. cursor: pointer;
  264. " @click="checkBoolean = !checkBoolean">
  265. <span :class="{ tcMember: getMan2(tc) }" v-for="(tc, tcIndex) in checkboxList3.length > 6 &&
  266. checkBoolean
  267. ? checkboxList3
  268. : checkboxList3.slice(0, 6)" :key="tcIndex">{{ getMan2(tc) }}</span><span class="tcMember"
  269. v-if="checkboxList3.length > 6 && !checkBoolean">更多...</span>
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275. </div>
  276. <div class="whiteBg" style="border-radius: 0; margin-top: 15px">
  277. <div class="right_title">课程简要描述</div>
  278. <div style="width: 95%; padding: 15px 0px 15px 20px">
  279. <div style="width: 55%">
  280. <textarea rows="8" class="binfo_input" cols v-model="courseText" ></textarea>
  281. </div>
  282. </div>
  283. <!-- <div style="width: 95%; margin: 15px auto">
  284. <el-switch
  285. v-model="isTeacherSee"
  286. active-text="允许给其他老师查看"
  287. style="padding-bottom: 30px"
  288. ></el-switch>
  289. </div>-->
  290. <div style="width: 95%; padding: 15px 0px 15px 20px">
  291. <el-switch v-model="isTeacherSee" active-text="是否公开此课程" style="padding-bottom: 30px"></el-switch>
  292. </div>
  293. </div>
  294. <div class="whiteBg" style="border-radius: 0; margin-top: 15px; padding-bottom: 20px">
  295. <div class="right_title">目标管理</div>
  296. <div style="margin: 15px auto; padding: 0 0 0 20px">
  297. <div style="
  298. border: 1px solid #e5e5e5;
  299. width: 95%;
  300. min-height: 600px;
  301. margin-top: 30px;
  302. box-shadow: 3px 1px 15px 3px #e0e0e0;
  303. ">
  304. <div class="e_add_top">
  305. <div class="e_add_title">
  306. <el-button type="primary" size="small" @click="dialogVisiblemb = true">添加</el-button>
  307. <el-button type="primary" size="small" @click="deleteEva()">清除</el-button>
  308. <!-- <span>当前使用目标管理</span>
  309. <span>{{ eTitle ? eTitle : "请添加目标" }}</span>
  310. <img
  311. src="../../assets/line.png"
  312. class="cru_line"
  313. style="
  314. width: 125px;
  315. height: 20px;
  316. bottom: -10px;
  317. left: 155px;
  318. "
  319. /> -->
  320. </div>
  321. <div style="
  322. display: flex;
  323. flex-direction: row;
  324. align-items: center;
  325. ">
  326. <!-- <el-button
  327. type="primary"
  328. size="small"
  329. @click="dialogVisiblemb = true"
  330. >添加目标管理</el-button
  331. >
  332. <el-button
  333. type="primary"
  334. size="small"
  335. @click="deleteEva()"
  336. >清除内容</el-button
  337. > -->
  338. <!-- <div class="e_add_delete" @click="deleteEva()">
  339. <img src="../../assets/icon/delete.png" alt="" />
  340. </div> -->
  341. </div>
  342. </div>
  343. <div v-if="evalua == ''">
  344. <div class="noneBox">
  345. <img src="../../assets/icon/isNoMessage.png" />
  346. </div>
  347. </div>
  348. <div class="e_add_content" v-else>
  349. <div class="e_add_list_pbox">
  350. <div class="e_add_list_pbox_title">
  351. <span class="type_title">切换模式</span>
  352. <div class="type_content">
  353. <span :class="{ active: typeMode == 1 }" @click="OtherMb(1)">目标树</span>
  354. <span :class="{ active: typeMode == 2 }" @click="OtherMb(2)">目标罗盘</span>
  355. <span :class="{ active: typeMode == 3 }" @click="OtherMb(3)">目标看板</span>
  356. </div>
  357. </div>
  358. <div class="e_add_list_pbox_content">
  359. <Mind :showBar="false" :mindData="data" v-show="typeMode == 1"></Mind>
  360. <Sunburst :Josn="eJson" :num="eJSONNum" style="width: 100%" v-if="typeMode == 2"></Sunburst>
  361. <SeeBoard :Josn="eJson" :num="eJSONNum" :ename="eTitle" style="width: 100%" v-if="typeMode == 3">
  362. </SeeBoard>
  363. </div>
  364. </div>
  365. </div>
  366. </div>
  367. </div>
  368. </div>
  369. </div>
  370. <div class="rightBox" v-if="this.steps == 2">
  371. <div class="basic_box" style="padding: 20px 30px 0px !important; box-sizing: border-box">
  372. <!-- <div
  373. style="
  374. color: #b8b8b8;
  375. background: #fff;
  376. width: 26%;
  377. height: 40px;
  378. border-radius: 15px;
  379. padding-left: 20px;
  380. line-height: 40px;
  381. font-size: 17px;
  382. box-shadow: 0px 1px 2px 2px #e0e0e0;
  383. "
  384. >-->
  385. <div class="right_title" style="border: none; margin: 0; padding: 0">
  386. 请选择合适的课程模式
  387. </div>
  388. <div class="wordbox">
  389. <div class="wordTeacher" v-for="(aa, indexF) in templateArray" :key="indexF" @click="checkTemplate(aa)">
  390. <div class="wordPic">
  391. <img src="../../assets/icon/wordMub.png" alt />
  392. </div>
  393. <div style="
  394. margin-top: 10px;
  395. line-height: 19px;
  396. overflow: hidden;
  397. text-overflow: ellipsis;
  398. white-space: nowrap;
  399. padding: 0 20px;
  400. ">
  401. {{ aa.title }}
  402. </div>
  403. </div>
  404. <div class="wordTeacher" @click="checkTemplate2()">
  405. <div class="wordPic">
  406. <img src="../../assets/icon/wordMub.png" alt />
  407. </div>
  408. <div style="
  409. margin-top: 10px;
  410. line-height: 19px;
  411. overflow: hidden;
  412. text-overflow: ellipsis;
  413. white-space: nowrap;
  414. padding: 0 20px;
  415. ">
  416. 任务模式
  417. </div>
  418. </div>
  419. <div class="wordTeacher" @click="checkTemplate3()">
  420. <div class="wordPic">
  421. <img src="../../assets/icon/wordMub.png" alt />
  422. </div>
  423. <div style="
  424. margin-top: 10px;
  425. line-height: 19px;
  426. overflow: hidden;
  427. text-overflow: ellipsis;
  428. white-space: nowrap;
  429. padding: 0 20px;
  430. ">
  431. 简易模式
  432. </div>
  433. </div>
  434. <div class="wordTeacher" @click="pasteStage()">
  435. <div class="wordPic">
  436. <img src="../../assets/icon/wordMub.png" alt />
  437. </div>
  438. <div style="
  439. margin-top: 10px;
  440. line-height: 19px;
  441. overflow: hidden;
  442. text-overflow: ellipsis;
  443. white-space: nowrap;
  444. padding: 0 20px;
  445. ">
  446. 智能粘贴模式
  447. </div>
  448. </div>
  449. <!-- <div class="wordTeacher" @click="checkTemplate4()">
  450. <div class="wordPic">
  451. <img src="../../assets/icon/wordMub.png" alt />
  452. </div>
  453. <div style="
  454. margin-top: 10px;
  455. line-height: 19px;
  456. overflow: hidden;
  457. text-overflow: ellipsis;
  458. white-space: nowrap;
  459. padding: 0 20px;
  460. ">
  461. 未来小学课程设计
  462. </div>
  463. </div> -->
  464. <!-- <div class="wordTeacher" @click="checkTemplate1()">
  465. <div class="wordPic">
  466. <img src="../../assets/icon/wordMub.png" alt />
  467. </div>
  468. <div style="
  469. margin-top: 10px;
  470. line-height: 19px;
  471. overflow: hidden;
  472. text-overflow: ellipsis;
  473. white-space: nowrap;
  474. padding: 0 20px;
  475. ">
  476. 我的课程
  477. </div>
  478. </div> -->
  479. </div>
  480. </div>
  481. </div>
  482. <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
  483. <div class="basic_box">
  484. <div style="
  485. display: flex;
  486. flex-direction: row;
  487. align-items: center;
  488. position: sticky;
  489. top: 0;
  490. background: #fff;
  491. z-index: 99;
  492. width: 100%;
  493. padding: 0 20px 0 20px;
  494. box-sizing: border-box;
  495. ">
  496. <div class="cru_selectBox">
  497. <div v-for="(item, index) in unitJson" :key="index" class="cru_select"
  498. :class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
  499. <!-- item.dyName ? item.dyName : -->
  500. <span v-if="(unitJson[unitJson.length - 1].easy == 4) ||
  501. (unitJson[unitJson.length - 1].easy == 6)">{{
  502. item.dyName ? item.dyName : "第" + (index + 1) + "阶段"
  503. }}</span>
  504. <span v-else>{{
  505. "第" + (index + 1) + "阶段"
  506. }}</span>
  507. </div>
  508. <img src="../../assets/line.png" class="cru_line" :style="{
  509. left: offsetLetfPx + 'px',
  510. }" />
  511. </div>
  512. <div class="addStageImg" @click="addunit()" v-if="!(unitJson[unitJson.length - 1].easy == 4) &&
  513. !(unitJson[unitJson.length - 1].easy == 6)
  514. ">
  515. <img src="../../assets/icon/add.png" alt />
  516. </div>
  517. </div>
  518. <div style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
  519. v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
  520. <div>
  521. <div class="chapter_contentbox">
  522. <div>第{{ unitIndex + 1 }}阶段</div>
  523. <div>
  524. <input type="text" placeholder="阶段标题" class="binfo_input" v-model="unitJson[unitIndex].dyName" />
  525. </div>
  526. <div v-if="unitJson.length > 1 &&
  527. !(unitJson[unitJson.length - 1].easy == 4) &&
  528. !(unitJson[unitJson.length - 1].easy == 6)
  529. " @click="deleteUnit(unitIndex)"></div>
  530. </div>
  531. </div>
  532. <div v-if="!unitJson[unitIndex].easy" style="
  533. margin: 50px 0px 10px;
  534. font-size: 1.5em;
  535. font-weight: 700;
  536. color: #0f7eff;
  537. ">
  538. 添加任务
  539. </div>
  540. <div class="taskBorder" :style="{ minHeight: unitJson[unitIndex].easy && 'unset' }"
  541. v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
  542. <div v-if="unitJson[unitIndex].easy != 1">
  543. <div :style="{
  544. marginBottom:
  545. unitJson[unitIndex].easy == 3 ||
  546. (unitJson[unitIndex].easy == 5 &&
  547. itemTask.taskType == 1)
  548. ? '75px'
  549. : '0',
  550. }">
  551. <div style="font-size: 22px; color: #8e8e8e" :id="'task' + itemTaskIndex">
  552. 任务{{ itemTaskIndex + 1 }}
  553. </div>
  554. <div class="chapter_contentbox" style="
  555. flex-direction: row;
  556. justify-content: flex-start;
  557. align-items: center;
  558. ">
  559. <div style="
  560. border-left: 6px solid #5699e8;
  561. height: 20px;
  562. padding-left: 10px;
  563. line-height: 22px;
  564. ">
  565. 任务名称
  566. </div>
  567. <div>
  568. <input type="text" placeholder="输入任务名称" class="binfo_input" style="border-radius: 4px" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  569. itemTaskIndex
  570. ].task
  571. " />
  572. </div>
  573. <div class="remove" v-if="item.taskJson.length > 1 &&
  574. (!unitJson[unitIndex].easy ||
  575. unitJson[unitIndex].easy == 6)
  576. " @click="deleteTask(itemTaskIndex)" style="position: absolute; right: 55px"></div>
  577. </div>
  578. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" style="
  579. display: flex;
  580. margin: 0 0 20px 0;
  581. flex-direction: row;
  582. justify-content: flex-start;
  583. align-items: center;
  584. width: 70.5% !important;
  585. padding-top: 30px;
  586. ">
  587. <div class="lineTitle">任务描述</div>
  588. <div class="line"></div>
  589. </div>
  590. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1">
  591. <editor-bar style="width: 90% !important; margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  592. itemTaskIndex
  593. ].taskDetail
  594. " @change="change"></editor-bar>
  595. <!-- <textarea
  596. rows="6"
  597. class="binfo_input"
  598. placeholder="请输入任务描述"
  599. cols
  600. style="width: 70.5% !important; height: 120px"
  601. v-model="
  602. unitJson[unitIndex].chapterInfo[0].taskJson[
  603. itemTaskIndex
  604. ].taskDetail
  605. "
  606. ></textarea>-->
  607. </div>
  608. </div>
  609. </div>
  610. <div v-if="!unitJson[unitIndex].easy ||
  611. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  612. " class="basic_box" style="
  613. margin: 0;
  614. min-height: 0;
  615. width: 90% !important;
  616. padding-top: 10px !important;
  617. ">
  618. <div style="
  619. display: flex;
  620. margin: 0 0 20px 0;
  621. flex-direction: row;
  622. justify-content: flex-start;
  623. align-items: center;
  624. ">
  625. <div class="lineTitle">学习内容</div>
  626. <div class="line"></div>
  627. </div>
  628. <div>
  629. <div class="add_chapters_box" v-if="itemTask.chapterData &&
  630. itemTask.chapterData.length == 0
  631. " style="height: 185px"></div>
  632. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  633. <div class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  634. @click="getChapterData(
  635. $event,
  636. unitIndex,
  637. index,
  638. index1,
  639. item1.type
  640. )
  641. ">
  642. <div class="chapter_upload_t" style="width: 100%"></div>
  643. <div class="chapter_upload_o" style="
  644. position: relative;
  645. display: flex;
  646. align-items: center;
  647. ">
  648. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  649. <div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
  650. <div v-if="item1.type == 3 ||
  651. item1.type == 12 ||
  652. item1.type == 13 ||
  653. item1.type == 6 ||
  654. item1.type == 7
  655. " class="chapter_upload_l_i5" style="margin-left: 1px"></div>
  656. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px"></div>
  657. </div>
  658. <div class="chapter_upload_ic" style="
  659. cursor: pointer;
  660. position: absolute;
  661. width: 45px;
  662. right: 0;
  663. top: 0;
  664. ">
  665. <div class="chapter_upload_ic_l"></div>
  666. <div class="chapter_upload_ic_r" style="position: absolute" @click.stop="deleteChapterData(
  667. $event,
  668. unitIndex,
  669. index,
  670. index1,
  671. itemTaskIndex
  672. )
  673. ">
  674. <div></div>
  675. </div>
  676. </div>
  677. <div class="chapter_upload_n">
  678. <input v-if="item1.type == 2 ||
  679. item1.type == 3 ||
  680. item1.type == 12 ||
  681. item1.type == 13 ||
  682. item1.type == 7
  683. " :placeholder="item1.name" @change="updataVideoT(
  684. $event,
  685. unitIndex,
  686. chapterIndex,
  687. index1
  688. )
  689. " style="
  690. border: none;
  691. outline: none;
  692. width: 80%;
  693. minwidth: 215px;
  694. z-index: 99;
  695. font-size: 14px;
  696. white-space: nowrap;
  697. overflow: hidden;
  698. text-overflow: ellipsis;
  699. " />
  700. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  701. border: none;
  702. outline: none;
  703. width: 80%;
  704. white-space: nowrap;
  705. overflow: hidden;
  706. text-overflow: ellipsis;
  707. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  708. <input :placeholder="item1.title ? item1.title : '链接'
  709. " v-if="item1.type == 8" style="
  710. border: none;
  711. outline: none;
  712. width: 80%;
  713. white-space: nowrap;
  714. overflow: hidden;
  715. text-overflow: ellipsis;
  716. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  717. <div class="chapter_upload_ud" style="z-index: 99">
  718. <div class="chapter_upload_up" @click="upCd(
  719. $event,
  720. unitIndex,
  721. index,
  722. itemTaskIndex,
  723. index1
  724. )
  725. "></div>
  726. <div class="chapter_upload_down" @click="downCd(
  727. $event,
  728. unitIndex,
  729. index,
  730. itemTaskIndex,
  731. index1
  732. )
  733. "></div>
  734. </div>
  735. </div>
  736. </div>
  737. </div>
  738. </div>
  739. </div>
  740. <div class="add_info_box">
  741. <button class="info_btn" @click="addImg($event)">
  742. 添加文件
  743. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 13, itemTaskIndex)
  744. " />
  745. </button>
  746. <!-- <button class="info_btn" @click="addImg($event)">
  747. 添加视频
  748. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo" style="display: none"
  749. v-if="inputShow" @change="beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  750. " />
  751. </button>
  752. <button class="info_btn" @click="addImg($event)">
  753. 添加文档
  754. <input type="file"
  755. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  756. style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  757. " />
  758. </button> -->
  759. <button class="info_btn" @click="addAttText(itemTaskIndex)">
  760. 添加图文
  761. </button>
  762. <button class="info_btn" @click="openLine(itemTaskIndex)">
  763. 添加链接
  764. </button>
  765. <button class="info_btn" @click="pasteLine(itemTaskIndex)">
  766. 嵌入代码
  767. </button>
  768. <!-- <button class="info_btn" @click="openSource(itemTaskIndex)">
  769. 添加资源
  770. </button> -->
  771. <!-- <button class="info_btn" @click="addImg($event)">
  772. 其他附件
  773. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 12, itemTaskIndex)
  774. " />
  775. </button> -->
  776. </div>
  777. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  778. itemTaskIndex
  779. ].proVisible
  780. " class="mask">
  781. <div class="progressBox">
  782. <!-- <div id="closePro" class="closeCss">
  783. <img src="../../../assets/icon/close.png" alt />
  784. </div> -->
  785. <div class="lbox">
  786. <img src="../../assets/loading.gif" />上传中,请稍后
  787. </div>
  788. <div style="margin-bottom: 10px">
  789. <span>{{
  790. unitJson[unitIndex].chapterInfo[0].taskJson[
  791. itemTaskIndex
  792. ].isFinishSize
  793. }}M</span>
  794. /
  795. <span>{{
  796. unitJson[unitIndex].chapterInfo[0].taskJson[
  797. itemTaskIndex
  798. ].isAllSize
  799. }}M</span>
  800. </div>
  801. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  802. itemTaskIndex
  803. ].progress
  804. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  805. itemTaskIndex
  806. ].progress
  807. : 0
  808. " style="width: 80%"></el-progress>
  809. </div>
  810. </div>
  811. </div>
  812. <div v-if="unitJson[unitIndex].easy == 1 ||
  813. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  814. " class="basic_box" style="
  815. margin: 0 auto;
  816. min-height: 0;
  817. width: 95% !important;
  818. padding: 20px 10px 10px;
  819. ">
  820. <div>
  821. <div class="add_chapters_box" v-if="itemTask.chapterData &&
  822. itemTask.chapterData.length == 0
  823. " style="height: 185px"></div>
  824. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  825. <div v-for="(item1, index1) in itemTask.chapterData" :key="item1.id">
  826. <div class="chapter_upload" @click="getChapterData(
  827. $event,
  828. unitIndex,
  829. index,
  830. index1,
  831. item1.type
  832. )
  833. ">
  834. <div class="chapter_upload_t" style="width: 100%"></div>
  835. <div class="chapter_upload_o" style="
  836. position: relative;
  837. display: flex;
  838. align-items: center;
  839. ">
  840. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  841. <div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
  842. <div v-if="item1.type == 3 ||
  843. item1.type == 6 ||
  844. item1.type == 7
  845. " class="chapter_upload_l_i5" style="margin-left: 1px"></div>
  846. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px"></div>
  847. </div>
  848. <div class="chapter_upload_ic" style="
  849. cursor: pointer;
  850. position: absolute;
  851. width: 45px;
  852. right: 0;
  853. top: 0;
  854. ">
  855. <div class="chapter_upload_ic_l"></div>
  856. <div class="chapter_upload_ic_r" style="position: absolute" @click.stop="deleteChapterData(
  857. $event,
  858. unitIndex,
  859. index,
  860. index1,
  861. itemTaskIndex
  862. )
  863. ">
  864. <div></div>
  865. </div>
  866. </div>
  867. <div class="chapter_upload_n">
  868. <span style="
  869. font-size: 14px;
  870. color: rgb(109, 109, 109);
  871. height: 14px;
  872. line-height: 12px;
  873. " v-if="item1.type == 2 ||
  874. item1.type == 3 ||
  875. item1.type == 7
  876. ">{{ item1.text }}-</span>
  877. <input v-if="item1.type == 2 ||
  878. item1.type == 3 ||
  879. item1.type == 7
  880. " :placeholder="item1.name" @change="updataVideoT(
  881. $event,
  882. unitIndex,
  883. chapterIndex,
  884. index1
  885. )
  886. " style="
  887. border: none;
  888. outline: none;
  889. width: 80%;
  890. minwidth: 215px;
  891. z-index: 99;
  892. font-size: 14px;
  893. white-space: nowrap;
  894. overflow: hidden;
  895. text-overflow: ellipsis;
  896. " />
  897. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  898. border: none;
  899. outline: none;
  900. width: 80%;
  901. white-space: nowrap;
  902. overflow: hidden;
  903. text-overflow: ellipsis;
  904. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  905. <input :placeholder="item1.title ? item1.title : '链接'
  906. " v-if="item1.type == 8" style="
  907. border: none;
  908. outline: none;
  909. width: 80%;
  910. white-space: nowrap;
  911. overflow: hidden;
  912. text-overflow: ellipsis;
  913. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  914. <div class="chapter_upload_ud" style="z-index: 99">
  915. <div class="chapter_upload_up" @click="upCd(
  916. $event,
  917. unitIndex,
  918. index,
  919. itemTaskIndex,
  920. index1
  921. )
  922. "></div>
  923. <div class="chapter_upload_down" @click="downCd(
  924. $event,
  925. unitIndex,
  926. index,
  927. itemTaskIndex,
  928. index1
  929. )
  930. "></div>
  931. </div>
  932. </div>
  933. </div>
  934. </div>
  935. </div>
  936. </div>
  937. </div>
  938. <div class="add_info_box" style="margin: 10px 0 0">
  939. <button class="info_btn" @click="addImg($event)">
  940. <span style="color: red">*</span>
  941. 教学设计
  942. <input type="file"
  943. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  944. style="display: none" v-if="inputShow" @change="beforeUpload3(
  945. $event,
  946. unitIndex,
  947. 3,
  948. itemTaskIndex,
  949. '教学设计'
  950. )
  951. " />
  952. </button>
  953. <button class="info_btn" @click="addImg($event)">
  954. <span style="color: red">*</span>
  955. 教学课件
  956. <input type="file"
  957. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  958. style="display: none" v-if="inputShow" @change="beforeUpload3(
  959. $event,
  960. unitIndex,
  961. 3,
  962. itemTaskIndex,
  963. '教学课件'
  964. )
  965. " />
  966. </button>
  967. <button class="info_btn" @click="addImg($event)">
  968. 教学视频
  969. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo" style="display: none"
  970. v-if="inputShow" @change="beforeUpload3(
  971. $event,
  972. unitIndex,
  973. 2,
  974. itemTaskIndex,
  975. '教学视频'
  976. )
  977. " />
  978. </button>
  979. <button class="info_btn" @click="addImg($event)">
  980. 教学音频
  981. <input type="file" accept="audio/*" style="display: none" v-if="inputShow" @change="beforeUpload3(
  982. $event,
  983. unitIndex,
  984. 2,
  985. itemTaskIndex,
  986. '教学音频'
  987. )
  988. " />
  989. </button>
  990. <button class="info_btn" @click="addImg($event)">
  991. 学习单
  992. <input type="file"
  993. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  994. style="display: none" v-if="inputShow" @change="beforeUpload3(
  995. $event,
  996. unitIndex,
  997. 3,
  998. itemTaskIndex,
  999. '学习单'
  1000. )
  1001. " />
  1002. </button>
  1003. </div>
  1004. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  1005. itemTaskIndex
  1006. ].proVisible
  1007. " class="mask">
  1008. <div class="progressBox">
  1009. <!-- <div id="closePro" class="closeCss">
  1010. <img src="../../../assets/icon/close.png" alt />
  1011. </div> -->
  1012. <div class="lbox">
  1013. <img src="../../assets/loading.gif" />上传中,请稍后
  1014. </div>
  1015. <div style="margin-bottom: 10px">
  1016. <span>{{
  1017. unitJson[unitIndex].chapterInfo[0].taskJson[
  1018. itemTaskIndex
  1019. ].isFinishSize
  1020. }}M</span>
  1021. /
  1022. <span>{{
  1023. unitJson[unitIndex].chapterInfo[0].taskJson[
  1024. itemTaskIndex
  1025. ].isAllSize
  1026. }}M</span>
  1027. </div>
  1028. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  1029. itemTaskIndex
  1030. ].progress
  1031. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  1032. itemTaskIndex
  1033. ].progress
  1034. : 0
  1035. " style="width: 80%"></el-progress>
  1036. </div>
  1037. </div>
  1038. </div>
  1039. <div v-if="unitJson[unitIndex].easy != 3 &&
  1040. !(unitJson[unitIndex].easy == 5 && itemTask.taskType == 1)
  1041. " style="
  1042. flex-direction: row;
  1043. justify-content: flex-start;
  1044. align-items: center;
  1045. padding: 0 0 0 30px;
  1046. paddint-top: 10px !important;
  1047. ">
  1048. <div style="
  1049. display: flex;
  1050. flex-direction: row;
  1051. align-items: center;
  1052. margin-bottom: 20px;
  1053. ">
  1054. <div class="lineTitle">
  1055. {{
  1056. !unitJson[unitIndex].easy ||
  1057. unitJson[unitIndex].easy == 6 ||
  1058. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  1059. ? "练习内容"
  1060. : "评价内容"
  1061. }}
  1062. </div>
  1063. <div class="line" style="width: 90%"></div>
  1064. </div>
  1065. </div>
  1066. <div v-if="unitJson[unitIndex].easy == 6 || !unitJson[unitIndex].easy
  1067. " class="toolChoose" style="padding: 0 0 0 30px">
  1068. <div class="tools">
  1069. <div class="leftTools" style="
  1070. width: 95%;
  1071. padding: 0 0 15px 0;
  1072. border-bottom: 1px solid #efefef;
  1073. margin-bottom: 15px;
  1074. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  1075. <div>
  1076. <textarea rows="3" type="text" placeholder="添加工具描述" class="binfo_input"
  1077. style="margin: 0 0 20px 0; width: 71.5% !important" v-model="itemTool.toolDetail"></textarea>
  1078. </div>
  1079. <div style="
  1080. display: flex;
  1081. flex-direction: row;
  1082. align-items: baseline;
  1083. flex-wrap: nowrap;
  1084. justify-content: flex-start;
  1085. position: relative;
  1086. ">
  1087. <div style="margin-right: 20px; font-weight: bold">
  1088. 步骤 {{ toolIndex + 1 }} :
  1089. </div>
  1090. <div class="chooseWho">
  1091. <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
  1092. " @click="(itemTool.toolType = 0), $forceUpdate()">
  1093. 互动类
  1094. </div>
  1095. <div :class="itemTool.toolType == 1 ? 'isChooseActive' : ''
  1096. " @click="(itemTool.toolType = 1), $forceUpdate()">
  1097. 思维类
  1098. </div>
  1099. <div :class="itemTool.toolType == 2 ? 'isChooseActive' : ''
  1100. " @click="(itemTool.toolType = 2), $forceUpdate()">
  1101. 评价类
  1102. </div>
  1103. <div :class="itemTool.toolType == 3 ? 'isChooseActive' : ''
  1104. " @click="(itemTool.toolType = 3), $forceUpdate()">
  1105. 编程类
  1106. </div>
  1107. <div :class="itemTool.toolType == 5 ? 'isChooseActive' : ''
  1108. " @click="(itemTool.toolType = 5), $forceUpdate()">
  1109. 学科类
  1110. </div>
  1111. <div :class="itemTool.toolType == 4 ? 'isChooseActive' : ''
  1112. " @click="(itemTool.toolType = 4), $forceUpdate()">
  1113. 其他
  1114. </div>
  1115. </div>
  1116. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  1117. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 55px"></div>
  1118. </div>
  1119. <div style="min-height: 163px">
  1120. <div class="toolSort" v-if="itemTool.toolType == 0">
  1121. <!-- <div class="tool">
  1122. <div
  1123. class="whiteBIcon"
  1124. @click="addTools(8, itemTaskIndex, toolIndex)"
  1125. >
  1126. <img src="../../assets/icon/secondToolList/library.png" alt />
  1127. <div style="margin: 5px 0">素材库</div>
  1128. </div>
  1129. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  1130. <img
  1131. src="../../assets/icon/checkNo.png"
  1132. alt
  1133. v-if="itemTool.tool.indexOf(8) == -1"
  1134. />
  1135. <div class="checkDiv" v-else><img src="../../assets/icon/checkedIs.png"
  1136. alt /><span>已选择</span></div>
  1137. </div>
  1138. </div>-->
  1139. <!-- <div class="tool">
  1140. <div
  1141. class="whiteBIcon"
  1142. @click="addTools(17, itemTaskIndex, toolIndex)"
  1143. >
  1144. <img
  1145. src="../../assets/icon/secondToolList/library.png"
  1146. alt
  1147. />
  1148. <div style="margin: 5px 0">学习资料</div>
  1149. </div>
  1150. <div
  1151. class="check"
  1152. @click="addTools(17, itemTaskIndex, toolIndex)"
  1153. >
  1154. <img
  1155. src="../../assets/icon/checkNo.png"
  1156. alt
  1157. v-if="itemTool.tool.indexOf(17) == -1"
  1158. />
  1159. <img
  1160. src="../../assets/icon/checkedIs.png"
  1161. alt
  1162. v-else
  1163. />
  1164. </div>10
  1165. </div> -->
  1166. <div class="tool">
  1167. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 10, toolIndex)">
  1168. <img src="../../assets/icon/thirdToolList/time.png" alt />
  1169. <div style="margin: 5px 0">倒计时</div>
  1170. </div>
  1171. <div class="check" @click="addTools(10, itemTaskIndex, toolIndex)">
  1172. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(10) == -1" />
  1173. <div class="checkDiv" v-else>
  1174. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1175. </div>
  1176. </div>
  1177. </div>
  1178. <div class="tool">
  1179. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 49, toolIndex)">
  1180. <img src="../../assets/icon/fourthToolList/group.png" alt />
  1181. <div style="margin: 5px 0">学生分组</div>
  1182. </div>
  1183. <div class="check" @click="addTools(49, itemTaskIndex, toolIndex)">
  1184. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(49) == -1" />
  1185. <div class="checkDiv" v-else>
  1186. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1187. </div>
  1188. </div>
  1189. </div>
  1190. <div class="tool">
  1191. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 62, toolIndex)">
  1192. <img src="../../assets/icon/fourthToolList/interVideo.png" alt />
  1193. <div style="margin: 5px 0">交互视频</div>
  1194. </div>
  1195. <div class="check" @click="addTools(62, itemTaskIndex, toolIndex)">
  1196. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(62) == -1" />
  1197. <div class="checkDiv" v-else>
  1198. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1199. </div>
  1200. </div>
  1201. </div>
  1202. </div>
  1203. <div class="toolSort" v-if="itemTool.toolType == 1">
  1204. <div class="tool">
  1205. <div class="whiteBIcon" @click="addTools(7, itemTaskIndex, toolIndex)">
  1206. <img src="../../assets/icon/secondToolList/mindNetwork.png" alt />
  1207. <div style="margin: 5px 0">思维网格</div>
  1208. </div>
  1209. <div class="check" @click="addTools(7, itemTaskIndex, toolIndex)">
  1210. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(7) == -1" />
  1211. <div class="checkDiv" v-else>
  1212. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1213. </div>
  1214. </div>
  1215. </div>
  1216. <div class="tool">
  1217. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  1218. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  1219. <div style="margin: 5px 0">电子白板</div>
  1220. </div>
  1221. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  1222. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(1) == -1" />
  1223. <div class="checkDiv" v-else>
  1224. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1225. </div>
  1226. </div>
  1227. </div>
  1228. <!-- <div class="tool">
  1229. <div
  1230. class="whiteBIcon"
  1231. @click="addTools(2, itemTaskIndex, toolIndex)"
  1232. >
  1233. <img
  1234. src="../../assets/icon/secondToolList/note.png"
  1235. alt
  1236. />
  1237. <div style="margin: 5px 0">便签</div>
  1238. </div>
  1239. <div
  1240. class="check"
  1241. @click="addTools(2, itemTaskIndex, toolIndex)"
  1242. >
  1243. <img
  1244. src="../../assets/icon/checkNo.png"
  1245. alt
  1246. v-if="itemTool.tool.indexOf(2) == -1"
  1247. />
  1248. <div class="checkDiv" v-else>
  1249. <img
  1250. src="../../assets/icon/checkedIs.png"
  1251. alt
  1252. /><span>已选择</span>
  1253. </div>
  1254. </div>
  1255. </div> -->
  1256. <!-- <div class="tool">
  1257. <div class="whiteBIcon" @click="addTools(6, itemTaskIndex, toolIndex)">
  1258. <img src="../../assets/icon/secondToolList/doc.png" alt />
  1259. <div style="margin: 5px 0">协同文档</div>
  1260. </div>
  1261. <div
  1262. class="check"
  1263. @click="addTools(6, itemTaskIndex, toolIndex)"
  1264. >
  1265. <img
  1266. src="../../assets/icon/checkNo.png"
  1267. alt
  1268. v-if="itemTool.tool.indexOf(6) == -1"
  1269. />
  1270. <div class="checkDiv" v-else>
  1271. <img
  1272. src="../../assets/icon/checkedIs.png"
  1273. alt
  1274. /><span>已选择</span>
  1275. </div>
  1276. </div>
  1277. </div> -->
  1278. <div class="tool">
  1279. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  1280. <img src="../../assets/icon/fourthToolList/text.png" alt />
  1281. <div style="margin: 5px 0">文档</div>
  1282. </div>
  1283. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  1284. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(52) == -1" />
  1285. <div class="checkDiv" v-else>
  1286. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1287. </div>
  1288. </div>
  1289. </div>
  1290. <div class="tool">
  1291. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  1292. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  1293. <div style="margin: 5px 0">思维导图</div>
  1294. </div>
  1295. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  1296. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(3) == -1" />
  1297. <div class="checkDiv" v-else>
  1298. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1299. </div>
  1300. </div>
  1301. </div>
  1302. <div class="tool">
  1303. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  1304. <img src="../../assets/icon/fourthToolList/table.png" alt />
  1305. <div style="margin: 5px 0">表格</div>
  1306. </div>
  1307. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  1308. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(48) == -1" />
  1309. <div class="checkDiv" v-else>
  1310. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1311. </div>
  1312. </div>
  1313. </div>
  1314. </div>
  1315. <div class="toolSort" v-if="itemTool.toolType == 2">
  1316. <!-- <div class="tool">
  1317. <div
  1318. class="whiteBIcon"
  1319. @click="addTools(5, itemTaskIndex, toolIndex)"
  1320. >
  1321. <img
  1322. src="../../assets/icon/thirdToolList/score.png"
  1323. alt
  1324. />
  1325. <div style="margin: 5px 0">量规评分</div>
  1326. </div>
  1327. <div
  1328. class="check"
  1329. @click="addTools(5, itemTaskIndex, toolIndex)"
  1330. >
  1331. <img
  1332. src="../../assets/icon/checkNo.png"
  1333. alt
  1334. v-if="itemTool.tool.indexOf(5) == -1"
  1335. />
  1336. <img
  1337. src="../../assets/icon/checkedIs.png"
  1338. alt
  1339. v-else
  1340. />
  1341. </div>
  1342. </div>-->
  1343. <div class="tool">
  1344. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  1345. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  1346. <div style="margin: 5px 0">问卷调查</div>
  1347. </div>
  1348. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  1349. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(4) == -1" />
  1350. <div class="checkDiv" v-else>
  1351. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1352. </div>
  1353. </div>
  1354. </div>
  1355. <div class="tool">
  1356. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  1357. <img src="../../assets/icon/thirdToolList/choose.png" alt />
  1358. <div style="margin: 5px 0">选择题</div>
  1359. </div>
  1360. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  1361. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(45) == -1" />
  1362. <div class="checkDiv" v-else>
  1363. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1364. </div>
  1365. </div>
  1366. </div>
  1367. <div class="tool">
  1368. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  1369. <img src="../../assets/icon/thirdToolList/answer.png" alt />
  1370. <div style="margin: 5px 0">问答工具</div>
  1371. </div>
  1372. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  1373. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(15) == -1" />
  1374. <div class="checkDiv" v-else>
  1375. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1376. </div>
  1377. </div>
  1378. </div>
  1379. <div class="tool">
  1380. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  1381. <img src="../../assets/icon/thirdToolList/work.png" alt />
  1382. <div style="margin: 5px 0">作业提交</div>
  1383. </div>
  1384. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  1385. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(16) == -1" />
  1386. <div class="checkDiv" v-else>
  1387. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1388. </div>
  1389. </div>
  1390. </div>
  1391. <div class="tool">
  1392. <div class="whiteBIcon" @click="addTools(50, itemTaskIndex, toolIndex)">
  1393. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  1394. <div style="margin: 5px 0">批量上传</div>
  1395. </div>
  1396. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  1397. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  1398. <div class="checkDiv" v-else>
  1399. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1400. </div>
  1401. </div>
  1402. </div>
  1403. <div class="tool">
  1404. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
  1405. <img src="../../assets/icon/thirdToolList/eval.png" alt />
  1406. <div style="margin: 5px 0">个人评价</div>
  1407. </div>
  1408. <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
  1409. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(40) == -1" />
  1410. <div class="checkDiv" v-else>
  1411. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1412. </div>
  1413. </div>
  1414. </div>
  1415. <div class="tool">
  1416. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  1417. <img src="../../assets/icon/thirdToolList/select.png" alt />
  1418. <div style="margin: 5px 0">选择填空</div>
  1419. </div>
  1420. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  1421. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(41) == -1" />
  1422. <div class="checkDiv" v-else>
  1423. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1424. </div>
  1425. </div>
  1426. </div>
  1427. <div class="tool">
  1428. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  1429. <img src="../../assets/icon/fourthToolList/conSentences.png" alt />
  1430. <div style="margin: 5px 0">连词成句</div>
  1431. </div>
  1432. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  1433. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(47) == -1" />
  1434. <div class="checkDiv" v-else>
  1435. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1436. </div>
  1437. </div>
  1438. </div>
  1439. <!-- <div class="tool">
  1440. <div
  1441. class="whiteBIcon"
  1442. @click="openTools(itemTaskIndex, 42, toolIndex)"
  1443. >
  1444. <img
  1445. src="../../assets/icon/thirdToolList/mp3.png"
  1446. alt
  1447. />
  1448. <div style="margin: 5px 0">上传音频</div>
  1449. </div>
  1450. <div
  1451. class="check"
  1452. @click="addTools(42, itemTaskIndex, toolIndex)"
  1453. >
  1454. <img
  1455. src="../../assets/icon/checkNo.png"
  1456. alt
  1457. v-if="itemTool.tool.indexOf(42) == -1"
  1458. />
  1459. <img
  1460. src="../../assets/icon/checkedIs.png"
  1461. alt
  1462. v-else
  1463. />
  1464. </div>
  1465. </div> -->
  1466. </div>
  1467. <div class="toolSort" v-if="itemTool.toolType == 3">
  1468. <div class="tool">
  1469. <div class="whiteBIcon" @click="addTools(18, itemTaskIndex, toolIndex)">
  1470. <img src="../../assets/icon/thirdToolList/trainPlatform.png" alt />
  1471. <div style="margin: 5px 0">训练平台</div>
  1472. </div>
  1473. <div class="check" @click="addTools(18, itemTaskIndex, toolIndex)">
  1474. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(18) == -1" />
  1475. <div class="checkDiv" v-else>
  1476. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1477. </div>
  1478. </div>
  1479. </div>
  1480. <div class="tool">
  1481. <div class="whiteBIcon" @click="addTools(21, itemTaskIndex, toolIndex)">
  1482. <img src="../../assets/icon/fourthToolList/program.png" alt />
  1483. <div style="margin: 5px 0">编程平台</div>
  1484. </div>
  1485. <div class="check" @click="addTools(21, itemTaskIndex, toolIndex)">
  1486. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(21) == -1" />
  1487. <div class="checkDiv" v-else>
  1488. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1489. </div>
  1490. </div>
  1491. </div>
  1492. <div class="tool">
  1493. <div class="whiteBIcon" @click="addTools(22, itemTaskIndex, toolIndex)">
  1494. <img src="../../assets/icon/fourthToolList/AIprogram2.png" alt />
  1495. <div style="margin: 5px 0">AI体验</div>
  1496. </div>
  1497. <div class="check" @click="addTools(22, itemTaskIndex, toolIndex)">
  1498. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(22) == -1" />
  1499. <div class="checkDiv" v-else>
  1500. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1501. </div>
  1502. </div>
  1503. </div>
  1504. <div class="tool">
  1505. <div class="whiteBIcon" @click="addTools(23, itemTaskIndex, toolIndex)">
  1506. <img src="../../assets/icon/fourthToolList/Pythonprogram.png" alt />
  1507. <div style="margin: 5px 0">Python</div>
  1508. </div>
  1509. <div class="check" @click="addTools(23, itemTaskIndex, toolIndex)">
  1510. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(23) == -1" />
  1511. <div class="checkDiv" v-else>
  1512. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1513. </div>
  1514. </div>
  1515. </div>
  1516. <div class="tool">
  1517. <div class="whiteBIcon" @click="addTools(24, itemTaskIndex, toolIndex)">
  1518. <img src="../../assets/icon/fourthToolList/AIprogram.png" alt />
  1519. <div style="margin: 5px 0">AI平台</div>
  1520. </div>
  1521. <div class="check" @click="addTools(24, itemTaskIndex, toolIndex)">
  1522. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(24) == -1" />
  1523. <div class="checkDiv" v-else>
  1524. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1525. </div>
  1526. </div>
  1527. </div>
  1528. <div class="tool">
  1529. <div class="whiteBIcon" @click="addTools(32, itemTaskIndex, toolIndex)">
  1530. <img src="../../assets/icon/thirdToolList/code.png" alt />
  1531. <div style="margin: 5px 0">源码编辑</div>
  1532. </div>
  1533. <div class="check" @click="addTools(32, itemTaskIndex, toolIndex)">
  1534. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(32) == -1" />
  1535. <div class="checkDiv" v-else>
  1536. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1537. </div>
  1538. </div>
  1539. </div>
  1540. <div class="tool">
  1541. <div class="whiteBIcon" @click="addTools(57, itemTaskIndex, toolIndex)">
  1542. <img src="../../assets/icon/fourthToolList/cocopi.png" alt />
  1543. <div style="margin: 5px 0">CocoPi</div>
  1544. </div>
  1545. <div class="check" @click="addTools(57, itemTaskIndex, toolIndex)">
  1546. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(57) == -1" />
  1547. <div class="checkDiv" v-else>
  1548. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1549. </div>
  1550. </div>
  1551. </div>
  1552. <div class="tool">
  1553. <div class="whiteBIcon" @click="addTools(63, itemTaskIndex, toolIndex)">
  1554. <img src="../../assets/icon/fourthToolList/Wood.png" alt />
  1555. <div style="margin: 5px 0">海龟编程</div>
  1556. </div>
  1557. <div class="check" @click="addTools(63, itemTaskIndex, toolIndex)">
  1558. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(63) == -1" />
  1559. <div class="checkDiv" v-else>
  1560. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1561. </div>
  1562. </div>
  1563. </div>
  1564. </div>
  1565. <div class="toolSort" v-if="itemTool.toolType == 5">
  1566. <div class="tool">
  1567. <div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
  1568. <img src="../../assets/icon/secondToolList/translation.png" alt />
  1569. <div style="margin: 5px 0">翻译</div>
  1570. </div>
  1571. <div class="check" @click="addTools(28, itemTaskIndex, toolIndex)">
  1572. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(28) == -1" />
  1573. <div class="checkDiv" v-else>
  1574. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1575. </div>
  1576. </div>
  1577. </div>
  1578. <div class="tool">
  1579. <div class="whiteBIcon" @click="addTools(37, itemTaskIndex, toolIndex)">
  1580. <img src="../../assets/icon/secondToolList/mohe.png" alt />
  1581. <div style="margin: 5px 0">魔盒识字</div>
  1582. </div>
  1583. <div class="check" @click="addTools(37, itemTaskIndex, toolIndex)">
  1584. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(37) == -1" />
  1585. <div class="checkDiv" v-else>
  1586. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1587. </div>
  1588. </div>
  1589. </div>
  1590. <div class="tool">
  1591. <div class="whiteBIcon" @click="addTools(38, itemTaskIndex, toolIndex)">
  1592. <img src="../../assets/icon/secondToolList/24game.png" alt />
  1593. <div style="margin: 5px 0">24点</div>
  1594. </div>
  1595. <div class="check" @click="addTools(38, itemTaskIndex, toolIndex)">
  1596. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(38) == -1" />
  1597. <div class="checkDiv" v-else>
  1598. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1599. </div>
  1600. </div>
  1601. </div>
  1602. <div class="tool">
  1603. <div class="whiteBIcon" @click="addTools(31, itemTaskIndex, toolIndex)">
  1604. <img src="../../assets/icon/secondToolList/networkPanel.png" alt />
  1605. <div style="margin: 5px 0">数学画板</div>
  1606. </div>
  1607. <div class="check" @click="addTools(31, itemTaskIndex, toolIndex)">
  1608. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(31) == -1" />
  1609. <div class="checkDiv" v-else>
  1610. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1611. </div>
  1612. </div>
  1613. </div>
  1614. <div class="tool">
  1615. <div class="whiteBIcon" @click="addTools(39, itemTaskIndex, toolIndex)">
  1616. <img src="../../assets/icon/secondToolList/GeoGebra.png" alt />
  1617. <div style="margin: 5px 0">GeoGebra</div>
  1618. </div>
  1619. <div class="check" @click="addTools(39, itemTaskIndex, toolIndex)">
  1620. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(39) == -1" />
  1621. <div class="checkDiv" v-else>
  1622. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1623. </div>
  1624. </div>
  1625. </div>
  1626. <div class="tool">
  1627. <div class="whiteBIcon" @click="addTools(58, itemTaskIndex, toolIndex)">
  1628. <img src="../../assets/icon/fourthToolList/car.png" alt />
  1629. <div style="margin: 5px 0">模拟驾驶</div>
  1630. </div>
  1631. <div class="check" @click="addTools(58, itemTaskIndex, toolIndex)">
  1632. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(58) == -1" />
  1633. <div class="checkDiv" v-else>
  1634. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1635. </div>
  1636. </div>
  1637. </div>
  1638. <div class="tool">
  1639. <div class="whiteBIcon" @click="addTools(59, itemTaskIndex, toolIndex)">
  1640. <img src="../../assets/icon/fourthToolList/lineSearch.png" alt />
  1641. <div style="margin: 5px 0">路径搜索</div>
  1642. </div>
  1643. <div class="check" @click="addTools(59, itemTaskIndex, toolIndex)">
  1644. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(59) == -1" />
  1645. <div class="checkDiv" v-else>
  1646. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1647. </div>
  1648. </div>
  1649. </div>
  1650. <div class="tool">
  1651. <div class="whiteBIcon" @click="addTools(60, itemTaskIndex, toolIndex)">
  1652. <img src="../../assets/icon/fourthToolList/deepLearning.png" alt />
  1653. <div style="margin: 5px 0">深度学习</div>
  1654. </div>
  1655. <div class="check" @click="addTools(60, itemTaskIndex, toolIndex)">
  1656. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(60) == -1" />
  1657. <div class="checkDiv" v-else>
  1658. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1659. </div>
  1660. </div>
  1661. </div>
  1662. <div class="tool">
  1663. <div class="whiteBIcon" @click="addTools(61, itemTaskIndex, toolIndex)">
  1664. <img src="../../assets/icon/fourthToolList/allHistory.png" alt />
  1665. <div style="margin: 5px 0">全历史</div>
  1666. </div>
  1667. <div class="check" @click="addTools(61, itemTaskIndex, toolIndex)">
  1668. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(61) == -1" />
  1669. <div class="checkDiv" v-else>
  1670. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1671. </div>
  1672. </div>
  1673. </div>
  1674. </div>
  1675. <div class="toolSort" v-if="itemTool.toolType == 4">
  1676. <div class="tool">
  1677. <div class="whiteBIcon" @click="addTools(26, itemTaskIndex, toolIndex)">
  1678. <img src="../../assets/icon/thirdToolList/courseDesign.png" alt />
  1679. <div style="margin: 5px 0">课程设计</div>
  1680. </div>
  1681. <div class="check" @click="addTools(26, itemTaskIndex, toolIndex)">
  1682. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(26) == -1" />
  1683. <div class="checkDiv" v-else>
  1684. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1685. </div>
  1686. </div>
  1687. </div>
  1688. <div class="tool">
  1689. <div class="whiteBIcon" @click="addTools(25, itemTaskIndex, toolIndex)">
  1690. <img src="../../assets/icon/thirdToolList/evalua.png" alt />
  1691. <div style="margin: 5px 0">目标管理</div>
  1692. </div>
  1693. <div class="check" @click="addTools(25, itemTaskIndex, toolIndex)">
  1694. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(25) == -1" />
  1695. <div class="checkDiv" v-else>
  1696. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1697. </div>
  1698. </div>
  1699. </div>
  1700. <!-- <div class="tool">
  1701. <div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
  1702. <img src="../../assets/icon/thirdToolList/hanClass.png" alt />
  1703. <div style="margin: 5px 0">汉字宫</div>
  1704. </div>
  1705. <div class="check" @click="addTools(44, itemTaskIndex, toolIndex)">
  1706. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(44) == -1" />
  1707. <div class="checkDiv" v-else>
  1708. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1709. </div>
  1710. </div>
  1711. </div> -->
  1712. </div>
  1713. </div>
  1714. </div>
  1715. <div class="addToolFun" @click="addToolFun(itemTaskIndex)">
  1716. <div class="addToolImg">
  1717. <img src="../../assets/icon/add.png" alt />
  1718. </div>
  1719. <div>添加工具</div>
  1720. </div>
  1721. </div>
  1722. </div>
  1723. <div v-else-if="unitJson[unitIndex].easy == 2 ||
  1724. unitJson[unitIndex].easy == 4
  1725. " class="toolChoose" style="padding: 0 0 0 30px">
  1726. <div class="tools">
  1727. <div class="leftTools" style="width: 95%" v-for="(itemTool, toolIndex) in itemTask.toolChoose"
  1728. :key="toolIndex">
  1729. <div>
  1730. <textarea rows="3" type="text" placeholder="添加工具描述" class="binfo_input"
  1731. style="margin: 0 0 20px 0; width: 71.5% !important" v-model="itemTool.toolDetail"></textarea>
  1732. </div>
  1733. <div style="
  1734. display: flex;
  1735. flex-direction: row;
  1736. align-items: baseline;
  1737. flex-wrap: nowrap;
  1738. justify-content: flex-start;
  1739. position: relative;
  1740. ">
  1741. <div style="margin-right: 20px; font-weight: bold">
  1742. 步骤 {{ toolIndex + 1 }} :
  1743. </div>
  1744. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  1745. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 55px"></div>
  1746. </div>
  1747. <div style="min-height: 163px">
  1748. <div class="toolSort">
  1749. <div class="tool">
  1750. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  1751. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  1752. <div style="margin: 5px 0">电子白板</div>
  1753. </div>
  1754. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  1755. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(1) == -1" />
  1756. <div class="checkDiv" v-else>
  1757. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1758. </div>
  1759. </div>
  1760. </div>
  1761. <div class="tool">
  1762. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  1763. <img src="../../assets/icon/fourthToolList/text.png" alt />
  1764. <div style="margin: 5px 0">文档</div>
  1765. </div>
  1766. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  1767. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(52) == -1" />
  1768. <div class="checkDiv" v-else>
  1769. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1770. </div>
  1771. </div>
  1772. </div>
  1773. <div class="tool">
  1774. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  1775. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  1776. <div style="margin: 5px 0">思维导图</div>
  1777. </div>
  1778. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  1779. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(3) == -1" />
  1780. <div class="checkDiv" v-else>
  1781. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1782. </div>
  1783. </div>
  1784. </div>
  1785. <div class="tool">
  1786. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  1787. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  1788. <div style="margin: 5px 0">问卷调查</div>
  1789. </div>
  1790. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  1791. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(4) == -1" />
  1792. <div class="checkDiv" v-else>
  1793. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1794. </div>
  1795. </div>
  1796. </div>
  1797. <div class="tool">
  1798. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  1799. <img src="../../assets/icon/thirdToolList/choose.png" alt />
  1800. <div style="margin: 5px 0">选择题</div>
  1801. </div>
  1802. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  1803. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(45) == -1" />
  1804. <div class="checkDiv" v-else>
  1805. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1806. </div>
  1807. </div>
  1808. </div>
  1809. <div class="tool">
  1810. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  1811. <img src="../../assets/icon/thirdToolList/answer.png" alt />
  1812. <div style="margin: 5px 0">问答工具</div>
  1813. </div>
  1814. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  1815. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(15) == -1" />
  1816. <div class="checkDiv" v-else>
  1817. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1818. </div>
  1819. </div>
  1820. </div>
  1821. <div class="tool">
  1822. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  1823. <img src="../../assets/icon/thirdToolList/work.png" alt />
  1824. <div style="margin: 5px 0">作业提交</div>
  1825. </div>
  1826. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  1827. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(16) == -1" />
  1828. <div class="checkDiv" v-else>
  1829. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1830. </div>
  1831. </div>
  1832. </div>
  1833. <div class="tool">
  1834. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  1835. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  1836. <div style="margin: 5px 0">批量上传</div>
  1837. </div>
  1838. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  1839. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  1840. <div class="checkDiv" v-else>
  1841. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1842. </div>
  1843. </div>
  1844. </div>
  1845. <div class="tool">
  1846. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  1847. <img src="../../assets/icon/thirdToolList/select.png" alt />
  1848. <div style="margin: 5px 0">选择填空</div>
  1849. </div>
  1850. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  1851. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(41) == -1" />
  1852. <div class="checkDiv" v-else>
  1853. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1854. </div>
  1855. </div>
  1856. </div>
  1857. <div class="tool">
  1858. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  1859. <img src="../../assets/icon/fourthToolList/conSentences.png" alt />
  1860. <div style="margin: 5px 0">连词成句</div>
  1861. </div>
  1862. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  1863. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(47) == -1" />
  1864. <div class="checkDiv" v-else>
  1865. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1866. </div>
  1867. </div>
  1868. </div>
  1869. <div class="tool">
  1870. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  1871. <img src="../../assets/icon/fourthToolList/table.png" alt />
  1872. <div style="margin: 5px 0">表格</div>
  1873. </div>
  1874. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  1875. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(48) == -1" />
  1876. <div class="checkDiv" v-else>
  1877. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1878. </div>
  1879. </div>
  1880. </div>
  1881. </div>
  1882. </div>
  1883. </div>
  1884. <div class="addToolFun" style="margin-bottom: 20px" @click="addToolFun(itemTaskIndex)">
  1885. <div class="addToolImg">
  1886. <img src="../../assets/icon/add.png" alt />
  1887. </div>
  1888. <div>添加工具</div>
  1889. </div>
  1890. </div>
  1891. </div>
  1892. <div v-else-if="unitJson[unitIndex].easy == 1 ||
  1893. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  1894. " class="toolChoose" style="padding: 0 0 0 30px">
  1895. <div class="tools">
  1896. <div class="leftTools" style="
  1897. width: 95%;
  1898. padding: 0 0 15px 0;
  1899. margin-bottom: 15px;
  1900. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  1901. <div style="min-height: 163px">
  1902. <div class="toolSort">
  1903. <div class="tool">
  1904. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  1905. <img src="../../assets/icon/thirdToolList/plwork.png" alt />
  1906. <div style="margin: 5px 0">批量上传</div>
  1907. </div>
  1908. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  1909. <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  1910. <div class="checkDiv" v-else>
  1911. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1912. </div>
  1913. </div>
  1914. </div>
  1915. </div>
  1916. </div>
  1917. </div>
  1918. </div>
  1919. </div>
  1920. <div class="elist_css" v-if="!(unitJson[unitJson.length - 1].easy == 4)">
  1921. <div class="elist_title">
  1922. <div style="
  1923. display: flex;
  1924. flex-direction: row;
  1925. align-items: center;
  1926. margin-bottom: 20px;
  1927. ">
  1928. <div class="lineTitle">评价设置</div>
  1929. <div class="line" style="width: 90%"></div>
  1930. </div>
  1931. </div>
  1932. <div class="mbCss">
  1933. <div class="pjCss">
  1934. <div v-if="itemTask.eList && itemTask.eList.length" class="elist_input">
  1935. <div v-for="(eItem, eIndex) in itemTask.eList" :key="eIndex" class="elist_input_box">
  1936. <span>评价名称:</span>
  1937. <input type="input" v-model="itemTask.eList[eIndex].value" placeholder="填写评价名称" />
  1938. <span>评星等级:</span>
  1939. <el-rate v-model="itemTask.eList[eIndex].score" @change="setEListStar()" disabled></el-rate>
  1940. <div class="remove" @click="deletEList(unitIndex, itemTaskIndex, eIndex)
  1941. "></div>
  1942. <div class="elist_inptu_text">
  1943. <span>评价描述:</span>
  1944. <input type="input" v-model="itemTask.eList[eIndex].detail" placeholder="填写评价描述" />
  1945. </div>
  1946. <div class="elist_inptu_text" v-if="evalua">
  1947. <span>目标:</span>
  1948. <!-- <input type="input" v-model="itemTask.eList[eIndex].target" placeholder="填写评价描述" /> -->
  1949. <!-- <el-select v-model="itemTask.eList[eIndex].target" placeholder="请选择目标"
  1950. @change="forceUpdate()">
  1951. <el-option v-for="(e, eIndex) in targetArray" :key="eIndex" :label="e.name"
  1952. :value="e.name">
  1953. </el-option>
  1954. </el-select> -->
  1955. <el-cascader :options="targetArray" v-model="itemTask.eList[eIndex].target"
  1956. :props="{ checkStrictly: true }" :show-all-levels="false" clearable></el-cascader>
  1957. </div>
  1958. </div>
  1959. </div>
  1960. <div class="addToolFun" @click="addEList(unitIndex, itemTaskIndex)" style="margin: 35px 35px 0 0">
  1961. <div class="addToolImg">
  1962. <img src="../../assets/icon/add.png" alt />
  1963. </div>
  1964. <div>添加</div>
  1965. </div>
  1966. </div>
  1967. <div v-if="evalua" style="
  1968. border: 1px solid #e5e5e5;
  1969. width: 55%;
  1970. margin-top: 20px;
  1971. box-shadow: 3px 1px 15px 3px #e0e0e0;
  1972. " class="evaCss">
  1973. <div class="e_add_top">
  1974. <div class="e_add_title">
  1975. <span>当前使用目标管理</span>
  1976. <span>{{ eTitle }}</span>
  1977. <img src="../../assets/line.png" class="cru_line" style="
  1978. width: 125px;
  1979. height: 20px;
  1980. bottom: -10px;
  1981. left: 155px;
  1982. " />
  1983. </div>
  1984. </div>
  1985. <div class="e_add_content" style="width: 100%">
  1986. <div class="e_add_list_pbox" style="width: 100%">
  1987. <div class="e_add_list_pbox_title">
  1988. <span class="type_title">切换模式</span>
  1989. <div class="type_content">
  1990. <span :class="{ active: typeMode == 1 }" @click="OtherMb(1)">目标树</span>
  1991. <span :class="{ active: typeMode == 2 }" @click="OtherMb(2)">目标罗盘</span>
  1992. <span :class="{ active: typeMode == 3 }" @click="OtherMb(3)">目标看板</span>
  1993. </div>
  1994. </div>
  1995. <div class="e_add_list_pbox_content">
  1996. <Mind :showBar="false" :mindData="data" style="width: 100%" :jsmindId="unitIndex + '-' + itemTaskIndex + 'mind'
  1997. " v-if="typeMode == 1"></Mind>
  1998. <Sunburst :Josn="eJson" :num="eJSONNum" style="width: 100%" v-if="typeMode == 2">
  1999. </Sunburst>
  2000. <SeeBoard :Josn="eJson" :num="eJSONNum" :ename="eTitle" style="width: 100%"
  2001. v-if="typeMode == 3"></SeeBoard>
  2002. </div>
  2003. </div>
  2004. </div>
  2005. </div>
  2006. </div>
  2007. </div>
  2008. <div class="funBlock" style="padding: 0">
  2009. <div class="fold" @click="fold(itemTaskIndex, $event, 1)">
  2010. <div>折叠</div>
  2011. <div class="arrow">
  2012. <img src="../../assets/icon/fold.png" alt />
  2013. </div>
  2014. </div>
  2015. <div class="fold" @click="fold(itemTaskIndex, $event, 0)">
  2016. <div>展开</div>
  2017. <div class="arrow">
  2018. <img src="../../assets/icon/expand.png" alt />
  2019. </div>
  2020. </div>
  2021. </div>
  2022. </div>
  2023. <div class="addTaskBorder" @click="addTaskBorder" v-if="!unitJson[unitIndex].easy">
  2024. <div>
  2025. <img src="../../assets/icon/addHw.png" alt />
  2026. <span>添加任务</span>
  2027. </div>
  2028. </div>
  2029. </div>
  2030. </div>
  2031. </div>
  2032. <div style="
  2033. width: calc(100% - 20px);
  2034. background: rgb(255, 255, 255);
  2035. border-radius: 10px;
  2036. " v-if="this.steps == 4">
  2037. <div class="basic_box_success">
  2038. <div class="right_img">
  2039. <img src="../../assets/icon/right.png" alt />
  2040. </div>
  2041. <div style="font-weight: bold">成功</div>
  2042. <!-- <div>您的课程编号</div>
  2043. <div class="number">{{ number }}</div>-->
  2044. <!-- <div class="success_button">
  2045. <div class="look_course" @click="isNoFinsh">
  2046. 邀请老师协同编辑
  2047. </div>
  2048. <div class="attend_others" @click="goCourse">预览课程</div>
  2049. </div> -->
  2050. </div>
  2051. </div>
  2052. <div class="info_btnBox">
  2053. <button class="info_btn" v-if="steps == 1" @click="goTo(
  2054. '/course?userid=' +
  2055. userid +
  2056. '&oid=' +
  2057. oid +
  2058. '&org=' +
  2059. org +
  2060. '&role=' +
  2061. role
  2062. )
  2063. ">
  2064. 返回课程
  2065. </button>
  2066. <button class="info_btn" v-if="steps > 1 && steps != 5" @click="lastSteps">
  2067. {{ steps == 4 ? "返回首页" : "上一步" }}
  2068. </button>
  2069. <button class="info_btn" v-if="steps < 4" @click="nextSteps">
  2070. {{ steps == 3 ? "确认上传" : "下一步" }}
  2071. </button>
  2072. </div>
  2073. </div>
  2074. </div>
  2075. </div>
  2076. <el-dialog title="提示" :visible.sync="dialogVisible" :append-to-body="true" width="25%" :before-close="handleClose"
  2077. class="dialog_diy2 customWidth">
  2078. <div>请复制该链接邀请协同编辑</div>
  2079. <div>http://www.boomyon.com/index-zhang.com</div>
  2080. <span slot="footer" class="dialog-footer">
  2081. <el-button type="primary">复制链接分享</el-button>
  2082. <el-button @click="dialogVisible = false">取消</el-button>
  2083. </span>
  2084. </el-dialog>
  2085. <el-dialog :title="updateBoolean2 ? '查看文档' : '添加文档'" :visible.sync="dialogVisible1" :append-to-body="true" width="25%"
  2086. :before-close="handleClose" class="dialog_diy2 customWidth">
  2087. <el-form>
  2088. <el-form-item label="文档标题">
  2089. <el-input v-model="tTitle" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  2090. </el-form-item>
  2091. <div>文档简介</div>
  2092. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  2093. </el-form>
  2094. <span slot="footer" class="dialog-footer">
  2095. <el-button @click="dialogVisible1 = false">取 消</el-button>
  2096. <el-button type="primary" @click="addWord" v-if="!updateBoolean2">添加</el-button>
  2097. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  2098. </span>
  2099. </el-dialog>
  2100. <el-dialog title="添加文档" :visible.sync="dialogVisible2" :append-to-body="true" width="500px"
  2101. :before-close="handleClose" class="dialog_diy">
  2102. <el-form>
  2103. <el-form-item label="文档标题">
  2104. <el-input v-model="templateC.title" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  2105. </el-form-item>
  2106. <div>文档内容</div>
  2107. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  2108. </el-form>
  2109. <span slot="footer" class="dialog-footer">
  2110. <el-button @click="clearChoose">取 消</el-button>
  2111. <el-button type="primary" @click="wordNext()">确定</el-button>
  2112. </span>
  2113. </el-dialog>
  2114. <el-dialog title="添加富文本" :visible.sync="dialogVisible6" :append-to-body="true" width="500px"
  2115. :before-close="handleClose" class="dialog_diy">
  2116. <el-form>
  2117. <el-form-item label="文本标题">
  2118. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  2119. </el-form-item>
  2120. <div>富文本内容</div>
  2121. <editor-bar v-model="AttText.text" @change="change" v-if="dialogVisible6"></editor-bar>
  2122. </el-form>
  2123. <span slot="footer" class="dialog-footer">
  2124. <el-button @click="clearAttText">取 消</el-button>
  2125. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  2126. </span>
  2127. </el-dialog>
  2128. <el-dialog title="添加链接" :visible.sync="dialogVisible7" :append-to-body="true" width="500px"
  2129. :before-close="handleClose" class="dialog_diy lineCss">
  2130. <el-form>
  2131. <el-form-item label="标题" :label-width="formLabelWidth">
  2132. <span>
  2133. <el-input placeholder="请输入链接标题" clearable v-model="lineTitle" class="add_input"></el-input>
  2134. </span>
  2135. </el-form-item>
  2136. <el-form-item label="链接" :label-width="formLabelWidth">
  2137. <span>
  2138. <el-input placeholder="请输入链接" clearable v-model="line" class="add_input"></el-input>
  2139. </span>
  2140. </el-form-item>
  2141. </el-form>
  2142. <span slot="footer" class="dialog-footer">
  2143. <el-button @click="clearLine">取 消</el-button>
  2144. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  2145. </span>
  2146. </el-dialog>
  2147. <el-dialog title="添加资源" :visible.sync="dialogVisibleSource" :append-to-body="true" width="100%"
  2148. :before-close="handleClose" class="dialog_diy source_diy">
  2149. <div>
  2150. <sourceDialog :sourceData="sourceData"></sourceDialog>
  2151. </div>
  2152. <span slot="footer" class="dialog-footer">
  2153. <el-button @click="dialogVisibleSource = false">取 消</el-button>
  2154. <el-button type="primary" @click="addSource">确定</el-button>
  2155. </span>
  2156. </el-dialog>
  2157. <el-dialog title="添加课程成员" :visible.sync="dialogVisible3" :append-to-body="true" width="25%" height="80%"
  2158. :before-close="handleClose" class="addNewPP customWidth">
  2159. <div class="people">
  2160. <div class="people_top">
  2161. <div class="people_nav">选择成员</div>
  2162. <div class="people_top_right">
  2163. <div class="people_search">
  2164. <el-input style="height: 100%" placeholder="搜索成员名称" v-model="searchPeople"></el-input>
  2165. <div class="search_img" @click="searchStudent">
  2166. <img src="../../assets/icon/search.png" alt />
  2167. </div>
  2168. </div>
  2169. </div>
  2170. </div>
  2171. <el-checkbox-group v-model="checkboxList" class="people_name">
  2172. <el-checkbox v-for="item in studentJuri" :key="item.userid" :label="item.userid">{{ item.name ? item.name :
  2173. "暂无学生可选" }}</el-checkbox>
  2174. </el-checkbox-group>
  2175. </div>
  2176. <span slot="footer" class="dialog-footer">
  2177. <el-button @click="dialogVisible3 = false">取 消</el-button>
  2178. <el-button type="primary" @click="isAddPP">确定</el-button>
  2179. </span>
  2180. </el-dialog>
  2181. <el-dialog title="添加班级" :visible.sync="dialogVisibleClass" :append-to-body="true" width="400px" height="80%"
  2182. :before-close="handleClose" class="addNewPP">
  2183. <div class="people" style="height: 300px">
  2184. <div class="people_top">
  2185. <div class="people_top_right">
  2186. <div class="people_search">
  2187. <el-input placeholder="搜索班级名称" v-model="classSearch" @input="getClass()"></el-input>
  2188. <!-- @click="getClass()"
  2189. @keyup.enter.native="getClass()"
  2190. -->
  2191. <div class="search_img">
  2192. <img src="../../assets/icon/search.png" alt />
  2193. </div>
  2194. </div>
  2195. </div>
  2196. <div class="people_nav">选择班级</div>
  2197. </div>
  2198. <el-checkbox-group v-model="checkboxList2" class="people_name people_name2" @change="InviteChange">
  2199. <div v-for="item in grade2" :key="item.id" class="p_box">
  2200. <el-checkbox :label="item.id">
  2201. {{ item.name }}
  2202. </el-checkbox>
  2203. <!-- <div class="inviteCode" :class="{ noneInvite: !isInvite(item.id) }" v-if="isInvite(item.id)">
  2204. 邀请码:{{ getInviteCodeC(item.id) }}</div> -->
  2205. <!-- <div class="inviteCode" :class="{ noneInvite: !isInvite(item.id) }" v-if="checkboxList2.indexOf(item.id) != -1"
  2206. @click="OpenInviteD(item.id)">随机码设置</div>
  2207. <img src="../../assets/icon/rightInvite.png" class="inviteImg" v-if="isInvite(item.id)" /> -->
  2208. </div>
  2209. </el-checkbox-group>
  2210. </div>
  2211. <span slot="footer" class="dialog-footer">
  2212. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  2213. <el-button type="primary" @click="isAddClass">确定</el-button>
  2214. </span>
  2215. </el-dialog>
  2216. <el-dialog title="添加协同成员" :visible.sync="dialogVisibleMember" :append-to-body="true" width="25%" height="80%"
  2217. :before-close="handleClose" class="addNewPP customWidth">
  2218. <div class="people">
  2219. <div class="people_top">
  2220. <div class="people_top_right">
  2221. <div class="people_search">
  2222. <el-input placeholder="搜索成员名称" v-model="searchTN" @keyup.enter.native="getTeacher"></el-input>
  2223. <div class="search_img" @click="getTeacher">
  2224. <img src="../../assets/icon/search.png" alt />
  2225. </div>
  2226. </div>
  2227. </div>
  2228. <div class="people_nav">选择成员</div>
  2229. </div>
  2230. <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="teacherJuri.length">
  2231. <el-checkbox v-for="item in teacherJuri" :key="item.userid" :label="item.userid">
  2232. <div class="t_j_box">
  2233. <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
  2234. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  2235. </el-tooltip>
  2236. <el-tooltip placement="top" :content="item.username">
  2237. <span>{{ item.username }}</span>
  2238. </el-tooltip>
  2239. <el-tooltip placement="top" :content="item.school">
  2240. <span>{{ item.school }}</span>
  2241. </el-tooltip>
  2242. </div>
  2243. </el-checkbox>
  2244. </el-checkbox-group>
  2245. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  2246. </div>
  2247. <span slot="footer" class="dialog-footer">
  2248. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  2249. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  2250. </span>
  2251. </el-dialog>
  2252. <el-dialog title="创建问卷" :visible.sync="dialogVisible5" :append-to-body="true" width="800px"
  2253. :before-close="handleClose" class="dialog_diy">
  2254. <div>
  2255. <div class="a_add_title" style="
  2256. display: flex;
  2257. flex-direction: row;
  2258. align-items: center;
  2259. justify-content: center;
  2260. ">
  2261. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  2262. <el-input v-model="askJson.askTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  2263. </div>
  2264. <div class="a_addBox">
  2265. <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div>
  2266. <div class="a_add_box" v-for="(item1, index1) in askJson.askCount" :key="index1">
  2267. <div class="a_add_checkType">
  2268. <span :class="{ active: askJson.askJson[index1].type == '1' || !askJson.askJson[index1].type }"
  2269. @click="checkAskType('1', askJson.askJson[index1])">单选题</span>
  2270. <span :class="{ active: askJson.askJson[index1].type == '2' }"
  2271. @click="checkAskType('2', askJson.askJson[index1])">多选题</span>
  2272. </div>
  2273. <div class="a_add_head">
  2274. <div>
  2275. {{ index1 + 1 + "、" }}
  2276. <el-input class="a_add_head_input" v-model="askJson.askJson[index1].askstitle" placeholder="请输入题目...">
  2277. </el-input>
  2278. </div>
  2279. <div class="a_add_head_div">
  2280. <el-button type="primary" size="small" @click="addAskList()">添加</el-button>
  2281. <el-button type="primary" size="small" @click="deleteAskList(index1)" v-if="askJson.askCount != 1">删除
  2282. </el-button>
  2283. </div>
  2284. </div>
  2285. <div class="a_add_body">
  2286. <div class="a_add_input">
  2287. <el-input v-for="(item2, checkIndex) in askJson.askJson[index1].askItem" :key="checkIndex"
  2288. v-model="askJson.askJson[index1].checkList[checkIndex]" placeholder="请输入选项..."
  2289. style="width: 150px; margin: 10px 10px 0 0"></el-input>
  2290. </div>
  2291. <div class="a_add_body_div">
  2292. <el-button style="margin: 10px 0px 0 0" type="primary" size="small"
  2293. @click="addcheckList(askJson.askJson[index1])">添加</el-button>
  2294. <el-button type="primary" size="small" style="margin: 10px 0 0 10px"
  2295. @click="deletecheckList(askJson.askJson[index1])" v-if="askJson.askJson[index1].askItem != 1">删除
  2296. </el-button>
  2297. </div>
  2298. </div>
  2299. </div>
  2300. </div>
  2301. </div>
  2302. <span slot="footer" class="dialog-footer">
  2303. <el-button @click="dialogVisible5 = false">取 消</el-button>
  2304. <el-button type="primary" @click="addAsk">确 定</el-button>
  2305. </span>
  2306. </el-dialog>
  2307. <el-dialog title="创建选择题" :visible.sync="dialogVisibleChoice" :append-to-body="true" width="800px"
  2308. :before-close="handleClose" class="dialog_diy">
  2309. <div>
  2310. <!-- <div class="a_add_title" style="
  2311. display: flex;
  2312. flex-direction: row;
  2313. align-items: center;
  2314. justify-content: center;
  2315. ">
  2316. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  2317. <el-input v-model="testJson.testTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  2318. </div> -->
  2319. <div class="a_addBox">
  2320. <div style="font-size: 16px; color: #c7c7c7">
  2321. 请输入题目内容
  2322. <el-button type="primary" size="small" @click="pasteOption" style="margin-left:10px">智能粘贴</el-button>
  2323. </div>
  2324. <div class="a_add_box" v-for="(item1, index1) in testJson.testCount" :key="index1">
  2325. <div class="a_add_checkType">
  2326. <span :class="{ active: testJson.testJson[index1].type == '1' }"
  2327. @click="checkTestType('1', testJson.testJson[index1])">单选题</span>
  2328. <span :class="{ active: testJson.testJson[index1].type == '2' }"
  2329. @click="checkTestType('2', testJson.testJson[index1])">多选题</span>
  2330. </div>
  2331. <div class="a_add_head">
  2332. <div class="timuUpImg">
  2333. <div>
  2334. {{ index1 + 1 + "、" }}
  2335. <el-input class="a_add_head_input" v-model="testJson.testJson[index1].teststitle"
  2336. placeholder="请输入题目...">
  2337. </el-input>
  2338. </div>
  2339. <div class="xzUpImg" @click.stop="addImg($event)">
  2340. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2341. <input type="file" accept="image/*" style="display: none" @change="beforeUploadTiMu($event, index1)" />
  2342. </div>
  2343. </div>
  2344. <div class="a_add_head_div">
  2345. <el-button type="primary" size="small" @click="addTestList()">添加</el-button>
  2346. <el-button type="primary" size="small" @click="deleteTestList(index1)" v-if="testJson.testCount != 1">删除
  2347. </el-button>
  2348. </div>
  2349. </div>
  2350. <div class="timuImgBox" v-if="testJson.testJson[index1].timuList &&
  2351. testJson.testJson[index1].timuList.length
  2352. ">
  2353. <div v-for="(timg, tIndex) in testJson.testJson[index1].timuList" :key="tIndex" class="timuImg"
  2354. @click.stop="previewImg(timg.src)">
  2355. <img :src="timg.src" alt="" />
  2356. <div class="deleteWord" @click.stop="deleteM(index1, tIndex)">
  2357. <img src="../../assets/icon/delete.png" alt="" />
  2358. </div>
  2359. </div>
  2360. </div>
  2361. <div class="a_add_body">
  2362. <div class="a_add_input a_add_input_choice">
  2363. <el-radio-group v-model="testJson.testJson[index1].answer" v-if="testJson.testJson[index1].type == 1">
  2364. <div class="radioBox">
  2365. <el-radio v-for="(item2, checkIndex) in testJson.testJson[index1]
  2366. .testItem" :key="checkIndex" :label="checkIndex">
  2367. <div style="margin-right: 10px">
  2368. 选项{{ checkIndex + 1 }}
  2369. </div>
  2370. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex] &&
  2371. testJson.testJson[index1].checkList[checkIndex]
  2372. .imgType &&
  2373. testJson.testJson[index1].checkList[checkIndex]
  2374. .imgType == 1
  2375. ">
  2376. <div class="inImg" @click.stop="previewImg(
  2377. testJson.testJson[index1].checkList[checkIndex]
  2378. .src
  2379. )
  2380. ">
  2381. <el-image :src="testJson.testJson[index1].checkList[checkIndex]
  2382. .src
  2383. " lazy />
  2384. <!-- <img :src="
  2385. testJson.testJson[index1].checkList[checkIndex]
  2386. .src
  2387. " alt="" /> -->
  2388. </div>
  2389. </div>
  2390. <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex]
  2391. " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
  2392. <div class="xzUpImg" @click.stop="addImg($event)">
  2393. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2394. <input type="file" accept="image/*" style="display: none"
  2395. @change="beforeUploadTi($event, index1, checkIndex)" />
  2396. </div>
  2397. </el-radio>
  2398. </div>
  2399. </el-radio-group>
  2400. <el-checkbox-group v-model="testJson.testJson[index1].answer"
  2401. v-if="testJson.testJson[index1].type == '2'">
  2402. <div class="radioBox">
  2403. <el-checkbox v-for="(item2, checkIndex1) in testJson.testJson[index1]
  2404. .testItem" :key="checkIndex1" :label="checkIndex1">
  2405. <div style="margin-right: 10px">
  2406. 选项{{ checkIndex1 + 1 }}
  2407. </div>
  2408. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex1] &&
  2409. testJson.testJson[index1].checkList[checkIndex1]
  2410. .imgType &&
  2411. testJson.testJson[index1].checkList[checkIndex1]
  2412. .imgType == 1
  2413. ">
  2414. <div class="inImg" @click.stop="previewImg(
  2415. testJson.testJson[index1].checkList[checkIndex1]
  2416. .src
  2417. )
  2418. ">
  2419. <el-image :src="testJson.testJson[index1].checkList[checkIndex1]
  2420. .src
  2421. " lazy />
  2422. <!-- <img :src="
  2423. testJson.testJson[index1].checkList[checkIndex1]
  2424. .src
  2425. " alt="" /> -->
  2426. </div>
  2427. </div>
  2428. <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
  2429. " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
  2430. <div class="xzUpImg" @click.stop="addImg($event)">
  2431. <img src="../../assets/icon/xzUpImg.png" alt="" />
  2432. <input type="file" accept="image/*" style="display: none"
  2433. @change="beforeUploadTi($event, index1, checkIndex1)" />
  2434. </div>
  2435. </el-checkbox>
  2436. </div>
  2437. </el-checkbox-group>
  2438. </div>
  2439. <div class="a_add_body_div" style="margin-bottom: 3px">
  2440. <el-button type="primary" size="small" @click="addTcheckList(testJson.testJson[index1])">添加</el-button>
  2441. <el-button type="primary" size="small" @click="deleteTcheckList(testJson.testJson[index1])"
  2442. v-if="testJson.testJson[index1].testItem != 1">删除
  2443. </el-button>
  2444. </div>
  2445. </div>
  2446. </div>
  2447. </div>
  2448. </div>
  2449. <span slot="footer" class="dialog-footer">
  2450. <el-button @click="dialogVisibleChoice = false">取 消</el-button>
  2451. <el-button type="primary" @click="addTest">确 定</el-button>
  2452. </span>
  2453. </el-dialog>
  2454. <el-dialog title="添加工具" :visible.sync="dialogVisible4" :append-to-body="true" width="600px"
  2455. :before-close="handleClose" class="dialog_diy addToolsDia">
  2456. <div class="toolChoose" style="padding: 0 0 0 30px">
  2457. <div class="tools">
  2458. <div class="leftTools" style="
  2459. width: 95%;
  2460. padding: 0 0 15px 0;
  2461. border-bottom: 1px solid #efefef;
  2462. margin-bottom: 15px;
  2463. " v-for="(itemTools, itemToolsIndex) in chapTools" :key="itemToolsIndex">
  2464. <div style="
  2465. display: flex;
  2466. flex-direction: row;
  2467. align-items: baseline;
  2468. flex-wrap: nowrap;
  2469. justify-content: flex-start;
  2470. position: relative;
  2471. ">
  2472. <div class="chooseWho">
  2473. <div :class="chapToolsType == 0 ? 'isChooseActive' : ''" @click="chapToolsType = 0">
  2474. 互动类
  2475. </div>
  2476. <div :class="chapToolsType == 1 ? 'isChooseActive' : ''" @click="chapToolsType = 1">
  2477. 思维类
  2478. </div>
  2479. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  2480. 评价类
  2481. </div>
  2482. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  2483. 其他
  2484. </div>
  2485. </div>
  2486. </div>
  2487. <div style="min-height: 163px">
  2488. <div class="toolSort" v-if="chapToolsType == 0">
  2489. <div class="tool">
  2490. <div class="whiteBIcon" @click="chapAddTools(8)">
  2491. <img src="../../assets/icon/secondToolList/library.png" alt />
  2492. <div style="margin: 5px 0">素材库</div>
  2493. </div>
  2494. <div class="check" @click="chapAddTools(8)">
  2495. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(8) == -1" />
  2496. <div class="checkDiv" v-else>
  2497. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2498. </div>
  2499. </div>
  2500. </div>
  2501. </div>
  2502. <div class="toolSort" v-if="chapToolsType == 1">
  2503. <div class="tool">
  2504. <div class="whiteBIcon" @click="chapAddTools(7)">
  2505. <img src="../../assets/icon/secondToolList/mindNetwork.png" alt />
  2506. <div style="margin: 5px 0">思维网格</div>
  2507. </div>
  2508. <div class="check" @click="chapAddTools(7)">
  2509. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(7) == -1" />
  2510. <div class="checkDiv" v-else>
  2511. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2512. </div>
  2513. </div>
  2514. </div>
  2515. <div class="tool">
  2516. <div class="whiteBIcon" @click="chapAddTools(1)">
  2517. <img src="../../assets/icon/secondToolList/whiteBoard.png" alt />
  2518. <div style="margin: 5px 0">电子白板</div>
  2519. </div>
  2520. <div class="check" @click="chapAddTools(1)">
  2521. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(1) == -1" />
  2522. <div class="checkDiv" v-else>
  2523. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2524. </div>
  2525. </div>
  2526. </div>
  2527. <div class="tool">
  2528. <div class="whiteBIcon" @click="chapAddTools(2)">
  2529. <img src="../../assets/icon/secondToolList/note.png" alt />
  2530. <div style="margin: 5px 0">便签</div>
  2531. </div>
  2532. <div class="check" @click="chapAddTools(2)">
  2533. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(2) == -1" />
  2534. <div class="checkDiv" v-else>
  2535. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2536. </div>
  2537. </div>
  2538. </div>
  2539. <div class="tool">
  2540. <div class="whiteBIcon" @click="chapAddTools(6)">
  2541. <img src="../../assets/icon/secondToolList/doc.png" alt />
  2542. <div style="margin: 5px 0">协同文档</div>
  2543. </div>
  2544. <div class="check" @click="chapAddTools(6)">
  2545. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(6) == -1" />
  2546. <div class="checkDiv" v-else>
  2547. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2548. </div>
  2549. </div>
  2550. </div>
  2551. <div class="tool">
  2552. <div class="whiteBIcon" @click="chapAddTools(3)">
  2553. <img src="../../assets/icon/secondToolList/mindMapping.png" alt />
  2554. <div style="margin: 5px 0">思维导图</div>
  2555. </div>
  2556. <div class="check" @click="chapAddTools(3)">
  2557. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(3) == -1" />
  2558. <div class="checkDiv" v-else>
  2559. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2560. </div>
  2561. </div>
  2562. </div>
  2563. <div class="tool">
  2564. <div class="whiteBIcon" @click="chapAddTools(31)">
  2565. <img src="../../assets/icon/secondToolList/networkPanel.png" alt />
  2566. <div style="margin: 5px 0">数学画板</div>
  2567. </div>
  2568. <div class="check" @click="chapAddTools(31)">
  2569. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(31) == -1" />
  2570. <div class="checkDiv" v-else>
  2571. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2572. </div>
  2573. </div>
  2574. </div>
  2575. </div>
  2576. <div class="toolSort" v-if="chapToolsType == 2">
  2577. <div class="tool">
  2578. <div class="whiteBIcon" @click="chapAddTools(5)">
  2579. <img src="../../assets/icon/thirdToolList/score.png" alt />
  2580. <div style="margin: 5px 0">量规评分</div>
  2581. </div>
  2582. <div class="check" @click="chapAddTools(5)">
  2583. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(5) == -1" />
  2584. <div class="checkDiv" v-else>
  2585. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2586. </div>
  2587. </div>
  2588. </div>
  2589. <div class="tool">
  2590. <div class="whiteBIcon" @click="openTools(chapCount, 4, null)">
  2591. <img src="../../assets/icon/thirdToolList/ask.png" alt />
  2592. <div style="margin: 5px 0">问卷调查</div>
  2593. </div>
  2594. <div class="check" @click="chapAddTools(4)">
  2595. <img src="../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(4) == -1" />
  2596. <div class="checkDiv" v-else>
  2597. <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2598. </div>
  2599. </div>
  2600. </div>
  2601. </div>
  2602. </div>
  2603. <div>
  2604. <input type="text" placeholder="添加工具描述" class="binfo_input" style="margin: 20px 0; width: 71.5% !important"
  2605. v-model="itemTools.toolDetail" />
  2606. </div>
  2607. </div>
  2608. </div>
  2609. </div>
  2610. <span slot="footer" class="dialog-footer">
  2611. <el-button @click="dialogVisible4 = false">取 消</el-button>
  2612. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  2613. </span>
  2614. </el-dialog>
  2615. <el-dialog title="添加问答" :visible.sync="dialogVisible8" :append-to-body="true" width="500px"
  2616. :before-close="handleClose" class="dialog_diy">
  2617. <div>
  2618. <div class="a_add_title" style="
  2619. display: flex;
  2620. flex-direction: column;
  2621. align-items: flex-start;
  2622. justify-content: center;
  2623. ">
  2624. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  2625. <el-input v-model="answerQ" placeholder="请输入您要问的问题"></el-input>
  2626. </div>
  2627. </div>
  2628. <span slot="footer" class="dialog-footer">
  2629. <el-button @click="dialogVisible8 = false">取 消</el-button>
  2630. <el-button type="primary" @click="addAnswer">确 定</el-button>
  2631. </span>
  2632. </el-dialog>
  2633. <el-dialog title="添加问题" :visible.sync="dialogVisibleMp3" :append-to-body="true" width="500px"
  2634. :before-close="handleClose" class="dialog_diy">
  2635. <div>
  2636. <div class="a_add_title" style="
  2637. display: flex;
  2638. flex-direction: column;
  2639. align-items: flex-start;
  2640. justify-content: center;
  2641. ">
  2642. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  2643. <el-input v-model="answerQ" placeholder="请输入您想要回答的问题"></el-input>
  2644. </div>
  2645. </div>
  2646. <span slot="footer" class="dialog-footer">
  2647. <el-button @click="dialogVisibleMp3 = false">取 消</el-button>
  2648. <el-button type="primary" @click="addMp3Answer">确 定</el-button>
  2649. </span>
  2650. </el-dialog>
  2651. <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="500px"
  2652. :before-close="handleClose" class="dialog_diy">
  2653. <div>
  2654. <div class="fileCss" style="padding-top: 20px">
  2655. <div>
  2656. <button class="info_btn" @click="addImg($event)">
  2657. 选择本地文件
  2658. <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
  2659. </button>
  2660. </div>
  2661. <div>
  2662. <el-button @click="getAllBanner" v-if="isSysPic == false && cover.length == 0">选择系统文件</el-button>
  2663. <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
  2664. <img :src="cover[0].url" alt="" />
  2665. <div class="deletePic" @click="deleteSysPic">
  2666. <img src="../../assets/icon/delete.png" alt="" />
  2667. </div>
  2668. </div>
  2669. </div>
  2670. </div>
  2671. <div class="fileCss">
  2672. <div>选择本地文件</div>
  2673. <div>选择系统文件</div>
  2674. </div>
  2675. </div>
  2676. <span slot="footer" class="dialog-footer">
  2677. <el-button @click="choosePicVisible = false">取 消</el-button>
  2678. <el-button type="primary" @click="choosePicVisible = false">确 定</el-button>
  2679. </span>
  2680. </el-dialog>
  2681. <el-dialog title="选择系统文件" :visible.sync="sysPicVisible" :append-to-body="true" width="710px"
  2682. :before-close="handleClose" class="dialog_diy">
  2683. <div class="cru_selectBox" style="margin: 0">
  2684. <div @click="getChoosePic(1)" class="cru_select" :class="chooseType == 1 ? 'cru_selected' : ''">
  2685. 绘画
  2686. </div>
  2687. <div @click="getChoosePic(2)" class="cru_select" :class="chooseType == 2 ? 'cru_selected' : ''">
  2688. 科技
  2689. </div>
  2690. <div @click="getChoosePic(3)" class="cru_select" :class="chooseType == 3 ? 'cru_selected' : ''">
  2691. 人文
  2692. </div>
  2693. <div @click="getChoosePic(4)" class="cru_select" :class="chooseType == 4 ? 'cru_selected' : ''">
  2694. 艺术
  2695. </div>
  2696. </div>
  2697. <div class="sysPicBox">
  2698. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  2699. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  2700. </div>
  2701. </div>
  2702. <span slot="footer" class="dialog-footer">
  2703. <el-button @click="sysPicVisible = false">取 消</el-button>
  2704. <el-button type="primary">确 定</el-button>
  2705. </span>
  2706. </el-dialog>
  2707. <el-dialog title="选择填空" :visible.sync="dialogVisibleSelect" :append-to-body="true" width="800px"
  2708. :before-close="handleClose" class="dialog_diy dialog_diy3">
  2709. <div v-if="selectJson">
  2710. <div class="select_box1" v-if="selectSteps == 1">
  2711. <div class="select_box1_img">
  2712. <div class="select_box1_title">
  2713. <span>上传题目图片</span><span>提示:请将题目以图片的方式上传</span>
  2714. </div>
  2715. <div class="select_box1_add_img">
  2716. <div class="uploadFm" @click="addImg($event)" v-if="!selectJson.url">
  2717. <input type="file" accept="image/*" style="display: none" @change="beforeUploadSelect" />
  2718. <img src="../../assets/icon/addPoster.png" alt="" />
  2719. </div>
  2720. <div class="isSysPic" v-else>
  2721. <img :src="selectJson.url" alt="" />
  2722. <div class="deletePic" @click="deleteSelectPic">
  2723. <img src="../../assets/icon/delete.png" alt="" />
  2724. </div>
  2725. </div>
  2726. </div>
  2727. </div>
  2728. <div class="select_box1_select">
  2729. <div class="select_box1_title">
  2730. <span>添加选项</span><span>提示:请输入题目选项</span>
  2731. </div>
  2732. <div class="select_box1_select_box">
  2733. <el-input v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex"
  2734. v-model="selectJson.select[checkIndex]" placeholder="请输入选项..."
  2735. style="width: 150px; margin: 10px 10px 0 0"></el-input>
  2736. <div class="select_box1_select_box_add">
  2737. <el-button style="margin: 10px 0px 0 0" type="primary" size="small" @click="addSelectList(selectJson)">
  2738. 添加</el-button>
  2739. <el-button type="primary" size="small" style="margin: 10px 0 0 0" @click="deleteSelectList(selectJson)"
  2740. v-if="selectJson.select && selectJson.select.length > 0">删除</el-button>
  2741. </div>
  2742. </div>
  2743. </div>
  2744. </div>
  2745. <div v-if="selectSteps == 2">
  2746. <div class="select_box2">
  2747. <div class="select_box2_title">设置答案</div>
  2748. <div class="select_box2_box">
  2749. <div class="select_box2_img">
  2750. <img :src="selectJson.url" alt="" />
  2751. </div>
  2752. <div class="select_box2_answer">
  2753. <div class="select_answer_title">根据题目选择对应答案</div>
  2754. <div class="select_box2_answer_box" v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex">
  2755. <span>{{ checkIndex + 1 }}、</span>
  2756. <el-select v-model="selectJson.answer[checkIndex]" placeholder="请选择正确答案">
  2757. <el-option v-for="(e, eIndex) in selectJson.select" :key="eIndex" :label="e" :value="eIndex">
  2758. </el-option>
  2759. </el-select>
  2760. </div>
  2761. </div>
  2762. </div>
  2763. </div>
  2764. </div>
  2765. </div>
  2766. <span slot="footer" class="dialog-footer">
  2767. <el-button type="primary" @click="nextSelectSteps()" v-if="selectSteps == 1">下一步</el-button>
  2768. <el-button @click="selectSteps--" v-if="selectSteps == 2">上一步</el-button>
  2769. <el-button type="primary" @click="addSelectAnswer" v-if="selectSteps == 2">确 定</el-button>
  2770. </span>
  2771. </el-dialog>
  2772. <el-dialog title="添加评价" :visible.sync="dialogVisibleRate" :append-to-body="true" width="650px"
  2773. :before-close="handleClose" class="dialog_diy">
  2774. <div style="background: #fff; padding: 15px; box-sizing: border-box">
  2775. <div style="font-size: 18px; color: #a9a9a9">请输入个人评价指标:</div>
  2776. <div class="pjCss" style="width: 100%">
  2777. <div v-if="rateJson.length" class="elist_input" style="height: 360px; overflow: auto">
  2778. <div v-for="(eItem, eIndex) in rateJson" :key="eIndex" class="elist_input_box">
  2779. <span style="min-width: 100px; text-align: right">个人评价指标:</span>
  2780. <input type="input" v-model="eItem.value" placeholder="填写评价名称" />
  2781. <div class="remove" @click="deletRateList(eIndex)"></div>
  2782. <div style="width: 100%; display: flex">
  2783. <span style="min-width: 100px; text-align: right">评星等级:</span>
  2784. <el-rate v-model="eItem.score" disabled></el-rate>
  2785. </div>
  2786. <div class="elist_inptu_text" style="align-items: flex-start">
  2787. <span style="min-width: 100px; text-align: right">描述:</span>
  2788. <textarea class="rate_textarea" :rows="3" v-model="eItem.detail" placeholder="填写评价描述"></textarea>
  2789. </div>
  2790. </div>
  2791. </div>
  2792. <div class="addToolFun" @click="addRateList()">
  2793. <div class="addToolImg">
  2794. <img src="../../assets/icon/add.png" alt />
  2795. </div>
  2796. <div>添加</div>
  2797. </div>
  2798. </div>
  2799. </div>
  2800. <span slot="footer" class="dialog-footer">
  2801. <el-button @click="dialogVisibleRate = false">取 消</el-button>
  2802. <el-button type="primary" @click="addRateAnswer">确 定</el-button>
  2803. </span>
  2804. </el-dialog>
  2805. <el-dialog title="连词成句设置" :visible.sync="dialogVisibleSentence" :append-to-body="true" width="1000px"
  2806. :before-close="handleClose" class="dialog_diy dialog_diy3">
  2807. <div>
  2808. <div class="sentenBox">
  2809. <div class="addSen" @click="addSt">添加题目</div>
  2810. <div v-for="(st, stIndex) in sentenceList" :key="stIndex" style="padding-bottom: 20px">
  2811. <div class="sentenTopBox">
  2812. <div class="sentenTop">
  2813. <div>题目设置</div>
  2814. <div>
  2815. <el-input placeholder="请输入卡片内容" v-model="st.sentenceTitle"></el-input>
  2816. </div>
  2817. <div @click="addSen(stIndex)">添加</div>
  2818. </div>
  2819. <div class="remove1" v-if="sentenceList.length > 1" @click="deleteSentence(stIndex)"></div>
  2820. </div>
  2821. <div class="cardList">
  2822. <div v-if="st.addSentence.length > 0" class="cardBox">
  2823. <div class="isCard" v-for="(s, sIndex) in st.addSentence" :key="sIndex"
  2824. @click="setRightAnswer(s, stIndex, sIndex)">
  2825. <el-tooltip class="item" effect="light" :content="s" placement="top">
  2826. <div>{{ s }}</div>
  2827. </el-tooltip>
  2828. <div class="deleteWord" @click.stop="deleteS(s, stIndex, sIndex)">
  2829. <img src="../../assets/icon/delete.png" alt="" />
  2830. </div>
  2831. </div>
  2832. </div>
  2833. <div class="card">
  2834. <img src="../../assets/icon/conSentences/noTitle.png" alt="" />
  2835. </div>
  2836. </div>
  2837. <div class="rightCardBox">
  2838. <div>正确顺序</div>
  2839. <div class="rightCardList">
  2840. <div v-if="st.rightAnswer.length > 0" class="cardBox">
  2841. <div v-for="(r, rIndex) in st.rightAnswer" :key="rIndex" class="cardCss">
  2842. <div class="isCard1" @click="returnCard(r, stIndex, rIndex)">
  2843. <el-tooltip class="item" effect="light" :content="r" placement="top">
  2844. <div>{{ r }}</div>
  2845. </el-tooltip>
  2846. </div>
  2847. <div>{{ rIndex + 1 }}</div>
  2848. </div>
  2849. </div>
  2850. <div class="card" v-if="st.rightAnswer.length == 0">
  2851. <img src="../../assets/icon/conSentences/noAnswer.png" alt="" />
  2852. </div>
  2853. </div>
  2854. </div>
  2855. </div>
  2856. </div>
  2857. </div>
  2858. <span slot="footer" class="dialog-footer">
  2859. <el-button @click="dialogVisibleSentence = false">取 消</el-button>
  2860. <el-button type="primary" @click="addSentenceTool">确 定</el-button>
  2861. </span>
  2862. </el-dialog>
  2863. <el-dialog title="添加表格" :visible.sync="dialogVisibleTable" :append-to-body="true" width="95%"
  2864. :before-close="handleClose" class="dialog_diy">
  2865. <el-form>
  2866. <!-- <el-form-item label="文本标题">
  2867. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  2868. </el-form-item> -->
  2869. <div>表格内容</div>
  2870. <Table v-model="tableJson.text" @change="change"></Table>
  2871. </el-form>
  2872. <span slot="footer" class="dialog-footer">
  2873. <!-- <el-button @click="dialogVisibleTable = false">取 消</el-button>
  2874. <el-button type="primary" @click="addTableJson">确定</el-button> -->
  2875. <el-button type="primary" @click="addTableJson">上传模板</el-button>
  2876. </span>
  2877. </el-dialog>
  2878. <el-dialog title="添加文档" :visible.sync="dialogVisibleWord" :append-to-body="true" width="800px"
  2879. :before-close="handleClose" class="dialog_diy">
  2880. <el-form>
  2881. <!-- <el-form-item label="文本标题">
  2882. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  2883. </el-form-item> -->
  2884. <div>文档内容</div>
  2885. <editor-bar v-model="wordJson.text"></editor-bar>
  2886. </el-form>
  2887. <span slot="footer" class="dialog-footer">
  2888. <!-- <el-button @click="dialogVisibleWord = false">取 消</el-button> -->
  2889. <el-button type="primary" @click="addWordJson">上传模板</el-button>
  2890. </span>
  2891. </el-dialog>
  2892. <el-dialog title="添加班级" :visible.sync="dialogVisibleMoreUpload" :append-to-body="true" width="30%"
  2893. :before-close="handleClose" class="dialog_diy">
  2894. <div style="
  2895. width: 100%;
  2896. display: flex;
  2897. flex-direction: row;
  2898. flex-wrap: nowrap;
  2899. align-items: center;
  2900. justify-content: center;
  2901. ">
  2902. <div>班级:</div>
  2903. <el-select multiple v-model="uploadJson" placeholder="请选择">
  2904. <el-option v-for="item in classJuri" :key="item.id" :label="item.name" :value="item.id">
  2905. </el-option>
  2906. </el-select>
  2907. </div>
  2908. <span slot="footer" class="dialog-footer">
  2909. <el-button @click="dialogVisibleMoreUpload = false">取 消</el-button>
  2910. <el-button type="primary" @click="addMoreUpload">确定</el-button>
  2911. </span>
  2912. </el-dialog>
  2913. <el-dialog title="设置随机码" :visible.sync="dialogVisibleInvite" :append-to-body="true" width="360px"
  2914. :before-close="handleClose" class="dialog_diy">
  2915. <div style="
  2916. width: 100%;
  2917. display: flex;
  2918. flex-direction: row;
  2919. flex-wrap: nowrap;
  2920. align-items: center;
  2921. justify-content: center;
  2922. ">
  2923. <div>随机码:</div>
  2924. <el-input v-model="icode" style="width: 240px" placeholder="请输入随机码"></el-input>
  2925. </div>
  2926. <span slot="footer" class="dialog-footer">
  2927. <el-button @click="dialogVisibleInvite = false">取 消</el-button>
  2928. <el-button type="primary" @click="addInvite">确定</el-button>
  2929. </span>
  2930. </el-dialog>
  2931. <el-dialog title="添加预设时间" :visible.sync="dialogVisiblePreTime" :append-to-body="true" width="30%"
  2932. :before-close="handleClose" class="dialog_diy">
  2933. <div>
  2934. <Time :preTime="preTime" @updateTimeNum="updateTime" v-if="dialogVisiblePreTime"></Time>
  2935. </div>
  2936. <span slot="footer" class="dialog-footer">
  2937. <el-button @click="dialogVisiblePreTime = false">取 消</el-button>
  2938. <el-button type="primary" @click="addPreTime">确定</el-button>
  2939. </span>
  2940. </el-dialog>
  2941. <el-dialog title="导入目标" :visible.sync="dialogVisiblemb" :append-to-body="true" width="70%" :before-close="handleClose"
  2942. class="dialog_diy">
  2943. <div>
  2944. <div style="
  2945. width: 100%;
  2946. display: flex;
  2947. flex-direction: row;
  2948. flex-wrap: nowrap;
  2949. align-content: center;
  2950. align-items: center;
  2951. justify-content: space-between;
  2952. ">
  2953. <div style="
  2954. display: flex;
  2955. flex-flow: row nowrap;
  2956. align-items: flex-start;
  2957. width: 100%;
  2958. flex-direction: column;
  2959. flex-wrap: nowrap;
  2960. position: relative;
  2961. ">
  2962. <div class="e_box">
  2963. <div class="e_card" v-for="(item, index) in evaJuri" :key="index">
  2964. <div class="e_card_picture">
  2965. <img src="../../assets/e_picture.png" />
  2966. </div>
  2967. <div class="e_card_name">
  2968. <span>{{ item.title }}</span>
  2969. </div>
  2970. <div class="e_card_btn">
  2971. <span @click="checkEva(item.id, 2)">导入</span>
  2972. </div>
  2973. </div>
  2974. <div class="addEva" @click="openT">
  2975. <img src="../../assets/icon/addEva.png" alt="" />
  2976. </div>
  2977. <div v-if="evaJuri.length === 0" style="margin: 0 auto; color: #6e6e6e">
  2978. 暂无数据
  2979. </div>
  2980. </div>
  2981. </div>
  2982. </div>
  2983. </div>
  2984. <span slot="footer" class="dialog-footer">
  2985. <el-button @click="dialogVisiblemb = false">取 消</el-button>
  2986. </span>
  2987. </el-dialog>
  2988. <el-dialog title="分组设置" :visible.sync="dialogVisibleGroup" :append-to-body="true" width="650px"
  2989. :before-close="handleClose" class="dialog_diy">
  2990. <div class="groupBox">
  2991. <div v-if="groupJson.group" class="groupContent">
  2992. <div class="groupTitle">请设置小组数量</div>
  2993. <div v-for="(item, index) in groupJson.group" :key="index" class="groupName">
  2994. <span class="groupn">组{{ index + 1 }}名称:</span>
  2995. <el-input v-model="item.name" placeholder="请输入名称..." style="width: 250px"></el-input>
  2996. <div class="groupBtn">
  2997. <el-button type="primary" size="small" @click="addGroup(index)">
  2998. 添加</el-button>
  2999. <el-button type="primary" size="small" @click="deleteGroup(index)"
  3000. v-if="groupJson.group && groupJson.group.length > 1">删除</el-button>
  3001. </div>
  3002. </div>
  3003. </div>
  3004. <div class="groupContent">
  3005. <div class="groupTitle">请设置每组人数数量</div>
  3006. <!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
  3007. style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
  3008. <el-input-number v-model="groupJson.number" :controls="false" :min="2" :max="10"
  3009. placeholder="2-10人以内"></el-input-number>
  3010. </div>
  3011. </div>
  3012. <span slot="footer" class="dialog-footer">
  3013. <el-button @click="dialogVisibleGroup = false">取 消</el-button>
  3014. <el-button type="primary" @click="addGroupJson">确定</el-button>
  3015. </span>
  3016. </el-dialog>
  3017. <interVideo :dialogVisibleVideo.sync="dialogVisibleVideo" :videoJson="videoJson" @add="addVideoJson"></interVideo>
  3018. </div>
  3019. </template>
  3020. <script>
  3021. import "../../common/aws-sdk-2.235.1.min.js";
  3022. // import "../../common/aws-sdk-2.99.0.min.js";
  3023. import $ from "jquery";
  3024. import EditorBar from "../../components/tools/wangEnduit";
  3025. import Table from "../../components/tools/table";
  3026. import Mind from "../tools/jsmind2";
  3027. import Time from "../tools/time.vue";
  3028. import Sunburst from "../tools/sunburst";
  3029. import SeeBoard from "../tools/seeBoard";
  3030. import weilaiData from "./components/weilai.js";
  3031. import sourceDialog from "./teacherSource/dialog.vue";
  3032. import interVideo from "./interVideo/index.vue";
  3033. export default {
  3034. components: { EditorBar, Mind, Time, Sunburst, SeeBoard, Table, sourceDialog, interVideo },
  3035. data() {
  3036. return {
  3037. checkAll: false,
  3038. chooseType: 1,
  3039. checkedCities: [],
  3040. isIndeterminate: true,
  3041. isSysPic: false,
  3042. steps: 1,
  3043. nbOrder: 0,
  3044. courseId: "",
  3045. chapToolsType: 0,
  3046. chapTools: [
  3047. {
  3048. tools: [],
  3049. toolDetail: "",
  3050. },
  3051. ],
  3052. line: "",
  3053. lineTitle: "",
  3054. sysPic: [],
  3055. sentenceList: [{ sentenceTitle: "", addSentence: [], rightAnswer: [] }],
  3056. isPushTitleList: [],
  3057. lineCount: 0,
  3058. lineType: 0,
  3059. chapCount: 0,
  3060. courseName: "",
  3061. isTeacherSee: true,
  3062. courseText: "",
  3063. preTime: 0,
  3064. formLabelWidth: "100px",
  3065. choosePicVisible: false,
  3066. sysPicVisible: false,
  3067. uploadLoading1: false,
  3068. noneBtnImg: false,
  3069. updateBoolean2: false,
  3070. unitIndex: 0,
  3071. taskCount: 0,
  3072. dialogVisible: false,
  3073. dialogVisible1: false,
  3074. dialogVisible2: false,
  3075. dialogVisible3: false,
  3076. dialogVisible4: false,
  3077. dialogVisible5: false,
  3078. dialogVisible6: false,
  3079. dialogVisible7: false,
  3080. dialogVisible8: false,
  3081. dialogVisible9: false,
  3082. dialogVisibleClass: false,
  3083. dialogVisibleMember: false,
  3084. dialogVisibleMp3: false,
  3085. dialogVisibleSelect: false,
  3086. dialogVisibleSentence: false,
  3087. dialogVisibleRate: false,
  3088. dialogVisibleChoice: false,
  3089. dialogVisiblemb: false,
  3090. dialogVisibleInvite: false,
  3091. dialogVisibleSource: false,
  3092. dialogVisibleVideo: false,
  3093. isClickColor: 0,
  3094. publicTool: 0,
  3095. searchPeople: "",
  3096. searchTN: "",
  3097. userid: this.$route.query.userid,
  3098. oid: this.$route.query.oid,
  3099. org: this.$route.query.org,
  3100. role: this.$route.query.role,
  3101. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  3102. dialogVisibleTable: false,
  3103. dialogVisibleWord: false,
  3104. tableJson: { text: "" },
  3105. wordJson: { text: "" },
  3106. dialogVisibleMoreUpload: false,
  3107. dialogVisiblePreTime: false,
  3108. uploadJson: [],
  3109. classJuri: [],
  3110. cover: [], //课程封面
  3111. myWord: [],
  3112. evaJuri: [],
  3113. evalua: "",
  3114. targetArray: [],
  3115. eTitle: "",
  3116. eJson: {},
  3117. fid: "", //一级
  3118. sid: "", //二级
  3119. tid: "", //二级
  3120. typeMode: 1,
  3121. eJSONNum: 0,
  3122. data: {
  3123. meta: {
  3124. name: "example",
  3125. author: "dd@163.com",
  3126. version: "0.2",
  3127. },
  3128. format: "node_array",
  3129. data: [{ id: "root", isroot: true, topic: "" }],
  3130. },
  3131. askJson: {
  3132. askCount: 1,
  3133. askTitle: "",
  3134. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3135. },
  3136. testJson: {},
  3137. selectJson: {},
  3138. rateJson: [],
  3139. unitJson2: [],
  3140. unitJson: [
  3141. {
  3142. dyName: "", //单元标题
  3143. chapterInfo: [
  3144. {
  3145. isread: false,
  3146. chapterid: this.guid(),
  3147. title: "",
  3148. courseName: "",
  3149. taskJson: [
  3150. {
  3151. task: "",
  3152. taskDetail: "",
  3153. chapterData: [],
  3154. toolText: "",
  3155. toolChoose: [
  3156. {
  3157. tool: [],
  3158. toolDetail: "",
  3159. toolType: 0,
  3160. askCount: 1,
  3161. askTitle: "",
  3162. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3163. },
  3164. ],
  3165. isShowTools: false,
  3166. askCount: 1,
  3167. isFold: 0,
  3168. askTitle: "",
  3169. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  3170. checkJson: [{ checkCount: [], checkPerent: [] }],
  3171. homeworkList: [],
  3172. },
  3173. ],
  3174. itemCount: 1,
  3175. fileList1: [],
  3176. video: [],
  3177. testData: [],
  3178. pData: [],
  3179. templateArray: [],
  3180. },
  3181. ],
  3182. },
  3183. ],
  3184. studentJuri: [],
  3185. teacherJuri: [],
  3186. checkboxList: [],
  3187. checkboxList2: [],
  3188. checkboxList3: [],
  3189. classSearch: "",
  3190. number: "",
  3191. tTitle: "",
  3192. tdetail: "",
  3193. templateC: {},
  3194. AttText: {},
  3195. AttTextType: 0,
  3196. AttTextIndex: 0,
  3197. cTemplate: "",
  3198. CourseType: [],
  3199. CourseType2: [],
  3200. CourseTypeJson: {},
  3201. courseTypeId: [],
  3202. courseTypeSon: [],
  3203. clearArray: [],
  3204. pTypeCheck: [],
  3205. pTypeCheckName: [],
  3206. loading: false,
  3207. toolType: 0,
  3208. inputShow: true,
  3209. inputShow2: true,
  3210. toolIndex: 0,
  3211. cidType: 0,
  3212. answerQ: "",
  3213. grade: [],
  3214. grade2: [],
  3215. courseUserid: "",
  3216. timer: null,
  3217. timer2: null,
  3218. checkId: "",
  3219. isDelete: 1,
  3220. addindex: 0,
  3221. selectSteps: 1,
  3222. groupJson: {},
  3223. dialogVisibleGroup: false,
  3224. rightBoxHeight: 0,
  3225. ManAarray: [],
  3226. checkBoolean: false,
  3227. inviteCode: [],
  3228. inviteId: "",
  3229. icode: "",
  3230. easyArray: [2, 4],
  3231. sourceData: {},
  3232. videoJson: {}
  3233. };
  3234. },
  3235. computed: {
  3236. // rightBoxHeight: function () {
  3237. // return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
  3238. // },
  3239. offsetLetfPx: function () {
  3240. //addnum可以直接在模板语法里面用,相当于data内的值
  3241. return (
  3242. $(".cru_select")[this.unitIndex] &&
  3243. $(".cru_select")[this.unitIndex].offsetLeft
  3244. );
  3245. },
  3246. getMan2() {
  3247. return function (people) {
  3248. let _people = people;
  3249. let _people2 = "";
  3250. if (this.ManAarray.length) {
  3251. for (var i = 0; i < this.ManAarray.length; i++) {
  3252. if (this.ManAarray[i].userid == people) {
  3253. _people2 = this.ManAarray[i].name;
  3254. break;
  3255. }
  3256. }
  3257. }
  3258. if (people == this.courseUserid) {
  3259. return "";
  3260. }
  3261. return this.ManAarray.length ? _people2 : "";
  3262. };
  3263. },
  3264. isInvite() {
  3265. return function (cid) {
  3266. let array = [];
  3267. for (var i = 0; i < this.inviteCode.length; i++) {
  3268. array.push(this.inviteCode[i].cid);
  3269. }
  3270. return array.indexOf(cid) != -1;
  3271. };
  3272. },
  3273. getInviteCodeC() {
  3274. return function (cid) {
  3275. let array = [];
  3276. for (var i = 0; i < this.inviteCode.length; i++) {
  3277. array.push(this.inviteCode[i].cid);
  3278. }
  3279. return this.inviteCode[array.indexOf(cid)].ic;
  3280. };
  3281. },
  3282. getClassC() {
  3283. return function (c) {
  3284. let _c2 = "";
  3285. if (this.grade.length) {
  3286. for (var i = 0; i < this.grade.length; i++) {
  3287. if (this.grade[i].id == c) {
  3288. _c2 = this.grade[i].name;
  3289. break;
  3290. }
  3291. }
  3292. }
  3293. return this.grade.length ? _c2 : "";
  3294. };
  3295. },
  3296. },
  3297. watch: {
  3298. unitIndex(newValue, oldValue) {
  3299. if (this.isDelete == 2) {
  3300. this.isDelete = 1;
  3301. return;
  3302. }
  3303. if (this.cid != "") {
  3304. let _unitIndex = oldValue;
  3305. if (
  3306. JSON.stringify(this.unitJson2[_unitIndex]) ==
  3307. JSON.stringify(this.unitJson[_unitIndex])
  3308. ) {
  3309. this.$refs.rightboxR.scrollTop = 0;
  3310. return;
  3311. }
  3312. let cPan = 1;
  3313. for (
  3314. var j = 0;
  3315. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  3316. j++
  3317. ) {
  3318. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3319. j
  3320. ].proVisible = false;
  3321. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  3322. j
  3323. ].proVisible2 = false;
  3324. if (
  3325. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3326. .length > 1
  3327. ) {
  3328. for (
  3329. var z = 0;
  3330. z <
  3331. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  3332. .length;
  3333. z++
  3334. ) {
  3335. if (
  3336. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  3337. .toolChoose[z].tool.length
  3338. ) {
  3339. this.$message.error("请把工具添加完整");
  3340. cPan = 2;
  3341. break;
  3342. }
  3343. }
  3344. }
  3345. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  3346. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  3347. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  3348. (ele) => {
  3349. return ele.value != "";
  3350. }
  3351. );
  3352. }
  3353. }
  3354. if (cPan == 2) {
  3355. this.unitIndex = oldValue;
  3356. return;
  3357. }
  3358. for (var i = 0; i < this.unitJson.length; i++) {
  3359. if (this.addindex != i) {
  3360. delete this.unitJson[i].isUpdate;
  3361. }
  3362. }
  3363. this.$refs.rightboxR.scrollTop = 0;
  3364. this.addindex = -1;
  3365. let params = [
  3366. {
  3367. cid: this.cid,
  3368. chapters: JSON.stringify(this.unitJson),
  3369. uid: this.userid,
  3370. unitIndex: _unitIndex,
  3371. },
  3372. ];
  3373. this.ajax
  3374. .post(this.$store.state.api + "updateWorkNew4", params)
  3375. .then((res) => {
  3376. // this.$message({
  3377. // message: "修改成功",
  3378. // type: "success",
  3379. // });
  3380. // this.courseId = this.cid;
  3381. })
  3382. .catch((err) => {
  3383. this.$message.error("网络不佳");
  3384. console.error(err);
  3385. });
  3386. }
  3387. },
  3388. steps(newValue) {
  3389. if (newValue == 4) {
  3390. this.goTo(
  3391. "/course?userid=" +
  3392. this.userid +
  3393. "&oid=" +
  3394. this.oid +
  3395. "&org=" +
  3396. this.org +
  3397. "&role=" +
  3398. this.role
  3399. );
  3400. }
  3401. }
  3402. },
  3403. methods: {
  3404. setMan() {
  3405. // let teacherJuri = this.teacherJuri2;
  3406. this.ManAarray = [];
  3407. let _user = JSON.parse(JSON.stringify(this.checkboxList3));
  3408. if (_user.indexOf(this.courseUserid || this.userid) == -1) {
  3409. _user.push(this.courseUserid || this.userid);
  3410. }
  3411. let params = {
  3412. uid: _user.join(","),
  3413. };
  3414. this.ajax
  3415. .get(this.$store.state.api + "getAllUserById", params)
  3416. .then((res) => {
  3417. let teacherJuri = res.data[0];
  3418. this.ManAarray = teacherJuri;
  3419. })
  3420. .catch((err) => {
  3421. console.error(err);
  3422. });
  3423. },
  3424. previewImg(url) {
  3425. this.$hevueImgPreview(url);
  3426. },
  3427. scrollChange() {
  3428. this.rightBoxHeight = $(".rightBox")[0].scrollHeight;
  3429. },
  3430. handleCheckAllChange(val) {
  3431. this.checkedCities = val ? cityOptions : [];
  3432. this.isIndeterminate = false;
  3433. },
  3434. handleCheckedCitiesChange(value) {
  3435. let checkedCount = value.length;
  3436. this.checkAll = checkedCount === this.cities.length;
  3437. this.isIndeterminate =
  3438. checkedCount > 0 && checkedCount < this.cities.length;
  3439. },
  3440. addHw(e) {
  3441. var el = e.currentTarget;
  3442. el.getElementsByTagName("input")[0].click();
  3443. },
  3444. change(val) {
  3445. console.log(val);
  3446. },
  3447. change2(val) {
  3448. console.log(val);
  3449. this.$forceUpdate();
  3450. },
  3451. handleClose(done) {
  3452. done();
  3453. },
  3454. imgChange2(i, j) {
  3455. var _tmp = this.testJson.testJson[i].checkList[j];
  3456. this.noneBtnImg = _tmp.length >= 1;
  3457. },
  3458. imgChange3(i) {
  3459. var _tmp = this.testJson.testJson[i];
  3460. this.noneBtnImg = _tmp.length >= 1;
  3461. },
  3462. imgChange1(file, fileList, type, itemTaskIndex) {
  3463. if (type == 1) {
  3464. var _tmp = this.cover;
  3465. } else if (
  3466. type == 2 ||
  3467. type == 3 ||
  3468. type == 6 ||
  3469. type == 7 ||
  3470. type == 8
  3471. ) {
  3472. var _tmp =
  3473. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  3474. .chapterData;
  3475. } else if (type == 4) {
  3476. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  3477. } else {
  3478. var _tmp =
  3479. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  3480. .homeworkList;
  3481. }
  3482. this.noneBtnImg = _tmp.length >= 1;
  3483. },
  3484. goTo(path) {
  3485. this.$router.push(path);
  3486. },
  3487. guid() {
  3488. var _num,
  3489. i,
  3490. _guid = "";
  3491. for (i = 0; i < 32; i++) {
  3492. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  3493. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  3494. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  3495. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  3496. _guid += "-";
  3497. }
  3498. }
  3499. return _guid;
  3500. },
  3501. lastSteps() {
  3502. if (this.steps == 4) {
  3503. this.goTo(
  3504. "/course?userid=" +
  3505. this.userid +
  3506. "&oid=" +
  3507. this.oid +
  3508. "&org=" +
  3509. this.org +
  3510. "&role=" +
  3511. this.role
  3512. );
  3513. } else {
  3514. if (this.cidType == 0) {
  3515. this.steps--;
  3516. if (this.steps == 1) {
  3517. setTimeout(() => {
  3518. this.checkEva(this.checkId);
  3519. }, 0);
  3520. }
  3521. } else {
  3522. if (this.steps == 3) {
  3523. this.steps = 1;
  3524. setTimeout(() => {
  3525. this.checkEva(this.checkId);
  3526. }, 0);
  3527. }
  3528. }
  3529. }
  3530. },
  3531. navSteps(s) {
  3532. if (this.courseName == "") {
  3533. this.$message.error("请将信息填写完整");
  3534. return;
  3535. }
  3536. if (this.cidType == 0) {
  3537. if (this.steps == 1) {
  3538. if (this.cid == "" || this.cid == undefined) {
  3539. this.addWork();
  3540. } else {
  3541. if (this.userid != this.courseUserid && this.role != '1') {
  3542. // this.updateWork2();
  3543. } else {
  3544. this.updateWork();
  3545. }
  3546. }
  3547. }
  3548. if (s == 1) {
  3549. this.steps = 1;
  3550. setTimeout(() => {
  3551. this.checkEva(this.checkId);
  3552. }, 0);
  3553. }
  3554. if (s == 2) {
  3555. this.steps = 2;
  3556. }
  3557. if (s == 3) {
  3558. this.cTemplate = this.templateC.content;
  3559. this.dialogVisible2 = false;
  3560. this.steps = 3;
  3561. setTimeout(() => {
  3562. this.checkEva(this.checkId);
  3563. }, 1000);
  3564. }
  3565. } else {
  3566. if (this.steps == 1) {
  3567. if (this.cid == "" || this.cid == undefined) {
  3568. this.addWork();
  3569. } else {
  3570. if (this.userid != this.courseUserid && this.role != '1') {
  3571. // this.updateWork2();
  3572. } else {
  3573. this.updateWork();
  3574. }
  3575. }
  3576. }
  3577. if (s == 1) {
  3578. this.steps = 1;
  3579. setTimeout(() => {
  3580. this.checkEva(this.checkId);
  3581. }, 0);
  3582. }
  3583. if (s == 3) {
  3584. this.cTemplate = this.templateC.content;
  3585. this.dialogVisible2 = false;
  3586. this.steps = 3;
  3587. setTimeout(() => {
  3588. this.checkEva(this.checkId);
  3589. }, 1000);
  3590. }
  3591. }
  3592. this.$refs.stepBox.scrollTop = 0;
  3593. },
  3594. nextSteps() {
  3595. if (this.cidType == 1) {
  3596. if (this.steps == 1) {
  3597. if (this.courseName != "") {
  3598. this.steps = 3;
  3599. setTimeout(() => {
  3600. this.checkEva(this.checkId);
  3601. }, 1000);
  3602. if (this.cid == "" || this.cid == undefined) {
  3603. this.addWork();
  3604. } else {
  3605. if (this.userid != this.courseUserid && this.role != '1') {
  3606. // this.updateWork2();
  3607. } else {
  3608. this.updateWork();
  3609. }
  3610. }
  3611. } else {
  3612. this.$message.error("请将信息填写完整");
  3613. return;
  3614. }
  3615. } else if (this.steps == 3) {
  3616. if (this.cid == "" || this.cid == undefined) {
  3617. if (this.courseName == "") {
  3618. this.$message.error("请将信息填写完整");
  3619. return;
  3620. } else {
  3621. this.addWork();
  3622. this.steps++;
  3623. }
  3624. } else {
  3625. if (this.courseName == "") {
  3626. this.$message.error("请将信息填写完整");
  3627. return;
  3628. } else {
  3629. if (this.userid != this.courseUserid && this.role != '1') {
  3630. this.updateWork2();
  3631. } else {
  3632. this.updateWork();
  3633. }
  3634. this.steps++;
  3635. }
  3636. }
  3637. }
  3638. } else {
  3639. if (this.steps == 1) {
  3640. if (this.courseName != "") {
  3641. if (this.cid == "" || this.cid == undefined) {
  3642. this.addWork();
  3643. } else {
  3644. if (this.userid != this.courseUserid && this.role != '1') {
  3645. // this.updateWork2();
  3646. } else {
  3647. this.updateWork();
  3648. }
  3649. }
  3650. this.steps++;
  3651. } else {
  3652. this.$message.error("请将信息填写完整");
  3653. return;
  3654. }
  3655. } else if (this.steps == 2) {
  3656. if (this.templateC.id != "" || this.templateC.id != undefined) {
  3657. this.cTemplate = this.templateC.content;
  3658. }
  3659. this.dialogVisible2 = false;
  3660. this.steps++;
  3661. setTimeout(() => {
  3662. this.checkEva(this.checkId);
  3663. }, 1000);
  3664. } else if (this.steps == 3) {
  3665. if (this.cid == "" || this.cid == undefined) {
  3666. if (this.courseName == "") {
  3667. this.$message.error("请将信息填写完整");
  3668. return;
  3669. } else {
  3670. this.addWork();
  3671. this.steps++;
  3672. }
  3673. } else {
  3674. if (this.courseName == "") {
  3675. this.$message.error("请将信息填写完整");
  3676. return;
  3677. } else {
  3678. if (this.userid != this.courseUserid && this.role != '1') {
  3679. this.updateWork2();
  3680. } else {
  3681. this.updateWork();
  3682. }
  3683. this.steps++;
  3684. }
  3685. }
  3686. }
  3687. }
  3688. this.$refs.stepBox.scrollTop = 0;
  3689. },
  3690. unitSet(i) {
  3691. this.unitIndex = i;
  3692. // this.$refs.rightboxR.scrollTop = 0;
  3693. },
  3694. time() {
  3695. if (!this.now) {
  3696. this.now = new Date().getTime();
  3697. return true;
  3698. } else {
  3699. let time = new Date().getTime();
  3700. if (time - this.now > 3000) {
  3701. this.now = time;
  3702. return true;
  3703. } else {
  3704. return false;
  3705. }
  3706. }
  3707. },
  3708. deleteUnit(i) {
  3709. var _this = this;
  3710. if (_this.time()) {
  3711. _this
  3712. .$confirm("确定删除此单元吗?", "提示", {
  3713. confirmButtonText: "确定",
  3714. cancelButtonText: "取消",
  3715. type: "warning",
  3716. })
  3717. .then(() => {
  3718. _this.isDelete = 2;
  3719. // _this.unitIndex = _this.unitIndex - 1;
  3720. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  3721. // _this.$message.success("删除成功");
  3722. })
  3723. .catch(() => {
  3724. return;
  3725. });
  3726. }
  3727. },
  3728. deleteWork(chapid) {
  3729. let params = [
  3730. {
  3731. cid: this.cid,
  3732. chapters: JSON.stringify(this.unitJson),
  3733. uid: this.userid,
  3734. chapid: chapid,
  3735. },
  3736. ];
  3737. this.ajax
  3738. .post(this.$store.state.api + "deleteWork", params)
  3739. .then((res) => {
  3740. this.$message({
  3741. message: "删除成功",
  3742. type: "success",
  3743. });
  3744. this.unitJson.splice(this.unitIndex, 1);
  3745. this.unitIndex = this.unitIndex - 1;
  3746. })
  3747. .catch((err) => {
  3748. this.$message.error("网络不佳");
  3749. console.error(err);
  3750. });
  3751. },
  3752. deleteTool(itemTaskIndex, i) {
  3753. var _this = this;
  3754. if (_this.time()) {
  3755. _this
  3756. .$confirm("确定删除此工具吗?", "提示", {
  3757. confirmButtonText: "确定",
  3758. cancelButtonText: "取消",
  3759. type: "warning",
  3760. })
  3761. .then(() => {
  3762. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  3763. itemTaskIndex
  3764. ].toolChoose.splice(i, 1);
  3765. _this.$message.success("删除成功");
  3766. })
  3767. .catch(() => {
  3768. return;
  3769. });
  3770. }
  3771. },
  3772. deleteSentence(i) {
  3773. var _this = this;
  3774. if (_this.time()) {
  3775. _this
  3776. .$confirm("确定删除此题目吗?", "提示", {
  3777. confirmButtonText: "确定",
  3778. cancelButtonText: "取消",
  3779. type: "warning",
  3780. })
  3781. .then(() => {
  3782. _this.sentenceList.splice(i, 1);
  3783. _this.$message.success("删除成功");
  3784. })
  3785. .catch(() => {
  3786. return;
  3787. });
  3788. }
  3789. },
  3790. deleteS(s, i, j) {
  3791. this.sentenceList[i].addSentence.splice(j, 1);
  3792. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  3793. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  3794. this.sentenceList[i].rightAnswer.splice(a, 1);
  3795. }
  3796. },
  3797. openT() {
  3798. window.parent.postMessage({ tools: "25" }, "*");
  3799. },
  3800. deleteTask(i) {
  3801. var _this = this;
  3802. if (_this.time()) {
  3803. _this
  3804. .$confirm(((_this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.length - 1) == i) ? "确定删除此任务吗?" : "切换任务顺序将删除所有工具的提交成果,是否继续此操作?", "提示", {
  3805. confirmButtonText: "确定",
  3806. cancelButtonText: "取消",
  3807. type: "warning",
  3808. })
  3809. .then(() => {
  3810. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  3811. i,
  3812. 1
  3813. );
  3814. _this.$message.success("删除成功");
  3815. })
  3816. .catch(() => {
  3817. return;
  3818. });
  3819. }
  3820. },
  3821. handlePictureCardPreview(file) {
  3822. this.dialogImageUrl = file.url;
  3823. },
  3824. clean(i, c) {
  3825. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  3826. },
  3827. handle_remove1(file, fileList, type) {
  3828. var _tmp = this.cover;
  3829. // for (var i = 0, len = _tmp.length; i < len; i++) {
  3830. // if (_tmp[i].uid == file.uid) {
  3831. // _tmp.splice(i, 1);
  3832. // break;
  3833. // }
  3834. // this.cover = _tmp;
  3835. // }
  3836. this.cover = [];
  3837. this.noneBtnImg = this.cover.length >= 1;
  3838. this.isSysPic = false;
  3839. this.$forceUpdate();
  3840. },
  3841. addImg(e) {
  3842. var el = e.currentTarget;
  3843. el.getElementsByTagName("input")[0].click();
  3844. e.target.value = "";
  3845. },
  3846. addChaptersTools(i) {
  3847. this.chapTools = [
  3848. {
  3849. tools: [],
  3850. toolDetail: "",
  3851. },
  3852. ];
  3853. this.chapCount = i;
  3854. this.dialogVisible4 = true;
  3855. },
  3856. isNoFinsh() {
  3857. this.$message.warning("功能正在开发中");
  3858. },
  3859. addAttText(i) {
  3860. this.AttText = {
  3861. title: "",
  3862. text: "",
  3863. };
  3864. this.taskCount = i;
  3865. this.AttTextType = 0;
  3866. this.$forceUpdate();
  3867. this.dialogVisible6 = true;
  3868. },
  3869. openLine(i) {
  3870. this.line = "";
  3871. this.lineCount = i;
  3872. this.lineType = 0;
  3873. this.$forceUpdate();
  3874. this.dialogVisible7 = true;
  3875. },
  3876. pasteLine(i) {
  3877. navigator.clipboard
  3878. .readText()
  3879. .then((v) => {
  3880. console.log("获取剪贴板成功:", v);
  3881. const html = v;
  3882. const regex = /src="(.*?)"/g;
  3883. const match = regex.exec(html);
  3884. if (match && match[1]) {
  3885. console.log(match[1]);
  3886. this.$message.success("粘贴成功")
  3887. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  3888. i
  3889. ].chapterData.push({
  3890. name: "链接",
  3891. title: "嵌入代码",
  3892. url: match[1],
  3893. type: 8,
  3894. });
  3895. } else {
  3896. // console.log("未找到包含 src 属性的 iframe");
  3897. this.$message.error("没有找到粘贴的链接")
  3898. }
  3899. })
  3900. .catch((v) => {
  3901. console.log("获取剪贴板失败: ", v);
  3902. });
  3903. },
  3904. openSource(i) {
  3905. this.lineCount = i;
  3906. this.sourceData = {}
  3907. this.dialogVisibleSource = true;
  3908. },
  3909. addSource() {
  3910. if (!Object.keys(this.sourceData).length) {
  3911. this.$message.error("请选择要上传的资源")
  3912. return;
  3913. }
  3914. let keys = Object.keys(this.sourceData)
  3915. for (var i = 0; i < keys.length; i++) {
  3916. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  3917. this.lineCount
  3918. ].chapterData.push({
  3919. name: "链接",
  3920. title: this.sourceData[keys[i]].name,
  3921. url: this.sourceData[keys[i]].url,
  3922. type: 8,
  3923. });
  3924. }
  3925. this.$forceUpdate();
  3926. this.dialogVisibleSource = false;
  3927. },
  3928. deleteM(i, j) {
  3929. this.testJson.testJson[i].timuList.splice(j, 1);
  3930. },
  3931. beforeUploadTiMu(event, i) {
  3932. const loading = this.openLoading();
  3933. var file = event.target.files[0];
  3934. var credentials = {
  3935. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  3936. secretAccessKey: "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",
  3937. }; //秘钥形式的登录上传
  3938. window.AWS.config.update(credentials);
  3939. window.AWS.config.region = "cn-northwest-1"; //设置区域
  3940. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  3941. var _this = this;
  3942. if (file) {
  3943. var params = {
  3944. Key:
  3945. file.name.split(".")[0] +
  3946. new Date().getTime() +
  3947. "." +
  3948. file.name.split(".")[file.name.split(".").length - 1],
  3949. ContentType: file.type,
  3950. Body: file,
  3951. "Access-Control-Allow-Credentials": "*",
  3952. ACL: "public-read",
  3953. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  3954. var options = {
  3955. partSize: 2048 * 1024 * 1024,
  3956. queueSize: 2,
  3957. leavePartsOnError: true,
  3958. };
  3959. bucket
  3960. .upload(params, options)
  3961. .on("httpUploadProgress", function (evt) {
  3962. //这里可以写进度条
  3963. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  3964. })
  3965. .send(function (err, data) {
  3966. loading.close();
  3967. if (err) {
  3968. _this.$message.error("上传失败");
  3969. } else {
  3970. if (_this.testJson.testJson[i].timuList) {
  3971. _this.testJson.testJson[i].timuList.push({
  3972. src: data.Location,
  3973. });
  3974. } else {
  3975. _this.testJson.testJson[i].timuList = [];
  3976. _this.testJson.testJson[i].timuList.push({
  3977. src: data.Location,
  3978. });
  3979. }
  3980. _this.imgChange3(i);
  3981. _this.$forceUpdate();
  3982. }
  3983. });
  3984. }
  3985. },
  3986. beforeUploadTi(event, i, j) {
  3987. const loading = this.openLoading();
  3988. var file = event.target.files[0];
  3989. var credentials = {
  3990. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  3991. secretAccessKey: "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",
  3992. }; //秘钥形式的登录上传
  3993. window.AWS.config.update(credentials);
  3994. window.AWS.config.region = "cn-northwest-1"; //设置区域
  3995. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  3996. var _this = this;
  3997. if (file) {
  3998. var params = {
  3999. Key:
  4000. file.name.split(".")[0] +
  4001. new Date().getTime() +
  4002. "." +
  4003. file.name.split(".")[file.name.split(".").length - 1],
  4004. ContentType: file.type,
  4005. Body: file,
  4006. "Access-Control-Allow-Credentials": "*",
  4007. ACL: "public-read",
  4008. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4009. var options = {
  4010. partSize: 2048 * 1024 * 1024,
  4011. queueSize: 2,
  4012. leavePartsOnError: true,
  4013. };
  4014. bucket
  4015. .upload(params, options)
  4016. .on("httpUploadProgress", function (evt) {
  4017. //这里可以写进度条
  4018. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4019. })
  4020. .send(function (err, data) {
  4021. loading.close();
  4022. if (err) {
  4023. _this.$message.error("上传失败");
  4024. } else {
  4025. _this.testJson.testJson[i].checkList[j] = {};
  4026. _this.testJson.testJson[i].checkList[j].src = data.Location;
  4027. _this.testJson.testJson[i].checkList[j].imgType = 1;
  4028. _this.imgChange2(i, j);
  4029. _this.$forceUpdate();
  4030. }
  4031. });
  4032. }
  4033. },
  4034. beforeUpload1(event, type) {
  4035. // const loading = this.openLoading();
  4036. var file = event.target.files[0];
  4037. var credentials = {
  4038. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4039. secretAccessKey: "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",
  4040. }; //秘钥形式的登录上传
  4041. window.AWS.config.update(credentials);
  4042. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4043. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4044. var _this = this;
  4045. if (file) {
  4046. var params = {
  4047. Key:
  4048. file.name.split(".")[0] +
  4049. new Date().getTime() +
  4050. "." +
  4051. file.name.split(".")[file.name.split(".").length - 1],
  4052. ContentType: file.type,
  4053. Body: file,
  4054. "Access-Control-Allow-Credentials": "*",
  4055. ACL: "public-read",
  4056. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4057. var options = {
  4058. partSize: 2048 * 1024 * 1024,
  4059. queueSize: 2,
  4060. leavePartsOnError: true,
  4061. };
  4062. bucket
  4063. .upload(params, options)
  4064. .on("httpUploadProgress", function (evt) {
  4065. //这里可以写进度条
  4066. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4067. })
  4068. .send(function (err, data) {
  4069. // loading.close();
  4070. if (err) {
  4071. // var a = _this.$refs.upload1.uploadFiles;
  4072. // a.splice(a.length - 1, a.length);
  4073. _this.$message.error("上传失败");
  4074. } else {
  4075. _this.cover.push({
  4076. name: file.name,
  4077. url: data.Location,
  4078. uid: file.uid,
  4079. });
  4080. _this.imgChange1(null, null, 1, null);
  4081. _this.choosePicVisible = false;
  4082. console.log(data.Location);
  4083. }
  4084. });
  4085. }
  4086. },
  4087. beforeUploadSelect(event, type) {
  4088. // const loading = this.openLoading();
  4089. var file = event.target.files[0];
  4090. var credentials = {
  4091. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4092. secretAccessKey: "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",
  4093. }; //秘钥形式的登录上传
  4094. window.AWS.config.update(credentials);
  4095. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4096. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4097. var _this = this;
  4098. if (file) {
  4099. var params = {
  4100. Key:
  4101. file.name.split(".")[0] +
  4102. new Date().getTime() +
  4103. "." +
  4104. file.name.split(".")[file.name.split(".").length - 1],
  4105. ContentType: file.type,
  4106. Body: file,
  4107. "Access-Control-Allow-Credentials": "*",
  4108. ACL: "public-read",
  4109. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4110. var options = {
  4111. partSize: 2048 * 1024 * 1024,
  4112. queueSize: 2,
  4113. leavePartsOnError: true,
  4114. };
  4115. bucket
  4116. .upload(params, options)
  4117. .on("httpUploadProgress", function (evt) {
  4118. //这里可以写进度条
  4119. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4120. })
  4121. .send(function (err, data) {
  4122. // loading.close();
  4123. if (err) {
  4124. _this.$message.error("上传失败");
  4125. } else {
  4126. _this.selectJson.url = data.Location;
  4127. console.log(data.Location);
  4128. }
  4129. });
  4130. }
  4131. },
  4132. chooseSysPic(p) {
  4133. this.cover.push({
  4134. name: "系统图片.png",
  4135. url: p,
  4136. });
  4137. this.imgChange1(null, null, 1, null);
  4138. this.isSysPic = true;
  4139. this.sysPicVisible = false;
  4140. },
  4141. beforeUpload(data) {
  4142. this.$refs.upload1.uploadFiles;
  4143. this.uploadLoading1 = true;
  4144. var file = data.file;
  4145. var credentials = {
  4146. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4147. secretAccessKey: "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",
  4148. }; //秘钥形式的登录上传
  4149. window.AWS.config.update(credentials);
  4150. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4151. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4152. var _this = this;
  4153. if (file) {
  4154. var params = {
  4155. Key:
  4156. file.name.split(".")[0] +
  4157. new Date().getTime() +
  4158. "." +
  4159. file.name.split(".")[file.name.split(".").length - 1],
  4160. ContentType: file.type,
  4161. Body: file,
  4162. "Access-Control-Allow-Credentials": "*",
  4163. ACL: "public-read",
  4164. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4165. var options = {
  4166. partSize: 2048 * 1024 * 1024,
  4167. queueSize: 2,
  4168. leavePartsOnError: true,
  4169. };
  4170. bucket
  4171. .upload(params, options)
  4172. .on("httpUploadProgress", function (evt) {
  4173. //这里可以写进度条
  4174. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4175. })
  4176. .send(function (err, data) {
  4177. _this.uploadLoading1 = false;
  4178. if (err) {
  4179. // var a = _this.$refs.upload1.uploadFiles;
  4180. // a.splice(a.length - 1, a.length);
  4181. _this.$message.error("上传失败");
  4182. } else {
  4183. //上传成功处理
  4184. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  4185. name: file.name,
  4186. url: data.Location,
  4187. uid: file.uid,
  4188. });
  4189. _this.imgChange();
  4190. console.log(data.Location);
  4191. }
  4192. });
  4193. }
  4194. },
  4195. onExceed() {
  4196. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  4197. },
  4198. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  4199. // const loading = this.openLoading();
  4200. var file = event.target.files[0];
  4201. var credentials = {
  4202. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4203. secretAccessKey: "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",
  4204. }; //秘钥形式的登录上传
  4205. window.AWS.config.update(credentials);
  4206. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4207. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4208. var _this = this;
  4209. if (type == 3) {
  4210. var b = [
  4211. "DOC",
  4212. "DOCX",
  4213. "DOCM",
  4214. "DOTM",
  4215. "DOTX",
  4216. "PPTX",
  4217. "PPSX",
  4218. "PPT",
  4219. "PPS",
  4220. "PPTM",
  4221. "POTM",
  4222. "PPAM",
  4223. "POTX",
  4224. "PPSM",
  4225. ];
  4226. if (
  4227. b.indexOf(
  4228. file.name
  4229. .split(".")
  4230. [file.name.split(".").length - 1].toLocaleUpperCase()
  4231. ) != -1
  4232. ) {
  4233. if (file.size / 1024 / 1024 > 80) {
  4234. this.$message.error("上传文件大于80兆,请重新选择文件!");
  4235. this.inputShow = true;
  4236. // var a = _this.$refs.upload1.uploadFiles;
  4237. // a.splice(a.length - 1, a.length);
  4238. // loading.close();
  4239. return;
  4240. }
  4241. } else if (
  4242. file.name
  4243. .split(".")
  4244. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  4245. ) {
  4246. if (file.size / 1024 / 1024 > 80) {
  4247. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  4248. this.inputShow = true;
  4249. // var a = _this.$refs.upload1.uploadFiles;
  4250. // a.splice(a.length - 1, a.length);
  4251. // loading.close();
  4252. return;
  4253. }
  4254. }
  4255. }
  4256. this.inputShow = false;
  4257. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4258. itemTaskIndex
  4259. ].progress = 0;
  4260. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4261. itemTaskIndex
  4262. ].proVisible = true;
  4263. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4264. itemTaskIndex
  4265. ].isFinishSize = 0;
  4266. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4267. itemTaskIndex
  4268. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  4269. _this.$forceUpdate();
  4270. if (file) {
  4271. var params = {
  4272. Key:
  4273. file.name.split(".")[0] +
  4274. new Date().getTime() +
  4275. "." +
  4276. file.name.split(".")[file.name.split(".").length - 1],
  4277. ContentType: file.type,
  4278. Body: file,
  4279. "Access-Control-Allow-Credentials": "*",
  4280. ACL: "public-read",
  4281. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4282. var options = {
  4283. partSize: 2048 * 1024 * 1024,
  4284. queueSize: 2,
  4285. leavePartsOnError: true,
  4286. };
  4287. bucket
  4288. .upload(params, options)
  4289. .on("httpUploadProgress", function (evt) {
  4290. //这里可以写进度条
  4291. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4292. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4293. itemTaskIndex
  4294. ].progress = parseInt((evt.loaded / evt.total) * 100);
  4295. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4296. itemTaskIndex
  4297. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  4298. _this.$forceUpdate();
  4299. })
  4300. .send(function (err, data) {
  4301. // loading.close();
  4302. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4303. itemTaskIndex
  4304. ].progress = 100;
  4305. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4306. itemTaskIndex
  4307. ].isFinishSize =
  4308. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4309. itemTaskIndex
  4310. ].isAllSize;
  4311. _this.$forceUpdate();
  4312. setTimeout(() => {
  4313. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4314. itemTaskIndex
  4315. ].proVisible = false;
  4316. _this.$forceUpdate();
  4317. }, 1000);
  4318. _this.inputShow = true;
  4319. if (err) {
  4320. // var a = _this.$refs.upload1.uploadFiles;
  4321. // a.splice(a.length - 1, a.length);
  4322. _this.$message.error("上传失败");
  4323. } else {
  4324. if (type == 13) {
  4325. let _type = 2
  4326. var imgA = [
  4327. "png",
  4328. "jpg",
  4329. "jpeg",
  4330. "bmp",
  4331. "gif",
  4332. "webp",
  4333. "psd",
  4334. "svg",
  4335. "tiff",
  4336. ]
  4337. var fileA = [
  4338. "PDF",
  4339. "DOC",
  4340. "DOCX",
  4341. "DOCM",
  4342. "DOTM",
  4343. "DOTX",
  4344. "PPTX",
  4345. "PPSX",
  4346. "PPT",
  4347. "PPS",
  4348. "PPTM",
  4349. "POTM",
  4350. "PPAM",
  4351. "POTX",
  4352. "PPSM","XLSX", "XLS"
  4353. ];
  4354. var videoA = [
  4355. "AVI",
  4356. "NAVI",
  4357. "MPEG",
  4358. "ASF",
  4359. "MOV",
  4360. "WMV",
  4361. "3GP",
  4362. "RM",
  4363. "RMVB",
  4364. "FLV",
  4365. "F4V",
  4366. "H.264",
  4367. "H.265",
  4368. "REAL VIDEO",
  4369. "MKV",
  4370. "WebM",
  4371. "HDDVD",
  4372. "MP4",
  4373. "MPG",
  4374. "M4V",
  4375. "MGV",
  4376. "OGV",
  4377. "QTM",
  4378. "STR",
  4379. "AMC",
  4380. "DVX",
  4381. "EVO",
  4382. "DAT",
  4383. "OGG",
  4384. "OGM",
  4385. ];
  4386. if (fileA.indexOf(
  4387. data.Location
  4388. .split(".")
  4389. [data.Location.split(".").length - 1].toLocaleUpperCase()
  4390. ) != -1) {
  4391. _type = 3
  4392. } else if (videoA.indexOf(
  4393. data.Location
  4394. .split(".")
  4395. [data.Location.split(".").length - 1].toLocaleUpperCase()
  4396. ) != -1) {
  4397. _type = 2
  4398. } else if (imgA.indexOf(
  4399. data.Location
  4400. .split(".")
  4401. [data.Location.split(".").length - 1].toLocaleLowerCase()
  4402. ) != -1) {
  4403. _type = 13
  4404. }else {
  4405. _type = 12
  4406. }
  4407. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4408. itemTaskIndex
  4409. ].chapterData.push({
  4410. name: file.name,
  4411. url: data.Location,
  4412. uid: file.uid,
  4413. type: _type,
  4414. });
  4415. _this.imgChange1(null, null, _type, itemTaskIndex);
  4416. } else if (type == 2 || type == 3 || type == 12) {
  4417. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4418. itemTaskIndex
  4419. ].chapterData.push({
  4420. name: file.name,
  4421. url: data.Location,
  4422. uid: file.uid,
  4423. type: type,
  4424. });
  4425. _this.imgChange1(null, null, type, itemTaskIndex);
  4426. } else if (type == 4) {
  4427. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4428. itemTaskIndex
  4429. ].fileList1.push({
  4430. name: file.name,
  4431. url: data.Location,
  4432. uid: file.uid,
  4433. });
  4434. _this.imgChange1(null, null, type, itemTaskIndex);
  4435. } else if (type == 5) {
  4436. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4437. itemTaskIndex
  4438. ].homeworkList.push({
  4439. name: file.name,
  4440. url: data.Location,
  4441. uid: file.uid,
  4442. });
  4443. _this.imgChange1(null, null, type, itemTaskIndex);
  4444. }
  4445. console.log(data.Location);
  4446. }
  4447. });
  4448. }
  4449. },
  4450. beforeUpload3(event, unitIndex, type, itemTaskIndex, string) {
  4451. // const loading = this.openLoading();
  4452. var file = event.target.files[0];
  4453. var credentials = {
  4454. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  4455. secretAccessKey: "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",
  4456. }; //秘钥形式的登录上传
  4457. window.AWS.config.update(credentials);
  4458. window.AWS.config.region = "cn-northwest-1"; //设置区域
  4459. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  4460. var _this = this;
  4461. if (type == 3) {
  4462. var b = [
  4463. "DOC",
  4464. "DOCX",
  4465. "DOCM",
  4466. "DOTM",
  4467. "DOTX",
  4468. "PPTX",
  4469. "PPSX",
  4470. "PPT",
  4471. "PPS",
  4472. "PPTM",
  4473. "POTM",
  4474. "PPAM",
  4475. "POTX",
  4476. "PPSM",
  4477. ];
  4478. if (
  4479. b.indexOf(
  4480. file.name
  4481. .split(".")
  4482. [file.name.split(".").length - 1].toLocaleUpperCase()
  4483. ) != -1
  4484. ) {
  4485. if (file.size / 1024 / 1024 > 80) {
  4486. this.$message.error("上传文件大于80兆,请重新选择文件!");
  4487. this.inputShow = true;
  4488. // var a = _this.$refs.upload1.uploadFiles;
  4489. // a.splice(a.length - 1, a.length);
  4490. // loading.close();
  4491. return;
  4492. }
  4493. } else if (
  4494. file.name
  4495. .split(".")
  4496. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  4497. ) {
  4498. if (file.size / 1024 / 1024 > 80) {
  4499. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  4500. this.inputShow = true;
  4501. // var a = _this.$refs.upload1.uploadFiles;
  4502. // a.splice(a.length - 1, a.length);
  4503. // loading.close();
  4504. return;
  4505. }
  4506. }
  4507. }
  4508. this.inputShow = false;
  4509. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4510. itemTaskIndex
  4511. ].progress = 0;
  4512. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4513. itemTaskIndex
  4514. ].proVisible = true;
  4515. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4516. itemTaskIndex
  4517. ].isFinishSize = 0;
  4518. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4519. itemTaskIndex
  4520. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  4521. _this.$forceUpdate();
  4522. if (file) {
  4523. var params = {
  4524. Key:
  4525. file.name.split(".")[0] +
  4526. new Date().getTime() +
  4527. "." +
  4528. file.name.split(".")[file.name.split(".").length - 1],
  4529. ContentType: file.type,
  4530. Body: file,
  4531. "Access-Control-Allow-Credentials": "*",
  4532. ACL: "public-read",
  4533. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  4534. var options = {
  4535. partSize: 2048 * 1024 * 1024,
  4536. queueSize: 2,
  4537. leavePartsOnError: true,
  4538. };
  4539. bucket
  4540. .upload(params, options)
  4541. .on("httpUploadProgress", function (evt) {
  4542. //这里可以写进度条
  4543. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  4544. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4545. itemTaskIndex
  4546. ].progress = parseInt((evt.loaded / evt.total) * 100);
  4547. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4548. itemTaskIndex
  4549. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  4550. _this.$forceUpdate();
  4551. })
  4552. .send(function (err, data) {
  4553. // loading.close();
  4554. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4555. itemTaskIndex
  4556. ].progress = 100;
  4557. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4558. itemTaskIndex
  4559. ].isFinishSize =
  4560. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4561. itemTaskIndex
  4562. ].isAllSize;
  4563. _this.$forceUpdate();
  4564. setTimeout(() => {
  4565. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4566. itemTaskIndex
  4567. ].proVisible = false;
  4568. _this.$forceUpdate();
  4569. }, 1000);
  4570. _this.inputShow = true;
  4571. if (err) {
  4572. // var a = _this.$refs.upload1.uploadFiles;
  4573. // a.splice(a.length - 1, a.length);
  4574. _this.$message.error("上传失败");
  4575. } else {
  4576. if (type == 2 || type == 3) {
  4577. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4578. itemTaskIndex
  4579. ].chapterData.push({
  4580. name: file.name,
  4581. // name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4582. // itemTaskIndex
  4583. // ].chapterData.length+1),
  4584. url: data.Location,
  4585. uid: file.uid,
  4586. type: type,
  4587. text: string,
  4588. // text: string + '' + (_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  4589. // itemTaskIndex
  4590. // ].chapterData.length + 1),
  4591. });
  4592. _this.imgChange1(null, null, type, itemTaskIndex);
  4593. } else if (type == 4) {
  4594. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4595. itemTaskIndex
  4596. ].fileList1.push({
  4597. name: file.name,
  4598. url: data.Location,
  4599. uid: file.uid,
  4600. });
  4601. _this.imgChange1(null, null, type, itemTaskIndex);
  4602. } else if (type == 5) {
  4603. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  4604. itemTaskIndex
  4605. ].homeworkList.push({
  4606. name: file.name,
  4607. url: data.Location,
  4608. uid: file.uid,
  4609. });
  4610. _this.imgChange1(null, null, type, itemTaskIndex);
  4611. }
  4612. console.log(data.Location);
  4613. }
  4614. });
  4615. }
  4616. },
  4617. addunit() {
  4618. this.unitJson.push({
  4619. dyName: "", //单元标题
  4620. isUpdate: 1,
  4621. easy: this.unitJson[this.unitJson.length - 1].easy ? 1 : 0,
  4622. chapterInfo: [
  4623. {
  4624. isread: false,
  4625. chapterid: this.guid(),
  4626. title: "",
  4627. courseName: "",
  4628. taskJson: [
  4629. {
  4630. task: "",
  4631. taskDetail: "",
  4632. chapterData: [],
  4633. toolText: "",
  4634. toolChoose: [
  4635. {
  4636. tool: [],
  4637. toolDetail: "",
  4638. toolType: 0,
  4639. askCount: 1,
  4640. askTitle: "",
  4641. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4642. },
  4643. ],
  4644. isShowTools: false,
  4645. askCount: 1,
  4646. isFold: 0,
  4647. askTitle: "",
  4648. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4649. checkJson: [{ checkCount: [], checkPerent: [] }],
  4650. homeworkList: [],
  4651. },
  4652. ],
  4653. itemCount: 1,
  4654. fileList1: [],
  4655. video: [],
  4656. testData: [],
  4657. pData: [],
  4658. templateArray: [],
  4659. },
  4660. ],
  4661. });
  4662. this.addindex = this.unitJson.length - 1;
  4663. setTimeout(() => {
  4664. this.unitIndex = this.unitJson.length - 1;
  4665. this.unitSet(this.unitIndex);
  4666. }, 0);
  4667. },
  4668. addToolFun(itemTaskIndex) {
  4669. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  4670. itemTaskIndex
  4671. ].toolChoose.push({
  4672. tool: [],
  4673. toolDetail: "",
  4674. toolType: 0,
  4675. askCount: 1,
  4676. askTitle: "",
  4677. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4678. });
  4679. },
  4680. addTaskBorder() {
  4681. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  4682. task: "",
  4683. taskDetail: "",
  4684. chapterData: [],
  4685. toolText: "",
  4686. toolChoose: [
  4687. {
  4688. tool: [],
  4689. toolDetail: "",
  4690. toolType: 0,
  4691. askCount: 1,
  4692. askTitle: "",
  4693. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4694. },
  4695. ],
  4696. isShowTools: false,
  4697. askCount: 1,
  4698. isFold: 0,
  4699. askTitle: "",
  4700. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4701. checkJson: [{ checkCount: [], checkPerent: [] }],
  4702. homeworkList: [],
  4703. });
  4704. },
  4705. add(e, i) {
  4706. var el = e.currentTarget;
  4707. el.getElementsByTagName("input")[0].click();
  4708. },
  4709. fold(i, e, type) {
  4710. var a = e.currentTarget.parentElement.parentElement;
  4711. var b = e.currentTarget.parentElement;
  4712. if (type == 1) {
  4713. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  4714. a.className += " smallTaskBorder";
  4715. b.className += " funBlockTop";
  4716. } else {
  4717. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  4718. a.className = "taskBorder";
  4719. b.className = "funBlock";
  4720. }
  4721. console.log(e);
  4722. },
  4723. deleteHomeworkBox(unitIndex, index, i) {
  4724. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  4725. this.taskCount
  4726. ].homeworkList.splice(i, 1);
  4727. },
  4728. getStudent() {
  4729. let params = {
  4730. oid: this.oid,
  4731. cu: "",
  4732. cn: this.searchPeople,
  4733. };
  4734. this.ajax
  4735. .get(this.$store.state.api + "selectStudentAdd", params)
  4736. .then((res) => {
  4737. this.studentJuri = res.data[0];
  4738. })
  4739. .catch((err) => {
  4740. this.isLoading = false;
  4741. console.error(err);
  4742. });
  4743. },
  4744. getTeacher() {
  4745. let params = {
  4746. oid:
  4747. this.org && this.org != "undefined" && this.org != "null"
  4748. ? this.org
  4749. : this.oid,
  4750. cu: "",
  4751. cn: this.searchTN,
  4752. };
  4753. this.ajax
  4754. .get(
  4755. this.$store.state.api +
  4756. (this.org && this.org != "undefined" && this.org != "null"
  4757. ? "selectTeacherAddOrg"
  4758. : "selectTeacherAdd"),
  4759. params
  4760. )
  4761. .then((res) => {
  4762. let teacherJuri = res.data[0];
  4763. for (var i = 0; i < teacherJuri.length; i++) {
  4764. if (teacherJuri[i].userid == this.userid) {
  4765. teacherJuri.splice(i, 1);
  4766. break;
  4767. }
  4768. }
  4769. this.teacherJuri = teacherJuri;
  4770. })
  4771. .catch((err) => {
  4772. console.error(err);
  4773. });
  4774. },
  4775. searchStudent() {
  4776. this.getStudent();
  4777. },
  4778. //获取班级列表
  4779. getClass() {
  4780. let params = {
  4781. oid: this.oid,
  4782. cn: this.classSearch,
  4783. };
  4784. this.ajax
  4785. .get(this.$store.state.api + "selectClassBySchoolSearch", params)
  4786. .then((res) => {
  4787. if (!this.grade.length) {
  4788. this.grade = res.data[0];
  4789. }
  4790. this.grade2 = res.data[0];
  4791. this.classJuri = res.data[0];
  4792. })
  4793. .catch((err) => {
  4794. this.isLoading = false;
  4795. console.error(err);
  4796. });
  4797. },
  4798. CourseType2Change(val) {
  4799. this.pTypeCheck = [];
  4800. for (var i = 0; i < this.CourseType2.length; i++) {
  4801. let typeA = this.CourseType2[i];
  4802. if (val.indexOf(typeA.name) != -1) {
  4803. this.pTypeCheck.push(...typeA.id);
  4804. }
  4805. }
  4806. },
  4807. getChapterData(e, i, j, ic, type) {
  4808. e.stopPropagation();
  4809. this.updataC = true;
  4810. this.icc = ic;
  4811. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  4812. console.log("还不能下载图片喔");
  4813. }
  4814. },
  4815. deleteChapterData(e, i, j, ic, taskI) {
  4816. e.stopPropagation();
  4817. this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  4818. },
  4819. updataVideoT(e, i, j, ic) {
  4820. e.stopPropagation();
  4821. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  4822. ic
  4823. ].name = e.target.value;
  4824. },
  4825. upCd(e, i, j, taskCount, ic) {
  4826. e.stopPropagation();
  4827. if (ic == 0) {
  4828. return;
  4829. }
  4830. var a =
  4831. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1];
  4832. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1] =
  4833. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic];
  4834. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  4835. this.$forceUpdate();
  4836. },
  4837. downCd(e, i, j, taskCount, ic) {
  4838. e.stopPropagation();
  4839. if (
  4840. ic ==
  4841. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData.length -
  4842. 1
  4843. ) {
  4844. return;
  4845. }
  4846. var a =
  4847. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1];
  4848. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1] =
  4849. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic];
  4850. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  4851. this.$forceUpdate();
  4852. },
  4853. addWork() {
  4854. let cPan = 1;
  4855. for (var i = 0; i < this.unitJson.length; i++) {
  4856. for (
  4857. var j = 0;
  4858. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  4859. j++
  4860. ) {
  4861. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  4862. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  4863. if (
  4864. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  4865. ) {
  4866. for (
  4867. var z = 0;
  4868. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  4869. z++
  4870. ) {
  4871. if (
  4872. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  4873. .length
  4874. ) {
  4875. this.$message.error("请把工具添加完整");
  4876. cPan = 2;
  4877. break;
  4878. }
  4879. }
  4880. }
  4881. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  4882. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  4883. i
  4884. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  4885. return ele.value != "";
  4886. });
  4887. }
  4888. }
  4889. }
  4890. this.inputShow = true;
  4891. if (cPan == 2) {
  4892. this.steps--;
  4893. return;
  4894. }
  4895. for (var i = 0; i < this.unitJson.length; i++) {
  4896. delete this.unitJson[i].isUpdate;
  4897. }
  4898. let params = [
  4899. {
  4900. uid: this.userid,
  4901. title: this.courseName.replace(/%/g, "%25"),
  4902. brief: this.courseText.replace(/%/g, "%25"),
  4903. cover:
  4904. this.cover.length > 0
  4905. ? JSON.stringify(this.cover)
  4906. : JSON.stringify([
  4907. {
  4908. name: "noBanner.jpg",
  4909. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  4910. uid: 1656409780264,
  4911. status: "success",
  4912. },
  4913. ]),
  4914. evaId: this.evalua,
  4915. astudent:
  4916. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  4917. see: this.isTeacherSee == true ? 1 : 0,
  4918. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  4919. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  4920. courseType: JSON.stringify(this.courseTypeId),
  4921. ateacher:
  4922. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  4923. inviteCode: JSON.stringify(this.inviteCode),
  4924. },
  4925. ];
  4926. this.ajax
  4927. .post(this.$store.state.api + "addWorkNew2", params)
  4928. .then((res) => {
  4929. console.log(this.steps);
  4930. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  4931. this.$message({
  4932. message: "新增成功",
  4933. type: "success",
  4934. });
  4935. }
  4936. this.number = res.data.ordernumber;
  4937. this.courseId = res.data.courseId;
  4938. this.cid = res.data.courseId;
  4939. this.courseUserid = this.userid;
  4940. this.islogin = true;
  4941. })
  4942. .catch((err) => {
  4943. this.$message.error("网络不佳");
  4944. console.error(err);
  4945. });
  4946. },
  4947. goCourse() {
  4948. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  4949. },
  4950. updateWork2() {
  4951. let _unitIndex = this.unitIndex;
  4952. let cPan = 1;
  4953. for (
  4954. var j = 0;
  4955. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  4956. j++
  4957. ) {
  4958. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].proVisible = false;
  4959. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  4960. j
  4961. ].proVisible2 = false;
  4962. if (
  4963. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4964. .length > 1
  4965. ) {
  4966. for (
  4967. var z = 0;
  4968. z <
  4969. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4970. .length;
  4971. z++
  4972. ) {
  4973. if (
  4974. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose[
  4975. z
  4976. ].tool.length
  4977. ) {
  4978. this.$message.error("请把工具添加完整");
  4979. cPan = 2;
  4980. break;
  4981. }
  4982. }
  4983. }
  4984. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  4985. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  4986. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  4987. (ele) => {
  4988. return ele.value != "";
  4989. }
  4990. );
  4991. }
  4992. }
  4993. this.inputShow = true;
  4994. if (cPan == 2) {
  4995. this.steps--;
  4996. return;
  4997. }
  4998. let params = [
  4999. {
  5000. cid: this.cid,
  5001. chapters: JSON.stringify(this.unitJson),
  5002. uid: this.userid,
  5003. unitIndex: _unitIndex,
  5004. },
  5005. ];
  5006. this.ajax
  5007. .post(this.$store.state.api + "updateWorkNew4", params)
  5008. .then((res) => {
  5009. this.$message({
  5010. message: "修改成功",
  5011. type: "success",
  5012. });
  5013. this.courseId = this.cid;
  5014. })
  5015. .catch((err) => {
  5016. this.$message.error("网络不佳");
  5017. console.error(err);
  5018. });
  5019. },
  5020. updateWork() {
  5021. let cPan = 1;
  5022. for (var i = 0; i < this.unitJson.length; i++) {
  5023. for (
  5024. var j = 0;
  5025. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  5026. j++
  5027. ) {
  5028. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  5029. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  5030. if (
  5031. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  5032. ) {
  5033. for (
  5034. var z = 0;
  5035. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  5036. z++
  5037. ) {
  5038. if (
  5039. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  5040. .length
  5041. ) {
  5042. this.$message.error("请把工具添加完整");
  5043. cPan = 2;
  5044. break;
  5045. }
  5046. }
  5047. }
  5048. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  5049. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  5050. i
  5051. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  5052. return ele.value != "";
  5053. });
  5054. }
  5055. }
  5056. }
  5057. this.inputShow = true;
  5058. if (cPan == 2) {
  5059. this.steps--;
  5060. return;
  5061. }
  5062. for (var i = 0; i < this.unitJson.length; i++) {
  5063. delete this.unitJson[i].isUpdate;
  5064. }
  5065. let params = [
  5066. {
  5067. cid: this.cid,
  5068. title: this.courseName.replace(/%/g, "%25"),
  5069. brief: this.courseText.replace(/%/g, "%25"),
  5070. cover:
  5071. this.cover.length > 0
  5072. ? JSON.stringify(this.cover)
  5073. : JSON.stringify([
  5074. {
  5075. name: "noBanner.jpg",
  5076. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  5077. uid: 1656409780264,
  5078. status: "success",
  5079. },
  5080. ]),
  5081. evaId: this.evalua,
  5082. astudent:
  5083. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  5084. see: this.isTeacherSee == true ? 1 : 0,
  5085. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  5086. template: this.myWord != "undefined" ? this.myWord : [],
  5087. uid: this.userid,
  5088. courseType: JSON.stringify(this.courseTypeId),
  5089. ateacher:
  5090. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  5091. inviteCode: JSON.stringify(this.inviteCode),
  5092. },
  5093. ];
  5094. this.ajax
  5095. .post(this.$store.state.api + "updateWorkNew2", params)
  5096. .then((res) => {
  5097. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  5098. if (this.cidType == 1) {
  5099. this.$message({
  5100. message: "修改成功",
  5101. type: "success",
  5102. });
  5103. } else {
  5104. this.$message({
  5105. message: "新增成功",
  5106. type: "success",
  5107. });
  5108. }
  5109. }
  5110. this.number = this.nbOrder;
  5111. this.courseId = this.cid;
  5112. })
  5113. .catch((err) => {
  5114. this.$message.error("网络不佳");
  5115. console.error(err);
  5116. });
  5117. },
  5118. guid() {
  5119. var _num,
  5120. i,
  5121. _guid = "";
  5122. for (i = 0; i < 32; i++) {
  5123. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  5124. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  5125. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  5126. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  5127. _guid += "-";
  5128. }
  5129. }
  5130. return _guid;
  5131. },
  5132. insertWord() {
  5133. this.dialogVisible1 = true;
  5134. this.updateBoolean2 = false;
  5135. this.tTitle = "";
  5136. this.tdetail = "";
  5137. },
  5138. addWord() {
  5139. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  5140. name: this.tTitle,
  5141. content: this.tdetail,
  5142. uid: this.guid(),
  5143. });
  5144. this.dialogVisible1 = false;
  5145. },
  5146. upWord() { },
  5147. selectWord(uid, i, c) {
  5148. this.dialogVisible1 = true;
  5149. this.updateBoolean2 = true;
  5150. if (
  5151. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  5152. ) {
  5153. this.tTitle =
  5154. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  5155. this.tdetail =
  5156. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  5157. }
  5158. },
  5159. isAddPP() {
  5160. if (this.checkboxList.length > 0) {
  5161. this.$message({
  5162. message: "添加成功",
  5163. type: "success",
  5164. });
  5165. this.dialogVisible3 = false;
  5166. } else {
  5167. this.$message({
  5168. message: "请添加课程成员",
  5169. type: "error",
  5170. });
  5171. }
  5172. },
  5173. isAddClass() {
  5174. this.dialogVisibleClass = false;
  5175. },
  5176. isAddPPTeacher() {
  5177. this.dialogVisibleMember = false;
  5178. this.setMan();
  5179. },
  5180. getTemplate() {
  5181. this.ajax
  5182. .get(this.$store.state.api + "getCourseTemplateT", "")
  5183. .then((res) => {
  5184. // this.templateArray = res.data[0];
  5185. this.getTemplateOid();
  5186. this.$forceUpdate();
  5187. })
  5188. .catch((err) => { });
  5189. },
  5190. getTemplateOid() {
  5191. let params = {
  5192. oid: this.oid,
  5193. };
  5194. this.ajax
  5195. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  5196. .then((res) => {
  5197. if (res.data[0].length) {
  5198. this.templateArray = [...res.data[0], ...this.templateArray];
  5199. }
  5200. this.getTemplateOrg();
  5201. this.$forceUpdate();
  5202. })
  5203. .catch((err) => { });
  5204. },
  5205. getTemplateOrg() {
  5206. let params = {
  5207. oid: this.org,
  5208. };
  5209. this.ajax
  5210. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  5211. .then((res) => {
  5212. if (res.data[0].length) {
  5213. this.templateArray = [...res.data[0], ...this.templateArray];
  5214. }
  5215. this.$forceUpdate();
  5216. })
  5217. .catch((err) => { });
  5218. },
  5219. clearChoose() {
  5220. this.clearArray.splice(this.templateC.id, 1);
  5221. this.dialogVisible2 = false;
  5222. },
  5223. clearAttText() {
  5224. this.AttText = {
  5225. title: "",
  5226. text: "",
  5227. };
  5228. this.dialogVisible6 = false;
  5229. },
  5230. clearLine() {
  5231. this.line = "";
  5232. this.dialogVisible7 = false;
  5233. },
  5234. checkTemplate(res) {
  5235. let _this = this;
  5236. _this
  5237. .$confirm("确定选择此模板吗?", "提示", {
  5238. confirmButtonText: "确定",
  5239. cancelButtonText: "取消",
  5240. type: "warning",
  5241. })
  5242. .then(() => {
  5243. _this.unitJson = JSON.parse(res.chapters);
  5244. _this.steps++;
  5245. setTimeout(() => {
  5246. this.checkEva(this.checkId);
  5247. }, 1000);
  5248. })
  5249. .catch(() => {
  5250. return;
  5251. });
  5252. },
  5253. checkTemplate1(w) {
  5254. this.steps++;
  5255. },
  5256. checkTemplate2() {
  5257. let _this = this;
  5258. _this
  5259. .$confirm("确定选择空模板吗?", "提示", {
  5260. confirmButtonText: "确定",
  5261. cancelButtonText: "取消",
  5262. type: "warning",
  5263. })
  5264. .then(() => {
  5265. _this.unitIndex = 0;
  5266. _this.unitJson = [
  5267. {
  5268. dyName: "", //单元标题
  5269. chapterInfo: [
  5270. {
  5271. isread: false,
  5272. chapterid: this.guid(),
  5273. title: "",
  5274. courseName: "",
  5275. taskJson: [
  5276. {
  5277. task: "",
  5278. taskDetail: "",
  5279. chapterData: [],
  5280. toolText: "",
  5281. toolChoose: [
  5282. {
  5283. tool: [],
  5284. toolDetail: "",
  5285. toolType: 0,
  5286. askCount: 1,
  5287. askTitle: "",
  5288. askJson: [
  5289. { askstitle: "", askItem: 1, checkList: [] },
  5290. ],
  5291. },
  5292. ],
  5293. isShowTools: false,
  5294. askCount: 1,
  5295. isFold: 0,
  5296. askTitle: "",
  5297. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5298. checkJson: [{ checkCount: [], checkPerent: [] }],
  5299. homeworkList: [],
  5300. },
  5301. ],
  5302. itemCount: 1,
  5303. fileList1: [],
  5304. video: [],
  5305. testData: [],
  5306. pData: [],
  5307. templateArray: [],
  5308. },
  5309. ],
  5310. },
  5311. ];
  5312. this.steps++;
  5313. this.updateWork();
  5314. })
  5315. .catch(() => {
  5316. return;
  5317. });
  5318. },
  5319. checkTemplate3() {
  5320. let _this = this;
  5321. _this
  5322. .$confirm("确定选择简易模式吗?", "提示", {
  5323. confirmButtonText: "确定",
  5324. cancelButtonText: "取消",
  5325. type: "warning",
  5326. })
  5327. .then(() => {
  5328. _this.unitIndex = 0;
  5329. _this.unitJson = [
  5330. {
  5331. dyName: "", //单元标题
  5332. easy: 1,
  5333. chapterInfo: [
  5334. {
  5335. isread: false,
  5336. chapterid: this.guid(),
  5337. title: "",
  5338. courseName: "",
  5339. taskJson: [
  5340. {
  5341. task: "",
  5342. taskDetail: "",
  5343. chapterData: [],
  5344. toolText: "",
  5345. toolChoose: [
  5346. {
  5347. tool: [],
  5348. toolDetail: "",
  5349. toolType: 0,
  5350. askCount: 1,
  5351. askTitle: "",
  5352. askJson: [
  5353. { askstitle: "", askItem: 1, checkList: [] },
  5354. ],
  5355. },
  5356. ],
  5357. isShowTools: false,
  5358. askCount: 1,
  5359. isFold: 0,
  5360. askTitle: "",
  5361. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  5362. checkJson: [{ checkCount: [], checkPerent: [] }],
  5363. homeworkList: [],
  5364. },
  5365. ],
  5366. itemCount: 1,
  5367. fileList1: [],
  5368. video: [],
  5369. testData: [],
  5370. pData: [],
  5371. templateArray: [],
  5372. },
  5373. ],
  5374. },
  5375. ];
  5376. this.steps++;
  5377. this.updateWork();
  5378. })
  5379. .catch(() => {
  5380. return;
  5381. });
  5382. },
  5383. checkTemplate4() {
  5384. let _this = this;
  5385. _this
  5386. .$confirm("确定选择未来小学课程设计吗?", "提示", {
  5387. confirmButtonText: "确定",
  5388. cancelButtonText: "取消",
  5389. type: "warning",
  5390. })
  5391. .then(() => {
  5392. _this.unitIndex = 0;
  5393. _this.unitJson = JSON.parse(JSON.stringify(weilaiData));
  5394. this.steps++;
  5395. this.updateWork();
  5396. })
  5397. .catch(() => {
  5398. return;
  5399. });
  5400. },
  5401. wordNext() {
  5402. this.dialogVisible2 = false;
  5403. },
  5404. isAddOrUpdateAttText() {
  5405. if (this.AttTextType == 0) {
  5406. this.addAttTextMessage();
  5407. } else {
  5408. this.updateAttText();
  5409. }
  5410. },
  5411. isAddOrUpdateLine() {
  5412. if (!this.lineTitle) {
  5413. this.$message.error("请填写链接标题");
  5414. return;
  5415. }
  5416. if (this.lineType == 0) {
  5417. this.addLine();
  5418. } else {
  5419. this.updateLine();
  5420. }
  5421. },
  5422. addAttTextMessage() {
  5423. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5424. this.taskCount
  5425. ].chapterData.push({
  5426. name: this.AttText.title,
  5427. url: this.AttText.text,
  5428. type: 6,
  5429. });
  5430. this.imgChange1(null, null, 6, this.taskCount);
  5431. this.dialogVisible6 = false;
  5432. },
  5433. selectAttText(itemTaskIndex, i) {
  5434. this.AttText.title =
  5435. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5436. itemTaskIndex
  5437. ].chapterData[i].name;
  5438. this.AttText.text =
  5439. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5440. itemTaskIndex
  5441. ].chapterData[i].url;
  5442. this.taskCount = itemTaskIndex;
  5443. this.AttTextIndex = i;
  5444. this.AttTextType = 1;
  5445. this.dialogVisible6 = true;
  5446. },
  5447. updateAttText() {
  5448. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5449. this.taskCount
  5450. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  5451. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5452. this.taskCount
  5453. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  5454. this.dialogVisible6 = false;
  5455. },
  5456. addLine() {
  5457. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5458. this.lineCount
  5459. ].chapterData.push({
  5460. name: "链接",
  5461. title: this.lineTitle,
  5462. url: this.line,
  5463. type: 8,
  5464. });
  5465. this.imgChange1(null, null, 8, this.lineCount);
  5466. this.dialogVisible7 = false;
  5467. },
  5468. selectLine(itemTaskIndex, i) {
  5469. this.line =
  5470. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5471. itemTaskIndex
  5472. ].chapterData[i].url;
  5473. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5474. itemTaskIndex
  5475. ].chapterData[i].title
  5476. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5477. .chapterData[i].title
  5478. : "";
  5479. this.taskCount = itemTaskIndex;
  5480. this.lineCount = i;
  5481. this.lineType = 1;
  5482. this.dialogVisible7 = true;
  5483. },
  5484. updateLine() {
  5485. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5486. this.taskCount
  5487. ].chapterData[this.lineCount].url = this.line;
  5488. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5489. this.taskCount
  5490. ].chapterData[this.lineCount].title = this.lineTitle;
  5491. this.dialogVisible7 = false;
  5492. },
  5493. addPP() {
  5494. this.dialogVisible3 = true;
  5495. },
  5496. goTo(path) {
  5497. this.$router.push(path);
  5498. },
  5499. openTools(itemTaskIndex, i, toolIndex) {
  5500. this.toolIndex = toolIndex;
  5501. this.taskCount = itemTaskIndex;
  5502. if (i == 4) {
  5503. if (toolIndex == null) {
  5504. var a =
  5505. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5506. .chapterData;
  5507. for (var i = 0; i < a.length; i++) {
  5508. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  5509. this.askJson =
  5510. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5511. itemTaskIndex
  5512. ].chapterData[i].askJson;
  5513. }
  5514. }
  5515. } else {
  5516. this.askJson = JSON.parse(
  5517. JSON.stringify(
  5518. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5519. itemTaskIndex
  5520. ].toolChoose[toolIndex]
  5521. )
  5522. );
  5523. }
  5524. this.dialogVisible5 = true;
  5525. } else if (i == 45) {
  5526. if (
  5527. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5528. .toolChoose[toolIndex].testJson
  5529. ) {
  5530. this.testJson = JSON.parse(
  5531. JSON.stringify(
  5532. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5533. itemTaskIndex
  5534. ].toolChoose[toolIndex].testJson
  5535. )
  5536. );
  5537. } else {
  5538. var testJson = {
  5539. testCount: 1,
  5540. testTitle: "",
  5541. testJson: [
  5542. {
  5543. teststitle: "",
  5544. testItem: 1,
  5545. checkList: [],
  5546. timuList: [],
  5547. answer: [],
  5548. type: "1",
  5549. },
  5550. ],
  5551. };
  5552. this.testJson = testJson;
  5553. }
  5554. this.dialogVisibleChoice = true;
  5555. } else if (i == 47) {
  5556. if (
  5557. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5558. .toolChoose[toolIndex].sentenceList
  5559. ) {
  5560. this.sentenceList = JSON.parse(
  5561. JSON.stringify(
  5562. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5563. itemTaskIndex
  5564. ].toolChoose[toolIndex].sentenceList
  5565. )
  5566. );
  5567. } else {
  5568. var sentenceList = [
  5569. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  5570. ];
  5571. this.sentenceList = sentenceList;
  5572. }
  5573. this.dialogVisibleSentence = true;
  5574. } else if (i == 48) {
  5575. if (
  5576. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5577. .toolChoose[toolIndex].tableJson
  5578. ) {
  5579. this.tableJson = JSON.parse(
  5580. JSON.stringify(
  5581. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5582. itemTaskIndex
  5583. ].toolChoose[toolIndex].tableJson
  5584. )
  5585. );
  5586. } else {
  5587. var tableJson = { text: "" };
  5588. this.tableJson = tableJson;
  5589. }
  5590. this.dialogVisibleTable = true;
  5591. } else if (i == 52) {
  5592. if (
  5593. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5594. .toolChoose[toolIndex].wordJson
  5595. ) {
  5596. this.wordJson = JSON.parse(
  5597. JSON.stringify(
  5598. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5599. itemTaskIndex
  5600. ].toolChoose[toolIndex].wordJson
  5601. )
  5602. );
  5603. } else {
  5604. var wordJson = { text: "" };
  5605. this.wordJson = wordJson;
  5606. }
  5607. this.dialogVisibleWord = true;
  5608. // else if (i == 50) {
  5609. // if (
  5610. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5611. // .toolChoose[toolIndex].uploadJson
  5612. // ) {
  5613. // this.uploadJson = JSON.parse(
  5614. // JSON.stringify(
  5615. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5616. // itemTaskIndex
  5617. // ].toolChoose[toolIndex].uploadJson
  5618. // )
  5619. // );
  5620. // } else {
  5621. // var uploadJson = [];
  5622. // this.uploadJson = uploadJson;
  5623. // }
  5624. // this.dialogVisibleMoreUpload = true;
  5625. // }
  5626. } else if (i == 10) {
  5627. if (
  5628. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5629. .toolChoose[toolIndex].preTime
  5630. ) {
  5631. this.preTime = JSON.parse(
  5632. JSON.stringify(
  5633. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5634. itemTaskIndex
  5635. ].toolChoose[toolIndex].preTime
  5636. )
  5637. );
  5638. } else {
  5639. var preTime = 0;
  5640. this.preTime = preTime;
  5641. }
  5642. this.dialogVisiblePreTime = true;
  5643. } else if (i == 49) {
  5644. if (
  5645. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5646. .toolChoose[toolIndex].groupJson
  5647. ) {
  5648. this.groupJson = JSON.parse(
  5649. JSON.stringify(
  5650. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5651. itemTaskIndex
  5652. ].toolChoose[toolIndex].groupJson
  5653. )
  5654. );
  5655. } else {
  5656. var groupJson = {
  5657. group: [{ name: "第1组" }],
  5658. number: undefined,
  5659. islock: 1,
  5660. };
  5661. this.groupJson = groupJson;
  5662. }
  5663. this.dialogVisibleGroup = true;
  5664. } else if (i == 62) {
  5665. if (
  5666. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5667. .toolChoose[toolIndex].videoJson
  5668. ) {
  5669. this.videoJson = JSON.parse(
  5670. JSON.stringify(
  5671. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5672. itemTaskIndex
  5673. ].toolChoose[toolIndex].videoJson
  5674. )
  5675. );
  5676. } else {
  5677. var videoJson = {
  5678. video: "",
  5679. setting: []
  5680. };
  5681. this.videoJson = videoJson;
  5682. }
  5683. this.dialogVisibleVideo = true;
  5684. } else if (i == 15) {
  5685. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5686. itemTaskIndex
  5687. ].toolChoose[toolIndex].answerQ
  5688. ? JSON.parse(
  5689. JSON.stringify(
  5690. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5691. itemTaskIndex
  5692. ].toolChoose[toolIndex].answerQ
  5693. )
  5694. )
  5695. : "";
  5696. this.dialogVisible8 = true;
  5697. } else if (i == 40) {
  5698. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5699. itemTaskIndex
  5700. ].toolChoose[toolIndex].rateJson
  5701. ? JSON.parse(
  5702. JSON.stringify(
  5703. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5704. itemTaskIndex
  5705. ].toolChoose[toolIndex].rateJson
  5706. )
  5707. )
  5708. : [{ detail: "", score: 5, value: "" }]; //{detail:"",score:5,value:""}
  5709. this.selectSteps = 1;
  5710. this.dialogVisibleRate = true;
  5711. } else if (i == 42) {
  5712. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5713. itemTaskIndex
  5714. ].toolChoose[toolIndex].answerQ
  5715. ? JSON.parse(
  5716. JSON.stringify(
  5717. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5718. itemTaskIndex
  5719. ].toolChoose[toolIndex].answerQ
  5720. )
  5721. )
  5722. : "";
  5723. this.dialogVisibleMp3 = true;
  5724. } else if (i == 41) {
  5725. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5726. itemTaskIndex
  5727. ].toolChoose[toolIndex].selectJson
  5728. ? JSON.parse(
  5729. JSON.stringify(
  5730. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5731. itemTaskIndex
  5732. ].toolChoose[toolIndex].selectJson
  5733. )
  5734. )
  5735. : { url: "", select: [], answer: [] };
  5736. this.selectSteps = 1;
  5737. this.dialogVisibleSelect = true;
  5738. } else if (i == 3) {
  5739. window.parent.postMessage(
  5740. {
  5741. tools: "3y",
  5742. cid: this.cid,
  5743. stage: this.unitIndex,
  5744. task: itemTaskIndex,
  5745. tool: toolIndex,
  5746. },
  5747. "*"
  5748. );
  5749. } else if (i == 1) {
  5750. window.parent.postMessage(
  5751. {
  5752. tools: "1y",
  5753. cid: this.cid,
  5754. stage: this.unitIndex,
  5755. task: itemTaskIndex,
  5756. tool: toolIndex,
  5757. },
  5758. "*"
  5759. );
  5760. }
  5761. },
  5762. chapAddTools(i) {
  5763. if (this.chapTools[0].tools.length == 0) {
  5764. this.chapTools[0].tools.push(i);
  5765. } else {
  5766. if (this.chapTools[0].tools.indexOf(i) != -1) {
  5767. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  5768. } else {
  5769. this.chapTools[0].tools.push(i);
  5770. }
  5771. }
  5772. this.$forceUpdate();
  5773. },
  5774. addChaptersDataTools() {
  5775. if (this.chapTools[0].tools.indexOf(4) != -1) {
  5776. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5777. this.chapCount
  5778. ].chapterData.push({
  5779. name: this.chapTools[0].toolDetail,
  5780. url: this.chapTools[0].tools,
  5781. type: 7,
  5782. askJson: this.askJson,
  5783. });
  5784. } else {
  5785. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5786. this.chapCount
  5787. ].chapterData.push({
  5788. name: this.chapTools[0].toolDetail,
  5789. url: this.chapTools[0].tools,
  5790. type: 7,
  5791. });
  5792. }
  5793. this.imgChange1(null, null, 7, this.chapCount);
  5794. this.dialogVisible4 = false;
  5795. },
  5796. addTools(i, itemTaskIndex, toolIndex) {
  5797. // if (
  5798. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5799. // .toolChoose[toolIndex].tool.length == 0
  5800. // ) {
  5801. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5802. // itemTaskIndex
  5803. // ].toolChoose[toolIndex].tool.push(i);
  5804. // } else {
  5805. // if (
  5806. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5807. // itemTaskIndex
  5808. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  5809. // ) {
  5810. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5811. // itemTaskIndex
  5812. // ].toolChoose[toolIndex].tool.splice(
  5813. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5814. // itemTaskIndex
  5815. // ].toolChoose[toolIndex].tool.indexOf(i),
  5816. // 1
  5817. // );
  5818. // } else {
  5819. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5820. // itemTaskIndex
  5821. // ].toolChoose[toolIndex].tool.push(i);
  5822. // }
  5823. // console.log(
  5824. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5825. // .toolChoose[toolIndex].tool
  5826. // );
  5827. // }
  5828. if (i == 4) {
  5829. if (
  5830. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5831. .toolChoose[toolIndex].askJson.askTitle == "" ||
  5832. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5833. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  5834. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5835. .toolChoose[toolIndex].askJson[0].checkList < 2
  5836. ) {
  5837. this.openTools(itemTaskIndex, 4, toolIndex);
  5838. // this.$message({
  5839. // message: "请填写完整问卷内容",
  5840. // type: "error",
  5841. // });
  5842. return;
  5843. }
  5844. }
  5845. if (i == 45) {
  5846. if (
  5847. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5848. .toolChoose[toolIndex].testJson ||
  5849. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5850. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  5851. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5852. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  5853. ) {
  5854. this.openTools(itemTaskIndex, 45, toolIndex);
  5855. // this.$message({
  5856. // message: "请填写完整问卷内容",
  5857. // type: "error",
  5858. // });
  5859. return;
  5860. }
  5861. }
  5862. if (i == 47) {
  5863. if (
  5864. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5865. .toolChoose[toolIndex].sentenceList ||
  5866. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5867. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  5868. ) {
  5869. this.openTools(itemTaskIndex, 47, toolIndex);
  5870. return;
  5871. }
  5872. }
  5873. // if (i == 48) {
  5874. // if (
  5875. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5876. // .toolChoose[toolIndex].tableJson
  5877. // ) {
  5878. // this.openTools(itemTaskIndex, 48, toolIndex);
  5879. // return;
  5880. // }
  5881. // }
  5882. // if (i == 50) {
  5883. // if (
  5884. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5885. // .toolChoose[toolIndex].uploadJson
  5886. // ) {
  5887. // this.openTools(itemTaskIndex, 50, toolIndex);
  5888. // return;
  5889. // }
  5890. // }
  5891. if (i == 49) {
  5892. if (
  5893. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5894. .toolChoose[toolIndex].groupJson
  5895. ) {
  5896. this.openTools(itemTaskIndex, 49, toolIndex);
  5897. return;
  5898. }
  5899. }
  5900. if (i == 62) {
  5901. if (
  5902. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5903. .toolChoose[toolIndex].videoJson
  5904. ) {
  5905. this.openTools(itemTaskIndex, 62, toolIndex);
  5906. return;
  5907. }
  5908. }
  5909. if (i == 15) {
  5910. if (
  5911. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5912. .toolChoose[toolIndex].answerQ ||
  5913. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5914. .toolChoose[toolIndex].answerQ == ""
  5915. ) {
  5916. this.openTools(itemTaskIndex, 15, toolIndex);
  5917. // this.$message({
  5918. // message: "请填写问答内容",
  5919. // type: "error",
  5920. // });
  5921. return;
  5922. }
  5923. }
  5924. if (i == 40) {
  5925. if (
  5926. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5927. .toolChoose[toolIndex].rateJson ||
  5928. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5929. .toolChoose[toolIndex].rateJson.length
  5930. ) {
  5931. this.openTools(itemTaskIndex, 40, toolIndex);
  5932. return;
  5933. }
  5934. }
  5935. if (i == 41) {
  5936. if (
  5937. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5938. .toolChoose[toolIndex].selectJson ||
  5939. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5940. .toolChoose[toolIndex].selectJson.url == "" ||
  5941. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5942. .toolChoose[toolIndex].selectJson.select.length ||
  5943. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5944. .toolChoose[toolIndex].selectJson.answer.length
  5945. ) {
  5946. this.openTools(itemTaskIndex, 41, toolIndex);
  5947. return;
  5948. }
  5949. }
  5950. if (i == 42) {
  5951. if (
  5952. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5953. .toolChoose[toolIndex].answerQ ||
  5954. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5955. .toolChoose[toolIndex].answerQ == ""
  5956. ) {
  5957. this.openTools(itemTaskIndex, 42, toolIndex);
  5958. return;
  5959. }
  5960. }
  5961. if (
  5962. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5963. .toolChoose[toolIndex].tool.length > 0
  5964. ) {
  5965. if (
  5966. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5967. itemTaskIndex
  5968. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  5969. ) {
  5970. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5971. itemTaskIndex
  5972. ].toolChoose[toolIndex].tool.splice(
  5973. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5974. itemTaskIndex
  5975. ].toolChoose[toolIndex].tool.indexOf(i),
  5976. 1
  5977. );
  5978. } else {
  5979. // this.$message({
  5980. // message: "每个工具只能添加一个",
  5981. // type: "error",
  5982. // });
  5983. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5984. itemTaskIndex
  5985. ].toolChoose[toolIndex].tool = [];
  5986. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5987. itemTaskIndex
  5988. ].toolChoose[toolIndex].tool.push(i);
  5989. }
  5990. } else {
  5991. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5992. itemTaskIndex
  5993. ].toolChoose[toolIndex].tool.push(i);
  5994. }
  5995. this.$forceUpdate();
  5996. },
  5997. addAskList() {
  5998. this.askJson.askJson.push({
  5999. askstitle: "",
  6000. askItem: 1,
  6001. checkList: [],
  6002. });
  6003. this.askJson.askCount++;
  6004. },
  6005. addTestList() {
  6006. this.testJson.testJson.push({
  6007. teststitle: "",
  6008. testItem: 1,
  6009. checkList: [],
  6010. timuList: [],
  6011. answer: [],
  6012. type: "1",
  6013. });
  6014. this.testJson.testCount++;
  6015. },
  6016. deleteAskList(index) {
  6017. this.askJson.askJson.splice(index, 1);
  6018. this.askJson.askCount--;
  6019. },
  6020. deleteTestList(index) {
  6021. this.testJson.testJson.splice(index, 1);
  6022. this.testJson.testCount--;
  6023. },
  6024. addcheckList(json) {
  6025. json.checkList.length++;
  6026. json.askItem++;
  6027. },
  6028. deletecheckList(json) {
  6029. json.checkList.length--;
  6030. json.askItem--;
  6031. },
  6032. addTcheckList(json) {
  6033. json.checkList.length++;
  6034. json.testItem++;
  6035. },
  6036. deleteTcheckList(json) {
  6037. json.checkList.length--;
  6038. json.testItem--;
  6039. },
  6040. checkTestType(type, json) {
  6041. json.type = type;
  6042. json.answer = [];
  6043. },
  6044. checkAskType(type, json) {
  6045. json.type = type;
  6046. json.checkList = [];
  6047. },
  6048. addSelectList(json) {
  6049. json.select.push("");
  6050. json.answer.push("");
  6051. },
  6052. deleteSelectList(json) {
  6053. // json.select.length--;
  6054. // json.answer.length--;
  6055. json.select.splice(json.select.length - 1, 1);
  6056. json.answer.splice(json.answer.length - 1, 1);
  6057. },
  6058. addAsk() {
  6059. if (this.askJson.askTitle === "") {
  6060. this.$message.error("标题不能为空!");
  6061. return;
  6062. }
  6063. var aj = this.askJson.askJson;
  6064. var b = 1;
  6065. for (var i = 0; i < aj.length; i++) {
  6066. if (aj[i].askstitle === "") {
  6067. var a = 1;
  6068. for (let index = 0; index < aj[i].askItem; index++) {
  6069. const element = aj[i].checkList[index]
  6070. ? aj[i].checkList[index]
  6071. : "";
  6072. if (element != "") {
  6073. b++;
  6074. this.$message.error("填写了选项,题目不能为空!");
  6075. return;
  6076. } else {
  6077. a++;
  6078. }
  6079. }
  6080. if (b == 1) {
  6081. this.$message.error("至少填写一个问题");
  6082. return;
  6083. }
  6084. } else if (aj[i].askstitle != "") {
  6085. for (let index = 0; index < aj[i].askItem; index++) {
  6086. const element = aj[i].checkList[index]
  6087. ? aj[i].checkList[index]
  6088. : "";
  6089. var index = 0;
  6090. for (var z = 0; z < aj[i].checkList.length; z++) {
  6091. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  6092. if (checkC != "") {
  6093. index++;
  6094. } else {
  6095. this.$message.error("选项不能为空!");
  6096. return;
  6097. }
  6098. }
  6099. b++;
  6100. if (index < 2) {
  6101. this.$message.error("填写了的题目,选项至少要有两项!");
  6102. return;
  6103. }
  6104. }
  6105. }
  6106. }
  6107. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  6108. var elc = el.checkList.filter((element) => {
  6109. return element != "";
  6110. });
  6111. return el.askstitle != "" && elc.length != 0;
  6112. });
  6113. if (!this.dialogVisible4) {
  6114. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6115. this.taskCount
  6116. ].toolChoose[this.toolIndex] = this.askJson;
  6117. }
  6118. this.dialogVisible5 = false;
  6119. if (
  6120. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6121. .toolChoose[this.toolIndex].tool != 4
  6122. ) {
  6123. this.addTools(4, this.taskCount, this.toolIndex);
  6124. }
  6125. },
  6126. addTest() {
  6127. // if (this.testJson.testTitle === "") {
  6128. // this.$message.error("标题不能为空!");
  6129. // return;
  6130. // }
  6131. var aj = this.testJson.testJson;
  6132. var b = 1;
  6133. for (var i = 0; i < aj.length; i++) {
  6134. if (aj[i].teststitle === "" && aj[i].timuList.length == 0) {
  6135. var a = 1;
  6136. for (let index = 0; index < aj[i].testItem; index++) {
  6137. const element = aj[i].checkList[index]
  6138. ? aj[i].checkList[index]
  6139. : "";
  6140. if (element != "") {
  6141. b++;
  6142. this.$message.error("填写了选项,题目不能为空!");
  6143. return;
  6144. } else {
  6145. a++;
  6146. }
  6147. }
  6148. if (b == 1) {
  6149. this.$message.error("至少填写一个问题");
  6150. return;
  6151. }
  6152. } else if (aj[i].teststitle != "" || aj[i].timuList.length > 0) {
  6153. for (let index = 0; index < aj[i].testItem; index++) {
  6154. const element = aj[i].checkList[index]
  6155. ? aj[i].checkList[index]
  6156. : "";
  6157. var index = 0;
  6158. for (var z = 0; z < aj[i].checkList.length; z++) {
  6159. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  6160. if (checkC != "") {
  6161. index++;
  6162. } else {
  6163. this.$message.error("选项不能为空!");
  6164. return;
  6165. }
  6166. }
  6167. b++;
  6168. if (index < 2) {
  6169. this.$message.error("填写了的题目,选项至少要有两项!");
  6170. return;
  6171. }
  6172. if (
  6173. (aj[i].type == "2" && !aj[i].answer.length) ||
  6174. (aj[i].type == "1" && aj[i].answer !== 0 && !aj[i].answer)
  6175. ) {
  6176. this.$message.error("有题目未选择答案请选择答案");
  6177. return;
  6178. }
  6179. }
  6180. }
  6181. }
  6182. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  6183. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  6184. var elc = el.checkList.filter((element) => {
  6185. return element != "";
  6186. });
  6187. return (
  6188. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  6189. );
  6190. });
  6191. isTestJson.testCount = isTestJson.testJson.length;
  6192. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6193. this.taskCount
  6194. ].toolChoose[this.toolIndex].testJson = isTestJson;
  6195. this.dialogVisibleChoice = false;
  6196. if (
  6197. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6198. .toolChoose[this.toolIndex].tool != 45
  6199. ) {
  6200. this.addTools(45, this.taskCount, this.toolIndex);
  6201. }
  6202. },
  6203. addVideoJson(videoJson) {
  6204. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6205. this.taskCount
  6206. ].toolChoose[this.toolIndex].videoJson = videoJson;
  6207. this.dialogVisibleVideo = false;
  6208. if (
  6209. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6210. .toolChoose[this.toolIndex].tool != 62
  6211. ) {
  6212. this.addTools(62, this.taskCount, this.toolIndex);
  6213. }
  6214. },
  6215. //自动获取剪贴板
  6216. pasteOption() {
  6217. let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
  6218. if (!iframe) {
  6219. this.$message.error("请使用AI共创生成题目")
  6220. return;
  6221. }
  6222. let copyData = iframe.contentWindow.copyData
  6223. if (!copyData || !copyData.selectData.length) {
  6224. this.$message.error("请使用AI共创生成题目")
  6225. return;
  6226. }
  6227. let selectData = copyData.selectData;
  6228. for (var i = 0; i < selectData.length; i++) {
  6229. let answer = 0
  6230. switch (selectData[i].answer[0]) {
  6231. case 'A':
  6232. answer = 0
  6233. break;
  6234. case 'B':
  6235. answer = 1
  6236. break;
  6237. case 'C':
  6238. answer = 2
  6239. break;
  6240. case 'D':
  6241. answer = 3
  6242. break;
  6243. case 'E':
  6244. answer = 4
  6245. break;
  6246. default:
  6247. break;
  6248. }
  6249. this.testJson.testJson.push({
  6250. teststitle: selectData[i].subject,
  6251. testItem: selectData[i].options.length,
  6252. checkList: selectData[i].options,
  6253. timuList: [],
  6254. answer: answer,
  6255. type: "1",
  6256. });
  6257. this.testJson.testCount++;
  6258. }
  6259. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  6260. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  6261. var elc = el.checkList.filter((element) => {
  6262. return element != "";
  6263. });
  6264. return (
  6265. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  6266. );
  6267. });
  6268. isTestJson.testCount = isTestJson.testJson.length;
  6269. this.testJson = isTestJson
  6270. this.$forceUpdate();
  6271. },
  6272. pasteTask() {
  6273. let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
  6274. if (!iframe) {
  6275. this.$message.error("请使用AI共创生成")
  6276. return;
  6277. }
  6278. let copyData = iframe.contentWindow.copyData
  6279. if (!copyData || !copyData.tasksData || !copyData.tasksData.length) {
  6280. this.$message.error("请使用AI共创生成")
  6281. return;
  6282. }
  6283. let stageTasksData = copyData.tasksData;
  6284. let taskA = []
  6285. let tasks = stageTasksData
  6286. for (var j = 0; j < tasks.length; j++) {
  6287. taskA.push({
  6288. task: tasks[j].taskName,
  6289. taskDetail: tasks[j].taskDecs,
  6290. chapterData: [],
  6291. toolText: "",
  6292. toolChoose: [
  6293. {
  6294. tool: [],
  6295. toolDetail: "",
  6296. toolType: 0,
  6297. askCount: 1,
  6298. askTitle: "",
  6299. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6300. },
  6301. ],
  6302. isShowTools: false,
  6303. askCount: 1,
  6304. isFold: 0,
  6305. askTitle: "",
  6306. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6307. checkJson: [{ checkCount: [], checkPerent: [] }],
  6308. homeworkList: [],
  6309. })
  6310. }
  6311. this.unitJson[this.unitIndex].chapterInfo[0].taskJson = taskA
  6312. this.$forceUpdate();
  6313. },
  6314. pasteStage() {
  6315. let iframe = top.document.querySelectorAll("#AIChat iframe")[0]
  6316. if (!iframe) {
  6317. this.$message.error("请使用AI共创生成")
  6318. return;
  6319. }
  6320. let copyData = iframe.contentWindow.copyData
  6321. if (!copyData || !copyData.stageData || !copyData.stageData.length) {
  6322. this.$message.error("请使用AI共创生成")
  6323. return;
  6324. }
  6325. let stageData = copyData.stageData;
  6326. let stage = []
  6327. for (var i = 0; i < stageData.length; i++) {
  6328. stage.push({
  6329. dyName: stageData[i], //单元标题
  6330. chapterInfo: [
  6331. {
  6332. isread: false,
  6333. chapterid: this.guid(),
  6334. title: "",
  6335. courseName: "",
  6336. taskJson: [
  6337. {
  6338. task: "",
  6339. taskDetail: "",
  6340. chapterData: [],
  6341. toolText: "",
  6342. toolChoose: [
  6343. {
  6344. tool: [],
  6345. toolDetail: "",
  6346. toolType: 0,
  6347. askCount: 1,
  6348. askTitle: "",
  6349. askJson: [
  6350. { askstitle: "", askItem: 1, checkList: [] },
  6351. ],
  6352. },
  6353. ],
  6354. isShowTools: false,
  6355. askCount: 1,
  6356. isFold: 0,
  6357. askTitle: "",
  6358. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6359. checkJson: [{ checkCount: [], checkPerent: [] }],
  6360. homeworkList: [],
  6361. },
  6362. ],
  6363. itemCount: 1,
  6364. fileList1: [],
  6365. video: [],
  6366. testData: [],
  6367. pData: [],
  6368. templateArray: [],
  6369. },
  6370. ],
  6371. },)
  6372. }
  6373. let _this = this;
  6374. _this
  6375. .$confirm("确定选择智能粘贴模式吗?", "提示", {
  6376. confirmButtonText: "确定",
  6377. cancelButtonText: "取消",
  6378. type: "warning",
  6379. })
  6380. .then(() => {
  6381. _this.unitIndex = 0;
  6382. _this.unitJson = stage;
  6383. _this.steps++;
  6384. _this.updateWork();
  6385. })
  6386. .catch(() => {
  6387. return;
  6388. });
  6389. },
  6390. addAnswer() {
  6391. if (this.answerQ == "") {
  6392. this.$message.error("请输入您想要问的问题");
  6393. return;
  6394. }
  6395. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6396. this.taskCount
  6397. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  6398. this.dialogVisible8 = false;
  6399. if (
  6400. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6401. .toolChoose[this.toolIndex].tool != 15
  6402. ) {
  6403. this.addTools(15, this.taskCount, this.toolIndex);
  6404. }
  6405. },
  6406. addMp3Answer() {
  6407. if (this.answerQ == "") {
  6408. this.$message.error("请输入您想要回答的问题");
  6409. return;
  6410. }
  6411. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6412. this.taskCount
  6413. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  6414. this.dialogVisibleMp3 = false;
  6415. },
  6416. addRateAnswer() {
  6417. var a = 1;
  6418. for (var i = 0; i < this.rateJson.length; i++) {
  6419. if (this.rateJson[i].value == "") {
  6420. a = 2;
  6421. break;
  6422. }
  6423. }
  6424. if (a == 2) {
  6425. this.$message.error("请把评价信息填写完整");
  6426. return;
  6427. }
  6428. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6429. this.taskCount
  6430. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  6431. this.dialogVisibleRate = false;
  6432. if (
  6433. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6434. .toolChoose[this.toolIndex].tool != 40
  6435. ) {
  6436. this.addTools(40, this.taskCount, this.toolIndex);
  6437. }
  6438. },
  6439. addSelectAnswer() {
  6440. if (this.selectJson.url == "") {
  6441. this.$message.error("请上传题目");
  6442. return;
  6443. }
  6444. if (!this.selectJson.select.length) {
  6445. this.$message.error("请添加选项");
  6446. return;
  6447. }
  6448. if (!this.selectJson.answer.length) {
  6449. this.$message.error("请设置答案");
  6450. return;
  6451. }
  6452. var a = 1;
  6453. for (var i = 0; i < this.selectJson.answer.length; i++) {
  6454. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  6455. a = 2;
  6456. }
  6457. }
  6458. if (a == 2) {
  6459. this.$message.error("请设置答案");
  6460. return;
  6461. }
  6462. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6463. this.taskCount
  6464. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  6465. this.dialogVisibleSelect = false;
  6466. if (
  6467. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  6468. .toolChoose[this.toolIndex].tool != 41
  6469. ) {
  6470. this.addTools(41, this.taskCount, this.toolIndex);
  6471. }
  6472. },
  6473. nextSelectSteps() {
  6474. if (this.selectJson.url == "") {
  6475. this.$message.error("请上传题目");
  6476. return;
  6477. }
  6478. if (!this.selectJson.select.length) {
  6479. this.$message.error("请添加选项");
  6480. return;
  6481. }
  6482. var a = 1;
  6483. for (var i = 0; i < this.selectJson.select.length; i++) {
  6484. if (!this.selectJson.select[i]) {
  6485. a = 2;
  6486. }
  6487. }
  6488. if (a == 2) {
  6489. this.$message.error("添加的选项不能为空");
  6490. return;
  6491. }
  6492. this.selectSteps++;
  6493. },
  6494. selectCourseDetail() {
  6495. if (this.cid == "" || this.cid == undefined) {
  6496. console.log("这是新增课程");
  6497. this.selectAllType();
  6498. } else {
  6499. this.cidType = 1;
  6500. let params = {
  6501. cid: this.cid,
  6502. };
  6503. this.ajax
  6504. .get(this.$store.state.api + "select_course_detail", params)
  6505. .then((res) => {
  6506. this.loading = true;
  6507. this.unitJson = JSON.parse(res.data[0][0].chapters);
  6508. for (var j = 0; j < this.unitJson.length; j++) {
  6509. for (
  6510. var k = 0;
  6511. k < this.unitJson[j].chapterInfo[0].taskJson.length;
  6512. k++
  6513. ) {
  6514. this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose = this
  6515. .unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  6516. ? this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  6517. : [];
  6518. let _chapterData = [];
  6519. for (
  6520. var c = 0;
  6521. c <
  6522. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData
  6523. .length;
  6524. c++
  6525. ) {
  6526. if (
  6527. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  6528. ) {
  6529. _chapterData.push(
  6530. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  6531. );
  6532. }
  6533. }
  6534. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData =
  6535. _chapterData;
  6536. }
  6537. }
  6538. this.$forceUpdate();
  6539. this.courseName = res.data[0][0].title;
  6540. this.courseText = res.data[0][0].brief;
  6541. this.evalua = res.data[0][0].evaId;
  6542. this.cover = JSON.parse(res.data[0][0].cover);
  6543. this.noneBtnImg = this.cover.length >= 1;
  6544. // this.checkboxList =
  6545. // res.data[0][0].course_student.length > 0
  6546. // ? JSON.parse(res.data[0][0].course_student)
  6547. // : [];
  6548. this.checkboxList2 = res.data[0][0].juri
  6549. ? res.data[0][0].juri.split(",")
  6550. : [];
  6551. this.inviteCode = [];
  6552. for (var i = 0; i < res.data[2].length; i++) {
  6553. this.inviteCode.push({
  6554. cid: res.data[2][i].classid,
  6555. ic: res.data[2][i].code,
  6556. });
  6557. }
  6558. this.checkboxList3 = res.data[0][0].course_teacher
  6559. ? res.data[0][0].course_teacher.split(",")
  6560. : [];
  6561. // this.isTeacherSee =
  6562. // res.data[0][0].is_teacher_look == 0 ? true : false;
  6563. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  6564. this.myWord = res.data[0][0].template;
  6565. this.templateC.id = "123";
  6566. this.courseUserid = res.data[0][0].userid;
  6567. // if(this.courseUserid == this.userid){
  6568. // this.InviteChange(this.checkboxList2)
  6569. // }
  6570. this.nbOrder = res.data[0][0].ordernumber;
  6571. this.courseTypeId = [];
  6572. for (var i = 0; i < res.data[1].length; i++) {
  6573. this.courseTypeId.push(res.data[1][i].typeid);
  6574. }
  6575. console.log(this.courseTypeId);
  6576. // if (this.timer) clearInterval(this.timer);
  6577. if (this.timer) clearTimeout(this.timer);
  6578. this.timer = null;
  6579. // this.timer = setInterval(() => {
  6580. this.seleteCourseUpdate();
  6581. this.setMan();
  6582. this.selectAllType();
  6583. // }, 5000);
  6584. this.$forceUpdate();
  6585. setTimeout(() => {
  6586. this.checkEva(this.evalua);
  6587. }, 0);
  6588. })
  6589. .catch((err) => {
  6590. console.error(err);
  6591. });
  6592. }
  6593. },
  6594. seleteCourseUpdate() {
  6595. let params = {
  6596. cid: this.cid,
  6597. };
  6598. this.ajax
  6599. .get(this.$store.state.api + "select_course_detail", params)
  6600. .then((res) => {
  6601. // console.log(this.unitJson);
  6602. let unitJson = JSON.parse(res.data[0][0].chapters);
  6603. this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  6604. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  6605. let _unitJson = [];
  6606. let _chapAarry = [];
  6607. let _unitIndex = JSON.parse(JSON.stringify(this.unitIndex));
  6608. let _unitIndex2 = JSON.parse(JSON.stringify(this.unitIndex));
  6609. let index = 1;
  6610. let chapindex;
  6611. if (_unitJson2.length > unitJson.length) {
  6612. for (let c = 0; c < _unitJson2.length; c++) {
  6613. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  6614. }
  6615. for (let j = 0; j < unitJson.length; j++) {
  6616. let count = 0;
  6617. for (let k = 0; k < _unitJson2.length; k++) {
  6618. if (
  6619. unitJson[j].chapterInfo[0].chapterid ==
  6620. _unitJson2[k].chapterInfo[0].chapterid
  6621. ) {
  6622. count++;
  6623. _chapAarry.splice(
  6624. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  6625. 1
  6626. );
  6627. _unitJson.push(unitJson[j]);
  6628. break;
  6629. }
  6630. }
  6631. // if(count === 0){
  6632. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  6633. // }
  6634. }
  6635. for (let k = 0; k < _unitJson2.length; k++) {
  6636. if (_unitJson2[k].isUpdate == 1) {
  6637. _chapAarry.splice(
  6638. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  6639. 1
  6640. );
  6641. _unitJson.push(_unitJson2[k]);
  6642. }
  6643. }
  6644. console.log(_chapAarry);
  6645. for (let d = 0; d < _unitJson2.length; d++) {
  6646. if (
  6647. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  6648. ) {
  6649. if (_unitIndex == d) {
  6650. index = 2;
  6651. }
  6652. chapindex = d;
  6653. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  6654. }
  6655. }
  6656. } else {
  6657. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  6658. }
  6659. for (let i = 0; i < unitJson.length; i++) {
  6660. if (
  6661. (i < _unitJson.length - 1 || i == _unitJson.length - 1) &&
  6662. _unitJson[i].chapterInfo[0].chapterid !=
  6663. unitJson[i].chapterInfo[0].chapterid
  6664. ) {
  6665. if (i == _unitJson.length - 1) {
  6666. // this.unitIndex++
  6667. _unitIndex2++;
  6668. }
  6669. _unitJson.splice(i, 0, unitJson[i]);
  6670. } else if (i > _unitJson.length - 1) {
  6671. _unitJson.push(unitJson[i]);
  6672. } else if (
  6673. _unitJson[i].chapterInfo[0].chapterid ==
  6674. unitJson[i].chapterInfo[0].chapterid
  6675. ) {
  6676. _unitJson[i] = unitJson[i];
  6677. }
  6678. // if (i == _unitIndex) {
  6679. // continue;
  6680. // } else
  6681. }
  6682. if (_chapAarry.length && index != 2) {
  6683. if (chapindex < _unitIndex) {
  6684. this.isDelete = 2;
  6685. // this.unitIndex--;
  6686. _unitIndex2--;
  6687. } else if (
  6688. _unitJson2[_unitIndex].chapterInfo[0].chapterid !=
  6689. _unitJson[_unitIndex].chapterInfo[0].chapterid
  6690. ) {
  6691. this.isDelete = 2;
  6692. for (let n = 0; n < _unitJson.length; n++) {
  6693. if (
  6694. _unitJson2[_unitIndex].chapterInfo[0].chapterid ==
  6695. _unitJson[n].chapterInfo[0].chapterid
  6696. ) {
  6697. // this.unitIndex = n;
  6698. _unitIndex2 = n;
  6699. _unitJson[n] = _unitJson2[_unitIndex];
  6700. break;
  6701. }
  6702. }
  6703. }
  6704. } else if (index != 2) {
  6705. // _unitJson[this.unitIndex] = _unitJson2[_unitIndex];
  6706. _unitJson2[_unitIndex];
  6707. for (
  6708. var ci = 0;
  6709. ci < _unitJson2[_unitIndex].chapterInfo[0].taskJson.length;
  6710. ci++
  6711. ) {
  6712. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose =
  6713. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose
  6714. ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  6715. .toolChoose
  6716. : [];
  6717. let _chapterData = [];
  6718. for (
  6719. var c = 0;
  6720. c <
  6721. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData
  6722. .length;
  6723. c++
  6724. ) {
  6725. if (
  6726. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  6727. .chapterData[c]
  6728. ) {
  6729. _chapterData.push(
  6730. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  6731. .chapterData[c]
  6732. );
  6733. }
  6734. }
  6735. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
  6736. _chapterData;
  6737. }
  6738. _unitJson[_unitIndex2] = _unitJson2[_unitIndex];
  6739. }
  6740. if (index == 1) {
  6741. this.unitJson = _unitJson;
  6742. this.$forceUpdate();
  6743. setTimeout(() => {
  6744. if (this.unitIndex != _unitIndex2) {
  6745. this.isDelete = 2;
  6746. this.unitIndex = _unitIndex2;
  6747. }
  6748. }, 0);
  6749. this.timer = setTimeout(() => {
  6750. this.seleteCourseUpdate();
  6751. }, 1000);
  6752. } else if (index == 2) {
  6753. let _this = this;
  6754. _this
  6755. .$confirm(
  6756. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  6757. "提示",
  6758. {
  6759. confirmButtonText: "需要",
  6760. cancelButtonText: "取消",
  6761. type: "warning",
  6762. }
  6763. )
  6764. .then(() => {
  6765. if (_this.time()) {
  6766. _this.restoreWork(
  6767. _chapAarry[0],
  6768. _unitJson,
  6769. chapindex,
  6770. _unitJson2,
  6771. _unitIndex2
  6772. );
  6773. }
  6774. })
  6775. .catch(() => {
  6776. _this.unitJson = _unitJson;
  6777. _this.$forceUpdate();
  6778. setTimeout(() => {
  6779. if (this.unitIndex != _unitIndex2) {
  6780. this.isDelete = 2;
  6781. this.unitIndex = _unitIndex2;
  6782. }
  6783. }, 0);
  6784. _this.timer = setTimeout(() => {
  6785. _this.seleteCourseUpdate();
  6786. }, 1000);
  6787. });
  6788. }
  6789. })
  6790. .catch((err) => {
  6791. console.error(err);
  6792. });
  6793. },
  6794. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  6795. let params = [
  6796. {
  6797. cid: this.cid,
  6798. chapters: JSON.stringify(this.unitJson),
  6799. uid: this.userid,
  6800. chapid: chapid,
  6801. },
  6802. ];
  6803. this.ajax
  6804. .post(this.$store.state.api + "restoreWork", params)
  6805. .then((res) => {
  6806. this.$message({
  6807. message: "恢复成功",
  6808. type: "success",
  6809. });
  6810. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  6811. this.unitJson = unitJson;
  6812. this.$forceUpdate();
  6813. setTimeout(() => {
  6814. if (this.unitIndex != unitIndex2) {
  6815. this.isDelete = 2;
  6816. this.unitIndex = unitIndex2;
  6817. }
  6818. }, 0);
  6819. this.timer = setTimeout(() => {
  6820. this.seleteCourseUpdate();
  6821. }, 1000);
  6822. })
  6823. .catch((err) => {
  6824. this.$message.error("网络不佳");
  6825. console.error(err);
  6826. });
  6827. },
  6828. getTypeName() {
  6829. console.log(this.courseTypeId);
  6830. this.$forceUpdate();
  6831. },
  6832. selectAllType() {
  6833. let params = {
  6834. org: this.org && this.org != "" ? this.org : "",
  6835. oid: this.oid && this.oid != "" ? this.oid : "",
  6836. };
  6837. this.ajax
  6838. .get(this.$store.state.api + "selectAllType", params)
  6839. .then((res) => {
  6840. this.CourseType = res.data;
  6841. this.CourseType2 = [
  6842. { name: "智见课程", id: [] },
  6843. { name: "智行课程", id: [] },
  6844. { name: "智创课程", id: [] },
  6845. ];
  6846. for (var cti = 0; cti < res.data[0].length; cti++) {
  6847. if (
  6848. res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" ||
  6849. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"
  6850. ) {
  6851. this.CourseType2[1].id.push(res.data[0][cti].id);
  6852. this.CourseType2[0].id.push(res.data[0][cti].id);
  6853. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  6854. this.CourseType2[2].id.push(res.data[0][cti].id);
  6855. }
  6856. if(res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5"){
  6857. res.data[0][cti].name = "年级";
  6858. }else if(res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"){
  6859. res.data[0][cti].name = "学科";
  6860. }else if(res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5"){
  6861. res.data[0][cti].name = "主题";
  6862. }
  6863. }
  6864. let _courseTypeId = [];
  6865. for (var i = 0; i < res.data[0].length; i++) {
  6866. if (!this.cid) {
  6867. this.courseTypeId[res.data[0][i].id] = [];
  6868. }
  6869. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  6870. // }
  6871. this.CourseTypeJson[res.data[0][i].id] = [];
  6872. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  6873. if (res.data[0][i].name == "栏目") {
  6874. this.CourseType[0][i].name = "主题";
  6875. }
  6876. }
  6877. if (res.data[2].length == 0 && res.data[3].length == 0) {
  6878. for (var j = 0; j < res.data[1].length; j++) {
  6879. if (
  6880. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  6881. _courseTypeId.indexOf(res.data[1][j].id) == -1
  6882. ) {
  6883. _courseTypeId.push(res.data[1][j].id);
  6884. }
  6885. if (res.data[0][i].id == res.data[1][j].pid) {
  6886. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  6887. }
  6888. }
  6889. } else {
  6890. if (res.data[2].length > 0) {
  6891. for (var j = 0; j < res.data[2].length; j++) {
  6892. if (
  6893. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  6894. _courseTypeId.indexOf(res.data[2][j].id) == -1
  6895. ) {
  6896. _courseTypeId.push(res.data[2][j].id);
  6897. }
  6898. if (res.data[0][i].id == res.data[2][j].pid) {
  6899. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  6900. }
  6901. }
  6902. }
  6903. if (res.data[3].length > 0) {
  6904. for (var j = 0; j < res.data[3].length; j++) {
  6905. if (
  6906. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  6907. _courseTypeId.indexOf(res.data[3][j].id) == -1
  6908. ) {
  6909. _courseTypeId.push(res.data[3][j].id);
  6910. }
  6911. if (res.data[0][i].id == res.data[3][j].pid) {
  6912. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  6913. }
  6914. }
  6915. }
  6916. }
  6917. }
  6918. this.courseTypeId = _courseTypeId;
  6919. })
  6920. .catch((err) => {
  6921. console.error(err);
  6922. });
  6923. },
  6924. selectType() {
  6925. this.ajax
  6926. .get(this.$store.state.api + "selectType")
  6927. .then((res) => {
  6928. this.CourseType = res.data;
  6929. for (var i = 0; i < res.data[0].length; i++) {
  6930. if (!this.cid) {
  6931. this.courseTypeId[res.data[0][i].id] = "";
  6932. }
  6933. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  6934. if (res.data[0][i].name == "栏目") {
  6935. this.CourseType[0][i].name = "主题";
  6936. }
  6937. }
  6938. for (var j = 0; j < res.data[1].length; j++) {
  6939. if (res.data[0][i].id == res.data[1][j].pid) {
  6940. if (!this.CourseTypeJson[res.data[0][i].id]) {
  6941. this.CourseTypeJson[res.data[0][i].id] = [];
  6942. }
  6943. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  6944. }
  6945. }
  6946. }
  6947. this.selectTypeByOid();
  6948. this.selectTypeByOrg();
  6949. })
  6950. .catch((err) => {
  6951. console.error(err);
  6952. });
  6953. },
  6954. selectTypeByOid() {
  6955. let params = {
  6956. oid: this.oid,
  6957. };
  6958. this.ajax
  6959. .get(this.$store.state.api + "selectTypeByOid", params)
  6960. .then((res) => {
  6961. for (var i = 0; i < res.data[0].length; i++) {
  6962. for (var j = 0; j < res.data[1].length; j++) {
  6963. if (res.data[0][i].id == res.data[1][j].pid) {
  6964. if (!this.CourseTypeJson[res.data[0][i].id]) {
  6965. this.CourseTypeJson[res.data[0][i].id] = [];
  6966. }
  6967. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  6968. }
  6969. }
  6970. }
  6971. })
  6972. .catch((err) => {
  6973. console.error(err);
  6974. });
  6975. },
  6976. selectTypeByOrg() {
  6977. let params = {
  6978. oid: this.org,
  6979. };
  6980. this.ajax
  6981. .get(this.$store.state.api + "selectTypeByOrg", params)
  6982. .then((res) => {
  6983. for (var i = 0; i < res.data[0].length; i++) {
  6984. for (var j = 0; j < res.data[1].length; j++) {
  6985. if (res.data[0][i].id == res.data[1][j].pid) {
  6986. if (!this.CourseTypeJson[res.data[0][i].id]) {
  6987. this.CourseTypeJson[res.data[0][i].id] = [];
  6988. }
  6989. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  6990. }
  6991. }
  6992. }
  6993. this.$forceUpdate();
  6994. })
  6995. .catch((err) => {
  6996. console.error(err);
  6997. });
  6998. },
  6999. OtherMb(type) {
  7000. this.typeMode = type;
  7001. setTimeout(() => {
  7002. this.checkEva(this.checkId);
  7003. }, 0);
  7004. },
  7005. openMember() {
  7006. this.searchTN = "";
  7007. this.getTeacher();
  7008. this.dialogVisibleMember = true;
  7009. },
  7010. checkEva(id, type) {
  7011. this.dialogVisiblemb = false;
  7012. this.selectEva();
  7013. if (this.evalua != id && type == 2) {
  7014. this.$message.success("导入成功");
  7015. }
  7016. this.evalua = id;
  7017. this.checkId = id;
  7018. if (this.evalua != "") {
  7019. for (var i = 0; i < this.evaJuri.length; i++) {
  7020. if (this.evalua == this.evaJuri[i].id) {
  7021. this.eTitle = this.evaJuri[i].title;
  7022. this.eJson = JSON.parse(this.evaJuri[i].content);
  7023. }
  7024. }
  7025. this.data.data = [];
  7026. this.$forceUpdate();
  7027. setTimeout(() => {
  7028. this.setMindData();
  7029. }, 500);
  7030. }
  7031. },
  7032. deleteEva() {
  7033. let _this = this;
  7034. if (_this.evalua == "") {
  7035. this.$message.warning("内容已经清空了,请勿重复清空");
  7036. return;
  7037. }
  7038. _this
  7039. .$confirm("确定删除此目标吗?", "提示", {
  7040. confirmButtonText: "确定",
  7041. cancelButtonText: "取消",
  7042. type: "warning",
  7043. })
  7044. .then(() => {
  7045. _this.evalua = "";
  7046. _this.checkId = "";
  7047. _this.eTitle = "";
  7048. let _unitJson = _this.unitJson;
  7049. for (var i = 0; i < _unitJson.length; i++) {
  7050. let _task = _unitJson[i].chapterInfo[0].taskJson;
  7051. for (var j = 0; j < _task.length; j++) {
  7052. let _eList = _task[j].eList;
  7053. for (var k = 0; k < _eList.length; k++) {
  7054. delete _eList[k].target;
  7055. }
  7056. }
  7057. }
  7058. _this.$forceUpdate();
  7059. if (_this.cid) {
  7060. _this.updateWork();
  7061. }
  7062. })
  7063. .catch(() => {
  7064. return;
  7065. });
  7066. },
  7067. selectEva() {
  7068. let params = {
  7069. oid: this.oid,
  7070. };
  7071. this.ajax
  7072. .get(this.$store.state.api + "selectAllEvaluation", params)
  7073. .then((res) => {
  7074. this.evaJuri = res.data[0];
  7075. })
  7076. .catch((err) => {
  7077. console.error(err);
  7078. });
  7079. },
  7080. setMindData() {
  7081. let targetArray = [];
  7082. this.data.data = [];
  7083. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  7084. let _eJson = Object.keys(this.eJson);
  7085. let _e = this.eJson;
  7086. for (let i = 0; i < _eJson.length; i++) {
  7087. let element = _e[_eJson[i]];
  7088. this.data.data.push({
  7089. id: element.id,
  7090. parentid: "root",
  7091. topic: element.name,
  7092. });
  7093. // targetArray.push({
  7094. // id: element.id,
  7095. // parentid: "root",
  7096. // name: element.name,
  7097. // });
  7098. targetArray.push({
  7099. value: element.name,
  7100. label: element.name,
  7101. children: [],
  7102. });
  7103. let _eJsonc = Object.keys(element.child);
  7104. let _e2 = element.child;
  7105. for (let j = 0; j < _eJsonc.length; j++) {
  7106. let _ec = _e2[_eJsonc[j]];
  7107. this.data.data.push({
  7108. id: _ec.id,
  7109. parentid: element.id,
  7110. topic: _ec.name,
  7111. });
  7112. // targetArray.push({
  7113. // id: _ec.id,
  7114. // parentid: element.id,
  7115. // name: _ec.name,
  7116. // });
  7117. targetArray[i].children.push({
  7118. value: _ec.name,
  7119. label: _ec.name,
  7120. children: [],
  7121. });
  7122. let _eJsonz = Object.keys(_ec.child);
  7123. let _e3 = _ec.child;
  7124. for (let z = 0; z < _eJsonz.length; z++) {
  7125. let _ez = _e3[_eJsonz[z]];
  7126. this.data.data.push({
  7127. id: _ez.id,
  7128. parentid: _ec.id,
  7129. topic: _ez.name,
  7130. });
  7131. // targetArray.push({
  7132. // id: _ez.id,
  7133. // parentid: _ec.id,
  7134. // name: _ez.name,
  7135. // });
  7136. targetArray[i].children[j].children.push({
  7137. value: _ez.name,
  7138. label: _ez.name,
  7139. });
  7140. }
  7141. }
  7142. }
  7143. this.targetArray = targetArray;
  7144. this.$forceUpdate();
  7145. },
  7146. /*添加评价 */
  7147. addEList(index, tIndex) {
  7148. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  7149. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  7150. value: "",
  7151. detail: "",
  7152. score: 5,
  7153. })
  7154. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  7155. { value: "", detail: "", score: 5 },
  7156. ]);
  7157. this.$forceUpdate();
  7158. },
  7159. forceUpdate() {
  7160. this.$forceUpdate();
  7161. },
  7162. deletEList(index, tIndex, eIndex) {
  7163. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  7164. eIndex,
  7165. 1
  7166. );
  7167. this.$forceUpdate();
  7168. },
  7169. getChoosePic(t) {
  7170. this.chooseType = t;
  7171. this.getAllBanner();
  7172. },
  7173. getAllBanner() {
  7174. this.sysPicVisible = true;
  7175. let params = {
  7176. t: this.chooseType,
  7177. };
  7178. this.ajax
  7179. .get(this.$store.state.api + "selectAllBanner", params)
  7180. .then((res) => {
  7181. this.sysPic = res.data[0];
  7182. })
  7183. .catch((err) => {
  7184. console.error(err);
  7185. });
  7186. },
  7187. // getClass() {
  7188. // let params = {
  7189. // oid: this.oid,
  7190. // };
  7191. // this.ajax
  7192. // .get(this.$store.state.api + "selectClassBySchool", params)
  7193. // .then((res) => {
  7194. // this.classJuri = res.data[0];
  7195. // })
  7196. // .catch((err) => {
  7197. // console.error(err);
  7198. // });
  7199. // },
  7200. deleteSysPic() {
  7201. this.cover = [];
  7202. this.isSysPic = false;
  7203. },
  7204. deleteSelectPic() {
  7205. this.selectJson.url = "";
  7206. },
  7207. setEListStar() {
  7208. this.$forceUpdate();
  7209. },
  7210. deletRateList(i) {
  7211. this.rateJson.splice(i, 1);
  7212. },
  7213. addRateList() {
  7214. this.rateJson.push({ detail: "", score: 5, value: "" });
  7215. },
  7216. addSt() {
  7217. this.sentenceList.push({
  7218. sentenceTitle: "",
  7219. addSentence: [],
  7220. rightAnswer: [],
  7221. });
  7222. },
  7223. addSen(i) {
  7224. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  7225. // this.isPushTitleList.push(this.sentenceTitle);
  7226. this.sentenceList[i].sentenceTitle = "";
  7227. },
  7228. setRightAnswer(s, i, j) {
  7229. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  7230. this.sentenceList[i].rightAnswer.push(s);
  7231. }
  7232. },
  7233. returnCard(r, i, j) {
  7234. this.sentenceList[i].rightAnswer.splice(j, 1);
  7235. },
  7236. addSentenceTool() {
  7237. for (var i = 0; i < this.sentenceList.length; i++) {
  7238. if (this.sentenceList[i].rightAnswer.length == 0) {
  7239. this.$message.error("请将信息填写完整!");
  7240. return;
  7241. }
  7242. if (
  7243. this.sentenceList[i].addSentence.length !=
  7244. this.sentenceList[i].rightAnswer.length
  7245. ) {
  7246. this.$message.error("请将信息填写完整!");
  7247. return;
  7248. }
  7249. }
  7250. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7251. this.taskCount
  7252. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  7253. this.sentenceList = [
  7254. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  7255. ];
  7256. this.dialogVisibleSentence = false;
  7257. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7258. // itemTaskIndex
  7259. // ].toolChoose[toolIndex].tool = [];
  7260. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7261. // itemTaskIndex
  7262. // ].toolChoose[toolIndex].tool.push(i);
  7263. if (
  7264. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7265. .toolChoose[this.toolIndex].tool != 47
  7266. ) {
  7267. this.addTools(47, this.taskCount, this.toolIndex);
  7268. }
  7269. },
  7270. addTableJson() {
  7271. // if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  7272. // this.$message.error("请将信息填写完整!");
  7273. // return;
  7274. // }
  7275. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7276. this.taskCount
  7277. ].toolChoose[this.toolIndex].tableJson = this.tableJson;
  7278. // this.tableJson = [{ text: "" }];
  7279. // this.dialogVisibleTable = false;
  7280. this.$message.success("上传成功");
  7281. if (
  7282. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7283. .toolChoose[this.toolIndex].tool != 48
  7284. ) {
  7285. this.addTools(48, this.taskCount, this.toolIndex);
  7286. }
  7287. },
  7288. addWordJson() {
  7289. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7290. this.taskCount
  7291. ].toolChoose[this.toolIndex].wordJson = this.wordJson;
  7292. // this.wordJson = [{ text: "" }];
  7293. // this.dialogVisibleWord = false;
  7294. this.$message.success("上传成功");
  7295. if (
  7296. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7297. .toolChoose[this.toolIndex].tool != 52
  7298. ) {
  7299. this.addTools(52, this.taskCount, this.toolIndex);
  7300. }
  7301. },
  7302. addMoreUpload() {
  7303. if (this.uploadJson.length == 0) {
  7304. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7305. this.taskCount
  7306. ].toolChoose[this.toolIndex].uploadJson = [];
  7307. } else {
  7308. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7309. this.taskCount
  7310. ].toolChoose[this.toolIndex].uploadJson = this.uploadJson;
  7311. }
  7312. this.uploadJson = [];
  7313. this.dialogVisibleMoreUpload = false;
  7314. if (
  7315. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7316. .toolChoose[this.toolIndex].tool != 50
  7317. ) {
  7318. this.addTools(50, this.taskCount, this.toolIndex);
  7319. }
  7320. },
  7321. addPreTime() {
  7322. if (this.preTime == 0) {
  7323. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7324. this.taskCount
  7325. ].toolChoose[this.toolIndex].preTime = 0;
  7326. } else {
  7327. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7328. this.taskCount
  7329. ].toolChoose[this.toolIndex].preTime = this.preTime;
  7330. }
  7331. this.preTime = 0;
  7332. this.dialogVisiblePreTime = false;
  7333. if (
  7334. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7335. .toolChoose[this.toolIndex].tool != 10
  7336. ) {
  7337. this.addTools(10, this.taskCount, this.toolIndex);
  7338. }
  7339. },
  7340. goToTask(i) {
  7341. document.getElementsByClassName("rightBox")[0].scrollTop =
  7342. document.getElementsByClassName("taskBorder")[i].offsetTop - 100;
  7343. this.isClickColor = i + 1;
  7344. },
  7345. taskMove(type, index) {
  7346. this
  7347. .$confirm("切换任务顺序将删除所有工具的提交成果,是否继续此操作?", "提示", {
  7348. confirmButtonText: "确定",
  7349. cancelButtonText: "取消",
  7350. type: "warning",
  7351. })
  7352. .then(() => {
  7353. if (type == 1) {
  7354. if (index > 0) {
  7355. let a = JSON.parse(
  7356. JSON.stringify(
  7357. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1]
  7358. )
  7359. );
  7360. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  7361. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  7362. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  7363. }
  7364. } else {
  7365. if (
  7366. index <
  7367. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  7368. ) {
  7369. let a = JSON.parse(
  7370. JSON.stringify(
  7371. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1]
  7372. )
  7373. );
  7374. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  7375. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  7376. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  7377. }
  7378. }
  7379. this.$forceUpdate();
  7380. })
  7381. .catch(() => {
  7382. return;
  7383. })
  7384. },
  7385. addGroup(i) {
  7386. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  7387. this.groupJson.group.push({
  7388. name: "第" + (this.groupJson.group.length + 1) + "组",
  7389. });
  7390. },
  7391. deleteGroup(i) {
  7392. this.groupJson.group.splice(i, 1);
  7393. },
  7394. addGroupJson() {
  7395. for (var i = 0; i < this.groupJson.group.length; i++) {
  7396. if (!this.groupJson.group[i].name) {
  7397. this.$message.error("请将信息填写完整!");
  7398. return;
  7399. }
  7400. }
  7401. if (!this.groupJson.number) {
  7402. this.$message.error("请将信息填写完整!");
  7403. return;
  7404. }
  7405. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7406. this.taskCount
  7407. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  7408. JSON.stringify(this.groupJson)
  7409. );
  7410. this.dialogVisibleGroup = false;
  7411. this.groupJson = {};
  7412. if (
  7413. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7414. .toolChoose[this.toolIndex].tool != 49
  7415. ) {
  7416. this.addTools(49, this.taskCount, this.toolIndex);
  7417. }
  7418. },
  7419. updateTime(preTime) {
  7420. this.preTime = preTime;
  7421. },
  7422. InviteChange(val) {
  7423. console.log(val);
  7424. return;
  7425. let array = JSON.parse(JSON.stringify(val));
  7426. this.inviteCode = this.inviteCode.filter((el) => {
  7427. if (val.indexOf(el.cid) != -1) {
  7428. array.splice(array.indexOf(el.cid), 1);
  7429. return el;
  7430. }
  7431. });
  7432. for (var i = 0; i < array.length; i++) {
  7433. this.getInviteCode(array[i]);
  7434. }
  7435. },
  7436. async getInviteCode(cid) {
  7437. let code = this.randomNumber();
  7438. let params = {
  7439. code: code,
  7440. oid: this.oid,
  7441. };
  7442. let type = 1;
  7443. for (var i = 0; i < this.inviteCode.length; i++) {
  7444. if (this.inviteCode[i].cid != cid && code == this.inviteCode[i].ic) {
  7445. type = 2;
  7446. }
  7447. }
  7448. if (type == 2) {
  7449. this.getInviteCode(cid);
  7450. return;
  7451. }
  7452. const res = await this.ajax.get(
  7453. this.$store.state.api + "selectInviteCode2",
  7454. params
  7455. );
  7456. if (
  7457. res.data.length &&
  7458. res.data[0].length &&
  7459. res.data[0][0].courseId != this.cid
  7460. ) {
  7461. this.getInviteCode(cid);
  7462. return;
  7463. }
  7464. let array = [];
  7465. for (var i = 0; i < this.inviteCode.length; i++) {
  7466. array.push(this.inviteCode[i].cid);
  7467. }
  7468. if (array.indexOf(cid) != -1) {
  7469. this.inviteCode[array.indexOf(cid)].ic = code;
  7470. } else {
  7471. this.inviteCode.push({ cid: cid, ic: code });
  7472. }
  7473. },
  7474. OpenInviteD(cid) {
  7475. let array = [];
  7476. this.icode = "";
  7477. for (var i = 0; i < this.inviteCode.length; i++) {
  7478. array.push(this.inviteCode[i].cid);
  7479. }
  7480. if (array.indexOf(cid) != -1) {
  7481. this.icode = this.inviteCode[array.indexOf(cid)].ic;
  7482. }
  7483. this.inviteId = cid;
  7484. this.dialogVisibleInvite = true;
  7485. },
  7486. addInvite() {
  7487. let reg = /^[A-Za-z0-9]{4,}$/;
  7488. if (!reg.test(this.icode)) {
  7489. this.$message.error("请输入至少四位数字或英文组合的随机码");
  7490. return;
  7491. }
  7492. let type = 1;
  7493. for (var i = 0; i < this.inviteCode.length; i++) {
  7494. if (
  7495. this.inviteCode[i].cid != this.inviteId &&
  7496. this.icode == this.inviteCode[i].ic
  7497. ) {
  7498. type = 2;
  7499. }
  7500. }
  7501. if (type == 2) {
  7502. this.$message.error("已有此随机码,不能重复");
  7503. return;
  7504. }
  7505. let params = {
  7506. code: this.icode,
  7507. oid: this.oid,
  7508. };
  7509. this.ajax
  7510. .get(this.$store.state.api + "selectInviteCode", params)
  7511. .then((res) => {
  7512. if (
  7513. res.data.length &&
  7514. res.data[0].length &&
  7515. res.data[0][0].courseId != this.cid
  7516. ) {
  7517. this.$message.error("已有此随机码,不能重复");
  7518. return;
  7519. }
  7520. let array = [];
  7521. for (var i = 0; i < this.inviteCode.length; i++) {
  7522. array.push(this.inviteCode[i].cid);
  7523. }
  7524. if (array.indexOf(this.inviteId) != -1) {
  7525. this.inviteCode[array.indexOf(this.inviteId)].ic = this.icode;
  7526. } else {
  7527. this.inviteCode.push({ cid: this.inviteId, ic: this.icode });
  7528. }
  7529. this.icode = "";
  7530. this.dialogVisibleInvite = false;
  7531. })
  7532. .catch((err) => {
  7533. console.error(err);
  7534. });
  7535. },
  7536. randomNumber() {
  7537. // 随机生成两位数
  7538. // let num = Math.floor(Math.random() * 900) + 100;
  7539. // 生成 0 到 99 之间的随机整数
  7540. const randomNumber = Math.floor(Math.random() * 100);
  7541. // 如果随机数小于 10,补上前导零
  7542. const num =
  7543. randomNumber < 10 ? "0" + randomNumber : randomNumber.toString();
  7544. // 随机生成两个大写字母
  7545. let letters = "";
  7546. let chars2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  7547. for (let i = 0; i < 3; i++) {
  7548. letters += chars2.charAt(Math.floor(Math.random() * chars2.length));
  7549. }
  7550. // 随机生成两位数字和字母的组合
  7551. let mix = "";
  7552. let chars =
  7553. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  7554. for (let i = 0; i < 3; i++) {
  7555. let char = chars.charAt(Math.floor(Math.random() * chars.length));
  7556. mix += char;
  7557. }
  7558. // 随机选择一种类型
  7559. let type = Math.floor(Math.random() * 3);
  7560. return num;
  7561. // 根据类型输出结果
  7562. switch (type) {
  7563. case 0:
  7564. console.log(num); // 输出两位数
  7565. return num;
  7566. case 1:
  7567. console.log(letters); // 输出两个大写字母
  7568. return letters;
  7569. case 2:
  7570. console.log(mix); // 输出两位数字和字母的组合
  7571. return mix;
  7572. }
  7573. },
  7574. },
  7575. beforeDestroy() {
  7576. clearTimeout(this.timer);
  7577. this.timer = null;
  7578. clearInterval(this.timer2);
  7579. this.timer2 = null;
  7580. },
  7581. beforeRouteLeave(to, from, next) {
  7582. clearTimeout(this.timer);
  7583. this.timer = null;
  7584. clearInterval(this.timer2);
  7585. this.timer2 = null;
  7586. next();
  7587. },
  7588. created() {
  7589. this.getStudent();
  7590. this.getTeacher();
  7591. this.getClass();
  7592. this.getTemplate();
  7593. // this.selectType();
  7594. this.selectEva();
  7595. this.loading = false;
  7596. this.timer2 = setInterval(() => {
  7597. this.selectEva();
  7598. }, 5000);
  7599. setTimeout(() => {
  7600. this.selectCourseDetail();
  7601. }, 500);
  7602. },
  7603. };
  7604. </script>
  7605. <style scoped>
  7606. @media screen and (max-width: 1280px) {
  7607. .mbCss {
  7608. flex-direction: column !important;
  7609. }
  7610. .pjCss {
  7611. width: 100% !important;
  7612. }
  7613. .evaCss {
  7614. width: 100% !important;
  7615. }
  7616. }
  7617. .dialog_diy>>>.el-dialog__header {
  7618. background: #3c3c3c !important;
  7619. padding: 15px 20px;
  7620. }
  7621. .dialog_diy>>>.el-dialog__title {
  7622. color: #fff;
  7623. }
  7624. .dialog_diy>>>.el-dialog__headerbtn {
  7625. top: 19px;
  7626. }
  7627. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  7628. color: #fff;
  7629. }
  7630. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  7631. color: #fff;
  7632. }
  7633. .dialog_diy>>>.el-dialog__body,
  7634. .dialog_diy>>>.el-dialog__footer {
  7635. background: #fafafa;
  7636. }
  7637. .dialog_diy3>>>.el-dialog__body,
  7638. .dialog_diy3>>>.el-dialog__footer {
  7639. background: #eee !important;
  7640. }
  7641. .dialog_diy3>>>.el-dialog__body {
  7642. padding: 20px 20px;
  7643. }
  7644. .source_diy>>>.el-dialog {
  7645. height: 100% !important;
  7646. margin: 0 auto !important;
  7647. }
  7648. .source_diy>>>.el-dialog__body {
  7649. height: calc(100% - 185px);
  7650. overflow: auto;
  7651. background: #e6eaf0;
  7652. }
  7653. .source_diy>>>.el-dialog__footer {
  7654. background: #e6eaf0 !important;
  7655. }
  7656. .left {
  7657. border-right: 1px solid rgb(60, 94, 143);
  7658. display: flex;
  7659. flex-direction: column;
  7660. align-items: center;
  7661. min-height: 600px;
  7662. width: 385px;
  7663. height: 80%;
  7664. }
  7665. .tips {
  7666. color: rgb(128, 128, 128);
  7667. font-size: 12px;
  7668. width: 270px;
  7669. margin: 40px;
  7670. }
  7671. .pb_content {
  7672. height: 100% !important;
  7673. /* margin: 0 20px 0 20px; */
  7674. }
  7675. .pb_content_body {
  7676. width: 100% !important;
  7677. height: 100%;
  7678. }
  7679. .info_solid {
  7680. width: 270px;
  7681. height: 30px;
  7682. border-left: 1px solid #bdbdbd;
  7683. margin: 10px 0px 10px 30px;
  7684. }
  7685. .info_steps {
  7686. width: 270px;
  7687. font-size: 0.875rem;
  7688. display: flex;
  7689. align-items: center;
  7690. }
  7691. .info_steps span:nth-child(1) {
  7692. width: 30px;
  7693. height: 30px;
  7694. background: rgba(0, 0, 0, 0.38);
  7695. display: block;
  7696. color: #fff;
  7697. border-radius: 40px;
  7698. text-align: center;
  7699. line-height: 30px;
  7700. }
  7701. .steps_active {
  7702. background: #3d67bc !important;
  7703. }
  7704. .info_steps span:nth-child(2) {
  7705. margin-left: 5px;
  7706. }
  7707. .right {
  7708. height: 100%;
  7709. width: 100%;
  7710. display: flex;
  7711. overflow: hidden;
  7712. }
  7713. .basic_box {
  7714. margin: 0 auto;
  7715. position: relative;
  7716. padding: 0 20px 0 20px;
  7717. }
  7718. .basic_box_success {
  7719. width: 100%;
  7720. min-height: 455px;
  7721. padding: 50px 0;
  7722. position: relative;
  7723. text-align: center;
  7724. border-bottom: 1px solid #bfbfbf;
  7725. box-sizing: border-box;
  7726. display: flex;
  7727. align-items: center;
  7728. flex-direction: column;
  7729. justify-content: center;
  7730. }
  7731. .info_title {
  7732. font-size: 1.5em;
  7733. margin-right: 25px;
  7734. /* margin: 20px 30px 20px 30px; */
  7735. }
  7736. .bInfo_title {
  7737. text-align: left;
  7738. margin: 10px 0;
  7739. }
  7740. .small_title {
  7741. font-size: 14px;
  7742. line-height: 40px;
  7743. }
  7744. .chapter_beizhu {
  7745. font-size: 12px;
  7746. font-weight: bold;
  7747. float: right;
  7748. color: rgb(128, 128, 128);
  7749. margin-top: 5px;
  7750. }
  7751. .chapter_uploadBox1 {
  7752. text-align: left;
  7753. background-color: rgb(242, 242, 242);
  7754. width: 100%;
  7755. height: 67px;
  7756. padding: 0px 15px;
  7757. border-radius: 8px;
  7758. overflow: hidden;
  7759. font-size: 16px;
  7760. box-sizing: border-box;
  7761. position: relative;
  7762. }
  7763. .chapter_add {
  7764. width: 100%;
  7765. height: 32px;
  7766. margin-top: 15px;
  7767. cursor: pointer;
  7768. }
  7769. .chapter_add_l {
  7770. margin-left: 5px;
  7771. width: 30px;
  7772. height: 30px;
  7773. float: left;
  7774. border: 1px solid #aaa;
  7775. color: #aaa;
  7776. border-radius: 50%;
  7777. font-size: 25px;
  7778. text-align: center;
  7779. }
  7780. .chapter_add_r {
  7781. font-size: 18px;
  7782. height: 40px;
  7783. line-height: 30px;
  7784. text-indent: 10px;
  7785. color: #aaa;
  7786. }
  7787. .chapter_add_r span {
  7788. font-size: 12px;
  7789. color: rgb(204, 204, 204);
  7790. }
  7791. .chapter_add_input {
  7792. display: none;
  7793. }
  7794. .line {
  7795. width: 85%;
  7796. margin: 0 auto;
  7797. border-top: 1px solid #e5e5e5;
  7798. margin-top: 20px;
  7799. }
  7800. .info_btnBox {
  7801. width: 100%;
  7802. display: flex;
  7803. justify-content: space-evenly;
  7804. margin: 10px 0 10px 0;
  7805. }
  7806. .info_btn,
  7807. .teacherWord {
  7808. color: #fff;
  7809. background-color: #0f7eff;
  7810. padding: 8px 24px;
  7811. font-size: 0.9375rem;
  7812. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  7813. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  7814. min-width: 64px;
  7815. font-weight: 500;
  7816. border-radius: 4px;
  7817. box-sizing: border-box;
  7818. border: none;
  7819. cursor: pointer;
  7820. }
  7821. .teacherWord {
  7822. width: 105px !important;
  7823. text-align: center !important;
  7824. line-height: 36px !important;
  7825. padding: 0 !important;
  7826. font-size: 14px !important;
  7827. margin: 10px 0 !important;
  7828. }
  7829. .wordTeacher {
  7830. display: flex;
  7831. flex-direction: column;
  7832. width: 20%;
  7833. text-align: center;
  7834. font-size: 14px;
  7835. margin: 30px 30px 0 10px;
  7836. background: #fff;
  7837. position: relative;
  7838. border-radius: 5px;
  7839. padding: 25px 0px;
  7840. }
  7841. .wordPic {
  7842. margin: 0 auto;
  7843. width: 60px;
  7844. height: 60px;
  7845. cursor: pointer;
  7846. }
  7847. .deleteWord {
  7848. width: 22px;
  7849. height: 22px;
  7850. position: absolute;
  7851. right: 5px;
  7852. top: -15px;
  7853. cursor: pointer;
  7854. display: none;
  7855. z-index: 999;
  7856. }
  7857. .wordPic>img,
  7858. .deleteWord>img,
  7859. .addToolImg>img {
  7860. width: 100%;
  7861. height: 100%;
  7862. }
  7863. .info_btn:hover {
  7864. background-color: #4f7cd5 !important;
  7865. }
  7866. .cru_selectBox {
  7867. display: flex;
  7868. margin: 24px 0 10px;
  7869. flex-wrap: nowrap;
  7870. white-space: nowrap;
  7871. overflow: auto;
  7872. position: relative;
  7873. height: 47px;
  7874. }
  7875. .cru_selectBox::-webkit-scrollbar {
  7876. /*滚动条整体样式*/
  7877. width: 6px;
  7878. /*高宽分别对应横竖滚动条的尺寸*/
  7879. height: 6px;
  7880. }
  7881. /*定义滚动条轨道 内阴影+圆角*/
  7882. .cru_selectBox::-webkit-scrollbar-track {
  7883. border-radius: 10px;
  7884. background-color: #eee;
  7885. }
  7886. /*定义滑块 内阴影+圆角*/
  7887. .cru_selectBox::-webkit-scrollbar-thumb {
  7888. border-radius: 10px;
  7889. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  7890. background-color: rgba(0, 0, 0, 0.1);
  7891. }
  7892. .cru_line {
  7893. position: absolute;
  7894. bottom: 0px;
  7895. transition: all 0.5s;
  7896. left: 0px;
  7897. width: 125px;
  7898. margin-left: -25px;
  7899. }
  7900. .cru_select {
  7901. font-size: 21px;
  7902. margin-right: 37px;
  7903. margin-left: 5px;
  7904. cursor: pointer;
  7905. color: #a6a6a6;
  7906. }
  7907. .cru_selected {
  7908. color: #0b7fc2 !important;
  7909. }
  7910. .chapter_contentbox {
  7911. display: flex;
  7912. align-items: center;
  7913. margin-top: 15px;
  7914. }
  7915. .chapter_contentbox div:nth-child(1) {
  7916. /* width: 150px; */
  7917. margin: 0px;
  7918. /* font-size: 2em; */
  7919. color: black;
  7920. display: block;
  7921. white-space: nowrap;
  7922. overflow: hidden;
  7923. text-overflow: ellipsis;
  7924. /* font-weight: 600; */
  7925. margin-right: 20px;
  7926. font-size: 18px;
  7927. }
  7928. .chapter_contentbox div:nth-child(2) {
  7929. width: 380px;
  7930. }
  7931. .chapter_contentbox div:nth-child(3),
  7932. .remove {
  7933. background-image: url("../../assets/remove.png");
  7934. cursor: pointer;
  7935. opacity: 0.5;
  7936. width: 40px;
  7937. height: 50px;
  7938. background-repeat: no-repeat;
  7939. background-position: 5px 10px;
  7940. }
  7941. .remove1 {
  7942. background-image: url("../../assets/remove1.png");
  7943. background-repeat: no-repeat;
  7944. background-position: 5px 10px;
  7945. width: 40px;
  7946. height: 50px;
  7947. cursor: pointer;
  7948. }
  7949. .binfo_input {
  7950. font: inherit;
  7951. color: currentColor;
  7952. width: 100%;
  7953. margin: 0;
  7954. /* padding: 15px 14px; */
  7955. padding: 8px 14px;
  7956. display: block;
  7957. min-width: 0;
  7958. outline: none;
  7959. box-sizing: content-box;
  7960. background: none;
  7961. border: 1px solid rgba(0, 0, 0, 0.23);
  7962. border-radius: 4px;
  7963. box-sizing: border-box;
  7964. background: #fff;
  7965. font-size: 14px;
  7966. }
  7967. .binfo_input:focus-visible {
  7968. border: 1px solid rgba(61, 103, 188);
  7969. }
  7970. .time {
  7971. display: flex;
  7972. margin: 35px 0 80px 0;
  7973. }
  7974. .chapter_btnbox {
  7975. width: 160px;
  7976. border-radius: 5px;
  7977. border: 2px dashed gray;
  7978. display: flex;
  7979. padding: 8px 50px;
  7980. align-items: center;
  7981. justify-content: center;
  7982. margin: 30px auto 0;
  7983. cursor: pointer;
  7984. }
  7985. .icon_add {
  7986. position: relative;
  7987. width: 24px;
  7988. padding-top: 20px;
  7989. border-radius: 100%;
  7990. border-width: 2px;
  7991. border-style: solid;
  7992. border-color: gray;
  7993. }
  7994. .icon_add i:nth-child(1) {
  7995. position: absolute;
  7996. left: 50%;
  7997. top: 50%;
  7998. height: 60%;
  7999. transform: translate(-50%, -50%);
  8000. border-width: 1px;
  8001. border-style: solid;
  8002. border-color: inherit;
  8003. }
  8004. .icon_add i:nth-child(2) {
  8005. position: absolute;
  8006. top: 50%;
  8007. left: 50%;
  8008. width: 60%;
  8009. transform: translate(-50%, -50%);
  8010. border-width: 1px;
  8011. border-style: solid;
  8012. border-color: inherit;
  8013. }
  8014. .chapter_btn_w {
  8015. font-size: 0.9375rem;
  8016. font-weight: bold;
  8017. color: gray;
  8018. margin-left: 20px;
  8019. }
  8020. .disUoloadSty>>>.el-icon-plus {
  8021. display: none !important;
  8022. /* 上传按钮隐藏 */
  8023. }
  8024. .imgLeft {
  8025. margin: 15px 0;
  8026. }
  8027. .add_info_box {
  8028. margin: 20px 0;
  8029. }
  8030. .add_info_box button {
  8031. margin: 0 10px 10px 0;
  8032. }
  8033. .add_info_box2 {
  8034. display: flex;
  8035. align-items: center;
  8036. flex-wrap: wrap;
  8037. }
  8038. .add_info_box2::after {
  8039. content: "提示:支持上传10M以内的PPT和Word文件、5M以内的Excel文件, PDF文件不限制大小。";
  8040. color: red;
  8041. font-size: 14px;
  8042. margin-bottom: 10px;
  8043. }
  8044. .add_chapters_box {
  8045. text-align: left;
  8046. background-color: rgb(232 234 237);
  8047. width: 100%;
  8048. padding: 0px 15px;
  8049. border-radius: 15px;
  8050. font-size: 16px;
  8051. box-sizing: border-box;
  8052. position: relative;
  8053. padding: 0 10px 5px 10px;
  8054. height: 185px;
  8055. overflow-y: auto;
  8056. overflow-x: hidden;
  8057. }
  8058. .homework_box {
  8059. display: flex;
  8060. align-items: flex-start;
  8061. flex-wrap: wrap;
  8062. margin: 15px 0 0 0;
  8063. flex-direction: column;
  8064. align-content: flex-start;
  8065. }
  8066. .course_homework {
  8067. display: flex;
  8068. justify-content: center;
  8069. flex-direction: row;
  8070. align-items: center;
  8071. margin: 0 10px 0 0;
  8072. }
  8073. .course_homework>>>.el-input__inner {
  8074. width: 140px;
  8075. margin-left: 15px;
  8076. }
  8077. .chapter_upload_move {
  8078. position: relative;
  8079. background-color: #fff;
  8080. position: absolute;
  8081. width: 100%;
  8082. top: 0px;
  8083. left: 0px;
  8084. border: 1px solid #eee;
  8085. border-radius: 5px;
  8086. transition: width 2s;
  8087. -moz-transition: width 2s;
  8088. -webkit-transition: width 2s;
  8089. -o-transition: width 2s;
  8090. }
  8091. .chapter_upload_l_i {
  8092. background-image: url("../../assets/icon.png");
  8093. background-position: 3px -165px;
  8094. width: 30px;
  8095. height: 30px;
  8096. margin: 10px auto 0 auto;
  8097. }
  8098. .left_first {
  8099. display: flex;
  8100. flex-direction: column;
  8101. flex-wrap: nowrap;
  8102. }
  8103. .right_first {
  8104. width: 100%;
  8105. height: 100%;
  8106. margin-top: 15px;
  8107. }
  8108. .right_title {
  8109. height: 30px;
  8110. padding: 15px 0 15px 20px;
  8111. border-bottom: 1px solid #f2f2f2;
  8112. font-size: 1.5em;
  8113. font-weight: bold;
  8114. color: #0f7eff;
  8115. margin: 0 auto;
  8116. }
  8117. .people {
  8118. border: 1px solid rgb(229 229 229);
  8119. /* height: 495px; */
  8120. height: 350px;
  8121. border-radius: 5px;
  8122. width: 100%;
  8123. overflow: auto;
  8124. }
  8125. .people_top {
  8126. display: flex;
  8127. width: 100%;
  8128. /* justify-content: space-between; */
  8129. /* align-items: center; */
  8130. flex-direction: column;
  8131. padding: 10px 25px 0;
  8132. box-sizing: border-box;
  8133. }
  8134. .people_nav,
  8135. .people_top_right {
  8136. /* padding: 20px 0 0 20px; */
  8137. }
  8138. .people_top_right {
  8139. height: 40px;
  8140. margin-bottom: 10px;
  8141. }
  8142. .people_search {
  8143. display: flex;
  8144. position: relative;
  8145. }
  8146. .people_search>>>.el-input__inner {
  8147. /* height: 25px; */
  8148. width: 95%;
  8149. }
  8150. .search_img {
  8151. width: 20px;
  8152. height: 20px;
  8153. position: absolute;
  8154. right: 30px;
  8155. top: 50%;
  8156. transform: translateY(-50%);
  8157. }
  8158. .search_img>img {
  8159. width: 100%;
  8160. height: 100%;
  8161. }
  8162. .people_name {
  8163. display: flex;
  8164. justify-content: flex-start;
  8165. padding: 20px 0 0 25px;
  8166. flex-direction: column;
  8167. flex-wrap: wrap;
  8168. }
  8169. .p_box {
  8170. position: relative;
  8171. }
  8172. .people_name>>>.el-checkbox {
  8173. width: 100%;
  8174. display: flex;
  8175. align-items: center;
  8176. margin-bottom: 10px;
  8177. }
  8178. .people_name>>>.el-checkbox__label {
  8179. text-overflow: ellipsis;
  8180. overflow: hidden;
  8181. width: calc(100%);
  8182. }
  8183. .people_name2>>>.el-checkbox__label {
  8184. width: calc(100% - 130px);
  8185. }
  8186. .inviteCode {
  8187. position: absolute;
  8188. right: 30px;
  8189. color: #237ade;
  8190. top: 0;
  8191. cursor: pointer;
  8192. font-size: 13px;
  8193. }
  8194. .noneInvite {
  8195. color: #a8a8a8;
  8196. }
  8197. .inviteImg {
  8198. position: absolute;
  8199. right: 5px;
  8200. top: 0;
  8201. width: 20px;
  8202. }
  8203. .right_img {
  8204. width: 150px;
  8205. height: 150px;
  8206. margin: 0 auto;
  8207. }
  8208. .right_img>img {
  8209. width: 100%;
  8210. height: 100%;
  8211. }
  8212. .number {
  8213. margin-top: 20px;
  8214. color: #4aa6ff;
  8215. text-decoration: underline;
  8216. }
  8217. .success_button {
  8218. display: flex;
  8219. text-align: center;
  8220. margin: 5% 0 auto;
  8221. flex-direction: row;
  8222. justify-content: center;
  8223. }
  8224. .look_course {
  8225. margin-right: 40px;
  8226. background: #3d67bc;
  8227. width: 200px;
  8228. height: 35px;
  8229. line-height: 35px;
  8230. color: #fff;
  8231. text-align: center;
  8232. font-size: 14px;
  8233. border-radius: 5px;
  8234. cursor: pointer;
  8235. }
  8236. .attend_others {
  8237. width: 250px;
  8238. background: #4fb13c;
  8239. height: 35px;
  8240. line-height: 35px;
  8241. color: #fff;
  8242. text-align: center;
  8243. font-size: 14px;
  8244. border-radius: 5px;
  8245. cursor: pointer;
  8246. }
  8247. .dialog_diy2>>>.el-dialog__body {
  8248. text-align: center;
  8249. }
  8250. .write_togother {
  8251. position: absolute;
  8252. right: 45px;
  8253. display: flex;
  8254. top: 5%;
  8255. }
  8256. .write_people {
  8257. font-size: 14px;
  8258. line-height: 50px;
  8259. padding-right: 10px;
  8260. }
  8261. .end_write {
  8262. background: #3d67bc;
  8263. color: #fff;
  8264. width: 100px;
  8265. height: 35px;
  8266. line-height: 35px;
  8267. text-align: center;
  8268. font-size: 14px;
  8269. border-radius: 5px;
  8270. cursor: pointer;
  8271. }
  8272. .chapter_upload {
  8273. height: 50px;
  8274. margin-top: 12px;
  8275. position: relative;
  8276. display: flex;
  8277. align-items: center;
  8278. width: 100%;
  8279. min-height: 50px;
  8280. }
  8281. .chapter_upload_t {
  8282. background-color: #fff;
  8283. position: absolute;
  8284. height: 100%;
  8285. top: 0px;
  8286. left: 0px;
  8287. border-radius: 40px;
  8288. box-sizing: border-box;
  8289. box-shadow: 0 0 3px 3px #dfdfdf;
  8290. }
  8291. .chapter_upload_o {
  8292. width: 100%;
  8293. height: 100%;
  8294. position: relative;
  8295. z-index: 1;
  8296. }
  8297. .chapter_upload_ic {
  8298. height: 30px;
  8299. float: right;
  8300. }
  8301. .chapter_upload_ic_l {
  8302. width: 50px;
  8303. height: 50px;
  8304. float: left;
  8305. }
  8306. .chapter_upload_ic_l div {
  8307. width: 30px;
  8308. height: 35px;
  8309. background: url("../../assets/icon/icon.png");
  8310. }
  8311. .chapter_upload_ic_r {
  8312. width: 50px;
  8313. height: 50px;
  8314. float: left;
  8315. margin-left: 0px;
  8316. display: flex;
  8317. align-items: center;
  8318. }
  8319. .chapter_upload_ic_r div {
  8320. width: 25px;
  8321. height: 25px;
  8322. background-image: url("../../assets/delete.png");
  8323. background-size: 100% 100%;
  8324. }
  8325. .chapter_upload_n {
  8326. display: flex;
  8327. text-indent: 10px;
  8328. text-decoration: none;
  8329. text-overflow: ellipsis;
  8330. white-space: nowrap;
  8331. overflow: hidden;
  8332. width: 55%;
  8333. margin-left: 10px;
  8334. cursor: pointer;
  8335. margin-top: 2px;
  8336. align-items: center;
  8337. }
  8338. .chapter_upload_l_i1 {
  8339. background-image: url("../../assets/icon/video.png");
  8340. width: 28px;
  8341. height: 28px;
  8342. background-size: 100% 100%;
  8343. }
  8344. .chapter_upload_l_i5 {
  8345. background-image: url("../../assets/icon/word.png");
  8346. width: 24px;
  8347. height: 24px;
  8348. background-size: 100% 100%;
  8349. }
  8350. .chapter_upload_l_i8 {
  8351. background-image: url("../../assets/icon/line.png");
  8352. width: 24px;
  8353. height: 24px;
  8354. background-size: 100% 100%;
  8355. }
  8356. .chapter_upload_ud {
  8357. display: flex;
  8358. flex-direction: column;
  8359. margin-left: 5px;
  8360. justify-content: center;
  8361. }
  8362. .chapter_upload_up {
  8363. background-image: url("../../assets/icon/up.png");
  8364. width: 17px;
  8365. height: 15px;
  8366. background-size: 100% 100%;
  8367. cursor: pointer;
  8368. }
  8369. .chapter_upload_down {
  8370. background-image: url("../../assets/icon/down.png");
  8371. width: 17px;
  8372. height: 15px;
  8373. margin: 2px auto 0 auto;
  8374. background-size: 100% 100%;
  8375. cursor: pointer;
  8376. }
  8377. .addWordStyle {
  8378. display: flex;
  8379. flex-direction: row;
  8380. justify-content: flex-start;
  8381. overflow-x: auto;
  8382. white-space: nowrap;
  8383. flex-wrap: wrap;
  8384. }
  8385. /* table 样式 */
  8386. .cont>>>table {
  8387. border-top: 1px solid #ccc;
  8388. border-left: 1px solid #ccc;
  8389. }
  8390. .cont>>>table td,
  8391. .cont>>>table th {
  8392. border-bottom: 1px solid #ccc;
  8393. border-right: 1px solid #ccc;
  8394. /* padding: 20px 5px; */
  8395. padding: 5px 10px;
  8396. max-width: 0px;
  8397. height: 30px;
  8398. vertical-align: baseline;
  8399. }
  8400. .cont>>>table th {
  8401. border-bottom: 2px solid #ccc;
  8402. text-align: center;
  8403. }
  8404. /* blockquote 样式 */
  8405. .cont>>>blockquote {
  8406. display: block;
  8407. border-left: 8px solid #d0e5f2;
  8408. padding: 5px 10px;
  8409. margin: 10px 0;
  8410. line-height: 1.4;
  8411. font-size: 100%;
  8412. background-color: #f1f1f1;
  8413. }
  8414. /* code 样式 */
  8415. .cont>>>code {
  8416. display: inline-block;
  8417. *display: inline;
  8418. *zoom: 1;
  8419. background-color: #f1f1f1;
  8420. border-radius: 3px;
  8421. padding: 3px 5px;
  8422. margin: 0 3px;
  8423. }
  8424. .cont>>>pre code {
  8425. display: block;
  8426. }
  8427. /* ul ol 样式 */
  8428. .cont>>>ul,
  8429. ol {
  8430. margin: 10px 0 10px 20px;
  8431. }
  8432. .wordbox {
  8433. display: flex;
  8434. flex-wrap: wrap;
  8435. cursor: pointer;
  8436. width: 100%;
  8437. }
  8438. .checkword {
  8439. width: 22px;
  8440. height: 22px;
  8441. margin: 10px auto 0;
  8442. cursor: pointer;
  8443. }
  8444. .checkword img {
  8445. width: 100%;
  8446. }
  8447. .stepBg {
  8448. display: flex;
  8449. flex-direction: column;
  8450. justify-content: space-between;
  8451. align-items: center;
  8452. background: #fff;
  8453. width: 300px;
  8454. margin: 0 25px 0 0;
  8455. }
  8456. .stepTop {
  8457. min-width: 300px;
  8458. width: 300px;
  8459. /* border-radius: 10px; */
  8460. display: flex;
  8461. flex-direction: column;
  8462. justify-content: flex-start;
  8463. align-items: center;
  8464. flex-wrap: nowrap;
  8465. background: #fff;
  8466. /* top: 18%; */
  8467. }
  8468. .stepTop>div {
  8469. height: 80px;
  8470. width: 85%;
  8471. cursor: pointer;
  8472. margin: 10px 0;
  8473. border-radius: 10px;
  8474. }
  8475. .first,
  8476. .second,
  8477. .third,
  8478. .four {
  8479. background: #4a83d0;
  8480. height: 90px;
  8481. color: #fff;
  8482. display: flex;
  8483. flex-direction: row;
  8484. align-items: center;
  8485. justify-content: center;
  8486. }
  8487. .first>div:nth-child(1),
  8488. .second>div:nth-child(1),
  8489. .third>div:nth-child(1),
  8490. .four>div:nth-child(1) {
  8491. margin: 5px 10px 0 0;
  8492. width: 2rem;
  8493. }
  8494. .firstNo,
  8495. .secondNo,
  8496. .thirdNo,
  8497. .fourNo {
  8498. background: #e7e7e7;
  8499. color: #adadad;
  8500. display: flex;
  8501. flex-direction: row;
  8502. align-items: center;
  8503. justify-content: center;
  8504. }
  8505. .firstNo>div:nth-child(1),
  8506. .secondNo>div:nth-child(1),
  8507. .thirdNo>div:nth-child(1),
  8508. .fourNo>div:nth-child(1) {
  8509. margin: 5px 10px 0 0;
  8510. width: 2rem;
  8511. }
  8512. .uploadWidth>>>.el-upload {
  8513. width: 60px;
  8514. height: 60px;
  8515. position: relative;
  8516. }
  8517. .addPeople {
  8518. background: #fa6060;
  8519. width: 150px;
  8520. height: 40px;
  8521. color: #fff;
  8522. border-radius: 5px;
  8523. text-align: center;
  8524. line-height: 40px;
  8525. font-size: 14px;
  8526. cursor: pointer;
  8527. margin-top: 20px;
  8528. }
  8529. .kcImg {
  8530. width: 60px;
  8531. margin-left: 10px;
  8532. }
  8533. .zyImg {
  8534. width: 55px;
  8535. margin: 0 10px;
  8536. }
  8537. .deleteZy {
  8538. width: 20px;
  8539. position: absolute;
  8540. top: 5px;
  8541. right: 5px;
  8542. cursor: pointer;
  8543. }
  8544. .kcImg>img,
  8545. .zyImg>img,
  8546. .deleteZy>img {
  8547. width: 100%;
  8548. height: 100%;
  8549. }
  8550. .zyBox {
  8551. display: flex;
  8552. flex-direction: row;
  8553. align-items: center;
  8554. background: #67d37d;
  8555. color: #fff;
  8556. width: 210px;
  8557. margin: 20px 20px 0 0;
  8558. border-radius: 10px;
  8559. height: 70px;
  8560. position: relative;
  8561. }
  8562. .upCss {
  8563. display: flex;
  8564. flex-direction: row;
  8565. justify-content: flex-start;
  8566. }
  8567. .upCss>>>.el-icon-plus {
  8568. position: none !important;
  8569. width: 200px;
  8570. height: 100px;
  8571. display: flex;
  8572. flex-wrap: nowrap;
  8573. flex-direction: column;
  8574. align-items: center;
  8575. justify-content: center;
  8576. border: 1px dashed #ccc;
  8577. min-width: 78px;
  8578. min-height: 100px;
  8579. z-index: 999;
  8580. }
  8581. .upCss>>>.el-upload-list__item-name {
  8582. width: 100px;
  8583. white-space: nowrap;
  8584. overflow: hidden;
  8585. text-overflow: ellipsis;
  8586. }
  8587. .addStageImg {
  8588. min-width: 25px;
  8589. min-height: 25px;
  8590. width: 25px;
  8591. height: 25px;
  8592. cursor: pointer;
  8593. }
  8594. .addHW {
  8595. width: 28px;
  8596. height: 28px;
  8597. cursor: pointer;
  8598. }
  8599. .addStageImg>img,
  8600. .addHW>img {
  8601. width: 100%;
  8602. height: 100%;
  8603. }
  8604. .addNewPP>>>.el-dialog__body {
  8605. padding: 5px 20px;
  8606. }
  8607. .addNewPP>>>.el-dialog {
  8608. margin-top: 5vh !important;
  8609. }
  8610. .isHeight {
  8611. height: 680px;
  8612. }
  8613. .toolChoose {
  8614. display: flex;
  8615. /* width: 100%; */
  8616. flex-direction: row;
  8617. flex-wrap: wrap;
  8618. }
  8619. .tool {
  8620. display: flex;
  8621. flex-direction: column;
  8622. flex-wrap: nowrap;
  8623. width: fit-content;
  8624. margin: 10px 0 10px 0;
  8625. align-items: center;
  8626. }
  8627. .tool+.tool {
  8628. margin-right: 45px;
  8629. }
  8630. .whiteBIcon {
  8631. width: 80px;
  8632. cursor: pointer;
  8633. display: flex;
  8634. flex-direction: column;
  8635. flex-wrap: nowrap;
  8636. align-items: center;
  8637. }
  8638. .whiteBIcon>img,
  8639. .toolIcon>img,
  8640. .arrow>img {
  8641. width: 100%;
  8642. height: 100%;
  8643. }
  8644. .check img {
  8645. width: 20px;
  8646. height: 20px;
  8647. }
  8648. .whiteBIcon>img {
  8649. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  8650. border-radius: 15px;
  8651. }
  8652. .check {
  8653. /* width: 20px;
  8654. height: 20px; */
  8655. cursor: pointer;
  8656. margin: 10px 0;
  8657. }
  8658. .checkDiv {
  8659. display: flex;
  8660. align-items: center;
  8661. }
  8662. .checkDiv span {
  8663. margin-left: 5px;
  8664. color: #858585;
  8665. }
  8666. .customWidth>>>.el-dialog {
  8667. min-width: 500px !important;
  8668. }
  8669. .a_addBox {
  8670. margin: 10px 0;
  8671. background: #fff;
  8672. padding: 15px;
  8673. max-height: 600px;
  8674. overflow: auto;
  8675. }
  8676. .a_add_box {
  8677. border-bottom: 2px solid #eee;
  8678. padding-bottom: 25px;
  8679. }
  8680. .a_add_head {
  8681. display: flex;
  8682. align-items: center;
  8683. justify-content: space-between;
  8684. margin: 10px 0 0 0;
  8685. font-size: 18px;
  8686. }
  8687. .a_add_checkType {
  8688. margin-top: 10px;
  8689. display: flex;
  8690. font-size: 16px;
  8691. align-items: center;
  8692. }
  8693. .a_add_checkType span {
  8694. box-sizing: border-box;
  8695. padding: 0 0 5px 0;
  8696. cursor: pointer;
  8697. }
  8698. .a_add_checkType span+span {
  8699. margin-left: 10px;
  8700. }
  8701. .a_add_checkType .active {
  8702. border-bottom: 2px solid #409eff;
  8703. color: #409eff;
  8704. }
  8705. .a_add_head .a_add_head_input {
  8706. width: 300px;
  8707. }
  8708. .a_add_head .a_add_head_div {
  8709. display: flex;
  8710. align-items: center;
  8711. justify-content: space-between;
  8712. }
  8713. .a_add_body {
  8714. display: flex;
  8715. /* align-items: center; */
  8716. align-items: flex-end;
  8717. }
  8718. .a_add_input {
  8719. display: flex;
  8720. align-items: center;
  8721. flex-wrap: wrap;
  8722. }
  8723. .a_add_input_choice {
  8724. flex-direction: column;
  8725. margin-right: 10px;
  8726. }
  8727. .a_add_input_choice>>>.el-radio {
  8728. display: flex;
  8729. align-items: center;
  8730. flex-direction: row-reverse;
  8731. margin: 30px 0 0 0;
  8732. }
  8733. .a_add_input_choice>>>.el-checkbox {
  8734. display: flex;
  8735. align-items: center;
  8736. flex-direction: row-reverse;
  8737. margin: 30px 0 0 0;
  8738. }
  8739. .width100 {
  8740. width: 100%;
  8741. }
  8742. .a_add_input .a_add_persent {
  8743. width: 100%;
  8744. }
  8745. .a_add_persent_div {
  8746. width: 100%;
  8747. display: flex;
  8748. align-items: center;
  8749. }
  8750. .a_add_persent_div span {
  8751. margin: 5px 0;
  8752. }
  8753. .a_add_persent_div span:nth-child(1) {
  8754. width: 30%;
  8755. }
  8756. .a_add_persent_div span:nth-child(2) {
  8757. width: 7%;
  8758. }
  8759. .a_add_persent_div span:nth-child(3) {
  8760. width: 40%;
  8761. }
  8762. .a_add_body_div {
  8763. display: flex;
  8764. align-items: center;
  8765. justify-content: center;
  8766. /* flex-direction: column; */
  8767. }
  8768. .all_choose {
  8769. display: flex;
  8770. flex-direction: row;
  8771. align-items: flex-start;
  8772. width: 100%;
  8773. }
  8774. .all_choose>span {
  8775. min-width: 100px;
  8776. display: block;
  8777. letter-spacing: 14px;
  8778. white-space: nowrap;
  8779. overflow: hidden;
  8780. text-overflow: ellipsis;
  8781. }
  8782. .all_choose>>>.el-checkbox-group {
  8783. display: flex;
  8784. flex-direction: row;
  8785. width: 100%;
  8786. flex-wrap: wrap;
  8787. align-content: center;
  8788. justify-content: flex-start;
  8789. align-items: center;
  8790. margin-top: 3px;
  8791. }
  8792. .all_choose>.el-checkbox-group>>>.el-checkbox {
  8793. margin-bottom: 10px;
  8794. display: flex;
  8795. flex-direction: row;
  8796. align-items: center;
  8797. }
  8798. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  8799. min-width: 80px;
  8800. overflow: hidden;
  8801. width: 80px;
  8802. text-overflow: ellipsis;
  8803. white-space: nowrap;
  8804. }
  8805. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  8806. width: auto;
  8807. }
  8808. .choose>div:nth-child(3)>span {
  8809. /* letter-spacing: 0 !important; */
  8810. }
  8811. .choose {
  8812. display: flex;
  8813. flex-direction: column;
  8814. flex-wrap: nowrap;
  8815. height: 100%;
  8816. justify-content: space-evenly;
  8817. align-items: flex-start;
  8818. }
  8819. .both {
  8820. display: flex;
  8821. flex-direction: row;
  8822. flex-wrap: wrap;
  8823. width: 100%;
  8824. align-items: center;
  8825. justify-content: flex-start;
  8826. margin: 15px 0;
  8827. }
  8828. .notice>>>.el-dialog {
  8829. width: 500px !important;
  8830. text-align: center;
  8831. }
  8832. .notice>>>.el-button {
  8833. margin-top: 20px;
  8834. }
  8835. .whiteBg {
  8836. background: #fff;
  8837. border-radius: 10px;
  8838. }
  8839. .chooseWho {
  8840. display: flex;
  8841. width: 380px;
  8842. flex-direction: row;
  8843. flex-wrap: nowrap;
  8844. justify-content: space-between;
  8845. padding-bottom: 10px;
  8846. }
  8847. .chooseWho>div {
  8848. cursor: pointer;
  8849. padding-bottom: 10px;
  8850. font-weight: bold;
  8851. }
  8852. .isChooseActive {
  8853. color: #3e88f4;
  8854. border-bottom: 2px solid #2f80f3;
  8855. }
  8856. .toolSort {
  8857. display: flex;
  8858. flex-direction: row;
  8859. flex-wrap: wrap;
  8860. justify-content: flex-start;
  8861. align-items: flex-start;
  8862. }
  8863. .toolSort>div {
  8864. margin-right: 45px;
  8865. }
  8866. .tools {
  8867. width: 100%;
  8868. display: flex;
  8869. flex-direction: column;
  8870. flex-wrap: nowrap;
  8871. align-items: flex-start;
  8872. }
  8873. .leftTools,
  8874. .rightTools {
  8875. width: 50%;
  8876. }
  8877. .rightTools {
  8878. display: flex;
  8879. flex-direction: row;
  8880. flex-wrap: nowrap;
  8881. justify-content: space-around;
  8882. }
  8883. .firstToolList {
  8884. display: flex;
  8885. flex-direction: column;
  8886. flex-wrap: nowrap;
  8887. align-items: center;
  8888. }
  8889. .iconList {
  8890. display: flex;
  8891. flex-direction: row;
  8892. flex-wrap: wrap;
  8893. justify-content: flex-start;
  8894. align-items: center;
  8895. margin: 20px 0 5px 0;
  8896. width: 240px;
  8897. min-width: 240px;
  8898. }
  8899. .iconTool {
  8900. display: flex;
  8901. flex-direction: column;
  8902. flex-wrap: nowrap;
  8903. align-items: center;
  8904. justify-content: flex-start;
  8905. margin: 15px 10px;
  8906. }
  8907. .toolIcon {
  8908. width: 50px;
  8909. }
  8910. .taskBorder {
  8911. border: 1px solid #e1e1e1;
  8912. border-radius: 10px;
  8913. margin-top: 20px;
  8914. min-height: 1160px;
  8915. position: relative;
  8916. background: #fbfbfb;
  8917. }
  8918. .smallTaskBorder {
  8919. height: 170px;
  8920. min-height: 170px !important;
  8921. overflow: hidden;
  8922. }
  8923. .taskBorder>div {
  8924. padding: 30px 0 10px 30px;
  8925. }
  8926. .addTaskBorder {
  8927. border: 2px solid #e1e1e1;
  8928. border-radius: 10px;
  8929. margin-top: 25px;
  8930. cursor: pointer;
  8931. }
  8932. .addTaskBorder>div {
  8933. margin: 0 auto;
  8934. display: flex;
  8935. align-items: center;
  8936. justify-content: center;
  8937. }
  8938. .addTaskBorder>div>img {
  8939. width: 100px;
  8940. }
  8941. .addTaskBorder>div>span {
  8942. font-size: 23px;
  8943. color: #dbdbdb;
  8944. }
  8945. .funBlock {
  8946. display: flex;
  8947. padding: 15px 0;
  8948. flex-direction: row;
  8949. justify-content: flex-end;
  8950. align-items: center;
  8951. position: absolute;
  8952. right: 15px;
  8953. bottom: 35px;
  8954. }
  8955. .fold {
  8956. display: flex;
  8957. margin: 0 10px;
  8958. flex-direction: row;
  8959. align-items: center;
  8960. cursor: pointer;
  8961. }
  8962. .arrow {
  8963. width: 15px;
  8964. height: 15px;
  8965. margin-left: 10px;
  8966. }
  8967. .addToolFun {
  8968. display: flex;
  8969. width: 150px;
  8970. flex-direction: row;
  8971. align-items: center;
  8972. justify-content: center;
  8973. border: 1px dashed;
  8974. border-radius: 5px;
  8975. height: 50px;
  8976. margin: 35px auto 0;
  8977. cursor: pointer;
  8978. }
  8979. .addToolImg {
  8980. width: 30px;
  8981. height: 30px;
  8982. margin-right: 20px;
  8983. }
  8984. .addToolsDia>>>.el-dialog__body {
  8985. padding: 20px;
  8986. }
  8987. .addToolsDia>>>.el-dialog__body>.toolChoose {
  8988. padding: 0;
  8989. }
  8990. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools {
  8991. padding: 0;
  8992. border-bottom: none;
  8993. margin-bottom: 0;
  8994. }
  8995. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools>.chooseWho {
  8996. width: 100%;
  8997. }
  8998. .lineCss>>>.el-form-item__label {
  8999. width: auto !important;
  9000. }
  9001. .lineCss>>>.el-form-item__content {
  9002. margin-left: 50px !important;
  9003. }
  9004. .newSteps {
  9005. display: flex;
  9006. width: 100% !important;
  9007. height: 80px;
  9008. cursor: pointer;
  9009. margin: 10px 0;
  9010. border-radius: 10px;
  9011. flex-direction: row;
  9012. align-content: center;
  9013. justify-content: center;
  9014. align-items: center;
  9015. margin: 0 !important;
  9016. }
  9017. /* 评价样式 */
  9018. .elist_css {
  9019. padding-bottom: 60px !important;
  9020. }
  9021. .elist_title {
  9022. margin-bottom: 10px;
  9023. }
  9024. .elist_input {}
  9025. .elist_input_box {
  9026. display: flex;
  9027. align-items: center;
  9028. flex-wrap: wrap;
  9029. }
  9030. .elist_input_box+.elist_input_box {
  9031. margin-top: 30px;
  9032. }
  9033. .elist_input .elist_input_box input {
  9034. font: inherit;
  9035. color: currentColor;
  9036. /* width: 200px; */
  9037. max-width: 200px;
  9038. padding: 8px 14px;
  9039. display: block;
  9040. min-width: 0;
  9041. outline: none;
  9042. border: 1px solid rgba(0, 0, 0, 0.23);
  9043. border-radius: 4px;
  9044. box-sizing: border-box;
  9045. background: #fff;
  9046. margin: 0 20px 0 0;
  9047. }
  9048. .elist_input .elist_input_box span {
  9049. height: 36px;
  9050. line-height: 36px;
  9051. color: rgb(82, 82, 82);
  9052. min-width: 80px;
  9053. }
  9054. .elist_input .elist_input_box .remove {
  9055. height: 20px;
  9056. width: 20px;
  9057. background-size: 100% 100%;
  9058. background-position: unset;
  9059. margin-left: 5px;
  9060. }
  9061. .elist_input_box>>>.el-rate {
  9062. display: flex;
  9063. height: 36px;
  9064. align-items: center;
  9065. }
  9066. .elist_input_box .elist_inptu_text {
  9067. width: 100%;
  9068. display: flex;
  9069. align-items: center;
  9070. margin-top: 10px;
  9071. }
  9072. .elist_input_box .elist_inptu_text input {
  9073. /* width: 500px; */
  9074. width: 100%;
  9075. max-width: unset;
  9076. }
  9077. .elist_input_box>>>.el-rate__icon {
  9078. font-size: 24px;
  9079. }
  9080. .elist_btn {
  9081. margin-top: 10px;
  9082. }
  9083. .lineTitle {
  9084. margin-top: 15px;
  9085. width: 110px;
  9086. }
  9087. .courseTop {
  9088. display: flex;
  9089. flex-direction: row;
  9090. justify-content: flex-start;
  9091. align-items: center;
  9092. /* width: 100%; */
  9093. width: calc(100% - 20px);
  9094. /* background: rgb(255, 255, 255); */
  9095. /* border-radius: 10px; */
  9096. padding: 20px 0;
  9097. }
  9098. .stepsNav {
  9099. display: flex;
  9100. flex-direction: row;
  9101. justify-content: flex-start;
  9102. align-items: center;
  9103. }
  9104. .stepsWord {
  9105. font-size: 18px;
  9106. color: #fff;
  9107. font-weight: bold;
  9108. margin-left: auto;
  9109. background: rgb(15, 126, 255);
  9110. border-radius: 5px;
  9111. padding: 3px 25px;
  9112. box-sizing: border-box;
  9113. }
  9114. .rightBox {
  9115. width: calc(100% - 20px);
  9116. background: rgb(255, 255, 255);
  9117. border-radius: 10px;
  9118. overflow: auto;
  9119. height: calc(100% - 130px);
  9120. position: relative;
  9121. }
  9122. .e_add_top {
  9123. display: flex;
  9124. justify-content: space-between;
  9125. padding: 20px 20px 0 20px;
  9126. border-radius: 3px;
  9127. background: #fff;
  9128. }
  9129. .e_add_title2 {
  9130. display: flex;
  9131. align-items: center;
  9132. }
  9133. .e_add_title2 span {
  9134. width: 40px;
  9135. }
  9136. .e_add_title {
  9137. display: flex;
  9138. align-items: center;
  9139. color: #b8b8b8;
  9140. font-size: 18px;
  9141. position: relative;
  9142. height: 40px;
  9143. }
  9144. .e_add_title span {
  9145. margin-right: 10px;
  9146. }
  9147. .e_add_title .el_input {
  9148. width: 300px;
  9149. }
  9150. .e_add_title>>>.el-input__inner {
  9151. width: 400px;
  9152. }
  9153. .e_add_btn {}
  9154. .e_add_content {
  9155. display: flex;
  9156. width: 100%;
  9157. }
  9158. .e_add_list {
  9159. background: #fff;
  9160. height: 500px;
  9161. width: 210px;
  9162. position: relative;
  9163. margin: 15px 5px 0 0;
  9164. flex-shrink: 0;
  9165. display: flex;
  9166. flex-direction: column;
  9167. }
  9168. .e_add_list_title {
  9169. font-size: 20px;
  9170. width: 100%;
  9171. box-sizing: border-box;
  9172. padding: 15px 40px;
  9173. text-align: center;
  9174. border-bottom: 1px solid #eaeaea;
  9175. position: relative;
  9176. display: flex;
  9177. align-items: center;
  9178. justify-content: center;
  9179. height: 57px;
  9180. background: #f6f6f6;
  9181. }
  9182. .e_add_list_title span {
  9183. overflow: hidden;
  9184. white-space: nowrap;
  9185. text-overflow: ellipsis;
  9186. }
  9187. .e_add_list_title img {
  9188. position: absolute;
  9189. right: 15px;
  9190. width: 25px;
  9191. cursor: pointer;
  9192. top: 50%;
  9193. transform: translateY(-50%);
  9194. }
  9195. .e_add_list_body {
  9196. height: calc(100% - 187px);
  9197. overflow: auto;
  9198. }
  9199. .e_add_list_child {
  9200. width: 100%;
  9201. display: flex;
  9202. align-items: center;
  9203. justify-content: center;
  9204. position: relative;
  9205. box-sizing: border-box;
  9206. padding: 15px 40px;
  9207. text-align: center;
  9208. }
  9209. .e_add_list_child span {
  9210. overflow: hidden;
  9211. white-space: nowrap;
  9212. text-overflow: ellipsis;
  9213. cursor: pointer;
  9214. }
  9215. .e_add_list_child img {
  9216. position: absolute;
  9217. right: 10px;
  9218. width: 21px;
  9219. cursor: pointer;
  9220. top: 50%;
  9221. transform: translateY(-50%);
  9222. }
  9223. .e_add_list_child+.e_add_list_child {
  9224. border-top: 1px solid #eaeaea;
  9225. }
  9226. .e_add_list_child .active {
  9227. color: #409eff;
  9228. }
  9229. .e_add_list_btn {
  9230. position: absolute;
  9231. bottom: 0;
  9232. height: 50px;
  9233. background: rgb(120, 120, 254);
  9234. width: 100%;
  9235. color: #fff;
  9236. font-size: 16px;
  9237. text-align: center;
  9238. line-height: 50px;
  9239. cursor: pointer;
  9240. }
  9241. .e_add_list_detail {
  9242. position: absolute;
  9243. bottom: 0;
  9244. height: 130px;
  9245. background: rgb(120, 120, 254);
  9246. width: 100%;
  9247. color: #fff;
  9248. font-size: 16px;
  9249. display: flex;
  9250. align-items: center;
  9251. justify-content: center;
  9252. }
  9253. .e_add_list_detail textarea {
  9254. height: 90%;
  9255. width: 95%;
  9256. border: none;
  9257. resize: none;
  9258. outline: none;
  9259. padding: 5px;
  9260. box-sizing: border-box;
  9261. }
  9262. .e_add_list_pbox {
  9263. width: 100%;
  9264. }
  9265. .e_add_list_pbox_title {
  9266. height: 50px;
  9267. background: #fff;
  9268. display: flex;
  9269. align-items: center;
  9270. width: 100%;
  9271. box-sizing: border-box;
  9272. padding: 0 20px;
  9273. flex-direction: row;
  9274. flex-wrap: wrap;
  9275. }
  9276. .type_title {
  9277. font-size: 18px;
  9278. font-weight: 700;
  9279. }
  9280. .type_content {
  9281. font-size: 16px;
  9282. margin-left: 30px;
  9283. }
  9284. .type_content span+span {
  9285. margin-left: 20px;
  9286. }
  9287. .type_content span {
  9288. cursor: pointer;
  9289. padding-bottom: 5px;
  9290. box-sizing: border-box;
  9291. }
  9292. .type_content .active {
  9293. color: #409eff;
  9294. border-bottom: 2px solid #409eff;
  9295. }
  9296. .e_add_list_pbox_content {
  9297. height: calc(100% - 50px);
  9298. display: flex;
  9299. align-items: center;
  9300. width: 100%;
  9301. background: #fff;
  9302. }
  9303. .mbCss {
  9304. width: 100%;
  9305. display: flex;
  9306. flex-direction: row;
  9307. flex-wrap: nowrap;
  9308. align-content: center;
  9309. align-items: flex-start;
  9310. justify-content: flex-start;
  9311. }
  9312. .pjCss {
  9313. /* width: 42%; */
  9314. width: calc(100% - 55%);
  9315. display: flex;
  9316. flex-direction: column;
  9317. flex-wrap: nowrap;
  9318. align-items: flex-start;
  9319. margin-top: 1.5%;
  9320. }
  9321. .e_box {
  9322. display: flex;
  9323. flex-wrap: wrap;
  9324. max-height: 500px;
  9325. align-items: flex-start;
  9326. overflow: auto;
  9327. }
  9328. .e_card {
  9329. border: 1px solid #ccc;
  9330. background: #fff;
  9331. margin-right: 20px;
  9332. width: 270px;
  9333. display: flex;
  9334. flex-direction: column;
  9335. align-items: center;
  9336. border-radius: 5px;
  9337. margin-top: 10px;
  9338. text-align: center;
  9339. }
  9340. .e_card_picture {
  9341. margin: 10px 0;
  9342. }
  9343. .e_card_picture>img {
  9344. width: 50px;
  9345. }
  9346. .e_card_name {
  9347. width: 100%;
  9348. padding: 0 10px;
  9349. box-sizing: border-box;
  9350. margin-bottom: 10px;
  9351. overflow: hidden;
  9352. text-overflow: ellipsis;
  9353. white-space: nowrap;
  9354. }
  9355. .e_card_time {
  9356. width: 100%;
  9357. padding: 0 10px;
  9358. box-sizing: border-box;
  9359. font-size: 15px;
  9360. color: #c3c3c3;
  9361. margin-bottom: 10px;
  9362. }
  9363. .e_card_btn {
  9364. height: 40px;
  9365. display: flex;
  9366. align-items: center;
  9367. width: 100%;
  9368. background: rgb(244, 244, 244);
  9369. }
  9370. .e_card_btn:hover {
  9371. background: rgb(221 221 221);
  9372. }
  9373. .e_card_btn span {
  9374. flex: 1 1 auto;
  9375. text-align: center;
  9376. cursor: pointer;
  9377. }
  9378. .addEva {
  9379. border: 1px solid #ccc;
  9380. background: #fff;
  9381. margin-right: 20px;
  9382. width: 270px;
  9383. height: 149px;
  9384. display: flex;
  9385. flex-direction: column;
  9386. align-items: center;
  9387. border-radius: 5px;
  9388. margin-top: 10px;
  9389. text-align: center;
  9390. cursor: pointer;
  9391. justify-content: center;
  9392. }
  9393. .addEva>img {
  9394. width: 50px;
  9395. object-fit: cover;
  9396. }
  9397. .uploadFm {
  9398. border: 1px dashed #ccc;
  9399. width: 202px;
  9400. height: 102px;
  9401. position: relative;
  9402. cursor: pointer;
  9403. }
  9404. .uploadFm>img {
  9405. position: absolute;
  9406. top: 25px;
  9407. left: 35%;
  9408. width: 50px;
  9409. }
  9410. .fileCss {
  9411. width: 100%;
  9412. display: flex;
  9413. flex-direction: row;
  9414. flex-wrap: nowrap;
  9415. justify-content: space-around;
  9416. align-items: center;
  9417. padding-top: 15px;
  9418. }
  9419. .sysPicBox {
  9420. display: flex;
  9421. flex-direction: row;
  9422. flex-wrap: wrap;
  9423. align-content: flex-start;
  9424. height: 435px;
  9425. overflow: auto;
  9426. }
  9427. .sysPic {
  9428. width: 200px;
  9429. height: 115px;
  9430. margin: 0 20px 20px 0;
  9431. cursor: pointer;
  9432. }
  9433. .sysPic>img,
  9434. .isSysPic>img,
  9435. .deletePic>img {
  9436. width: 100%;
  9437. height: 100%;
  9438. object-fit: cover;
  9439. }
  9440. .isSysPic {
  9441. width: 200px;
  9442. height: 115px;
  9443. position: relative;
  9444. }
  9445. .deletePic {
  9446. width: 20px;
  9447. height: 20px;
  9448. position: absolute;
  9449. top: 0;
  9450. right: 0;
  9451. cursor: pointer;
  9452. }
  9453. .select_box1 {}
  9454. .select_box1_img {
  9455. background: #fff;
  9456. border-radius: 5px;
  9457. padding: 15px;
  9458. box-sizing: border-box;
  9459. margin-bottom: 20px;
  9460. }
  9461. .select_box1_title {
  9462. padding: 0 0 15px 0;
  9463. border-bottom: 1px solid #eee;
  9464. margin-bottom: 15px;
  9465. }
  9466. .select_box1_title span:nth-child(1) {
  9467. font-size: 16px;
  9468. margin-right: 20px;
  9469. color: #000;
  9470. }
  9471. .select_box1_title span:nth-child(2) {
  9472. font-size: 14px;
  9473. color: rgb(112, 112, 112);
  9474. }
  9475. .select_box1_add_img {}
  9476. .select_box1_select {
  9477. background: #fff;
  9478. border-radius: 5px;
  9479. padding: 15px;
  9480. box-sizing: border-box;
  9481. }
  9482. .select_box2 {}
  9483. .select_box2_title {
  9484. background: #fff;
  9485. border-radius: 5px;
  9486. padding: 5px 10px;
  9487. box-sizing: border-box;
  9488. margin-bottom: 10px;
  9489. }
  9490. .select_box2_box {
  9491. display: flex;
  9492. height: 500px;
  9493. }
  9494. .select_box2_img {
  9495. width: calc(100% - 310px);
  9496. height: 100%;
  9497. overflow: auto;
  9498. background: #fff;
  9499. border-radius: 5px;
  9500. }
  9501. .select_box2_img img {
  9502. width: 100%;
  9503. }
  9504. .select_box2_answer {
  9505. background: #fff;
  9506. margin-left: 10px;
  9507. border-radius: 5px;
  9508. width: 300px;
  9509. overflow: auto;
  9510. height: 100%;
  9511. display: flex;
  9512. flex-direction: column;
  9513. align-items: center;
  9514. padding-top: 10px;
  9515. box-sizing: border-box;
  9516. }
  9517. .select_box2_answer_box {
  9518. margin: 0 0 10px 0;
  9519. width: 85%;
  9520. }
  9521. .rate_textarea {
  9522. font: inherit;
  9523. color: currentColor;
  9524. width: 100%;
  9525. padding: 8px 14px;
  9526. display: block;
  9527. min-width: 0;
  9528. outline: none;
  9529. border: 1px solid rgba(0, 0, 0, 0.23);
  9530. border-radius: 4px;
  9531. box-sizing: border-box;
  9532. background: #fff;
  9533. margin: 0 20px 0 0;
  9534. resize: none;
  9535. }
  9536. .select_answer_title {
  9537. text-align: left;
  9538. width: 85%;
  9539. margin-bottom: 10px;
  9540. font-size: 18px;
  9541. color: #8e8e8e;
  9542. }
  9543. .mask {
  9544. background-color: rgb(0 0 0 / 30%);
  9545. /* position: fixed; */
  9546. position: absolute;
  9547. top: 0;
  9548. left: 0;
  9549. width: 100%;
  9550. height: 100%;
  9551. z-index: 90;
  9552. display: flex;
  9553. align-items: center;
  9554. justify-content: center;
  9555. }
  9556. .progressBox {
  9557. width: 300px;
  9558. height: 150px;
  9559. background: #fff;
  9560. border-radius: 10px;
  9561. box-shadow: 0 0 6px 1px #bfbfbf;
  9562. display: flex;
  9563. align-items: center;
  9564. justify-content: center;
  9565. flex-direction: column;
  9566. position: relative;
  9567. color: #6c6c6c;
  9568. }
  9569. .progressBox>>>.el-progress-bar__outer {
  9570. background-color: #d1dfff !important;
  9571. }
  9572. .progressBox .lbox {
  9573. height: 50px;
  9574. font-size: 19px;
  9575. display: flex;
  9576. align-items: center;
  9577. color: #747474;
  9578. }
  9579. .progressBox .lbox img {
  9580. width: 40px;
  9581. margin-right: 20px;
  9582. }
  9583. .closeCss {
  9584. position: absolute;
  9585. top: 8px;
  9586. right: 8px;
  9587. cursor: pointer;
  9588. width: 20px;
  9589. height: 20px;
  9590. }
  9591. .closeCss>img {
  9592. width: 100%;
  9593. height: 100%;
  9594. }
  9595. .updateTips::after {
  9596. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  9597. font-size: 14px;
  9598. margin-left: 20px;
  9599. font-weight: 400;
  9600. color: #ff3a3a;
  9601. }
  9602. .updateMask {
  9603. width: 100%;
  9604. z-index: 3;
  9605. top: 0;
  9606. position: absolute;
  9607. /* background-color: rgba(0,0,0,.3); */
  9608. }
  9609. .t_j_box {
  9610. display: flex;
  9611. }
  9612. .t_j_box span:nth-child(1) {
  9613. width: 15%;
  9614. overflow: hidden;
  9615. margin-right: 10px;
  9616. text-overflow: ellipsis;
  9617. white-space: nowrap;
  9618. }
  9619. .t_j_box span:nth-child(2) {
  9620. width: 30%;
  9621. overflow: hidden;
  9622. text-overflow: ellipsis;
  9623. margin-right: 10px;
  9624. }
  9625. .t_j_box span:nth-child(3) {
  9626. max-width: calc(55% - 20px);
  9627. overflow: hidden;
  9628. text-overflow: ellipsis;
  9629. }
  9630. .sentenBox {
  9631. background: #fff;
  9632. height: 600px;
  9633. overflow: auto;
  9634. background-image: url("../../assets/icon/conSentences/csBg.png");
  9635. background-position: 102%;
  9636. background-repeat: no-repeat;
  9637. background-size: 60%;
  9638. }
  9639. .addSen {
  9640. background: #409efe;
  9641. width: 90px;
  9642. color: #fff;
  9643. height: 35px;
  9644. text-align: center;
  9645. line-height: 35px;
  9646. border-radius: 5px;
  9647. float: right;
  9648. margin: 10px 20px 0 0;
  9649. cursor: pointer;
  9650. }
  9651. .sentenTop {
  9652. display: flex;
  9653. flex-direction: row;
  9654. flex-wrap: nowrap;
  9655. align-items: center;
  9656. }
  9657. .sentenTop>div:nth-child(2) {
  9658. width: 300px;
  9659. margin: 0 15px;
  9660. }
  9661. .sentenTop>div:nth-child(3) {
  9662. background: #409efe;
  9663. color: #fff;
  9664. width: 65px;
  9665. height: 35px;
  9666. text-align: center;
  9667. line-height: 35px;
  9668. border-radius: 5px;
  9669. cursor: pointer;
  9670. }
  9671. .cardList {
  9672. padding: 30px 0 20px 0;
  9673. display: flex;
  9674. flex-direction: row;
  9675. flex-wrap: wrap;
  9676. align-items: center;
  9677. box-sizing: border-box;
  9678. border-bottom: 1px solid #f4f4f4;
  9679. width: 98%;
  9680. margin: 0 auto;
  9681. }
  9682. .cardBox {
  9683. display: flex;
  9684. flex-direction: row;
  9685. flex-wrap: wrap;
  9686. align-items: center;
  9687. align-content: center;
  9688. }
  9689. .isCard,
  9690. .isCard1 {
  9691. width: 140px;
  9692. height: 65px;
  9693. text-align: center;
  9694. line-height: 65px;
  9695. font-size: 20px;
  9696. cursor: pointer;
  9697. background-image: url("../../assets/icon/conSentences/titleBorder.png");
  9698. background-size: cover;
  9699. position: relative;
  9700. z-index: 99;
  9701. }
  9702. .isCard1 {
  9703. background-image: url("../../assets/icon/conSentences/answerBorder.png");
  9704. }
  9705. .isCard:hover .deleteWord {
  9706. display: block;
  9707. }
  9708. .isCard>div:nth-child(1),
  9709. .isCard1>div:nth-child(1) {
  9710. white-space: nowrap;
  9711. overflow: hidden;
  9712. text-overflow: ellipsis;
  9713. width: 80%;
  9714. margin: 0 auto;
  9715. }
  9716. .card {
  9717. width: 140px;
  9718. height: 65px;
  9719. }
  9720. .card>img {
  9721. width: 100%;
  9722. height: 100%;
  9723. }
  9724. .rightCardBox {
  9725. margin: 10px 0 0 10px;
  9726. }
  9727. .rightCardBox>div:nth-child(1) {
  9728. margin-bottom: 10px;
  9729. }
  9730. .cardCss {
  9731. display: flex;
  9732. flex-direction: column;
  9733. flex-wrap: nowrap;
  9734. align-items: center;
  9735. border-bottom: 3px solid #b4c3d3;
  9736. padding: 0 0 5px 0;
  9737. margin-right: 10px;
  9738. }
  9739. .cardCss>div:nth-child(2) {
  9740. background: #5b7b9d;
  9741. color: #fff;
  9742. width: 20px;
  9743. height: 20px;
  9744. border-radius: 50%;
  9745. text-align: center;
  9746. line-height: 20px;
  9747. }
  9748. .sentenTopBox {
  9749. display: flex;
  9750. flex-direction: row;
  9751. flex-wrap: nowrap;
  9752. align-items: center;
  9753. justify-content: space-between;
  9754. padding: 55px 0 0 20px;
  9755. box-sizing: border-box;
  9756. width: 85%;
  9757. }
  9758. .stepsBottom {
  9759. width: 85%;
  9760. margin-bottom: 20px;
  9761. box-shadow: 0 0 10px 10px #f7f7f7;
  9762. background: #f7f7f7;
  9763. border-radius: 10px;
  9764. overflow: hidden;
  9765. }
  9766. .navTop {
  9767. background: #53749b;
  9768. color: #fff;
  9769. height: 40px;
  9770. line-height: 40px;
  9771. padding-left: 15px;
  9772. font-size: 18px;
  9773. }
  9774. .navBottom {
  9775. background: #6b91b7;
  9776. height: 180px;
  9777. overflow: auto;
  9778. }
  9779. .navTask {
  9780. display: flex;
  9781. flex-direction: row;
  9782. flex-wrap: nowrap;
  9783. align-items: center;
  9784. padding: 5px 5px 5px 0;
  9785. cursor: pointer;
  9786. background: #ffffff;
  9787. width: 95%;
  9788. margin: 10px auto;
  9789. box-sizing: border-box;
  9790. border-radius: 5px;
  9791. }
  9792. .isNavTask {
  9793. /* background: #7e9ebd; */
  9794. }
  9795. .navTask>div:nth-child(1) {
  9796. background: #468fe4;
  9797. color: #fff;
  9798. width: 65px;
  9799. height: 25px;
  9800. line-height: 25px;
  9801. text-align: center;
  9802. border-radius: 5px;
  9803. margin: 0 10px 0 5px;
  9804. font-size: 14px;
  9805. }
  9806. .navTask>div:nth-child(2) {
  9807. /* color: #fff; */
  9808. /* max-width: 130px; */
  9809. width: 130px;
  9810. white-space: nowrap;
  9811. overflow: hidden;
  9812. text-overflow: ellipsis;
  9813. font-size: 15px;
  9814. }
  9815. .groupBox {}
  9816. .groupContent+.groupContent {
  9817. margin-top: 30px;
  9818. }
  9819. .groupTitle {
  9820. font-size: 24px;
  9821. color: rgb(80, 80, 80);
  9822. margin-bottom: 20px;
  9823. }
  9824. .groupName {
  9825. display: flex;
  9826. align-items: center;
  9827. }
  9828. .groupn {
  9829. font-size: 15px;
  9830. margin-right: 10px;
  9831. }
  9832. .groupName+.groupName {
  9833. margin-top: 15px;
  9834. }
  9835. .groupBtn {
  9836. margin-left: 10px;
  9837. }
  9838. .groupContent>>>.el-input-number.is-without-controls .el-input__inner {
  9839. text-align: left;
  9840. }
  9841. .radioBox>div {
  9842. margin: 10px 0 0 10px;
  9843. }
  9844. .radioBox>>>.el-radio__input,
  9845. .radioBox>>>.el-checkbox__inner {
  9846. margin-left: 10px;
  9847. }
  9848. .radioBox>>>.el-radio__label,
  9849. .radioBox>>>.el-checkbox__label {
  9850. display: flex;
  9851. align-items: center;
  9852. }
  9853. .inImg {
  9854. width: 50px;
  9855. }
  9856. .inImg>img {
  9857. width: 100%;
  9858. height: 100%;
  9859. object-fit: cover;
  9860. }
  9861. .upCss>>>.el-upload-list--picture .el-upload-list__item {
  9862. height: auto;
  9863. }
  9864. .upCss>>>.el-upload-list--picture .el-upload-list__item-thumbnail {
  9865. width: 200px;
  9866. height: 100px;
  9867. object-fit: contain;
  9868. background: unset;
  9869. }
  9870. .upCss>>>.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name {
  9871. display: none;
  9872. }
  9873. .tcMember+.tcMember::before {
  9874. content: "、";
  9875. }
  9876. .xzUpImg {
  9877. width: 25px;
  9878. height: 25px;
  9879. cursor: pointer;
  9880. }
  9881. .xzUpImg>img {
  9882. width: 100%;
  9883. height: 100%;
  9884. }
  9885. .closeCss {
  9886. position: absolute;
  9887. top: 8px;
  9888. right: 8px;
  9889. cursor: pointer;
  9890. width: 20px;
  9891. height: 20px;
  9892. }
  9893. .closeCss>img {
  9894. width: 100%;
  9895. height: 100%;
  9896. }
  9897. .moveBtn {
  9898. display: flex;
  9899. flex-direction: column;
  9900. align-items: flex-end;
  9901. width: 40px;
  9902. }
  9903. .timuUpImg {
  9904. display: flex;
  9905. flex-direction: row;
  9906. align-items: center;
  9907. }
  9908. .timuUpImg>div:nth-child(1) {
  9909. margin-right: 10px;
  9910. }
  9911. .timuImgBox {
  9912. margin: 10px 0;
  9913. display: flex;
  9914. flex-direction: column;
  9915. flex-wrap: wrap;
  9916. align-items: flex-start;
  9917. }
  9918. .timuImg {
  9919. width: 100px;
  9920. margin: 5px 0;
  9921. cursor: pointer;
  9922. position: relative;
  9923. }
  9924. .timuImg:hover .deleteWord {
  9925. display: block;
  9926. }
  9927. .deleteWord {
  9928. width: 25px;
  9929. height: 25px;
  9930. position: absolute;
  9931. right: -5px;
  9932. top: -5px;
  9933. cursor: pointer;
  9934. display: none;
  9935. }
  9936. .timuImg>img,
  9937. .deleteWord>img {
  9938. width: 100%;
  9939. height: 100%;
  9940. object-fit: cover;
  9941. }
  9942. .e_add_delete {
  9943. cursor: pointer;
  9944. margin-left: 10px;
  9945. }
  9946. .pType_box {
  9947. margin-top: 30px;
  9948. align-items: flex-end;
  9949. }
  9950. .noneBox {
  9951. height: 100%;
  9952. width: 100%;
  9953. display: flex;
  9954. align-items: center;
  9955. justify-content: center;
  9956. margin-top: 150px;
  9957. }
  9958. .noneBox>img {
  9959. width: 300px;
  9960. }
  9961. </style>