addCourse.vue 480 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346
  1. <template>
  2. <div class="pb_content" style="background: #F0F2F5;">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  6. <div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
  7. <div class="courseTop">
  8. <div class="stepsNav">
  9. <el-breadcrumb separator-class="el-icon-arrow-right">
  10. <el-breadcrumb-item :to="{
  11. path:
  12. '/course?userid=' +
  13. userid +
  14. '&oid=' +
  15. oid +
  16. '&org=' +
  17. org +
  18. '&role=' +
  19. role,
  20. }">课程管理</el-breadcrumb-item>
  21. <el-breadcrumb-item>
  22. <span style="color: rgb(15, 126, 255)">添加课程</span>
  23. </el-breadcrumb-item>
  24. </el-breadcrumb>
  25. </div>
  26. <div class="r_pub_button_retrun" @click="lastSteps()">返回</div>
  27. </div>
  28. <div class="rightBox" style="padding: 0;"
  29. :style="{ height: (!isBtnDisplay) ? 'calc(100% - 50px)' : 'calc(100% - 120px)' }" v-if="this.steps == 1"
  30. @mousewheel="scrollChange">
  31. <div class="updateMask" :style="{
  32. height: rightBoxHeight ? rightBoxHeight + 'px' : '100%',
  33. }" v-if="cid && userid != courseUserid && role != '1'"></div>
  34. <div class="whiteBg" style="background:unset;padding: 0;">
  35. <div>
  36. <div class="basic_box" style="padding: 0;">
  37. <div class="big_box">
  38. <div class="left_first">
  39. <div :class="{
  40. updateTips: cid && userid != courseUserid && role != '1',
  41. }">
  42. <div style="width: 100%;">
  43. <div class="course_input_box">
  44. <div class="bb_courseIcon"><img src="../../../assets/icon/new/course.png" /></div>
  45. <input type="text" placeholder="请输入课程名称" class="binfo_input" v-model="courseName"
  46. style="border: 1.5px solid rgb(202, 209, 220);margin: 0px 10px 0px 0px;border-radius: 5px;font-weight: 600;padding: 12px 14px 12px 71px;" />
  47. <!-- background: #f6f6f6; -->
  48. <el-switch v-model="isTeacherSee" active-text="是否公开此课程"
  49. style="justify-content: center;width: 200px;"></el-switch>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="pType_box all_choose" v-if="oid == '69893dca-1d47-11ed-8c78-005056b86db5'">
  54. <span>类型</span>
  55. <!-- 学科+ 主题+ 未来+ -->
  56. <el-radio-group @change="CourseType2Change" v-model="pTypeCheckName"
  57. style="display: flex; align-items: center">
  58. <div class="all_choose" style="width: 100px" v-for="(item, index) in CourseType2" :key="index">
  59. <el-radio :label="item.name">{{
  60. item.name
  61. }}</el-radio>
  62. </div>
  63. </el-radio-group>
  64. </div>
  65. <div class="both">
  66. <div class="choose">
  67. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
  68. <span v-if="CourseTypeJson[item.id].length > 0 &&
  69. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  70. ? pTypeCheck.indexOf(item.id) != -1
  71. : true)
  72. ">{{ item.name }}:</span>
  73. <el-checkbox-group v-model="courseTypeId" v-if="CourseTypeJson[item.id].length > 0 &&
  74. (oid == '69893dca-1d47-11ed-8c78-005056b86db5'
  75. ? pTypeCheck.indexOf(item.id) != -1
  76. : true)
  77. ">
  78. <el-checkbox v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.id">{{
  79. item1.name }}</el-checkbox>
  80. </el-checkbox-group>
  81. <!-- <div
  82. v-else
  83. style="font-size: 14px; margin-left: -8px"
  84. >
  85. 暂无
  86. </div> -->
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="right_first">
  92. <!-- <div class="ai_box">
  93. <div class="ai_content" @click="openAI"><img src="../../assets/icon/new/ai.png"/><span>AI共创</span></div>
  94. </div> -->
  95. <div class="c_info_title" style="padding: 0 0 15px;margin: 0 auto 0 0;">上传封面</div>
  96. <div style="width: 100%;">
  97. <div class="uploadFm" @click="choosePicVisible = true" v-if="cover.length == 0">
  98. <img src="../../../assets/icon/addPoster.png" alt="" />
  99. <div>点击添加封面</div>
  100. </div>
  101. <el-upload :class="{ disUoloadSty: noneBtnImg }" class="upCss" action="#" list-type="picture"
  102. v-loading="uploadLoading1" :http-request="beforeUpload1" ref="upload1"
  103. :on-preview="handlePictureCardPreview" :on-remove="handle_remove1" :show-file-list="true"
  104. :file-list="cover" accept="image/*" :limit="1" :on-exceed="onExceed" v-else>
  105. <i class="el-icon-plus"></i>
  106. </el-upload>
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <div class="whiteBg" style="margin-top: 10px">
  114. <div class="wb_j_box">
  115. <div class="wb_j_box_content">
  116. <!-- <button class="c_pub_button_add pub_btn_add_img" @click="
  117. (dialogVisibleClass = true),
  118. (classSearch = ''),
  119. (gradeId = ''),
  120. getClass()
  121. ">添加班级</button>
  122. <div v-if="checkboxList2.length" class="wb_j_box_p_box">
  123. <span :class="{ tcMember: getClassC(tc) }" v-for="(tc, tcIndex) in checkboxList2" :key="tcIndex">{{
  124. getClassC(tc) }}</span>
  125. </div> -->
  126. <div class="wb_j_box_btn" @click="
  127. (dialogVisibleClass = true),
  128. (classSearch = ''),
  129. (gradeId = ''),
  130. getClass()
  131. ">
  132. <div class="wb_j_box_title">授课班级</div>
  133. <div class="wb_j_box_btn_c">
  134. <el-tooltip effect="dark" :content="getListClassC(checkboxList2)" placement="top"
  135. v-if="checkboxList2.length" popper-class="text_tooltip2">
  136. <div class="wb_j_box_span">{{ getListClassC(checkboxList2) }}</div>
  137. </el-tooltip>
  138. <div v-else class="wb_j_box_span">请选择授课班级</div>
  139. <div class="wb_j_box_arrow"></div>
  140. </div>
  141. </div>
  142. </div>
  143. <div style="margin-left: auto;">
  144. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="isPasteTask">智能粘贴</button>
  145. </div>
  146. </div>
  147. </div>
  148. <div class="whiteBg" style="border-radius: 0; margin-top: 15px" v-if="false">
  149. <div class="right_title">课程简要描述</div>
  150. <div style="width: 95%; padding: 15px 0px 15px 20px">
  151. <div style="width: 55%">
  152. <textarea rows="8" class="binfo_input" cols v-model="courseText"></textarea>
  153. </div>
  154. </div>
  155. </div>
  156. <div class="whiteBg" style="border-radius: 0; background:#F0F2F5;">
  157. <!-- <div class="right_title">
  158. <div class="bb_courseIcon"><img src="../../../assets/icon/new/course_icon2.png" />
  159. </div>
  160. <span style="margin:0 10px">上传课程内容</span>
  161. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" style="margin-left: 145px"
  162. v-if="isPasteTask">智能粘贴</button>
  163. </div> -->
  164. <div style="display: flex">
  165. <div class="course_left">
  166. <div class="stepsBottom2">
  167. <div class="navBottom" :style="{ height: heightPx }">
  168. <div v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
  169. .taskJson" :key="tIndex">
  170. <div @dragstart="dragTaskStart(t, tIndex)" @dragover.prevent="dragTaskOver(tIndex)"
  171. @dragend="dragTaskEnd()" draggable @click="goToTask(tIndex)" class="navTask" :class="{
  172. isNavTask:
  173. isClickColor > 0 && isClickColor == tIndex + 1,
  174. isNavOpen: t.toolOpen
  175. }">
  176. <div style="left: 8px;" class="chapter_upload_drag"></div>
  177. <div class="nt_taskBox">
  178. <div class="nt_taskTitle">任务{{ tIndex + 1 }}</div>
  179. <div class="nt_taskName">
  180. <el-tooltip effect="light" :content="t.task" placement="top">
  181. <span>{{ t.task }}</span>
  182. </el-tooltip>
  183. </div>
  184. </div>
  185. <!-- <div class="moveBtn" v-if="unitJson[unitIndex].chapterInfo[0].taskJson.length >
  186. 1
  187. ">
  188. <div class="chapter_upload_up" style="margin: 0 5px 0 0;width: 25px;height: 25px;"
  189. @click.stop="taskMove(1, tIndex)"></div>
  190. <div class="chapter_upload_down" style="width: 25px;height: 25px;"
  191. @click.stop="taskMove(2, tIndex)"></div>
  192. </div> -->
  193. </div>
  194. <div class="gjBox" v-if="t.toolChoose.length && t.toolOpen">
  195. <div v-for="(tool, toolIndex2) in t.toolChoose" :key="toolIndex2"
  196. @click="jumpGj(tIndex, toolIndex2)">
  197. <div class="gjCss" :class="{ isGjCss: toolIndexType == `gj${tIndex}${toolIndex2}` }">
  198. <div>工具{{ toolIndex2 + 1 }}:</div>
  199. <div>{{ toolsData[tool.tool[0]] && toolsData[tool.tool[0]].name }}</div>
  200. </div>
  201. </div>
  202. </div>
  203. </div>
  204. </div>
  205. </div>
  206. </div>
  207. <div class="basic_box2">
  208. <div style="margin: 0 0 20px 0; padding: 0 0 0 10px"
  209. v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
  210. <div class="taskBorder" style="padding: 20px 20px 10px;">
  211. <div class="basic_box" style="
  212. margin: 0;
  213. min-height: 0;
  214. padding: 10px 0 0 !important;
  215. ">
  216. <div style="
  217. display: flex;
  218. margin: 0 0 0 0;
  219. flex-direction: row;
  220. justify-content: space-between;
  221. align-items: center;
  222. ">
  223. <div class="lineTitle" style="margin-bottom:10px">学习内容</div>
  224. <div class="add_info_box">
  225. <button class="c_pub_button_add pub_btn_add_img" @click="addImg($event)">
  226. 文件
  227. <input type="file" accept="*" style="display: none" v-if="inputShow"
  228. @change="beforeUpload2($event, unitIndex, 13, 0)" />
  229. </button>
  230. <button class="c_pub_button_add pub_btn_add_img" @click="addAttText(0)">
  231. 图文
  232. </button>
  233. <button class="c_pub_button_add pub_btn_add_img" @click="openLine(0)">
  234. 链接
  235. </button>
  236. <button class="c_pub_button_add pub_btn_add_img" @click="pasteLine(0)">
  237. 代码
  238. </button>
  239. <button class="c_pub_button_add pub_btn_add_img" @click="openSource(0)">
  240. 资源
  241. </button>
  242. <!-- <button class="info_btn" @click="addImg($event)">
  243. 其他附件
  244. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 12, itemTaskIndex)
  245. " />
  246. </button> -->
  247. </div>
  248. <div style="margin-bottom:10px" v-if="!item.taskJson[0].isFoldchapter" class="show_taskD show"
  249. @click="foldC(0)"><img src="../../../assets/icon/new/icon-slide.png" />收起学习内容</div>
  250. <div style="margin-bottom:10px" v-else class="show_taskD" @click="foldC(0)"><img
  251. src="../../../assets/icon/new/icon-slide.png" />展开学习内容</div>
  252. </div>
  253. <div v-if="!item.taskJson[0].isFoldchapter">
  254. <div class="add_chapters_box add_c_none" v-if="item.taskJson[0].chapterData &&
  255. item.taskJson[0].chapterData.length == 0
  256. "><img src="../../../assets/icon/new/c_none.png" alt /><span>请添加学习内容</span></div>
  257. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  258. <div @dragstart="dragStart(item1, index1, 0)" @dragover.prevent="dragOver(index1)"
  259. @dragend="dragEnd()" draggable class="chapter_upload" v-for="(item1, index1) in item.taskJson[0]
  260. .chapterData" :key="item1.id" @click="
  261. getChapterData(
  262. $event,
  263. unitIndex,
  264. index,
  265. index1,
  266. item1.type
  267. )
  268. ">
  269. <div class="chapter_upload_drag"></div>
  270. <div class="chapter_upload_t" style="width: 100%"></div>
  271. <div class="chapter_upload_o" style="
  272. position: relative;
  273. display: flex;
  274. align-items: center;
  275. ">
  276. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  277. <div v-if="item1.type == 2" class="chapter_upload_l_i2"></div>
  278. <div v-if="item1.type == 3" class="chapter_upload_l_i3" style="margin-left: 1px"></div>
  279. <div v-if="item1.type == 6" class="chapter_upload_l_i6" style="margin-left: 1px"></div>
  280. <!-- <div v-if="item1.type == 7" class="chapter_upload_l_i8" style="margin-left: 1px"></div> -->
  281. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px"></div>
  282. <div v-if="item1.type == 14" class="chapter_upload_l_i14" style="margin-left: 1px">
  283. </div>
  284. <div v-if="item1.type == 12" class="chapter_upload_l_i12" style="margin-left: 1px">
  285. </div>
  286. <div v-if="item1.type == 13" class="chapter_upload_l_i13" style="margin-left: 1px">
  287. </div>
  288. </div>
  289. <div class="chapter_upload_n">
  290. <input readonly="true" v-if="item1.type == 2 ||
  291. item1.type == 3 ||
  292. item1.type == 12 ||
  293. item1.type == 13 ||
  294. item1.type == 7
  295. " :placeholder="item1.name" @click="
  296. updataVideoT(
  297. $event,
  298. unitIndex,
  299. 0,
  300. index1
  301. )
  302. " style="
  303. border: none;
  304. outline: none;
  305. width: 80%;
  306. minwidth: 215px;
  307. z-index: 99;
  308. font-size: 14px;
  309. white-space: nowrap;
  310. overflow: hidden;
  311. text-overflow: ellipsis;
  312. " />
  313. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  314. border: none;
  315. outline: none;
  316. width: 80%;
  317. white-space: nowrap;
  318. overflow: hidden;
  319. text-overflow: ellipsis;
  320. " readonly="true" @click="selectAttText(0, index1)" />
  321. <input :placeholder="item1.title ? item1.title : '链接'
  322. " v-if="item1.type == 8" style="
  323. border: none;
  324. outline: none;
  325. width: 80%;
  326. white-space: nowrap;
  327. overflow: hidden;
  328. text-overflow: ellipsis;
  329. " readonly="true" @click="selectLine(0, index1)" />
  330. <input :placeholder="item1.title ? item1.title : '链接'
  331. " v-if="item1.type == 14" style="
  332. border: none;
  333. outline: none;
  334. width: 80%;
  335. white-space: nowrap;
  336. overflow: hidden;
  337. text-overflow: ellipsis;
  338. " readonly="true" @click="openUpdateSource(0, index1)" />
  339. </div>
  340. <div class="chapter_upload_ic">
  341. <div class="chapter_upload_noSee" v-if="item1.type == 12">
  342. </div>
  343. <div class="chapter_upload_ud" style="z-index: 99">
  344. <div class="chapter_upload_up" @click.stop="
  345. upCd(
  346. $event,
  347. unitIndex,
  348. index,
  349. 0,
  350. index1
  351. )
  352. "></div>
  353. <div class="chapter_upload_down" @click.stop="
  354. downCd(
  355. $event,
  356. unitIndex,
  357. index,
  358. 0,
  359. index1
  360. )
  361. "></div>
  362. </div>
  363. <div class="chapter_upload_ic_edit" v-if="item1.type == 2 ||
  364. item1.type == 3 ||
  365. item1.type == 12 ||
  366. item1.type == 13 ||
  367. item1.type == 7
  368. " @click.stop="
  369. updataVideoT(
  370. $event,
  371. unitIndex,
  372. 0,
  373. index1
  374. )
  375. ">
  376. <div></div>
  377. </div>
  378. <div class="chapter_upload_ic_edit" v-if="item1.type == 6"
  379. @click="selectAttText(0, index1)">
  380. <div></div>
  381. </div>
  382. <div class="chapter_upload_ic_edit" v-if="item1.type == 8"
  383. @click="selectLine(0, index1)">
  384. <div></div>
  385. </div>
  386. <div class="chapter_upload_ic_edit" v-if="item1.type == 14"
  387. @click="openUpdateSource(0, index1)">
  388. <div></div>
  389. </div>
  390. <div class="chapter_upload_ic_r" @click.stop="
  391. deleteChapterData(
  392. $event,
  393. unitIndex,
  394. index,
  395. index1,
  396. 0
  397. )
  398. ">
  399. <div></div>
  400. </div>
  401. </div>
  402. </div>
  403. </div>
  404. </div>
  405. </div>
  406. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[0]
  407. .proVisible
  408. " class="mask">
  409. <div class="progressBox">
  410. <!-- <div id="closePro" class="closeCss">
  411. <img src="../../../../assets/icon/close.png" alt />
  412. </div> -->
  413. <div class="lbox">
  414. <img src="../../../assets/loading.gif" />上传中,请稍后
  415. </div>
  416. <div style="margin-bottom: 10px">
  417. <span>{{
  418. unitJson[unitIndex].chapterInfo[0].taskJson[0]
  419. .isFinishSize
  420. }}M</span>
  421. /
  422. <span>{{
  423. unitJson[unitIndex].chapterInfo[0].taskJson[0]
  424. .isAllSize
  425. }}M</span>
  426. </div>
  427. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[0]
  428. .progress
  429. ? unitJson[unitIndex].chapterInfo[0]
  430. .taskJson[0].progress
  431. : 0
  432. " style="width: 80%"></el-progress>
  433. </div>
  434. </div>
  435. </div>
  436. </div>
  437. <div class="taskBorder" :style="{
  438. minHeight: unitJson[unitIndex].easy && 'unset',
  439. }" v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
  440. <div v-if="unitJson[unitIndex].easy != 1">
  441. <div :style="{
  442. marginBottom:
  443. unitJson[unitIndex].easy == 3 ||
  444. (unitJson[unitIndex].easy == 5 &&
  445. itemTask.taskType == 1)
  446. ? '75px'
  447. : '0',
  448. }">
  449. <div style="
  450. display: flex;
  451. margin: 0px 0 20px;
  452. flex-direction: row;
  453. justify-content: flex-start;
  454. align-items: center;
  455. ">
  456. <div class="lineTitle">任务{{ itemTaskIndex + 1 }}概述</div>
  457. </div>
  458. <div :id="'task' + itemTaskIndex" class="chapter_contentbox" style="
  459. flex-direction: row;
  460. justify-content: flex-start;
  461. align-items: center;
  462. ">
  463. <!-- <div class="cc_title">
  464. 任务{{ itemTaskIndex + 1 }}
  465. </div> -->
  466. <div class="cc_input">
  467. <input type="text" placeholder="输入任务名称" class="binfo_input" style="border-radius: 4px"
  468. v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  469. itemTaskIndex
  470. ].task
  471. " />
  472. <div v-if="itemTask.isFold2" class="show_taskD show" @click="fold2(itemTaskIndex)"><img
  473. src="../../../assets/icon/new/icon-slide.png" />收起任务描述</div>
  474. <div v-else class="show_taskD" @click="fold2(itemTaskIndex)"><img
  475. src="../../../assets/icon/new/icon-slide.png" />展开任务描述</div>
  476. </div>
  477. <div class="remove" v-if="item.taskJson.length > 1" @click="deleteTask(itemTaskIndex)"></div>
  478. </div>
  479. </div>
  480. </div>
  481. <div style="margin: 25px 0" v-if="itemTask.isFold2">
  482. <!-- <editor-bar style="width: 90% !important; margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  483. itemTaskIndex
  484. ].taskDetail
  485. " @change="change"></editor-bar> -->
  486. <textarea rows="2" v-autoHeight="70" class="binfo_input" placeholder="请输入任务描述" cols v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  487. itemTaskIndex
  488. ].taskDetail
  489. "></textarea>
  490. </div>
  491. <div class="toolChoose" style="margin: 20px 0">
  492. <div class="tools">
  493. <div class="leftTools" style="
  494. width: 100%;
  495. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  496. <div style="
  497. display: flex;
  498. flex-direction: row;
  499. align-items: baseline;
  500. flex-wrap: nowrap;
  501. justify-content: flex-start;
  502. position: relative;
  503. ">
  504. <div :id="'gj' + itemTaskIndex + '' + toolIndex"
  505. style="margin-right: 20px; font-weight: bold">
  506. 步骤 {{ toolIndex + 1 }} :
  507. </div>
  508. <div class="chooseWho">
  509. <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
  510. " @click="(itemTool.toolType = 0), (itemTool.isFold3 = true), $forceUpdate()">
  511. 互动类
  512. </div>
  513. <div :class="itemTool.toolType == 1
  514. ? 'isChooseActive'
  515. : ''
  516. " @click="
  517. (itemTool.toolType = 1), (itemTool.isFold3 = true), $forceUpdate()
  518. ">
  519. 思维类
  520. </div>
  521. <div :class="itemTool.toolType == 6
  522. ? 'isChooseActive'
  523. : ''
  524. " @click="
  525. (itemTool.toolType = 6), (itemTool.isFold3 = true), $forceUpdate()
  526. ">
  527. 协作类
  528. </div>
  529. <div :class="itemTool.toolType == 2
  530. ? 'isChooseActive'
  531. : ''
  532. " @click="
  533. (itemTool.toolType = 2), (itemTool.isFold3 = true), $forceUpdate()
  534. ">
  535. 测评类
  536. </div>
  537. <div :class="itemTool.toolType == 7
  538. ? 'isChooseActive'
  539. : ''
  540. " @click="
  541. (itemTool.toolType = 7), (itemTool.isFold3 = true), $forceUpdate()
  542. ">
  543. 评价类
  544. </div>
  545. <div :class="itemTool.toolType == 3
  546. ? 'isChooseActive'
  547. : ''
  548. " @click="
  549. (itemTool.toolType = 3), (itemTool.isFold3 = true), $forceUpdate()
  550. ">
  551. 编程类
  552. </div>
  553. <div :class="itemTool.toolType == 5 ? 'isChooseActive' : ''
  554. " @click="(itemTool.toolType = 5), (itemTool.isFold3 = true), $forceUpdate()">
  555. 学科类
  556. </div>
  557. <!-- <div :class="itemTool.toolType == 4 ? 'isChooseActive' : ''
  558. " @click="(itemTool.toolType = 4), $forceUpdate()">
  559. 其他
  560. </div> -->
  561. </div>
  562. <div v-if="itemTool.isFold3" class="show_toolD show"
  563. @click="fold3(itemTaskIndex, toolIndex)"
  564. :style="{ right: itemTask.toolChoose.length > 1 ? '45px' : '0px' }"><img
  565. src="../../../assets/icon/new/icon-slide.png" />收起工具栏</div>
  566. <div v-else class="show_toolD" @click="fold3(itemTaskIndex, toolIndex)"
  567. :style="{ right: itemTask.toolChoose.length > 1 ? '45px' : '0px' }"><img
  568. src="../../../assets/icon/new/icon-slide.png" />展开工具栏</div>
  569. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  570. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 0"></div>
  571. </div>
  572. <div style="min-height: 163px" v-show="itemTool.isFold3">
  573. <div class="toolSort" v-if="itemTool.toolType == 0">
  574. <!-- <div class="tool">
  575. <div
  576. class="whiteBIcon"
  577. @click="addTools(8, itemTaskIndex, toolIndex)"
  578. >
  579. <img src="../../../assets/icon/secondToolList/library.png" alt />
  580. <div style="margin: 5px 0">素材库</div>
  581. </div>
  582. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  583. <img
  584. src="../../../assets/icon/checkNo.png"
  585. alt
  586. v-if="itemTool.tool.indexOf(8) == -1"
  587. />
  588. <div class="checkDiv" v-else><img src="../../../assets/icon/checkedIs.png"
  589. alt /><span>已选择</span></div>
  590. </div>
  591. </div>-->
  592. <!-- <div class="tool">
  593. <div
  594. class="whiteBIcon"
  595. @click="addTools(17, itemTaskIndex, toolIndex)"
  596. >
  597. <img
  598. src="../../../assets/icon/secondToolList/library.png"
  599. alt
  600. />
  601. <div style="margin: 5px 0">学习资料</div>
  602. </div>
  603. <div
  604. class="check"
  605. @click="addTools(17, itemTaskIndex, toolIndex)"
  606. >
  607. <img
  608. src="../../../assets/icon/checkNo.png"
  609. alt
  610. v-if="itemTool.tool.indexOf(17) == -1"
  611. />
  612. <img
  613. src="../../../assets/icon/checkedIs.png"
  614. alt
  615. v-else
  616. />
  617. </div>10
  618. </div> -->
  619. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(10) != -1 }"
  620. @click="addTools(10, itemTaskIndex, toolIndex)">
  621. <div class="whiteBIcon" @click.stop="
  622. openTools(itemTaskIndex, 10, toolIndex)
  623. ">
  624. <img src="../../../assets/icon/thirdToolList/time.png" alt />
  625. <div style="margin: 5px 0">倒计时</div>
  626. </div>
  627. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  628. <div class="isCTool" v-if="itemTool.tool.indexOf(10) != -1"><img
  629. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  630. <!-- <div class="check" @click="
  631. addTools(10, itemTaskIndex, toolIndex)
  632. ">
  633. <img src="../../../assets/icon/checkNo.png" alt
  634. v-if="itemTool.tool.indexOf(10) == -1" />
  635. <div class="checkDiv" v-else>
  636. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  637. </div>
  638. </div> -->
  639. </div>
  640. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(65) != -1 }"
  641. @click="addTools(65, itemTaskIndex, toolIndex)">
  642. <div class="whiteBIcon" @click.stop="addTools(65, itemTaskIndex, toolIndex)">
  643. <img src="../../../assets/icon/firstToolList/pickPeople.png" alt />
  644. <div style="margin: 5px 0">挑人</div>
  645. </div>
  646. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  647. <div class="isCTool" v-if="itemTool.tool.indexOf(65) != -1"><img
  648. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  649. <!-- <div class="check" @click="addTools(65, itemTaskIndex, toolIndex)">
  650. <img src="../../../assets/icon/checkNo.png" alt
  651. v-if="itemTool.tool.indexOf(65) == -1" />
  652. <div class="checkDiv" v-else>
  653. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  654. </div>
  655. </div> -->
  656. </div>
  657. <!-- <div class="tool">
  658. <div
  659. class="whiteBIcon"
  660. @click="
  661. openTools(itemTaskIndex, 49, toolIndex)
  662. "
  663. >
  664. <img
  665. src="../../../assets/icon/fourthToolList/group.png"
  666. alt
  667. />
  668. <div style="margin: 5px 0">学生分组</div>
  669. </div>
  670. <div
  671. class="check"
  672. @click="
  673. addTools(49, itemTaskIndex, toolIndex)
  674. "
  675. >
  676. <img
  677. src="../../../assets/icon/checkNo.png"
  678. alt
  679. v-if="itemTool.tool.indexOf(49) == -1"
  680. />
  681. <div class="checkDiv" v-else>
  682. <img
  683. src="../../../assets/icon/checkedIs.png"
  684. alt
  685. /><span>已选择</span>
  686. </div>
  687. </div>
  688. </div> -->
  689. <!-- <div class="tool">
  690. <div class="whiteBIcon" @click="
  691. openTools(itemTaskIndex, 62, toolIndex)
  692. ">
  693. <img src="../../../assets/icon/fourthToolList/interVideo.png" alt />
  694. <div style="margin: 5px 0">交互视频</div>
  695. </div>
  696. <div class="check" @click="
  697. addTools(62, itemTaskIndex, toolIndex)
  698. ">
  699. <img src="../../../assets/icon/checkNo.png" alt
  700. v-if="itemTool.tool.indexOf(62) == -1" />
  701. <div class="checkDiv" v-else>
  702. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  703. </div>
  704. </div>
  705. </div> -->
  706. </div>
  707. <div class="toolSort" v-if="itemTool.toolType == 1">
  708. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(7) != -1 }"
  709. @click="addTools(7, itemTaskIndex, toolIndex)">
  710. <div class="whiteBIcon" @click.stop="
  711. addTools(7, itemTaskIndex, toolIndex)
  712. ">
  713. <img src="../../../assets/icon/secondToolList/mindNetwork.png" alt />
  714. <div style="margin: 5px 0">思维网格</div>
  715. </div>
  716. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  717. <div class="isCTool" v-if="itemTool.tool.indexOf(7) != -1"><img
  718. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  719. <!-- <div class="check" @click="
  720. addTools(7, itemTaskIndex, toolIndex)
  721. ">
  722. <img src="../../../assets/icon/checkNo.png" alt
  723. v-if="itemTool.tool.indexOf(7) == -1" />
  724. <div class="checkDiv" v-else>
  725. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  726. </div>
  727. </div> -->
  728. </div>
  729. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(1) != -1 }"
  730. @click="addTools(1, itemTaskIndex, toolIndex)">
  731. <div class="whiteBIcon" @click.stop="
  732. openTools(itemTaskIndex, 1, toolIndex)
  733. ">
  734. <img src="../../../assets/icon/secondToolList/whiteBoard.png" alt />
  735. <div style="margin: 5px 0">电子白板</div>
  736. </div>
  737. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  738. <div class="isCTool" v-if="itemTool.tool.indexOf(1) != -1"><img
  739. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  740. <!-- <div class="check" @click="
  741. addTools(1, itemTaskIndex, toolIndex)
  742. ">
  743. <img src="../../../assets/icon/checkNo.png" alt
  744. v-if="itemTool.tool.indexOf(1) == -1" />
  745. <div class="checkDiv" v-else>
  746. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  747. </div>
  748. </div> -->
  749. </div>
  750. <!-- <div class="tool">
  751. <div
  752. class="whiteBIcon"
  753. @click="addTools(2, itemTaskIndex, toolIndex)"
  754. >
  755. <img
  756. src="../../../assets/icon/secondToolList/note.png"
  757. alt
  758. />
  759. <div style="margin: 5px 0">便签</div>
  760. </div>
  761. <div
  762. class="check"
  763. @click="addTools(2, itemTaskIndex, toolIndex)"
  764. >
  765. <img
  766. src="../../../assets/icon/checkNo.png"
  767. alt
  768. v-if="itemTool.tool.indexOf(2) == -1"
  769. />
  770. <div class="checkDiv" v-else>
  771. <img
  772. src="../../../assets/icon/checkedIs.png"
  773. alt
  774. /><span>已选择</span>
  775. </div>
  776. </div>
  777. </div> -->
  778. <!-- <div class="tool">
  779. <div class="whiteBIcon" @click="addTools(6, itemTaskIndex, toolIndex)">
  780. <img src="../../../assets/icon/secondToolList/doc.png" alt />
  781. <div style="margin: 5px 0">协同文档</div>
  782. </div>
  783. <div
  784. class="check"
  785. @click="addTools(6, itemTaskIndex, toolIndex)"
  786. >
  787. <img
  788. src="../../../assets/icon/checkNo.png"
  789. alt
  790. v-if="itemTool.tool.indexOf(6) == -1"
  791. />
  792. <div class="checkDiv" v-else>
  793. <img
  794. src="../../../assets/icon/checkedIs.png"
  795. alt
  796. /><span>已选择</span>
  797. </div>
  798. </div>
  799. </div> -->
  800. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(52) != -1 }"
  801. @click="addTools(52, itemTaskIndex, toolIndex)">
  802. <div class="whiteBIcon" @click.stop="
  803. openTools(itemTaskIndex, 52, toolIndex)
  804. ">
  805. <img src="../../../assets/icon/fourthToolList/text.png" alt />
  806. <div style="margin: 5px 0">文档</div>
  807. </div>
  808. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  809. <div class="isCTool" v-if="itemTool.tool.indexOf(52) != -1"><img
  810. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  811. <!-- <div class="check" @click="
  812. addTools(52, itemTaskIndex, toolIndex)
  813. ">
  814. <img src="../../../assets/icon/checkNo.png" alt
  815. v-if="itemTool.tool.indexOf(52) == -1" />
  816. <div class="checkDiv" v-else>
  817. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  818. </div>
  819. </div> -->
  820. </div>
  821. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(3) != -1 }"
  822. @click="addTools(3, itemTaskIndex, toolIndex)">
  823. <div class="whiteBIcon" @click.stop="
  824. openTools(itemTaskIndex, 3, toolIndex)
  825. ">
  826. <img src="../../../assets/icon/secondToolList/mindMapping.png" alt />
  827. <div style="margin: 5px 0">思维导图</div>
  828. </div>
  829. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  830. <div class="isCTool" v-if="itemTool.tool.indexOf(3) != -1"><img
  831. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  832. <!-- <div class="check" @click="
  833. addTools(3, itemTaskIndex, toolIndex)
  834. ">
  835. <img src="../../../assets/icon/checkNo.png" alt
  836. v-if="itemTool.tool.indexOf(3) == -1" />
  837. <div class="checkDiv" v-else>
  838. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  839. </div>
  840. </div> -->
  841. </div>
  842. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(48) != -1 }"
  843. @click="addTools(48, itemTaskIndex, toolIndex)">
  844. <div class="whiteBIcon" @click.stop="
  845. openTools(itemTaskIndex, 48, toolIndex)
  846. ">
  847. <img src="../../../assets/icon/fourthToolList/table.png" alt />
  848. <div style="margin: 5px 0">表格</div>
  849. </div>
  850. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  851. <div class="isCTool" v-if="itemTool.tool.indexOf(48) != -1"><img
  852. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  853. <!-- <div class="check" @click="
  854. addTools(48, itemTaskIndex, toolIndex)
  855. ">
  856. <img src="../../../assets/icon/checkNo.png" alt
  857. v-if="itemTool.tool.indexOf(48) == -1" />
  858. <div class="checkDiv" v-else>
  859. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  860. </div>
  861. </div> -->
  862. </div>
  863. </div>
  864. <div class="toolSort" v-if="itemTool.toolType == 6">
  865. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(49) != -1 }"
  866. @click="addTools(49, itemTaskIndex, toolIndex)">
  867. <div class="whiteBIcon" @click.stop="
  868. openTools(itemTaskIndex, 49, toolIndex)
  869. ">
  870. <img src="../../../assets/icon/fourthToolList/group.png" alt />
  871. <div style="margin: 5px 0">学生分组</div>
  872. </div>
  873. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  874. <div class="isCTool" v-if="itemTool.tool.indexOf(49) != -1"><img
  875. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  876. <!-- <div class="check" @click="
  877. addTools(49, itemTaskIndex, toolIndex)
  878. ">
  879. <img src="../../../assets/icon/checkNo.png" alt
  880. v-if="itemTool.tool.indexOf(49) == -1" />
  881. <div class="checkDiv" v-else>
  882. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  883. </div>
  884. </div> -->
  885. </div>
  886. </div>
  887. <div class="toolSort" v-if="itemTool.toolType == 2">
  888. <!-- <div class="tool">
  889. <div
  890. class="whiteBIcon"
  891. @click="addTools(5, itemTaskIndex, toolIndex)"
  892. >
  893. <img
  894. src="../../../assets/icon/thirdToolList/score.png"
  895. alt
  896. />
  897. <div style="margin: 5px 0">量规评分</div>
  898. </div>
  899. <div
  900. class="check"
  901. @click="addTools(5, itemTaskIndex, toolIndex)"
  902. >
  903. <img
  904. src="../../../assets/icon/checkNo.png"
  905. alt
  906. v-if="itemTool.tool.indexOf(5) == -1"
  907. />
  908. <img
  909. src="../../../assets/icon/checkedIs.png"
  910. alt
  911. v-else
  912. />
  913. </div>
  914. </div>-->
  915. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(4) != -1 }"
  916. @click="addTools(4, itemTaskIndex, toolIndex)">
  917. <div class="whiteBIcon" @click.stop="
  918. openTools(itemTaskIndex, 4, toolIndex)
  919. ">
  920. <img src="../../../assets/icon/thirdToolList/ask.png" alt />
  921. <div style="margin: 5px 0">问卷调查</div>
  922. </div>
  923. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  924. <div class="isCTool" v-if="itemTool.tool.indexOf(4) != -1"><img
  925. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  926. <!-- <div class="check" @click="
  927. addTools(4, itemTaskIndex, toolIndex)
  928. ">
  929. <img src="../../../assets/icon/checkNo.png" alt
  930. v-if="itemTool.tool.indexOf(4) == -1" />
  931. <div class="checkDiv" v-else>
  932. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  933. </div>
  934. </div> -->
  935. </div>
  936. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(45) != -1 }"
  937. @click="addTools(45, itemTaskIndex, toolIndex)">
  938. <div class="whiteBIcon" @click.stop="
  939. openTools(itemTaskIndex, 45, toolIndex)
  940. ">
  941. <img src="../../../assets/icon/thirdToolList/choose.png" alt />
  942. <div style="margin: 5px 0">选择题</div>
  943. </div>
  944. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  945. <div class="isCTool" v-if="itemTool.tool.indexOf(45) != -1"><img
  946. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  947. <!-- <div class="check" @click="
  948. addTools(45, itemTaskIndex, toolIndex)
  949. ">
  950. <img src="../../../assets/icon/checkNo.png" alt
  951. v-if="itemTool.tool.indexOf(45) == -1" />
  952. <div class="checkDiv" v-else>
  953. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  954. </div>
  955. </div> -->
  956. </div>
  957. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(15) != -1 }"
  958. @click="addTools(15, itemTaskIndex, toolIndex)">
  959. <div class="whiteBIcon" @click.stop="
  960. openTools(itemTaskIndex, 15, toolIndex)
  961. ">
  962. <img src="../../../assets/icon/thirdToolList/answer.png" alt />
  963. <div style="margin: 5px 0">问答</div>
  964. </div>
  965. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  966. <div class="isCTool" v-if="itemTool.tool.indexOf(15) != -1"><img
  967. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  968. <!-- <div class="check" @click="
  969. addTools(15, itemTaskIndex, toolIndex)
  970. ">
  971. <img src="../../../assets/icon/checkNo.png" alt
  972. v-if="itemTool.tool.indexOf(15) == -1" />
  973. <div class="checkDiv" v-else>
  974. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  975. </div>
  976. </div> -->
  977. </div>
  978. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(16) != -1 }"
  979. @click="addTools(16, itemTaskIndex, toolIndex)">
  980. <div class="whiteBIcon" @click.stop="
  981. addTools(16, itemTaskIndex, toolIndex)
  982. ">
  983. <img src="../../../assets/icon/thirdToolList/work.png" alt />
  984. <div style="margin: 5px 0">作业提交</div>
  985. </div>
  986. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  987. <div class="isCTool" v-if="itemTool.tool.indexOf(16) != -1"><img
  988. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  989. <!-- <div class="check" @click="
  990. addTools(16, itemTaskIndex, toolIndex)
  991. ">
  992. <img src="../../../assets/icon/checkNo.png" alt
  993. v-if="itemTool.tool.indexOf(16) == -1" />
  994. <div class="checkDiv" v-else>
  995. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  996. </div>
  997. </div> -->
  998. </div>
  999. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(50) != -1 }"
  1000. @click="addTools(50, itemTaskIndex, toolIndex)">
  1001. <div class="whiteBIcon" @click.stop="
  1002. addTools(50, itemTaskIndex, toolIndex)
  1003. ">
  1004. <img src="../../../assets/icon/thirdToolList/plwork.png" alt />
  1005. <div style="margin: 5px 0">批量上传</div>
  1006. </div>
  1007. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1008. <div class="isCTool" v-if="itemTool.tool.indexOf(50) != -1"><img
  1009. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1010. <!-- <div class="check" @click="
  1011. addTools(50, itemTaskIndex, toolIndex)
  1012. ">
  1013. <img src="../../../assets/icon/checkNo.png" alt
  1014. v-if="itemTool.tool.indexOf(50) == -1" />
  1015. <div class="checkDiv" v-else>
  1016. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1017. </div>
  1018. </div> -->
  1019. </div>
  1020. <!-- <div class="tool">
  1021. <div
  1022. class="whiteBIcon"
  1023. @click="
  1024. openTools(itemTaskIndex, 40, toolIndex)
  1025. "
  1026. >
  1027. <img
  1028. src="../../../assets/icon/thirdToolList/eval.png"
  1029. alt
  1030. />
  1031. <div style="margin: 5px 0">个人评价</div>
  1032. </div>
  1033. <div
  1034. class="check"
  1035. @click="
  1036. addTools(40, itemTaskIndex, toolIndex)
  1037. "
  1038. >
  1039. <img
  1040. src="../../../assets/icon/checkNo.png"
  1041. alt
  1042. v-if="itemTool.tool.indexOf(40) == -1"
  1043. />
  1044. <div class="checkDiv" v-else>
  1045. <img
  1046. src="../../../assets/icon/checkedIs.png"
  1047. alt
  1048. /><span>已选择</span>
  1049. </div>
  1050. </div>
  1051. </div> -->
  1052. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(41) != -1 }"
  1053. @click="addTools(41, itemTaskIndex, toolIndex)">
  1054. <div class="whiteBIcon" @click.stop="
  1055. openTools(itemTaskIndex, 41, toolIndex)
  1056. ">
  1057. <img src="../../../assets/icon/thirdToolList/select.png" alt />
  1058. <div style="margin: 5px 0">选择匹配</div>
  1059. </div>
  1060. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1061. <div class="isCTool" v-if="itemTool.tool.indexOf(41) != -1"><img
  1062. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1063. <!-- <div class="check" @click="
  1064. addTools(41, itemTaskIndex, toolIndex)
  1065. ">
  1066. <img src="../../../assets/icon/checkNo.png" alt
  1067. v-if="itemTool.tool.indexOf(41) == -1" />
  1068. <div class="checkDiv" v-else>
  1069. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1070. </div>
  1071. </div> -->
  1072. </div>
  1073. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(47) != -1 }"
  1074. @click="addTools(47, itemTaskIndex, toolIndex)">
  1075. <div class="whiteBIcon" @click.stop="
  1076. openTools(itemTaskIndex, 47, toolIndex)
  1077. ">
  1078. <img src="../../../assets/icon/fourthToolList/conSentences.png" alt />
  1079. <div style="margin: 5px 0">排序</div>
  1080. </div>
  1081. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1082. <div class="isCTool" v-if="itemTool.tool.indexOf(47) != -1"><img
  1083. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1084. <!-- <div class="check" @click="
  1085. addTools(47, itemTaskIndex, toolIndex)
  1086. ">
  1087. <img src="../../../assets/icon/checkNo.png" alt
  1088. v-if="itemTool.tool.indexOf(47) == -1" />
  1089. <div class="checkDiv" v-else>
  1090. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1091. </div>
  1092. </div> -->
  1093. </div>
  1094. <!-- <div class="tool">
  1095. <div
  1096. class="whiteBIcon"
  1097. @click="openTools(itemTaskIndex, 42, toolIndex)"
  1098. >
  1099. <img
  1100. src="../../../assets/icon/thirdToolList/mp3.png"
  1101. alt
  1102. />
  1103. <div style="margin: 5px 0">上传音频</div>
  1104. </div>
  1105. <div
  1106. class="check"
  1107. @click="addTools(42, itemTaskIndex, toolIndex)"
  1108. >
  1109. <img
  1110. src="../../../assets/icon/checkNo.png"
  1111. alt
  1112. v-if="itemTool.tool.indexOf(42) == -1"
  1113. />
  1114. <img
  1115. src="../../../assets/icon/checkedIs.png"
  1116. alt
  1117. v-else
  1118. />
  1119. </div>
  1120. </div> -->
  1121. </div>
  1122. <div class="toolSort" v-if="itemTool.toolType == 3">
  1123. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(18) != -1 }"
  1124. @click="addTools(18, itemTaskIndex, toolIndex)">
  1125. <div class="whiteBIcon" @click.stop="
  1126. addTools(18, itemTaskIndex, toolIndex)
  1127. ">
  1128. <img src="../../../assets/icon/thirdToolList/trainPlatform.png" alt />
  1129. <div style="margin: 5px 0">训练平台</div>
  1130. </div>
  1131. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1132. <div class="isCTool" v-if="itemTool.tool.indexOf(18) != -1"><img
  1133. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1134. <!-- <div class="check" @click="
  1135. addTools(18, itemTaskIndex, toolIndex)
  1136. ">
  1137. <img src="../../../assets/icon/checkNo.png" alt
  1138. v-if="itemTool.tool.indexOf(18) == -1" />
  1139. <div class="checkDiv" v-else>
  1140. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1141. </div>
  1142. </div> -->
  1143. </div>
  1144. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(21) != -1 }"
  1145. @click="addTools(21, itemTaskIndex, toolIndex)">
  1146. <div class="whiteBIcon" @click.stop="
  1147. addTools(21, itemTaskIndex, toolIndex)
  1148. ">
  1149. <img src="../../../assets/icon/fourthToolList/program.png" alt />
  1150. <div style="margin: 5px 0">AIoT Blockly</div>
  1151. </div>
  1152. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1153. <div class="isCTool" v-if="itemTool.tool.indexOf(21) != -1"><img
  1154. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1155. <!-- <div class="check" @click="
  1156. addTools(21, itemTaskIndex, toolIndex)
  1157. ">
  1158. <img src="../../../assets/icon/checkNo.png" alt
  1159. v-if="itemTool.tool.indexOf(21) == -1" />
  1160. <div class="checkDiv" v-else>
  1161. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1162. </div>
  1163. </div> -->
  1164. </div>
  1165. <!-- <div class="tool">
  1166. <div class="whiteBIcon" @click="
  1167. addTools(22, itemTaskIndex, toolIndex)
  1168. ">
  1169. <img src="../../../assets/icon/fourthToolList/AIprogram2.png" alt />
  1170. <div style="margin: 5px 0">AI体验</div>
  1171. </div>
  1172. <div class="check" @click="
  1173. addTools(22, itemTaskIndex, toolIndex)
  1174. ">
  1175. <img src="../../../assets/icon/checkNo.png" alt
  1176. v-if="itemTool.tool.indexOf(22) == -1" />
  1177. <div class="checkDiv" v-else>
  1178. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1179. </div>
  1180. </div>
  1181. </div> -->
  1182. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(23) != -1 }"
  1183. @click="addTools(23, itemTaskIndex, toolIndex)">
  1184. <div class="whiteBIcon" @click.stop="
  1185. addTools(23, itemTaskIndex, toolIndex)
  1186. ">
  1187. <img src="../../../assets/icon/fourthToolList/Pythonprogram.png" alt />
  1188. <div style="margin: 5px 0">AI Python</div>
  1189. </div>
  1190. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1191. <div class="isCTool" v-if="itemTool.tool.indexOf(23) != -1"><img
  1192. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1193. <!-- <div class="check" @click="
  1194. addTools(23, itemTaskIndex, toolIndex)
  1195. ">
  1196. <img src="../../../assets/icon/checkNo.png" alt
  1197. v-if="itemTool.tool.indexOf(23) == -1" />
  1198. <div class="checkDiv" v-else>
  1199. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1200. </div>
  1201. </div> -->
  1202. </div>
  1203. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(24) != -1 }"
  1204. @click="addTools(24, itemTaskIndex, toolIndex)">
  1205. <div class="whiteBIcon" @click.stop="
  1206. addTools(24, itemTaskIndex, toolIndex)
  1207. ">
  1208. <img src="../../../assets/icon/fourthToolList/AIprogram.png" alt />
  1209. <div style="margin: 5px 0">AI Blockly</div>
  1210. </div>
  1211. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1212. <div class="isCTool" v-if="itemTool.tool.indexOf(24) != -1"><img
  1213. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1214. <!-- <div class="check" @click="
  1215. addTools(24, itemTaskIndex, toolIndex)
  1216. ">
  1217. <img src="../../../assets/icon/checkNo.png" alt
  1218. v-if="itemTool.tool.indexOf(24) == -1" />
  1219. <div class="checkDiv" v-else>
  1220. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1221. </div>
  1222. </div> -->
  1223. </div>
  1224. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(32) != -1 }"
  1225. @click="addTools(32, itemTaskIndex, toolIndex)">
  1226. <div class="whiteBIcon" @click.stop="
  1227. addTools(32, itemTaskIndex, toolIndex)
  1228. ">
  1229. <img src="../../../assets/icon/thirdToolList/code.png" alt />
  1230. <div style="margin: 5px 0">源码编辑</div>
  1231. </div>
  1232. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1233. <div class="isCTool" v-if="itemTool.tool.indexOf(32) != -1"><img
  1234. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1235. <!-- <div class="check" @click="
  1236. addTools(32, itemTaskIndex, toolIndex)
  1237. ">
  1238. <img src="../../../assets/icon/checkNo.png" alt
  1239. v-if="itemTool.tool.indexOf(32) == -1" />
  1240. <div class="checkDiv" v-else>
  1241. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1242. </div>
  1243. </div> -->
  1244. </div>
  1245. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(57) != -1 }"
  1246. @click="addTools(57, itemTaskIndex, toolIndex)">
  1247. <div class="whiteBIcon" @click.stop="openTools(itemTaskIndex, 57, toolIndex)">
  1248. <img src="../../../assets/icon/fourthToolList/cocopi.png" alt />
  1249. <div style="margin: 5px 0">CocoPi</div>
  1250. </div>
  1251. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1252. <div class="isCTool" v-if="itemTool.tool.indexOf(57) != -1"><img
  1253. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1254. <!-- <div class="check" @click="
  1255. addTools(57, itemTaskIndex, toolIndex)
  1256. ">
  1257. <img src="../../../assets/icon/checkNo.png" alt
  1258. v-if="itemTool.tool.indexOf(57) == -1" />
  1259. <div class="checkDiv" v-else>
  1260. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1261. </div>
  1262. </div> -->
  1263. </div>
  1264. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(63) != -1 }"
  1265. @click="addTools(63, itemTaskIndex, toolIndex)">
  1266. <div class="whiteBIcon" @click.stop="
  1267. addTools(63, itemTaskIndex, toolIndex)
  1268. ">
  1269. <img src="../../../assets/icon/fourthToolList/Wood.png" alt />
  1270. <div style="margin: 5px 0">海龟编程</div>
  1271. </div>
  1272. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1273. <div class="isCTool" v-if="itemTool.tool.indexOf(63) != -1"><img
  1274. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1275. <!-- <div class="check" @click="
  1276. addTools(63, itemTaskIndex, toolIndex)
  1277. ">
  1278. <img src="../../../assets/icon/checkNo.png" alt
  1279. v-if="itemTool.tool.indexOf(63) == -1" />
  1280. <div class="checkDiv" v-else>
  1281. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1282. </div>
  1283. </div> -->
  1284. </div>
  1285. </div>
  1286. <div class="toolSort" v-if="itemTool.toolType == 5">
  1287. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(28) != -1 }"
  1288. @click="addTools(28, itemTaskIndex, toolIndex)">
  1289. <div class="whiteBIcon" @click.stop="
  1290. addTools(28, itemTaskIndex, toolIndex)
  1291. ">
  1292. <img src="../../../assets/icon/secondToolList/translation.png" alt />
  1293. <div style="margin: 5px 0">翻译</div>
  1294. </div>
  1295. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1296. <div class="isCTool" v-if="itemTool.tool.indexOf(28) != -1"><img
  1297. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1298. <!-- <div class="check" @click="
  1299. addTools(28, itemTaskIndex, toolIndex)
  1300. ">
  1301. <img src="../../../assets/icon/checkNo.png" alt
  1302. v-if="itemTool.tool.indexOf(28) == -1" />
  1303. <div class="checkDiv" v-else>
  1304. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1305. </div>
  1306. </div> -->
  1307. </div>
  1308. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(31) != -1 }"
  1309. @click="addTools(31, itemTaskIndex, toolIndex)">
  1310. <div class="whiteBIcon" @click.stop="
  1311. addTools(31, itemTaskIndex, toolIndex)
  1312. ">
  1313. <img src="../../../assets/icon/secondToolList/networkPanel.png" alt />
  1314. <div style="margin: 5px 0">数字画板</div>
  1315. </div>
  1316. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1317. <div class="isCTool" v-if="itemTool.tool.indexOf(31) != -1"><img
  1318. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1319. <!-- <div class="check" @click="
  1320. addTools(31, itemTaskIndex, toolIndex)
  1321. ">
  1322. <img src="../../../assets/icon/checkNo.png" alt
  1323. v-if="itemTool.tool.indexOf(31) == -1" />
  1324. <div class="checkDiv" v-else>
  1325. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1326. </div>
  1327. </div> -->
  1328. </div>
  1329. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(39) != -1 }"
  1330. @click="addTools(39, itemTaskIndex, toolIndex)">
  1331. <div class="whiteBIcon" @click.stop="
  1332. addTools(39, itemTaskIndex, toolIndex)
  1333. ">
  1334. <img src="../../../assets/icon/secondToolList/GeoGebra.png" alt />
  1335. <div style="margin: 5px 0">GeoGebra</div>
  1336. </div>
  1337. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1338. <div class="isCTool" v-if="itemTool.tool.indexOf(39) != -1"><img
  1339. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1340. <!-- <div class="check" @click="
  1341. addTools(39, itemTaskIndex, toolIndex)
  1342. ">
  1343. <img src="../../../assets/icon/checkNo.png" alt
  1344. v-if="itemTool.tool.indexOf(39) == -1" />
  1345. <div class="checkDiv" v-else>
  1346. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1347. </div>
  1348. </div> -->
  1349. </div>
  1350. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(66) != -1 }"
  1351. @click="addTools(66, itemTaskIndex, toolIndex)">
  1352. <div class="whiteBIcon" @click.stop="
  1353. addTools(66, itemTaskIndex, toolIndex)
  1354. ">
  1355. <img src="../../../assets/icon/secondToolList/formulaEdi.png" alt />
  1356. <div style="margin: 5px 0">公式编辑</div>
  1357. </div>
  1358. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1359. <div class="isCTool" v-if="itemTool.tool.indexOf(66) != -1"><img
  1360. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1361. <!-- <div class="check" @click="
  1362. addTools(66, itemTaskIndex, toolIndex)
  1363. ">
  1364. <img src="../../../assets/icon/checkNo.png" alt
  1365. v-if="itemTool.tool.indexOf(66) == -1" />
  1366. <div class="checkDiv" v-else>
  1367. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1368. </div>
  1369. </div> -->
  1370. </div>
  1371. <!-- <div class="tool">
  1372. <div class="whiteBIcon" @click="
  1373. addTools(67, itemTaskIndex, toolIndex)
  1374. ">
  1375. <img src="../../../assets/icon/secondToolList/molStr.png" alt />
  1376. <div style="margin: 5px 0">分子结构</div>
  1377. </div>
  1378. <div class="check" @click="
  1379. addTools(67, itemTaskIndex, toolIndex)
  1380. ">
  1381. <img src="../../../assets/icon/checkNo.png" alt
  1382. v-if="itemTool.tool.indexOf(67) == -1" />
  1383. <div class="checkDiv" v-else>
  1384. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1385. </div>
  1386. </div>
  1387. </div> -->
  1388. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(68) != -1 }"
  1389. @click="addTools(68, itemTaskIndex, toolIndex)">
  1390. <div class="whiteBIcon" @click.stop="
  1391. addTools(68, itemTaskIndex, toolIndex)
  1392. ">
  1393. <img src="../../../assets/icon/secondToolList/timeAxis.png" alt />
  1394. <div style="margin: 5px 0">时间轴</div>
  1395. </div>
  1396. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1397. <div class="isCTool" v-if="itemTool.tool.indexOf(68) != -1"><img
  1398. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1399. <!-- <div class="check" @click="
  1400. addTools(68, itemTaskIndex, toolIndex)
  1401. ">
  1402. <img src="../../../assets/icon/checkNo.png" alt
  1403. v-if="itemTool.tool.indexOf(68) == -1" />
  1404. <div class="checkDiv" v-else>
  1405. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1406. </div>
  1407. </div> -->
  1408. </div>
  1409. <!-- <div class="tool">
  1410. <div class="whiteBIcon" @click="
  1411. addTools(28, itemTaskIndex, toolIndex)
  1412. ">
  1413. <img src="../../../assets/icon/secondToolList/translation.png" alt />
  1414. <div style="margin: 5px 0">翻译</div>
  1415. </div>
  1416. <div class="check" @click="
  1417. addTools(28, itemTaskIndex, toolIndex)
  1418. ">
  1419. <img src="../../../assets/icon/checkNo.png" alt
  1420. v-if="itemTool.tool.indexOf(28) == -1" />
  1421. <div class="checkDiv" v-else>
  1422. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1423. </div>
  1424. </div>
  1425. </div>
  1426. <div class="tool">
  1427. <div class="whiteBIcon" @click="
  1428. addTools(37, itemTaskIndex, toolIndex)
  1429. ">
  1430. <img src="../../../assets/icon/secondToolList/mohe.png" alt />
  1431. <div style="margin: 5px 0">魔盒识字</div>
  1432. </div>
  1433. <div class="check" @click="
  1434. addTools(37, itemTaskIndex, toolIndex)
  1435. ">
  1436. <img src="../../../assets/icon/checkNo.png" alt
  1437. v-if="itemTool.tool.indexOf(37) == -1" />
  1438. <div class="checkDiv" v-else>
  1439. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1440. </div>
  1441. </div>
  1442. </div>
  1443. <div class="tool">
  1444. <div class="whiteBIcon" @click="
  1445. addTools(38, itemTaskIndex, toolIndex)
  1446. ">
  1447. <img src="../../../assets/icon/secondToolList/24game.png" alt />
  1448. <div style="margin: 5px 0">24点</div>
  1449. </div>
  1450. <div class="check" @click="
  1451. addTools(38, itemTaskIndex, toolIndex)
  1452. ">
  1453. <img src="../../../assets/icon/checkNo.png" alt
  1454. v-if="itemTool.tool.indexOf(38) == -1" />
  1455. <div class="checkDiv" v-else>
  1456. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1457. </div>
  1458. </div>
  1459. </div>
  1460. <div class="tool">
  1461. <div class="whiteBIcon" @click="
  1462. addTools(31, itemTaskIndex, toolIndex)
  1463. ">
  1464. <img src="../../../assets/icon/secondToolList/networkPanel.png" alt />
  1465. <div style="margin: 5px 0">数学画板</div>
  1466. </div>
  1467. <div class="check" @click="
  1468. addTools(31, itemTaskIndex, toolIndex)
  1469. ">
  1470. <img src="../../../assets/icon/checkNo.png" alt
  1471. v-if="itemTool.tool.indexOf(31) == -1" />
  1472. <div class="checkDiv" v-else>
  1473. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1474. </div>
  1475. </div>
  1476. </div>
  1477. <div class="tool">
  1478. <div class="whiteBIcon" @click="
  1479. addTools(39, itemTaskIndex, toolIndex)
  1480. ">
  1481. <img src="../../../assets/icon/secondToolList/GeoGebra.png" alt />
  1482. <div style="margin: 5px 0">GeoGebra</div>
  1483. </div>
  1484. <div class="check" @click="
  1485. addTools(39, itemTaskIndex, toolIndex)
  1486. ">
  1487. <img src="../../../assets/icon/checkNo.png" alt
  1488. v-if="itemTool.tool.indexOf(39) == -1" />
  1489. <div class="checkDiv" v-else>
  1490. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1491. </div>
  1492. </div>
  1493. </div>
  1494. <div class="tool">
  1495. <div class="whiteBIcon" @click="
  1496. addTools(58, itemTaskIndex, toolIndex)
  1497. ">
  1498. <img src="../../../assets/icon/fourthToolList/car.png" alt />
  1499. <div style="margin: 5px 0">模拟驾驶</div>
  1500. </div>
  1501. <div class="check" @click="
  1502. addTools(58, itemTaskIndex, toolIndex)
  1503. ">
  1504. <img src="../../../assets/icon/checkNo.png" alt
  1505. v-if="itemTool.tool.indexOf(58) == -1" />
  1506. <div class="checkDiv" v-else>
  1507. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1508. </div>
  1509. </div>
  1510. </div>
  1511. <div class="tool">
  1512. <div class="whiteBIcon" @click="
  1513. addTools(59, itemTaskIndex, toolIndex)
  1514. ">
  1515. <img src="../../../assets/icon/fourthToolList/lineSearch.png" alt />
  1516. <div style="margin: 5px 0">路径搜索</div>
  1517. </div>
  1518. <div class="check" @click="
  1519. addTools(59, itemTaskIndex, toolIndex)
  1520. ">
  1521. <img src="../../../assets/icon/checkNo.png" alt
  1522. v-if="itemTool.tool.indexOf(59) == -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="
  1530. addTools(60, itemTaskIndex, toolIndex)
  1531. ">
  1532. <img src="../../../assets/icon/fourthToolList/deepLearning.png" alt />
  1533. <div style="margin: 5px 0">深度学习</div>
  1534. </div>
  1535. <div class="check" @click="
  1536. addTools(60, itemTaskIndex, toolIndex)
  1537. ">
  1538. <img src="../../../assets/icon/checkNo.png" alt
  1539. v-if="itemTool.tool.indexOf(60) == -1" />
  1540. <div class="checkDiv" v-else>
  1541. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1542. </div>
  1543. </div>
  1544. </div>
  1545. <div class="tool">
  1546. <div class="whiteBIcon" @click="
  1547. addTools(61, itemTaskIndex, toolIndex)
  1548. ">
  1549. <img src="../../../assets/icon/fourthToolList/allHistory.png" alt />
  1550. <div style="margin: 5px 0">全历史</div>
  1551. </div>
  1552. <div class="check" @click="
  1553. addTools(61, itemTaskIndex, toolIndex)
  1554. ">
  1555. <img src="../../../assets/icon/checkNo.png" alt
  1556. v-if="itemTool.tool.indexOf(61) == -1" />
  1557. <div class="checkDiv" v-else>
  1558. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1559. </div>
  1560. </div>
  1561. </div> -->
  1562. </div>
  1563. <div class="toolSort" v-if="itemTool.toolType == 7">
  1564. <div class="tool" :class="{ isToolChoose: itemTool.tool.indexOf(40) != -1 }"
  1565. @click.stop="addTools(40, itemTaskIndex, toolIndex)">
  1566. <div class="whiteBIcon" @click="
  1567. openTools(itemTaskIndex, 40, toolIndex)
  1568. ">
  1569. <img src="../../../assets/icon/thirdToolList/eval.png" alt />
  1570. <div style="margin: 5px 0">个人评价</div>
  1571. </div>
  1572. <div class="noCTool"><img src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1573. <div class="isCTool" v-if="itemTool.tool.indexOf(40) != -1"><img
  1574. src="../../../assets/icon/new/isToolC.png" alt="" /></div>
  1575. <!-- <div class="check" @click="
  1576. addTools(40, itemTaskIndex, toolIndex)
  1577. ">
  1578. <img src="../../../assets/icon/checkNo.png" alt
  1579. v-if="itemTool.tool.indexOf(40) == -1" />
  1580. <div class="checkDiv" v-else>
  1581. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1582. </div>
  1583. </div> -->
  1584. </div>
  1585. </div>
  1586. <div class="toolSort" v-if="itemTool.toolType == 4">
  1587. <div class="tool">
  1588. <div class="whiteBIcon" @click="
  1589. addTools(26, itemTaskIndex, toolIndex)
  1590. ">
  1591. <img src="../../../assets/icon/thirdToolList/courseDesign.png" alt />
  1592. <div style="margin: 5px 0">课程设计</div>
  1593. </div>
  1594. <div class="check" @click="
  1595. addTools(26, itemTaskIndex, toolIndex)
  1596. ">
  1597. <img src="../../../assets/icon/checkNo.png" alt
  1598. v-if="itemTool.tool.indexOf(26) == -1" />
  1599. <div class="checkDiv" v-else>
  1600. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1601. </div>
  1602. </div>
  1603. </div>
  1604. <div class="tool">
  1605. <div class="whiteBIcon" @click="
  1606. addTools(25, itemTaskIndex, toolIndex)
  1607. ">
  1608. <img src="../../../assets/icon/thirdToolList/evalua.png" alt />
  1609. <div style="margin: 5px 0">目标管理</div>
  1610. </div>
  1611. <div class="check" @click="
  1612. addTools(25, itemTaskIndex, toolIndex)
  1613. ">
  1614. <img src="../../../assets/icon/checkNo.png" alt
  1615. v-if="itemTool.tool.indexOf(25) == -1" />
  1616. <div class="checkDiv" v-else>
  1617. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1618. </div>
  1619. </div>
  1620. </div>
  1621. <!-- <div class="tool">
  1622. <div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
  1623. <img src="../../../assets/icon/thirdToolList/hanClass.png" alt />
  1624. <div style="margin: 5px 0">汉字宫</div>
  1625. </div>
  1626. <div class="check" @click="addTools(44, itemTaskIndex, toolIndex)">
  1627. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(44) == -1" />
  1628. <div class="checkDiv" v-else>
  1629. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  1630. </div>
  1631. </div>
  1632. </div> -->
  1633. </div>
  1634. </div>
  1635. <div v-show="itemTool.isFold3">
  1636. <textarea rows="3" type="text" v-autoHeight="87" placeholder="添加工具描述" class="binfo_input"
  1637. style="
  1638. margin: 0 0 20px 0;
  1639. " v-model="itemTool.toolDetail"></textarea>
  1640. </div>
  1641. </div>
  1642. <!-- <div class="addToolFun2" @click="addToolFun(itemTaskIndex)">
  1643. <div class="addToolImg">
  1644. <img src="../../../assets/icon/add.png" alt />
  1645. </div>
  1646. <div>添加工具</div>
  1647. </div> -->
  1648. <button class="c_pub_button_add pub_btn_tool_img" @click="addToolFun(itemTaskIndex)" style="margin: 0 auto 0">
  1649. 添加工具
  1650. </button>
  1651. </div>
  1652. </div>
  1653. </div>
  1654. <div class="addTaskBorder" v-if="!unitJson[unitIndex].easy">
  1655. <!-- <div>
  1656. <img src="../../../assets/icon/new/addStage.png" alt />
  1657. <span>添加任务</span>
  1658. </div> -->
  1659. <button class="c_pub_button_confirm pub_btn_add_task_img" @click="addTaskBorder">
  1660. 添加任务
  1661. </button>
  1662. </div>
  1663. </div>
  1664. </div>
  1665. </div>
  1666. </div>
  1667. <div class="info_btnBox3">
  1668. <button class="c_pub_button_return pub_btn_return_img" @click="lastSteps">
  1669. 返回课程
  1670. </button>
  1671. <button class="c_pub_button_confirm pub_btn_finish_img" @click="nextSteps">
  1672. 确认上传
  1673. </button>
  1674. </div>
  1675. </div>
  1676. <div class="rightBox" v-if="this.steps == 2">
  1677. <div class="basic_box" style="padding: 20px 30px 0px !important; box-sizing: border-box">
  1678. <div class="right_title" style="border: none; margin: 0; padding: 0">
  1679. 请选择合适的课程模板
  1680. </div>
  1681. <div class="wordbox">
  1682. <div class="wordTeacher" v-for="(aa, indexF) in templateArray" :key="indexF" @click="checkTemplate(aa)">
  1683. <div class="wordPic">
  1684. <img src="../../../assets/icon/wordMub.png" alt />
  1685. </div>
  1686. <div style="
  1687. margin-top: 10px;
  1688. line-height: 19px;
  1689. overflow: hidden;
  1690. text-overflow: ellipsis;
  1691. white-space: nowrap;
  1692. padding: 0 20px;
  1693. ">
  1694. {{ aa.title }}
  1695. </div>
  1696. </div>
  1697. <div class="wordTeacher" @click="checkTemplate2()">
  1698. <div class="wordPic">
  1699. <img src="../../../assets/icon/wordMub.png" alt />
  1700. </div>
  1701. <div style="
  1702. margin-top: 10px;
  1703. line-height: 19px;
  1704. overflow: hidden;
  1705. text-overflow: ellipsis;
  1706. white-space: nowrap;
  1707. padding: 0 20px;
  1708. ">
  1709. 任务模式
  1710. </div>
  1711. </div>
  1712. <div class="wordTeacher" @click="checkTemplate3()">
  1713. <div class="wordPic">
  1714. <img src="../../../assets/icon/wordMub.png" alt />
  1715. </div>
  1716. <div style="
  1717. margin-top: 10px;
  1718. line-height: 19px;
  1719. overflow: hidden;
  1720. text-overflow: ellipsis;
  1721. white-space: nowrap;
  1722. padding: 0 20px;
  1723. ">
  1724. 简易模式
  1725. </div>
  1726. </div>
  1727. <div class="wordTeacher" @click="pasteStage()">
  1728. <div class="wordPic">
  1729. <img src="../../../assets/icon/wordMub.png" alt />
  1730. </div>
  1731. <div style="
  1732. margin-top: 10px;
  1733. line-height: 19px;
  1734. overflow: hidden;
  1735. text-overflow: ellipsis;
  1736. white-space: nowrap;
  1737. padding: 0 20px;
  1738. ">
  1739. 智能粘贴模式
  1740. </div>
  1741. </div>
  1742. <!-- <div class="wordTeacher" @click="checkTemplate4()">
  1743. <div class="wordPic">
  1744. <img src="../../../assets/icon/wordMub.png" alt />
  1745. </div>
  1746. <div style="
  1747. margin-top: 10px;
  1748. line-height: 19px;
  1749. overflow: hidden;
  1750. text-overflow: ellipsis;
  1751. white-space: nowrap;
  1752. padding: 0 20px;
  1753. ">
  1754. 未来小学课程设计
  1755. </div>
  1756. </div> -->
  1757. <!-- <div class="wordTeacher" @click="checkTemplate1()">
  1758. <div class="wordPic">
  1759. <img src="../../../assets/icon/wordMub.png" alt />
  1760. </div>
  1761. <div style="
  1762. margin-top: 10px;
  1763. line-height: 19px;
  1764. overflow: hidden;
  1765. text-overflow: ellipsis;
  1766. white-space: nowrap;
  1767. padding: 0 20px;
  1768. ">
  1769. 我的课程
  1770. </div>
  1771. </div> -->
  1772. </div>
  1773. </div>
  1774. </div>
  1775. <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
  1776. <div class="basic_box">
  1777. <div style="
  1778. display: flex;
  1779. flex-direction: row;
  1780. align-items: center;
  1781. position: sticky;
  1782. top: 0;
  1783. background: #fff;
  1784. z-index: 99;
  1785. width: 100%;
  1786. padding: 0 20px 0 20px;
  1787. box-sizing: border-box;
  1788. ">
  1789. <div class="cru_selectBox">
  1790. <div v-for="(item, index) in unitJson" :key="index" class="cru_select"
  1791. :class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
  1792. <!-- item.dyName ? item.dyName : -->
  1793. {{ "第" + (index + 1) + "阶段" }}
  1794. </div>
  1795. <img src="../../../assets/line.png" class="cru_line" :style="{
  1796. left: offsetLetfPx + 'px',
  1797. }" />
  1798. </div>
  1799. <div class="addStageImg" @click="addunit()" v-if="!(unitJson[unitJson.length - 1].easy == 4) &&
  1800. !(unitJson[unitJson.length - 1].easy == 6)
  1801. ">
  1802. <img src="../../../assets/icon/add.png" alt />
  1803. </div>
  1804. </div>
  1805. <div style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
  1806. v-for="(item, index) in unitJson[unitIndex].chapterInfo" :key="index">
  1807. <div>
  1808. <div class="chapter_contentbox">
  1809. <div>第{{ unitIndex + 1 }}阶段</div>
  1810. <div>
  1811. <input type="text" placeholder="阶段标题" class="binfo_input" v-model="unitJson[unitIndex].dyName" />
  1812. </div>
  1813. <div v-if="unitJson.length > 1 &&
  1814. !(unitJson[unitJson.length - 1].easy == 4) &&
  1815. !(unitJson[unitJson.length - 1].easy == 6)
  1816. " @click="deleteUnit(unitIndex)"></div>
  1817. </div>
  1818. </div>
  1819. <div v-if="!unitJson[unitIndex].easy" style="
  1820. margin: 50px 0px 10px;
  1821. font-size: 1.5em;
  1822. font-weight: 700;
  1823. color: #0f7eff;
  1824. ">
  1825. 添加任务
  1826. </div>
  1827. <div class="taskBorder" :style="{ minHeight: unitJson[unitIndex].easy && 'unset' }"
  1828. v-for="(itemTask, itemTaskIndex) in item.taskJson" :key="itemTaskIndex">
  1829. <div v-if="unitJson[unitIndex].easy != 1">
  1830. <div :style="{
  1831. marginBottom:
  1832. unitJson[unitIndex].easy == 3 ||
  1833. (unitJson[unitIndex].easy == 5 &&
  1834. itemTask.taskType == 1)
  1835. ? '75px'
  1836. : '0',
  1837. }">
  1838. <div style="font-size: 22px; color: #8e8e8e" :id="'task' + itemTaskIndex">
  1839. 任务{{ itemTaskIndex + 1 }}
  1840. </div>
  1841. <div class="chapter_contentbox" style="
  1842. flex-direction: row;
  1843. justify-content: flex-start;
  1844. align-items: center;
  1845. ">
  1846. <div style="
  1847. border-left: 6px solid #5699e8;
  1848. height: 20px;
  1849. padding-left: 10px;
  1850. line-height: 22px;
  1851. ">
  1852. 任务名称
  1853. </div>
  1854. <div>
  1855. <input type="text" placeholder="输入任务名称" class="binfo_input" style="border-radius: 4px" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  1856. itemTaskIndex
  1857. ].task
  1858. " />
  1859. </div>
  1860. <div class="remove" v-if="item.taskJson.length > 1 &&
  1861. (!unitJson[unitIndex].easy ||
  1862. unitJson[unitIndex].easy == 6)
  1863. " @click="deleteTask(itemTaskIndex)" style="position: absolute; right: 55px"></div>
  1864. </div>
  1865. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" style="
  1866. display: flex;
  1867. margin: 0 0 20px 0;
  1868. flex-direction: row;
  1869. justify-content: flex-start;
  1870. align-items: center;
  1871. width: 70.5% !important;
  1872. padding-top: 30px;
  1873. ">
  1874. <div class="lineTitle">任务描述</div>
  1875. </div>
  1876. <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1">
  1877. <editor-bar style="width: 90% !important; margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
  1878. itemTaskIndex
  1879. ].taskDetail
  1880. " @change="change"></editor-bar>
  1881. <!-- <textarea
  1882. rows="6"
  1883. class="binfo_input"
  1884. placeholder="请输入任务描述"
  1885. cols
  1886. style="width: 70.5% !important; height: 120px"
  1887. v-model="
  1888. unitJson[unitIndex].chapterInfo[0].taskJson[
  1889. itemTaskIndex
  1890. ].taskDetail
  1891. "
  1892. ></textarea>-->
  1893. </div>
  1894. </div>
  1895. </div>
  1896. <div v-if="!unitJson[unitIndex].easy ||
  1897. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  1898. " class="basic_box" style="
  1899. padding: 0 !important;
  1900. ">
  1901. <div style="
  1902. display: flex;
  1903. margin: 0 0 20px 0;
  1904. flex-direction: row;
  1905. justify-content: flex-start;
  1906. align-items: center;
  1907. ">
  1908. <div class="lineTitle">学习内容</div>
  1909. </div>
  1910. <div>
  1911. <div class="add_chapters_box" v-if="itemTask.chapterData &&
  1912. itemTask.chapterData.length == 0
  1913. " style="height: 185px"></div>
  1914. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  1915. <div class="chapter_upload" v-for="(item1, index1) in itemTask.chapterData" :key="item1.id"
  1916. @click="
  1917. getChapterData(
  1918. $event,
  1919. unitIndex,
  1920. index,
  1921. index1,
  1922. item1.type
  1923. )
  1924. ">
  1925. <div class="chapter_upload_t" style="width: 100%"></div>
  1926. <div class="chapter_upload_o" style="
  1927. position: relative;
  1928. display: flex;
  1929. align-items: center;
  1930. ">
  1931. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  1932. <div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
  1933. <div v-if="item1.type == 3 ||
  1934. item1.type == 12 ||
  1935. item1.type == 13 ||
  1936. item1.type == 6 ||
  1937. item1.type == 7
  1938. " class="chapter_upload_l_i5" style="margin-left: 1px"></div>
  1939. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px"></div>
  1940. </div>
  1941. <div class="chapter_upload_ic" style="
  1942. cursor: pointer;
  1943. position: absolute;
  1944. width: 45px;
  1945. right: 0;
  1946. top: 0;
  1947. ">
  1948. <div class="chapter_upload_ic_l"></div>
  1949. <div class="chapter_upload_ic_r" style="position: absolute" @click.stop="
  1950. deleteChapterData(
  1951. $event,
  1952. unitIndex,
  1953. index,
  1954. index1,
  1955. itemTaskIndex
  1956. )
  1957. ">
  1958. <div></div>
  1959. </div>
  1960. </div>
  1961. <div class="chapter_upload_n">
  1962. <input v-if="item1.type == 2 ||
  1963. item1.type == 3 ||
  1964. item1.type == 12 ||
  1965. item1.type == 13 ||
  1966. item1.type == 7
  1967. " :placeholder="item1.name" @change="
  1968. updataVideoT(
  1969. $event,
  1970. unitIndex,
  1971. chapterIndex,
  1972. index1
  1973. )
  1974. " style="
  1975. border: none;
  1976. outline: none;
  1977. width: 80%;
  1978. minwidth: 215px;
  1979. z-index: 99;
  1980. font-size: 14px;
  1981. white-space: nowrap;
  1982. overflow: hidden;
  1983. text-overflow: ellipsis;
  1984. " />
  1985. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  1986. border: none;
  1987. outline: none;
  1988. width: 80%;
  1989. white-space: nowrap;
  1990. overflow: hidden;
  1991. text-overflow: ellipsis;
  1992. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  1993. <input :placeholder="item1.title ? item1.title : '链接'
  1994. " v-if="item1.type == 8" style="
  1995. border: none;
  1996. outline: none;
  1997. width: 80%;
  1998. white-space: nowrap;
  1999. overflow: hidden;
  2000. text-overflow: ellipsis;
  2001. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  2002. <div class="chapter_upload_ud" style="z-index: 99">
  2003. <div class="chapter_upload_up" @click="
  2004. upCd(
  2005. $event,
  2006. unitIndex,
  2007. index,
  2008. itemTaskIndex,
  2009. index1
  2010. )
  2011. "></div>
  2012. <div class="chapter_upload_down" @click="
  2013. downCd(
  2014. $event,
  2015. unitIndex,
  2016. index,
  2017. itemTaskIndex,
  2018. index1
  2019. )
  2020. "></div>
  2021. </div>
  2022. </div>
  2023. </div>
  2024. </div>
  2025. </div>
  2026. </div>
  2027. <div class="add_info_box">
  2028. <button class="info_btn" @click="addImg($event)">
  2029. 添加文件
  2030. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="
  2031. beforeUpload2($event, unitIndex, 13, itemTaskIndex)
  2032. " />
  2033. </button>
  2034. <!-- <button class="info_btn" @click="addImg($event)">
  2035. 添加视频
  2036. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo" style="display: none"
  2037. v-if="inputShow" @change="beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  2038. " />
  2039. </button>
  2040. <button class="info_btn" @click="addImg($event)">
  2041. 添加文档
  2042. <input type="file"
  2043. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  2044. style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  2045. " />
  2046. </button> -->
  2047. <button class="info_btn" @click="addAttText(itemTaskIndex)">
  2048. 添加图文
  2049. </button>
  2050. <button class="info_btn" @click="openLine(itemTaskIndex)">
  2051. 添加链接
  2052. </button>
  2053. <button class="info_btn" @click="openSource(itemTaskIndex)">
  2054. 添加资源
  2055. </button>
  2056. <button class="info_btn" @click="pasteLine(itemTaskIndex)">
  2057. 嵌入代码
  2058. </button>
  2059. <!-- <button class="info_btn" @click="addImg($event)">
  2060. 其他附件
  2061. <input type="file" accept="*" style="display: none" v-if="inputShow" @change="beforeUpload2($event, unitIndex, 12, itemTaskIndex)
  2062. " />
  2063. </button> -->
  2064. </div>
  2065. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  2066. itemTaskIndex
  2067. ].proVisible
  2068. " class="mask">
  2069. <div class="progressBox">
  2070. <!-- <div id="closePro" class="closeCss">
  2071. <img src="../../../../assets/icon/close.png" alt />
  2072. </div> -->
  2073. <div class="lbox">
  2074. <img src="../../../assets/loading.gif" />上传中,请稍后
  2075. </div>
  2076. <div style="margin-bottom: 10px">
  2077. <span>{{
  2078. unitJson[unitIndex].chapterInfo[0].taskJson[
  2079. itemTaskIndex
  2080. ].isFinishSize
  2081. }}M</span>
  2082. /
  2083. <span>{{
  2084. unitJson[unitIndex].chapterInfo[0].taskJson[
  2085. itemTaskIndex
  2086. ].isAllSize
  2087. }}M</span>
  2088. </div>
  2089. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  2090. itemTaskIndex
  2091. ].progress
  2092. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  2093. itemTaskIndex
  2094. ].progress
  2095. : 0
  2096. " style="width: 80%"></el-progress>
  2097. </div>
  2098. </div>
  2099. </div>
  2100. <div v-if="unitJson[unitIndex].easy == 1 ||
  2101. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  2102. " class="basic_box" style="
  2103. margin: 0 auto;
  2104. min-height: 0;
  2105. width: 95% !important;
  2106. padding: 20px 10px 10px;
  2107. ">
  2108. <div>
  2109. <div class="add_chapters_box" v-if="itemTask.chapterData &&
  2110. itemTask.chapterData.length == 0
  2111. " style="height: 185px"></div>
  2112. <div v-else class="add_chapters_box" style="display: flex; flex-direction: column">
  2113. <div v-for="(item1, index1) in itemTask.chapterData" :key="item1.id">
  2114. <div class="chapter_upload" @click="
  2115. getChapterData(
  2116. $event,
  2117. unitIndex,
  2118. index,
  2119. index1,
  2120. item1.type
  2121. )
  2122. ">
  2123. <div class="chapter_upload_t" style="width: 100%"></div>
  2124. <div class="chapter_upload_o" style="
  2125. position: relative;
  2126. display: flex;
  2127. align-items: center;
  2128. ">
  2129. <div class="chapter_upload_l" style="padding: 1px 0 0 10px">
  2130. <div v-if="item1.type == 2" class="chapter_upload_l_i1"></div>
  2131. <div v-if="item1.type == 3 ||
  2132. item1.type == 6 ||
  2133. item1.type == 7
  2134. " class="chapter_upload_l_i5" style="margin-left: 1px"></div>
  2135. <div v-if="item1.type == 8" class="chapter_upload_l_i8" style="margin-left: 1px"></div>
  2136. </div>
  2137. <div class="chapter_upload_ic" style="
  2138. cursor: pointer;
  2139. position: absolute;
  2140. width: 45px;
  2141. right: 0;
  2142. top: 0;
  2143. ">
  2144. <div class="chapter_upload_ic_l"></div>
  2145. <div class="chapter_upload_ic_r" style="position: absolute" @click.stop="
  2146. deleteChapterData(
  2147. $event,
  2148. unitIndex,
  2149. index,
  2150. index1,
  2151. itemTaskIndex
  2152. )
  2153. ">
  2154. <div></div>
  2155. </div>
  2156. </div>
  2157. <div class="chapter_upload_n">
  2158. <span style="
  2159. font-size: 14px;
  2160. color: rgb(109, 109, 109);
  2161. height: 14px;
  2162. line-height: 12px;
  2163. " v-if="item1.type == 2 ||
  2164. item1.type == 3 ||
  2165. item1.type == 7
  2166. ">{{ item1.text }}-</span>
  2167. <input v-if="item1.type == 2 ||
  2168. item1.type == 3 ||
  2169. item1.type == 7
  2170. " :placeholder="item1.name" @change="
  2171. updataVideoT(
  2172. $event,
  2173. unitIndex,
  2174. chapterIndex,
  2175. index1
  2176. )
  2177. " style="
  2178. border: none;
  2179. outline: none;
  2180. width: 80%;
  2181. minwidth: 215px;
  2182. z-index: 99;
  2183. font-size: 14px;
  2184. white-space: nowrap;
  2185. overflow: hidden;
  2186. text-overflow: ellipsis;
  2187. " />
  2188. <input :placeholder="item1.name" v-if="item1.type == 6" style="
  2189. border: none;
  2190. outline: none;
  2191. width: 80%;
  2192. white-space: nowrap;
  2193. overflow: hidden;
  2194. text-overflow: ellipsis;
  2195. " readonly="true" @click="selectAttText(itemTaskIndex, index1)" />
  2196. <input :placeholder="item1.title ? item1.title : '链接'
  2197. " v-if="item1.type == 8" style="
  2198. border: none;
  2199. outline: none;
  2200. width: 80%;
  2201. white-space: nowrap;
  2202. overflow: hidden;
  2203. text-overflow: ellipsis;
  2204. " readonly="true" @click="selectLine(itemTaskIndex, index1)" />
  2205. <div class="chapter_upload_ud" style="z-index: 99">
  2206. <div class="chapter_upload_up" @click="
  2207. upCd(
  2208. $event,
  2209. unitIndex,
  2210. index,
  2211. itemTaskIndex,
  2212. index1
  2213. )
  2214. "></div>
  2215. <div class="chapter_upload_down" @click="
  2216. downCd(
  2217. $event,
  2218. unitIndex,
  2219. index,
  2220. itemTaskIndex,
  2221. index1
  2222. )
  2223. "></div>
  2224. </div>
  2225. </div>
  2226. </div>
  2227. </div>
  2228. </div>
  2229. </div>
  2230. </div>
  2231. <div class="add_info_box" style="margin: 10px 0 0">
  2232. <button class="info_btn" @click="addImg($event)">
  2233. <span style="color: red">*</span>
  2234. 教学设计
  2235. <input type="file"
  2236. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  2237. style="display: none" v-if="inputShow" @change="
  2238. beforeUpload3(
  2239. $event,
  2240. unitIndex,
  2241. 3,
  2242. itemTaskIndex,
  2243. '教学设计'
  2244. )
  2245. " />
  2246. </button>
  2247. <button class="info_btn" @click="addImg($event)">
  2248. <span style="color: red">*</span>
  2249. 教学课件
  2250. <input type="file"
  2251. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  2252. style="display: none" v-if="inputShow" @change="
  2253. beforeUpload3(
  2254. $event,
  2255. unitIndex,
  2256. 3,
  2257. itemTaskIndex,
  2258. '教学课件'
  2259. )
  2260. " />
  2261. </button>
  2262. <button class="info_btn" @click="addImg($event)">
  2263. 教学视频
  2264. <input type="file" accept="video/mp4, video/quicktime, video/x-msvideo" style="display: none"
  2265. v-if="inputShow" @change="
  2266. beforeUpload3(
  2267. $event,
  2268. unitIndex,
  2269. 2,
  2270. itemTaskIndex,
  2271. '教学视频'
  2272. )
  2273. " />
  2274. </button>
  2275. <button class="info_btn" @click="addImg($event)">
  2276. 教学音频
  2277. <input type="file" accept="audio/*" style="display: none" v-if="inputShow" @change="
  2278. beforeUpload3(
  2279. $event,
  2280. unitIndex,
  2281. 2,
  2282. itemTaskIndex,
  2283. '教学音频'
  2284. )
  2285. " />
  2286. </button>
  2287. <button class="info_btn" @click="addImg($event)">
  2288. 学习单
  2289. <input type="file"
  2290. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  2291. style="display: none" v-if="inputShow" @change="
  2292. beforeUpload3(
  2293. $event,
  2294. unitIndex,
  2295. 3,
  2296. itemTaskIndex,
  2297. '学习单'
  2298. )
  2299. " />
  2300. </button>
  2301. </div>
  2302. <div v-if="unitJson[unitIndex].chapterInfo[0].taskJson[
  2303. itemTaskIndex
  2304. ].proVisible
  2305. " class="mask">
  2306. <div class="progressBox">
  2307. <!-- <div id="closePro" class="closeCss">
  2308. <img src="../../../../assets/icon/close.png" alt />
  2309. </div> -->
  2310. <div class="lbox">
  2311. <img src="../../../assets/loading.gif" />上传中,请稍后
  2312. </div>
  2313. <div style="margin-bottom: 10px">
  2314. <span>{{
  2315. unitJson[unitIndex].chapterInfo[0].taskJson[
  2316. itemTaskIndex
  2317. ].isFinishSize
  2318. }}M</span>
  2319. /
  2320. <span>{{
  2321. unitJson[unitIndex].chapterInfo[0].taskJson[
  2322. itemTaskIndex
  2323. ].isAllSize
  2324. }}M</span>
  2325. </div>
  2326. <el-progress :text-inside="true" :stroke-width="20" :percentage="unitJson[unitIndex].chapterInfo[0].taskJson[
  2327. itemTaskIndex
  2328. ].progress
  2329. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  2330. itemTaskIndex
  2331. ].progress
  2332. : 0
  2333. " style="width: 80%"></el-progress>
  2334. </div>
  2335. </div>
  2336. </div>
  2337. <div v-if="unitJson[unitIndex].easy != 3 &&
  2338. !(unitJson[unitIndex].easy == 5 && itemTask.taskType == 1)
  2339. " style="
  2340. flex-direction: row;
  2341. justify-content: flex-start;
  2342. align-items: center;
  2343. padding: 0 0 0 30px;
  2344. paddint-top: 10px !important;
  2345. ">
  2346. <div style="
  2347. display: flex;
  2348. flex-direction: row;
  2349. align-items: center;
  2350. margin-bottom: 20px;
  2351. ">
  2352. <div class="lineTitle">
  2353. {{
  2354. !unitJson[unitIndex].easy ||
  2355. unitJson[unitIndex].easy == 6 ||
  2356. easyArray.indexOf(unitJson[unitIndex].easy) != -1
  2357. ? "练习内容"
  2358. : "评价内容"
  2359. }}
  2360. </div>
  2361. </div>
  2362. </div>
  2363. <div v-if="unitJson[unitIndex].easy == 6 || !unitJson[unitIndex].easy
  2364. " class="toolChoose" style="padding: 0 0 0 30px">
  2365. <div class="tools">
  2366. <div class="leftTools" style="
  2367. width: 95%;
  2368. padding: 0 0 15px 0;
  2369. margin: 15px 0;
  2370. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  2371. <div>
  2372. <textarea rows="3" type="text" placeholder="添加工具描述" class="binfo_input"
  2373. style="margin: 0 0 20px 0; width: 71.5% !important" v-model="itemTool.toolDetail"></textarea>
  2374. </div>
  2375. <div style="
  2376. display: flex;
  2377. flex-direction: row;
  2378. align-items: baseline;
  2379. flex-wrap: nowrap;
  2380. justify-content: flex-start;
  2381. position: relative;
  2382. ">
  2383. <div style="margin-right: 20px; font-weight: bold">
  2384. 步骤 {{ toolIndex + 1 }} :
  2385. </div>
  2386. <div class="chooseWho">
  2387. <!-- <div
  2388. :class="
  2389. itemTool.toolType == 0 ? 'isChooseActive' : ''
  2390. "
  2391. @click="(itemTool.toolType = 0), $forceUpdate()"
  2392. >
  2393. 互动类
  2394. </div> -->
  2395. <div :class="itemTool.toolType == 1 ? 'isChooseActive' : ''
  2396. " @click="(itemTool.toolType = 1), $forceUpdate()">
  2397. 思维类
  2398. </div>
  2399. <div :class="itemTool.toolType == 6 ? 'isChooseActive' : ''
  2400. " @click="(itemTool.toolType = 6), $forceUpdate()">
  2401. 协作类
  2402. </div>
  2403. <div :class="itemTool.toolType == 2 ? 'isChooseActive' : ''
  2404. " @click="(itemTool.toolType = 2), $forceUpdate()">
  2405. 测评类
  2406. </div>
  2407. <div :class="itemTool.toolType == 7 ? 'isChooseActive' : ''
  2408. " @click="(itemTool.toolType = 7), $forceUpdate()">
  2409. 评价类
  2410. </div>
  2411. <div :class="itemTool.toolType == 3 ? 'isChooseActive' : ''
  2412. " @click="(itemTool.toolType = 3), $forceUpdate()">
  2413. 学科类
  2414. </div>
  2415. <!-- <div
  2416. :class="
  2417. itemTool.toolType == 5 ? 'isChooseActive' : ''
  2418. "
  2419. @click="(itemTool.toolType = 5), $forceUpdate()"
  2420. >
  2421. 学科类
  2422. </div>
  2423. <div
  2424. :class="
  2425. itemTool.toolType == 4 ? 'isChooseActive' : ''
  2426. "
  2427. @click="(itemTool.toolType = 4), $forceUpdate()"
  2428. >
  2429. 其他
  2430. </div> -->
  2431. </div>
  2432. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  2433. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 55px"></div>
  2434. </div>
  2435. <div style="min-height: 163px">
  2436. <div class="toolSort" v-if="itemTool.toolType == 0">
  2437. <!-- <div class="tool">
  2438. <div
  2439. class="whiteBIcon"
  2440. @click="addTools(8, itemTaskIndex, toolIndex)"
  2441. >
  2442. <img src="../../../assets/icon/secondToolList/library.png" alt />
  2443. <div style="margin: 5px 0">素材库</div>
  2444. </div>
  2445. <div class="check" @click="addTools(8, itemTaskIndex, toolIndex)">
  2446. <img
  2447. src="../../../assets/icon/checkNo.png"
  2448. alt
  2449. v-if="itemTool.tool.indexOf(8) == -1"
  2450. />
  2451. <div class="checkDiv" v-else><img src="../../../assets/icon/checkedIs.png"
  2452. alt /><span>已选择</span></div>
  2453. </div>
  2454. </div>-->
  2455. <!-- <div class="tool">
  2456. <div
  2457. class="whiteBIcon"
  2458. @click="addTools(17, itemTaskIndex, toolIndex)"
  2459. >
  2460. <img
  2461. src="../../../assets/icon/secondToolList/library.png"
  2462. alt
  2463. />
  2464. <div style="margin: 5px 0">学习资料</div>
  2465. </div>
  2466. <div
  2467. class="check"
  2468. @click="addTools(17, itemTaskIndex, toolIndex)"
  2469. >
  2470. <img
  2471. src="../../../assets/icon/checkNo.png"
  2472. alt
  2473. v-if="itemTool.tool.indexOf(17) == -1"
  2474. />
  2475. <img
  2476. src="../../../assets/icon/checkedIs.png"
  2477. alt
  2478. v-else
  2479. />
  2480. </div>10
  2481. </div> -->
  2482. <div class="tool">
  2483. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 10, toolIndex)">
  2484. <img src="../../../assets/icon/thirdToolList/time.png" alt />
  2485. <div style="margin: 5px 0">倒计时</div>
  2486. </div>
  2487. <div class="check" @click="addTools(10, itemTaskIndex, toolIndex)">
  2488. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(10) == -1" />
  2489. <div class="checkDiv" v-else>
  2490. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2491. </div>
  2492. </div>
  2493. </div>
  2494. <!-- <div class="tool">
  2495. <div
  2496. class="whiteBIcon"
  2497. @click="openTools(itemTaskIndex, 49, toolIndex)"
  2498. >
  2499. <img
  2500. src="../../../assets/icon/fourthToolList/group.png"
  2501. alt
  2502. />
  2503. <div style="margin: 5px 0">学生分组</div>
  2504. </div>
  2505. <div
  2506. class="check"
  2507. @click="addTools(49, itemTaskIndex, toolIndex)"
  2508. >
  2509. <img
  2510. src="../../../assets/icon/checkNo.png"
  2511. alt
  2512. v-if="itemTool.tool.indexOf(49) == -1"
  2513. />
  2514. <div class="checkDiv" v-else>
  2515. <img
  2516. src="../../../assets/icon/checkedIs.png"
  2517. alt
  2518. /><span>已选择</span>
  2519. </div>
  2520. </div>
  2521. </div> -->
  2522. <div class="tool">
  2523. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 62, toolIndex)">
  2524. <img src="../../../assets/icon/fourthToolList/interVideo.png" alt />
  2525. <div style="margin: 5px 0">交互视频</div>
  2526. </div>
  2527. <div class="check" @click="addTools(62, itemTaskIndex, toolIndex)">
  2528. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(62) == -1" />
  2529. <div class="checkDiv" v-else>
  2530. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2531. </div>
  2532. </div>
  2533. </div>
  2534. </div>
  2535. <div class="toolSort" v-if="itemTool.toolType == 1">
  2536. <div class="tool">
  2537. <div class="whiteBIcon" @click="addTools(7, itemTaskIndex, toolIndex)">
  2538. <img src="../../../assets/icon/secondToolList/mindNetwork.png" alt />
  2539. <div style="margin: 5px 0">思维网格</div>
  2540. </div>
  2541. <div class="check" @click="addTools(7, itemTaskIndex, toolIndex)">
  2542. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(7) == -1" />
  2543. <div class="checkDiv" v-else>
  2544. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2545. </div>
  2546. </div>
  2547. </div>
  2548. <div class="tool">
  2549. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  2550. <img src="../../../assets/icon/secondToolList/whiteBoard.png" alt />
  2551. <div style="margin: 5px 0">电子白板</div>
  2552. </div>
  2553. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  2554. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(1) == -1" />
  2555. <div class="checkDiv" v-else>
  2556. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2557. </div>
  2558. </div>
  2559. </div>
  2560. <!-- <div class="tool">
  2561. <div
  2562. class="whiteBIcon"
  2563. @click="addTools(2, itemTaskIndex, toolIndex)"
  2564. >
  2565. <img
  2566. src="../../../assets/icon/secondToolList/note.png"
  2567. alt
  2568. />
  2569. <div style="margin: 5px 0">便签</div>
  2570. </div>
  2571. <div
  2572. class="check"
  2573. @click="addTools(2, itemTaskIndex, toolIndex)"
  2574. >
  2575. <img
  2576. src="../../../assets/icon/checkNo.png"
  2577. alt
  2578. v-if="itemTool.tool.indexOf(2) == -1"
  2579. />
  2580. <div class="checkDiv" v-else>
  2581. <img
  2582. src="../../../assets/icon/checkedIs.png"
  2583. alt
  2584. /><span>已选择</span>
  2585. </div>
  2586. </div>
  2587. </div> -->
  2588. <!-- <div class="tool">
  2589. <div class="whiteBIcon" @click="addTools(6, itemTaskIndex, toolIndex)">
  2590. <img src="../../../assets/icon/secondToolList/doc.png" alt />
  2591. <div style="margin: 5px 0">协同文档</div>
  2592. </div>
  2593. <div
  2594. class="check"
  2595. @click="addTools(6, itemTaskIndex, toolIndex)"
  2596. >
  2597. <img
  2598. src="../../../assets/icon/checkNo.png"
  2599. alt
  2600. v-if="itemTool.tool.indexOf(6) == -1"
  2601. />
  2602. <div class="checkDiv" v-else>
  2603. <img
  2604. src="../../../assets/icon/checkedIs.png"
  2605. alt
  2606. /><span>已选择</span>
  2607. </div>
  2608. </div>
  2609. </div> -->
  2610. <div class="tool">
  2611. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  2612. <img src="../../../assets/icon/fourthToolList/text.png" alt />
  2613. <div style="margin: 5px 0">文档</div>
  2614. </div>
  2615. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  2616. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(52) == -1" />
  2617. <div class="checkDiv" v-else>
  2618. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2619. </div>
  2620. </div>
  2621. </div>
  2622. <div class="tool">
  2623. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  2624. <img src="../../../assets/icon/secondToolList/mindMapping.png" alt />
  2625. <div style="margin: 5px 0">思维导图</div>
  2626. </div>
  2627. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  2628. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(3) == -1" />
  2629. <div class="checkDiv" v-else>
  2630. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2631. </div>
  2632. </div>
  2633. </div>
  2634. <div class="tool">
  2635. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  2636. <img src="../../../assets/icon/fourthToolList/table.png" alt />
  2637. <div style="margin: 5px 0">表格</div>
  2638. </div>
  2639. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  2640. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(48) == -1" />
  2641. <div class="checkDiv" v-else>
  2642. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2643. </div>
  2644. </div>
  2645. </div>
  2646. </div>
  2647. <div class="toolSort" v-if="itemTool.toolType == 6">
  2648. <div class="tool">
  2649. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 49, toolIndex)">
  2650. <img src="../../../assets/icon/fourthToolList/group.png" alt />
  2651. <div style="margin: 5px 0">学生分组</div>
  2652. </div>
  2653. <div class="check" @click="addTools(49, itemTaskIndex, toolIndex)">
  2654. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(49) == -1" />
  2655. <div class="checkDiv" v-else>
  2656. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2657. </div>
  2658. </div>
  2659. </div>
  2660. </div>
  2661. <div class="toolSort" v-if="itemTool.toolType == 2">
  2662. <!-- <div class="tool">
  2663. <div
  2664. class="whiteBIcon"
  2665. @click="addTools(5, itemTaskIndex, toolIndex)"
  2666. >
  2667. <img
  2668. src="../../../assets/icon/thirdToolList/score.png"
  2669. alt
  2670. />
  2671. <div style="margin: 5px 0">量规评分</div>
  2672. </div>
  2673. <div
  2674. class="check"
  2675. @click="addTools(5, itemTaskIndex, toolIndex)"
  2676. >
  2677. <img
  2678. src="../../../assets/icon/checkNo.png"
  2679. alt
  2680. v-if="itemTool.tool.indexOf(5) == -1"
  2681. />
  2682. <img
  2683. src="../../../assets/icon/checkedIs.png"
  2684. alt
  2685. v-else
  2686. />
  2687. </div>
  2688. </div>-->
  2689. <div class="tool">
  2690. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  2691. <img src="../../../assets/icon/thirdToolList/ask.png" alt />
  2692. <div style="margin: 5px 0">问卷调查</div>
  2693. </div>
  2694. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  2695. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(4) == -1" />
  2696. <div class="checkDiv" v-else>
  2697. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2698. </div>
  2699. </div>
  2700. </div>
  2701. <div class="tool">
  2702. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  2703. <img src="../../../assets/icon/thirdToolList/choose.png" alt />
  2704. <div style="margin: 5px 0">选择题</div>
  2705. </div>
  2706. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  2707. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(45) == -1" />
  2708. <div class="checkDiv" v-else>
  2709. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2710. </div>
  2711. </div>
  2712. </div>
  2713. <div class="tool">
  2714. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  2715. <img src="../../../assets/icon/thirdToolList/answer.png" alt />
  2716. <div style="margin: 5px 0">问答</div>
  2717. </div>
  2718. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  2719. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(15) == -1" />
  2720. <div class="checkDiv" v-else>
  2721. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2722. </div>
  2723. </div>
  2724. </div>
  2725. <div class="tool">
  2726. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  2727. <img src="../../../assets/icon/thirdToolList/work.png" alt />
  2728. <div style="margin: 5px 0">作业提交</div>
  2729. </div>
  2730. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  2731. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(16) == -1" />
  2732. <div class="checkDiv" v-else>
  2733. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2734. </div>
  2735. </div>
  2736. </div>
  2737. <div class="tool">
  2738. <div class="whiteBIcon" @click="addTools(50, itemTaskIndex, toolIndex)">
  2739. <img src="../../../assets/icon/thirdToolList/plwork.png" alt />
  2740. <div style="margin: 5px 0">批量上传</div>
  2741. </div>
  2742. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  2743. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  2744. <div class="checkDiv" v-else>
  2745. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2746. </div>
  2747. </div>
  2748. </div>
  2749. <!-- <div class="tool">
  2750. <div
  2751. class="whiteBIcon"
  2752. @click="openTools(itemTaskIndex, 40, toolIndex)"
  2753. >
  2754. <img
  2755. src="../../../assets/icon/thirdToolList/eval.png"
  2756. alt
  2757. />
  2758. <div style="margin: 5px 0">个人评价</div>
  2759. </div>
  2760. <div
  2761. class="check"
  2762. @click="addTools(40, itemTaskIndex, toolIndex)"
  2763. >
  2764. <img
  2765. src="../../../assets/icon/checkNo.png"
  2766. alt
  2767. v-if="itemTool.tool.indexOf(40) == -1"
  2768. />
  2769. <div class="checkDiv" v-else>
  2770. <img
  2771. src="../../../assets/icon/checkedIs.png"
  2772. alt
  2773. /><span>已选择</span>
  2774. </div>
  2775. </div>
  2776. </div> -->
  2777. <div class="tool">
  2778. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  2779. <img src="../../../assets/icon/thirdToolList/select.png" alt />
  2780. <div style="margin: 5px 0">选择匹配</div>
  2781. </div>
  2782. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  2783. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(41) == -1" />
  2784. <div class="checkDiv" v-else>
  2785. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2786. </div>
  2787. </div>
  2788. </div>
  2789. <div class="tool">
  2790. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  2791. <img src="../../../assets/icon/fourthToolList/conSentences.png" alt />
  2792. <div style="margin: 5px 0">排序</div>
  2793. </div>
  2794. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  2795. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(47) == -1" />
  2796. <div class="checkDiv" v-else>
  2797. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2798. </div>
  2799. </div>
  2800. </div>
  2801. <!-- <div class="tool">
  2802. <div
  2803. class="whiteBIcon"
  2804. @click="openTools(itemTaskIndex, 42, toolIndex)"
  2805. >
  2806. <img
  2807. src="../../../assets/icon/thirdToolList/mp3.png"
  2808. alt
  2809. />
  2810. <div style="margin: 5px 0">上传音频</div>
  2811. </div>
  2812. <div
  2813. class="check"
  2814. @click="addTools(42, itemTaskIndex, toolIndex)"
  2815. >
  2816. <img
  2817. src="../../../assets/icon/checkNo.png"
  2818. alt
  2819. v-if="itemTool.tool.indexOf(42) == -1"
  2820. />
  2821. <img
  2822. src="../../../assets/icon/checkedIs.png"
  2823. alt
  2824. v-else
  2825. />
  2826. </div>
  2827. </div> -->
  2828. </div>
  2829. <div class="toolSort" v-if="itemTool.toolType == 3">
  2830. <div class="tool">
  2831. <div class="whiteBIcon" @click="addTools(18, itemTaskIndex, toolIndex)">
  2832. <img src="../../../assets/icon/thirdToolList/trainPlatform.png" alt />
  2833. <div style="margin: 5px 0">训练平台</div>
  2834. </div>
  2835. <div class="check" @click="addTools(18, itemTaskIndex, toolIndex)">
  2836. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(18) == -1" />
  2837. <div class="checkDiv" v-else>
  2838. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2839. </div>
  2840. </div>
  2841. </div>
  2842. <div class="tool">
  2843. <div class="whiteBIcon" @click="addTools(21, itemTaskIndex, toolIndex)">
  2844. <img src="../../../assets/icon/fourthToolList/program.png" alt />
  2845. <div style="margin: 5px 0">AIoT Blockly</div>
  2846. </div>
  2847. <div class="check" @click="addTools(21, itemTaskIndex, toolIndex)">
  2848. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(21) == -1" />
  2849. <div class="checkDiv" v-else>
  2850. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2851. </div>
  2852. </div>
  2853. </div>
  2854. <div class="tool">
  2855. <div class="whiteBIcon" @click="addTools(22, itemTaskIndex, toolIndex)">
  2856. <img src="../../../assets/icon/fourthToolList/AIprogram2.png" alt />
  2857. <div style="margin: 5px 0">AI体验</div>
  2858. </div>
  2859. <div class="check" @click="addTools(22, itemTaskIndex, toolIndex)">
  2860. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(22) == -1" />
  2861. <div class="checkDiv" v-else>
  2862. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2863. </div>
  2864. </div>
  2865. </div>
  2866. <div class="tool">
  2867. <div class="whiteBIcon" @click="addTools(23, itemTaskIndex, toolIndex)">
  2868. <img src="../../../assets/icon/fourthToolList/Pythonprogram.png" alt />
  2869. <div style="margin: 5px 0">AI Python</div>
  2870. </div>
  2871. <div class="check" @click="addTools(23, itemTaskIndex, toolIndex)">
  2872. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(23) == -1" />
  2873. <div class="checkDiv" v-else>
  2874. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2875. </div>
  2876. </div>
  2877. </div>
  2878. <div class="tool">
  2879. <div class="whiteBIcon" @click="addTools(24, itemTaskIndex, toolIndex)">
  2880. <img src="../../../assets/icon/fourthToolList/AIprogram.png" alt />
  2881. <div style="margin: 5px 0">AI Blockly</div>
  2882. </div>
  2883. <div class="check" @click="addTools(24, itemTaskIndex, toolIndex)">
  2884. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(24) == -1" />
  2885. <div class="checkDiv" v-else>
  2886. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2887. </div>
  2888. </div>
  2889. </div>
  2890. <!-- <div class="tool">
  2891. <div class="whiteBIcon" @click="addTools(32, itemTaskIndex, toolIndex)">
  2892. <img src="../../../assets/icon/thirdToolList/code.png" alt />
  2893. <div style="margin: 5px 0">源码编辑</div>
  2894. </div>
  2895. <div class="check" @click="addTools(32, itemTaskIndex, toolIndex)">
  2896. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(32) == -1" />
  2897. <div class="checkDiv" v-else>
  2898. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2899. </div>
  2900. </div>
  2901. </div> -->
  2902. <div class="tool">
  2903. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 57, toolIndex)">
  2904. <img src="../../../assets/icon/fourthToolList/cocopi.png" alt />
  2905. <div style="margin: 5px 0">CocoPi</div>
  2906. </div>
  2907. <div class="check" @click="addTools(57, itemTaskIndex, toolIndex)">
  2908. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(57) == -1" />
  2909. <div class="checkDiv" v-else>
  2910. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2911. </div>
  2912. </div>
  2913. </div>
  2914. <div class="tool">
  2915. <div class="whiteBIcon" @click="addTools(63, itemTaskIndex, toolIndex)">
  2916. <img src="../../../assets/icon/fourthToolList/Wood.png" alt />
  2917. <div style="margin: 5px 0">海龟编程</div>
  2918. </div>
  2919. <div class="check" @click="addTools(63, itemTaskIndex, toolIndex)">
  2920. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(63) == -1" />
  2921. <div class="checkDiv" v-else>
  2922. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2923. </div>
  2924. </div>
  2925. </div>
  2926. </div>
  2927. <div class="toolSort" v-if="itemTool.toolType == 7">
  2928. <div class="tool">
  2929. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
  2930. <img src="../../../assets/icon/thirdToolList/eval.png" alt />
  2931. <div style="margin: 5px 0">个人评价</div>
  2932. </div>
  2933. <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
  2934. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(40) == -1" />
  2935. <div class="checkDiv" v-else>
  2936. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2937. </div>
  2938. </div>
  2939. </div>
  2940. </div>
  2941. <div class="toolSort" v-if="itemTool.toolType == 5">
  2942. <div class="tool">
  2943. <div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
  2944. <img src="../../../assets/icon/secondToolList/translation.png" alt />
  2945. <div style="margin: 5px 0">翻译</div>
  2946. </div>
  2947. <div class="check" @click="addTools(28, itemTaskIndex, toolIndex)">
  2948. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(28) == -1" />
  2949. <div class="checkDiv" v-else>
  2950. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2951. </div>
  2952. </div>
  2953. </div>
  2954. <div class="tool">
  2955. <div class="whiteBIcon" @click="addTools(37, itemTaskIndex, toolIndex)">
  2956. <img src="../../../assets/icon/secondToolList/mohe.png" alt />
  2957. <div style="margin: 5px 0">魔盒识字</div>
  2958. </div>
  2959. <div class="check" @click="addTools(37, itemTaskIndex, toolIndex)">
  2960. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(37) == -1" />
  2961. <div class="checkDiv" v-else>
  2962. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2963. </div>
  2964. </div>
  2965. </div>
  2966. <div class="tool">
  2967. <div class="whiteBIcon" @click="addTools(38, itemTaskIndex, toolIndex)">
  2968. <img src="../../../assets/icon/secondToolList/24game.png" alt />
  2969. <div style="margin: 5px 0">24点</div>
  2970. </div>
  2971. <div class="check" @click="addTools(38, itemTaskIndex, toolIndex)">
  2972. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(38) == -1" />
  2973. <div class="checkDiv" v-else>
  2974. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2975. </div>
  2976. </div>
  2977. </div>
  2978. <div class="tool">
  2979. <div class="whiteBIcon" @click="addTools(31, itemTaskIndex, toolIndex)">
  2980. <img src="../../../assets/icon/secondToolList/networkPanel.png" alt />
  2981. <div style="margin: 5px 0">数学画板</div>
  2982. </div>
  2983. <div class="check" @click="addTools(31, itemTaskIndex, toolIndex)">
  2984. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(31) == -1" />
  2985. <div class="checkDiv" v-else>
  2986. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2987. </div>
  2988. </div>
  2989. </div>
  2990. <div class="tool">
  2991. <div class="whiteBIcon" @click="addTools(39, itemTaskIndex, toolIndex)">
  2992. <img src="../../../assets/icon/secondToolList/GeoGebra.png" alt />
  2993. <div style="margin: 5px 0">GeoGebra</div>
  2994. </div>
  2995. <div class="check" @click="addTools(39, itemTaskIndex, toolIndex)">
  2996. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(39) == -1" />
  2997. <div class="checkDiv" v-else>
  2998. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  2999. </div>
  3000. </div>
  3001. </div>
  3002. <div class="tool">
  3003. <div class="whiteBIcon" @click="addTools(58, itemTaskIndex, toolIndex)">
  3004. <img src="../../../assets/icon/fourthToolList/car.png" alt />
  3005. <div style="margin: 5px 0">模拟驾驶</div>
  3006. </div>
  3007. <div class="check" @click="addTools(58, itemTaskIndex, toolIndex)">
  3008. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(58) == -1" />
  3009. <div class="checkDiv" v-else>
  3010. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3011. </div>
  3012. </div>
  3013. </div>
  3014. <div class="tool">
  3015. <div class="whiteBIcon" @click="addTools(59, itemTaskIndex, toolIndex)">
  3016. <img src="../../../assets/icon/fourthToolList/lineSearch.png" alt />
  3017. <div style="margin: 5px 0">路径搜索</div>
  3018. </div>
  3019. <div class="check" @click="addTools(59, itemTaskIndex, toolIndex)">
  3020. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(59) == -1" />
  3021. <div class="checkDiv" v-else>
  3022. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3023. </div>
  3024. </div>
  3025. </div>
  3026. <div class="tool">
  3027. <div class="whiteBIcon" @click="addTools(60, itemTaskIndex, toolIndex)">
  3028. <img src="../../../assets/icon/fourthToolList/deepLearning.png" alt />
  3029. <div style="margin: 5px 0">深度学习</div>
  3030. </div>
  3031. <div class="check" @click="addTools(60, itemTaskIndex, toolIndex)">
  3032. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(60) == -1" />
  3033. <div class="checkDiv" v-else>
  3034. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3035. </div>
  3036. </div>
  3037. </div>
  3038. <div class="tool">
  3039. <div class="whiteBIcon" @click="addTools(61, itemTaskIndex, toolIndex)">
  3040. <img src="../../../assets/icon/fourthToolList/allHistory.png" alt />
  3041. <div style="margin: 5px 0">全历史</div>
  3042. </div>
  3043. <div class="check" @click="addTools(61, itemTaskIndex, toolIndex)">
  3044. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(61) == -1" />
  3045. <div class="checkDiv" v-else>
  3046. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3047. </div>
  3048. </div>
  3049. </div>
  3050. </div>
  3051. <div class="toolSort" v-if="itemTool.toolType == 4">
  3052. <div class="tool">
  3053. <div class="whiteBIcon" @click="addTools(26, itemTaskIndex, toolIndex)">
  3054. <img src="../../../assets/icon/thirdToolList/courseDesign.png" alt />
  3055. <div style="margin: 5px 0">课程设计</div>
  3056. </div>
  3057. <div class="check" @click="addTools(26, itemTaskIndex, toolIndex)">
  3058. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(26) == -1" />
  3059. <div class="checkDiv" v-else>
  3060. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3061. </div>
  3062. </div>
  3063. </div>
  3064. <div class="tool">
  3065. <div class="whiteBIcon" @click="addTools(25, itemTaskIndex, toolIndex)">
  3066. <img src="../../../assets/icon/thirdToolList/evalua.png" alt />
  3067. <div style="margin: 5px 0">目标管理</div>
  3068. </div>
  3069. <div class="check" @click="addTools(25, itemTaskIndex, toolIndex)">
  3070. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(25) == -1" />
  3071. <div class="checkDiv" v-else>
  3072. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3073. </div>
  3074. </div>
  3075. </div>
  3076. <!-- <div class="tool">
  3077. <div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
  3078. <img src="../../../assets/icon/thirdToolList/hanClass.png" alt />
  3079. <div style="margin: 5px 0">汉字宫</div>
  3080. </div>
  3081. <div class="check" @click="addTools(44, itemTaskIndex, toolIndex)">
  3082. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(44) == -1" />
  3083. <div class="checkDiv" v-else>
  3084. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3085. </div>
  3086. </div>
  3087. </div> -->
  3088. </div>
  3089. </div>
  3090. </div>
  3091. <div class="addToolFun" @click="addToolFun(itemTaskIndex)">
  3092. <div class="addToolImg">
  3093. <img src="../../../assets/icon/add.png" alt />
  3094. </div>
  3095. <div>添加工具</div>
  3096. </div>
  3097. </div>
  3098. </div>
  3099. <div v-else-if="unitJson[unitIndex].easy == 2 ||
  3100. unitJson[unitIndex].easy == 4
  3101. " class="toolChoose" style="padding: 0 0 0 30px">
  3102. <div class="tools">
  3103. <div class="leftTools" style="width: 95%" v-for="(itemTool, toolIndex) in itemTask.toolChoose"
  3104. :key="toolIndex">
  3105. <div>
  3106. <textarea rows="3" type="text" placeholder="添加工具描述" class="binfo_input"
  3107. style="margin: 0 0 20px 0; width: 71.5% !important" v-model="itemTool.toolDetail"></textarea>
  3108. </div>
  3109. <div style="
  3110. display: flex;
  3111. flex-direction: row;
  3112. align-items: baseline;
  3113. flex-wrap: nowrap;
  3114. justify-content: flex-start;
  3115. position: relative;
  3116. ">
  3117. <div style="margin-right: 20px; font-weight: bold">
  3118. 步骤 {{ toolIndex + 1 }} :
  3119. </div>
  3120. <div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
  3121. v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 55px"></div>
  3122. </div>
  3123. <div style="min-height: 163px">
  3124. <div class="toolSort">
  3125. <div class="tool">
  3126. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 1, toolIndex)">
  3127. <img src="../../../assets/icon/secondToolList/whiteBoard.png" alt />
  3128. <div style="margin: 5px 0">电子白板</div>
  3129. </div>
  3130. <div class="check" @click="addTools(1, itemTaskIndex, toolIndex)">
  3131. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(1) == -1" />
  3132. <div class="checkDiv" v-else>
  3133. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3134. </div>
  3135. </div>
  3136. </div>
  3137. <div class="tool">
  3138. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 52, toolIndex)">
  3139. <img src="../../../assets/icon/fourthToolList/text.png" alt />
  3140. <div style="margin: 5px 0">文档</div>
  3141. </div>
  3142. <div class="check" @click="addTools(52, itemTaskIndex, toolIndex)">
  3143. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(52) == -1" />
  3144. <div class="checkDiv" v-else>
  3145. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3146. </div>
  3147. </div>
  3148. </div>
  3149. <div class="tool">
  3150. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 3, toolIndex)">
  3151. <img src="../../../assets/icon/secondToolList/mindMapping.png" alt />
  3152. <div style="margin: 5px 0">思维导图</div>
  3153. </div>
  3154. <div class="check" @click="addTools(3, itemTaskIndex, toolIndex)">
  3155. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(3) == -1" />
  3156. <div class="checkDiv" v-else>
  3157. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3158. </div>
  3159. </div>
  3160. </div>
  3161. <div class="tool">
  3162. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 4, toolIndex)">
  3163. <img src="../../../assets/icon/thirdToolList/ask.png" alt />
  3164. <div style="margin: 5px 0">问卷调查</div>
  3165. </div>
  3166. <div class="check" @click="addTools(4, itemTaskIndex, toolIndex)">
  3167. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(4) == -1" />
  3168. <div class="checkDiv" v-else>
  3169. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3170. </div>
  3171. </div>
  3172. </div>
  3173. <div class="tool">
  3174. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 45, toolIndex)">
  3175. <img src="../../../assets/icon/thirdToolList/choose.png" alt />
  3176. <div style="margin: 5px 0">选择题</div>
  3177. </div>
  3178. <div class="check" @click="addTools(45, itemTaskIndex, toolIndex)">
  3179. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(45) == -1" />
  3180. <div class="checkDiv" v-else>
  3181. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3182. </div>
  3183. </div>
  3184. </div>
  3185. <div class="tool">
  3186. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 15, toolIndex)">
  3187. <img src="../../../assets/icon/thirdToolList/answer.png" alt />
  3188. <div style="margin: 5px 0">问答</div>
  3189. </div>
  3190. <div class="check" @click="addTools(15, itemTaskIndex, toolIndex)">
  3191. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(15) == -1" />
  3192. <div class="checkDiv" v-else>
  3193. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3194. </div>
  3195. </div>
  3196. </div>
  3197. <div class="tool">
  3198. <div class="whiteBIcon" @click="addTools(16, itemTaskIndex, toolIndex)">
  3199. <img src="../../../assets/icon/thirdToolList/work.png" alt />
  3200. <div style="margin: 5px 0">作业提交</div>
  3201. </div>
  3202. <div class="check" @click="addTools(16, itemTaskIndex, toolIndex)">
  3203. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(16) == -1" />
  3204. <div class="checkDiv" v-else>
  3205. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3206. </div>
  3207. </div>
  3208. </div>
  3209. <div class="tool">
  3210. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  3211. <img src="../../../assets/icon/thirdToolList/plwork.png" alt />
  3212. <div style="margin: 5px 0">批量上传</div>
  3213. </div>
  3214. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  3215. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  3216. <div class="checkDiv" v-else>
  3217. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3218. </div>
  3219. </div>
  3220. </div>
  3221. <div class="tool">
  3222. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 41, toolIndex)">
  3223. <img src="../../../assets/icon/thirdToolList/select.png" alt />
  3224. <div style="margin: 5px 0">选择匹配</div>
  3225. </div>
  3226. <div class="check" @click="addTools(41, itemTaskIndex, toolIndex)">
  3227. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(41) == -1" />
  3228. <div class="checkDiv" v-else>
  3229. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3230. </div>
  3231. </div>
  3232. </div>
  3233. <div class="tool">
  3234. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 47, toolIndex)">
  3235. <img src="../../../assets/icon/fourthToolList/conSentences.png" alt />
  3236. <div style="margin: 5px 0">排序</div>
  3237. </div>
  3238. <div class="check" @click="addTools(47, itemTaskIndex, toolIndex)">
  3239. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(47) == -1" />
  3240. <div class="checkDiv" v-else>
  3241. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3242. </div>
  3243. </div>
  3244. </div>
  3245. <div class="tool">
  3246. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 48, toolIndex)">
  3247. <img src="../../../assets/icon/fourthToolList/table.png" alt />
  3248. <div style="margin: 5px 0">表格</div>
  3249. </div>
  3250. <div class="check" @click="addTools(48, itemTaskIndex, toolIndex)">
  3251. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(48) == -1" />
  3252. <div class="checkDiv" v-else>
  3253. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3254. </div>
  3255. </div>
  3256. </div>
  3257. </div>
  3258. </div>
  3259. </div>
  3260. <div class="addToolFun" style="margin-bottom: 20px" @click="addToolFun(itemTaskIndex)">
  3261. <div class="addToolImg">
  3262. <img src="../../../assets/icon/add.png" alt />
  3263. </div>
  3264. <div>添加工具</div>
  3265. </div>
  3266. </div>
  3267. </div>
  3268. <div v-else-if="unitJson[unitIndex].easy == 1 ||
  3269. (unitJson[unitIndex].easy == 5 && itemTask.taskType == 2)
  3270. " class="toolChoose" style="padding: 0 0 0 30px">
  3271. <div class="tools">
  3272. <div class="leftTools" style="
  3273. width: 95%;
  3274. padding: 0 0 15px 0;
  3275. margin-bottom: 15px;
  3276. " v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
  3277. <div style="min-height: 163px">
  3278. <div class="toolSort">
  3279. <div class="tool">
  3280. <div class="whiteBIcon" @click="openTools(itemTaskIndex, 50, toolIndex)">
  3281. <img src="../../../assets/icon/thirdToolList/plwork.png" alt />
  3282. <div style="margin: 5px 0">批量上传</div>
  3283. </div>
  3284. <div class="check" @click="addTools(50, itemTaskIndex, toolIndex)">
  3285. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(50) == -1" />
  3286. <div class="checkDiv" v-else>
  3287. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3288. </div>
  3289. </div>
  3290. </div>
  3291. </div>
  3292. </div>
  3293. </div>
  3294. </div>
  3295. </div>
  3296. <div class="elist_css" v-if="!(unitJson[unitJson.length - 1].easy == 4)">
  3297. <div class="elist_title">
  3298. <div style="
  3299. display: flex;
  3300. flex-direction: row;
  3301. align-items: center;
  3302. margin-bottom: 20px;
  3303. ">
  3304. <div class="lineTitle">评价设置</div>
  3305. </div>
  3306. </div>
  3307. <div class="mbCss">
  3308. <div class="pjCss">
  3309. <div v-if="itemTask.eList && itemTask.eList.length" class="elist_input">
  3310. <div v-for="(eItem, eIndex) in itemTask.eList" :key="eIndex" class="elist_input_box">
  3311. <span>评价名称:</span>
  3312. <input type="input" v-model="itemTask.eList[eIndex].value" placeholder="填写评价名称" />
  3313. <span>评星等级:</span>
  3314. <el-rate v-model="itemTask.eList[eIndex].score" @change="setEListStar()" disabled></el-rate>
  3315. <div class="remove" @click="
  3316. deletEList(unitIndex, itemTaskIndex, eIndex)
  3317. "></div>
  3318. <div class="elist_inptu_text">
  3319. <span>评价描述:</span>
  3320. <input type="input" v-model="itemTask.eList[eIndex].detail" placeholder="填写评价描述" />
  3321. </div>
  3322. <div class="elist_inptu_text" v-if="evalua">
  3323. <span>目标:</span>
  3324. <!-- <input type="input" v-model="itemTask.eList[eIndex].target" placeholder="填写评价描述" /> -->
  3325. <!-- <el-select v-model="itemTask.eList[eIndex].target" placeholder="请选择目标"
  3326. @change="forceUpdate()">
  3327. <el-option v-for="(e, eIndex) in targetArray" :key="eIndex" :label="e.name"
  3328. :value="e.name">
  3329. </el-option>
  3330. </el-select> -->
  3331. <el-cascader :options="targetArray" v-model="itemTask.eList[eIndex].target"
  3332. :props="{ checkStrictly: true }" :show-all-levels="false" clearable></el-cascader>
  3333. </div>
  3334. </div>
  3335. </div>
  3336. <div class="addToolFun" @click="addEList(unitIndex, itemTaskIndex)" style="margin: 35px 35px 0 0">
  3337. <div class="addToolImg">
  3338. <img src="../../../assets/icon/add.png" alt />
  3339. </div>
  3340. <div>添加</div>
  3341. </div>
  3342. </div>
  3343. <div v-if="evalua" style="
  3344. border: 1px solid #e5e5e5;
  3345. width: 55%;
  3346. margin-top: 20px;
  3347. box-shadow: 3px 1px 15px 3px #e0e0e0;
  3348. " class="evaCss">
  3349. <div class="e_add_top">
  3350. <div class="e_add_title">
  3351. <span>当前使用目标管理</span>
  3352. <span>{{ eTitle }}</span>
  3353. <img src="../../../assets/line.png" class="cru_line" style="
  3354. width: 125px;
  3355. height: 20px;
  3356. bottom: -10px;
  3357. left: 155px;
  3358. " />
  3359. </div>
  3360. </div>
  3361. <div class="e_add_content" style="width: 100%">
  3362. <div class="e_add_list_pbox" style="width: 100%">
  3363. <div class="e_add_list_pbox_title">
  3364. <span class="type_title">切换模式</span>
  3365. <div class="type_content">
  3366. <span :class="{ active: typeMode == 1 }" @click="OtherMb(1)">目标树</span>
  3367. <span :class="{ active: typeMode == 2 }" @click="OtherMb(2)">目标罗盘</span>
  3368. <span :class="{ active: typeMode == 3 }" @click="OtherMb(3)">目标看板</span>
  3369. </div>
  3370. </div>
  3371. <div class="e_add_list_pbox_content">
  3372. <Mind :showBar="false" :mindData="data" style="width: 100%" :jsmindId="unitIndex + '-' + itemTaskIndex + 'mind'
  3373. " v-if="typeMode == 1"></Mind>
  3374. <Sunburst :Josn="eJson" :num="eJSONNum" style="width: 100%" v-if="typeMode == 2">
  3375. </Sunburst>
  3376. <SeeBoard :Josn="eJson" :num="eJSONNum" :ename="eTitle" style="width: 100%"
  3377. v-if="typeMode == 3"></SeeBoard>
  3378. </div>
  3379. </div>
  3380. </div>
  3381. </div>
  3382. </div>
  3383. </div>
  3384. <div class="funBlock" style="padding: 0">
  3385. <div class="fold" @click="fold(itemTaskIndex, $event, 1)">
  3386. <div>折叠</div>
  3387. <div class="arrow">
  3388. <img src="../../../assets/icon/fold.png" alt />
  3389. </div>
  3390. </div>
  3391. <div class="fold" @click="fold(itemTaskIndex, $event, 0)">
  3392. <div>展开</div>
  3393. <div class="arrow">
  3394. <img src="../../../assets/icon/expand.png" alt />
  3395. </div>
  3396. </div>
  3397. </div>
  3398. </div>
  3399. <div class="addTaskBorder" @click="addTaskBorder" v-if="!unitJson[unitIndex].easy">
  3400. <div>
  3401. <img src="../../../assets/icon/new/addStage.png" alt />
  3402. <span>添加任务</span>
  3403. </div>
  3404. </div>
  3405. </div>
  3406. </div>
  3407. </div>
  3408. <div class="rightBox" v-if="this.steps == 4">
  3409. <div class="basic_box_success">
  3410. <div class="right_img">
  3411. <img src="../../../assets/icon/right.png" alt />
  3412. </div>
  3413. <div style="font-weight: bold">成功</div>
  3414. <!-- <div>您的课程编号</div>
  3415. <div class="number">{{ number }}</div>-->
  3416. <!-- <div class="success_button">
  3417. <div class="look_course" @click="isNoFinsh">
  3418. 邀请老师协同编辑
  3419. </div>
  3420. <div class="attend_others" @click="goCourse">预览课程</div>
  3421. </div> -->
  3422. </div>
  3423. </div>
  3424. <div :class="{ info_btnBox: isBtnDisplay, info_btnBox2: !isBtnDisplay }" @mouseenter="btnDisplay(true)"
  3425. @mouseleave="btnDisplay(false)" v-if="false">
  3426. <button class="c_pub_button_return pub_btn_return_img" @click="lastSteps" v-if="isBtnDisplay">
  3427. 返回课程
  3428. </button>
  3429. <button class="c_pub_button_confirm pub_btn_finish_img" @click="nextSteps" v-if="isBtnDisplay">
  3430. 确认上传
  3431. </button>
  3432. </div>
  3433. </div>
  3434. </div>
  3435. </div>
  3436. <el-dialog title="提示" :visible.sync="dialogVisible" :append-to-body="true" width="25%" :before-close="handleClose"
  3437. class="dialog_diy2 customWidth">
  3438. <div>请复制该链接邀请协同编辑</div>
  3439. <div>http://www.boomyon.com/index-zhang.com</div>
  3440. <span slot="footer" class="dialog-footer">
  3441. <el-button type="primary">复制链接分享</el-button>
  3442. <el-button @click="dialogVisible = false">取消</el-button>
  3443. </span>
  3444. </el-dialog>
  3445. <el-dialog :title="updateBoolean2 ? '查看文档' : '添加文档'" :visible.sync="dialogVisible1" :append-to-body="true" width="25%"
  3446. :before-close="handleClose" class="dialog_diy2 customWidth">
  3447. <el-form>
  3448. <el-form-item label="文档标题">
  3449. <el-input v-model="tTitle" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  3450. </el-form-item>
  3451. <div>文档简介</div>
  3452. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  3453. </el-form>
  3454. <span slot="footer" class="dialog-footer">
  3455. <el-button @click="dialogVisible1 = false">取 消</el-button>
  3456. <el-button type="primary" @click="addWord" v-if="!updateBoolean2">添加</el-button>
  3457. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  3458. </span>
  3459. </el-dialog>
  3460. <el-dialog title="添加文档" :visible.sync="dialogVisible2" :append-to-body="true" width="500px"
  3461. :before-close="handleClose" class="dialog_diy">
  3462. <el-form>
  3463. <el-form-item label="文档标题">
  3464. <el-input v-model="templateC.title" auto-complete="off" placeholder="请输入文档标题名..."></el-input>
  3465. </el-form-item>
  3466. <div>文档内容</div>
  3467. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  3468. </el-form>
  3469. <span slot="footer" class="dialog-footer">
  3470. <el-button @click="clearChoose">取 消</el-button>
  3471. <el-button type="primary" @click="wordNext()">确定</el-button>
  3472. </span>
  3473. </el-dialog>
  3474. <el-dialog title="添加富文本" :visible.sync="dialogVisible6" :append-to-body="true" width="500px"
  3475. :before-close="handleClose" class="dialog_diy">
  3476. <el-form>
  3477. <el-form-item label="文本标题">
  3478. <el-input ref="fuInput" v-model="AttText.title" auto-complete="off" @input="change2"
  3479. placeholder="请输入文本标题..."></el-input>
  3480. </el-form-item>
  3481. <!-- <div>富文本内容</div> -->
  3482. <editor-bar v-model="AttText.text" @change="change" v-if="dialogVisible6"></editor-bar>
  3483. </el-form>
  3484. <span slot="footer" class="dialog-footer">
  3485. <el-button @click="clearAttText">取 消</el-button>
  3486. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  3487. </span>
  3488. </el-dialog>
  3489. <el-dialog title="添加链接" :visible.sync="dialogVisible7" :append-to-body="true" width="500px"
  3490. :before-close="handleClose" class="dialog_diy lineCss">
  3491. <el-form>
  3492. <el-form-item label="标题" :label-width="formLabelWidth">
  3493. <span>
  3494. <el-input placeholder="请输入链接标题" clearable v-model="lineTitle" class="add_input"></el-input>
  3495. </span>
  3496. </el-form-item>
  3497. <el-form-item label="链接" :label-width="formLabelWidth">
  3498. <span>
  3499. <el-input placeholder="请输入链接" clearable v-model="line" class="add_input"></el-input>
  3500. </span>
  3501. </el-form-item>
  3502. </el-form>
  3503. <span slot="footer" class="dialog-footer">
  3504. <el-button @click="clearLine">取 消</el-button>
  3505. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  3506. </span>
  3507. </el-dialog>
  3508. <el-dialog :title="updateSourcePan ? '修改资源' : '添加资源'" :visible.sync="dialogVisibleSource" :append-to-body="true"
  3509. width="100%" :before-close="handleClose" class="dialog_diy source_diy">
  3510. <div>
  3511. <sourceDialog :sourceData.sync="sourceData" :updateSourcePan="updateSourcePan"></sourceDialog>
  3512. </div>
  3513. <span slot="footer" class="dialog-footer">
  3514. <el-button @click="dialogVisibleSource = false">取 消</el-button>
  3515. <el-button type="primary" @click="addSource" v-if="!updateSourcePan">确定</el-button>
  3516. <el-button type="primary" @click="updateSource" v-else>确定</el-button>
  3517. </span>
  3518. </el-dialog>
  3519. <el-dialog title="添加课程成员" :visible.sync="dialogVisible3" :append-to-body="true" width="25%" height="80%"
  3520. :before-close="handleClose" class="addNewPP customWidth">
  3521. <div class="people">
  3522. <div class="people_top">
  3523. <div class="people_nav">选择成员</div>
  3524. <div class="people_top_right">
  3525. <div class="people_search">
  3526. <el-input style="height: 100%" placeholder="搜索成员名称" v-model="searchPeople"></el-input>
  3527. <div class="search_img" @click="searchStudent">
  3528. <img src="../../../assets/icon/search.png" alt />
  3529. </div>
  3530. </div>
  3531. </div>
  3532. </div>
  3533. <el-checkbox-group v-model="checkboxList" class="people_name">
  3534. <el-checkbox v-for="item in studentJuri" :key="item.userid" :label="item.userid">{{ item.name ? item.name :
  3535. "暂无学生可选" }}</el-checkbox>
  3536. </el-checkbox-group>
  3537. </div>
  3538. <span slot="footer" class="dialog-footer">
  3539. <el-button @click="dialogVisible3 = false">取 消</el-button>
  3540. <el-button type="primary" @click="isAddPP">确定</el-button>
  3541. </span>
  3542. </el-dialog>
  3543. <!-- <el-dialog title="添加班级" :visible.sync="dialogVisibleClass" :append-to-body="true" width="400px" height="80%"
  3544. :before-close="handleClose" class="addNewPP">
  3545. <div class="people" style="height: 300px">
  3546. <div class="people_top">
  3547. <div class="people_top_right">
  3548. <div class="people_search">
  3549. <el-select v-model="gradeId" placeholder="请选择年级" class="student_input" clearable @change="getClass()">
  3550. <el-option label="全部" value=""></el-option>
  3551. <el-option v-for="(item, index) in gradeList" :key="index" :label="item.name"
  3552. :value="item.id"></el-option>
  3553. </el-select>
  3554. <el-input placeholder="搜索班级名称" v-model="classSearch" @input="getClass()"></el-input>
  3555. <div class="search_img">
  3556. <img src="../../../assets/icon/search.png" alt />
  3557. </div>
  3558. </div>
  3559. </div>
  3560. <div class="people_nav">选择班级</div>
  3561. </div>
  3562. <el-checkbox-group v-model="checkboxList2" class="people_name people_name2" @change="InviteChange"
  3563. v-if="grade2.length">
  3564. <div v-for="item in grade2" :key="item.id" class="p_box">
  3565. <el-checkbox :label="item.id">
  3566. {{ item.name }}
  3567. </el-checkbox>
  3568. </div>
  3569. </el-checkbox-group>
  3570. <div v-if="!grade2.length" style="padding:20px 10px">暂无数据</div>
  3571. </div>
  3572. <span slot="footer" class="dialog-footer">
  3573. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  3574. <el-button type="primary" @click="isAddClass">确定</el-button>
  3575. </span>
  3576. </el-dialog> -->
  3577. <el-dialog title="选择授课班级" :visible.sync="dialogVisibleClass" :append-to-body="true" width="600px" height="80%"
  3578. :before-close="handleClose" class="addNewPP2">
  3579. <div class="check_classBox">
  3580. <div class="check_class_right">
  3581. <div class="check_class" :class="{ activeX: gradeId == '' }" @click="gradeId = '', getClass()">
  3582. 全部
  3583. </div>
  3584. <el-tooltip placement="top" :content="item.name" v-for="(item, index) in gradeList" :key="index">
  3585. <div class="check_class" :class="{ activeX: gradeId == item.id }" @click="gradeId = item.id, getClass()">
  3586. {{ item.name }}
  3587. </div>
  3588. </el-tooltip>
  3589. </div>
  3590. <div class="check_class_left">
  3591. <div class="check_class_left_title">选择班级</div>
  3592. <el-checkbox-group v-model="checkboxList2" class="check_class_item" @change="InviteChange" v-if="grade2.length">
  3593. <div v-for="item in grade2" :key="item.id" class="class_item">
  3594. <el-checkbox :label="item.id">
  3595. {{ item.name }}
  3596. </el-checkbox>
  3597. </div>
  3598. </el-checkbox-group>
  3599. <div v-if="!grade2.length">暂无数据</div>
  3600. </div>
  3601. </div>
  3602. <span slot="footer" class="dialog-footer">
  3603. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  3604. <el-button type="primary" @click="isAddClass">确定</el-button>
  3605. </span>
  3606. </el-dialog>
  3607. <el-dialog title="添加协同成员" :visible.sync="dialogVisibleMember" :append-to-body="true" width="25%" height="80%"
  3608. :before-close="handleClose" class="addNewPP customWidth">
  3609. <div class="people">
  3610. <div class="people_top">
  3611. <div class="people_top_right">
  3612. <div class="people_search">
  3613. <el-input placeholder="搜索成员名称" v-model="searchTN" @keyup.enter.native="getTeacher"></el-input>
  3614. <div class="search_img" @click="getTeacher">
  3615. <img src="../../../assets/icon/search.png" alt />
  3616. </div>
  3617. </div>
  3618. </div>
  3619. <div class="people_nav">选择成员</div>
  3620. </div>
  3621. <el-checkbox-group v-model="checkboxList3" class="people_name" v-if="teacherJuri.length">
  3622. <el-checkbox v-for="item in teacherJuri" :key="item.userid" :label="item.userid">
  3623. <div class="t_j_box">
  3624. <el-tooltip placement="top" :content="item.name ? item.name : '暂无姓名'">
  3625. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  3626. </el-tooltip>
  3627. <el-tooltip placement="top" :content="item.username">
  3628. <span>{{ item.username }}</span>
  3629. </el-tooltip>
  3630. <el-tooltip placement="top" :content="item.school">
  3631. <span>{{ item.school }}</span>
  3632. </el-tooltip>
  3633. </div>
  3634. </el-checkbox>
  3635. </el-checkbox-group>
  3636. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  3637. </div>
  3638. <span slot="footer" class="dialog-footer">
  3639. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  3640. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  3641. </span>
  3642. </el-dialog>
  3643. <el-dialog title="创建问卷" :visible.sync="dialogVisible5" :append-to-body="true" width="800px"
  3644. :before-close="(done) => { closePan(4) }" class="dialog_diy fullStyle">
  3645. <div style="height:100%">
  3646. <div class="a_add_title" style="
  3647. display: flex;
  3648. flex-direction: row;
  3649. align-items: center;
  3650. justify-content: center;
  3651. ">
  3652. <!-- <div style="margin-right: 20px; font-size: 20px">标题:</div> -->
  3653. <el-input v-model="askJson.askTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  3654. </div>
  3655. <div class="a_addBox" style="height:calc(100% - 50px)">
  3656. <!-- <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div> -->
  3657. <div class="a_add_box" v-for="(item1, index1) in askJson.askCount" :key="index1">
  3658. <div class="a_add_checkType">
  3659. <span :class="{
  3660. active:
  3661. askJson.askJson[index1].type == '1' ||
  3662. !askJson.askJson[index1].type,
  3663. }" @click="checkAskType('1', askJson.askJson[index1])">单选题</span>
  3664. <span :class="{ active: askJson.askJson[index1].type == '2' }"
  3665. @click="checkAskType('2', askJson.askJson[index1])">多选题</span>
  3666. </div>
  3667. <div class="a_add_head">
  3668. <div style="display: flex;align-items: center;width: 100%;margin-right: 20px;">
  3669. <span style="min-width:fit-content">{{ index1 + 1 + "、" }}</span>
  3670. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-model="askJson.askJson[index1].askstitle
  3671. " placeholder="请输入题目" @change="() => { $forceUpdate() }"></textarea>
  3672. </div>
  3673. <div class="moveBtn moveBtn2" style="margin: 0 20px 0 0px;" v-if="askJson.askCount != 1">
  3674. <div class="chapter_upload_up" @click.stop="askMove(1, index1)">
  3675. </div>
  3676. <div class="chapter_upload_down" @click.stop="askMove(2, index1)"></div>
  3677. </div>
  3678. <div class="a_add_head_div">
  3679. <el-button type="primary" size="small" @click="deleteAskList(index1)" v-if="askJson.askCount != 1">删除
  3680. </el-button>
  3681. <el-button type="primary" size="small" @click="addAskList(index1)">添加</el-button>
  3682. </div>
  3683. </div>
  3684. <div class="a_add_body">
  3685. <div class="a_add_input" style="flex-direction: column;">
  3686. <div v-for="(item2, checkIndex) in askJson.askJson[index1].askItem" :key="checkIndex"
  3687. style=" margin: 20px 10px 0 0;display: flex;align-items:center;position: relative;">
  3688. <div style="margin-right: 10px">
  3689. 选项{{ checkIndex + 1 }}
  3690. </div>
  3691. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-model="askJson.askJson[index1].checkList[checkIndex]
  3692. " placeholder="请输入选项" style="width: 300px" @change="() => { $forceUpdate() }"></textarea>
  3693. <div class="moveBtn moveBtn2" style="margin: 0 0px 0 20px" v-if="askJson.askJson[index1].askItem != 1">
  3694. <div class="chapter_upload_up" @click.stop="checkMove(1, index1, checkIndex)">
  3695. </div>
  3696. <div class="chapter_upload_down" @click.stop="checkMove(2, index1, checkIndex)"></div>
  3697. </div>
  3698. <div class="a_add_body_div">
  3699. <el-button type="primary" size="small"
  3700. @click="addcheckList(askJson.askJson[index1], checkIndex)">添加</el-button>
  3701. <el-button type="primary" size="small" @click="deletecheckList(askJson.askJson[index1], checkIndex)"
  3702. v-if="askJson.askJson[index1].askItem != 1">删除
  3703. </el-button>
  3704. </div>
  3705. </div>
  3706. </div>
  3707. <!-- <div class="a_add_body_div">
  3708. <el-button style="margin: 10px 0px 0 0" type="primary" size="small"
  3709. @click="addcheckList(askJson.askJson[index1])">添加</el-button>
  3710. <el-button type="primary" size="small" style="margin: 10px 0 0 10px"
  3711. @click="deletecheckList(askJson.askJson[index1])" v-if="askJson.askJson[index1].askItem != 1">删除
  3712. </el-button>
  3713. </div> -->
  3714. </div>
  3715. </div>
  3716. </div>
  3717. </div>
  3718. <span slot="footer" class="dialog-footer">
  3719. <el-button @click="closePan(4)">取 消</el-button>
  3720. <el-button type="primary" @click="addAsk">确 定</el-button>
  3721. </span>
  3722. </el-dialog>
  3723. <el-dialog title="创建选择题" :visible.sync="dialogVisibleChoice" :append-to-body="true" width="800px"
  3724. :before-close="(done) => { closePan(45) }" class="dialog_diy fullStyle">
  3725. <div style="height:100%">
  3726. <!-- <div class="a_add_title" style="
  3727. display: flex;
  3728. flex-direction: row;
  3729. align-items: center;
  3730. justify-content: center;
  3731. ">
  3732. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  3733. <el-input v-model="testJson.testTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  3734. </div> -->
  3735. <div class="a_addBox" style="height:100%">
  3736. <div style="font-size: 16px; color: #c7c7c7;display: flex;align-items: center;">
  3737. <!-- 请输入题目内容 -->
  3738. <button class="c_pub_button_add pub_btn_paste_img" @click="pasteOption" style="margin-left: 10px"
  3739. v-if="isPasteChoice">智能粘贴</button>
  3740. </div>
  3741. <div class="a_add_box" v-for="(item1, index1) in testJson.testCount" :key="index1">
  3742. <div class="a_add_checkType">
  3743. <span :class="{ active: testJson.testJson[index1].type == '1' }"
  3744. @click="checkTestType('1', testJson.testJson[index1])">单选题</span>
  3745. <span :class="{ active: testJson.testJson[index1].type == '2' }"
  3746. @click="checkTestType('2', testJson.testJson[index1])">多选题</span>
  3747. </div>
  3748. <div class="a_add_head">
  3749. <div class="timuUpImg">
  3750. <div style="display: flex;align-items: center;">
  3751. <span style="min-width:fit-content">{{ index1 + 1 + "、" }}</span>
  3752. <!-- <el-input class="a_add_head_input" v-autoHeight="40" resize="none" v-model="testJson.testJson[index1].teststitle" type="textarea"
  3753. placeholder="请输入题目">
  3754. </el-input> -->
  3755. <textarea class="a_add_head_input textarea_css" v-autoHeight="40"
  3756. v-model="testJson.testJson[index1].teststitle" placeholder="请输入题目"
  3757. @change="() => { $forceUpdate() }"></textarea>
  3758. </div>
  3759. <div class="moveBtn moveBtn2" v-if="testJson.testCount != 1">
  3760. <div class="chapter_upload_up" @click.stop="testMove(1, index1)">
  3761. </div>
  3762. <div class="chapter_upload_down" @click.stop="testMove(2, index1)"></div>
  3763. </div>
  3764. <div class="xzUpImg" @click.stop="addImg($event)" style="margin-right: 10px;">
  3765. <img src="../../../assets/icon/xzUpImg.png" alt="" />
  3766. <input type="file" accept="image/*" style="display: none" @change="beforeUploadTiMu($event, index1)" />
  3767. </div>
  3768. </div>
  3769. <div class="a_add_head_div">
  3770. <el-button type="primary" size="small" @click="deleteTestList(index1)" v-if="testJson.testCount != 1">删除
  3771. </el-button>
  3772. <el-button type="primary" size="small" @click="addTestList(index1)">添加</el-button>
  3773. </div>
  3774. </div>
  3775. <div class="timuImgBox" v-if="testJson.testJson[index1].timuList &&
  3776. testJson.testJson[index1].timuList.length
  3777. ">
  3778. <div v-for="(timg, tIndex) in testJson.testJson[index1].timuList" :key="tIndex" class="timuImg"
  3779. @click.stop="previewImg(timg.src)">
  3780. <img :src="timg.src" alt="" />
  3781. <div class="deleteWord" @click.stop="deleteM(index1, tIndex)">
  3782. <img src="../../../assets/icon/delete.png" alt="" />
  3783. </div>
  3784. </div>
  3785. </div>
  3786. <div class="a_add_body">
  3787. <div class="a_add_input a_add_input_choice">
  3788. <el-radio-group v-model="testJson.testJson[index1].answer" v-if="testJson.testJson[index1].type == 1"
  3789. @change="() => { $forceUpdate() }">
  3790. <div class="radioBox">
  3791. <el-radio v-for="(item2, checkIndex) in testJson.testJson[index1]
  3792. .testItem" :key="checkIndex" :label="checkIndex">
  3793. <div style="margin-right: 10px">
  3794. 选项{{ checkIndex + 1 }}
  3795. </div>
  3796. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex] &&
  3797. testJson.testJson[index1].checkList[checkIndex]
  3798. .imgType &&
  3799. testJson.testJson[index1].checkList[checkIndex]
  3800. .imgType == 1
  3801. ">
  3802. <div class="inImg" @click.stop="
  3803. previewImg(
  3804. testJson.testJson[index1].checkList[checkIndex]
  3805. .src
  3806. )
  3807. ">
  3808. <el-image :src="testJson.testJson[index1].checkList[checkIndex]
  3809. .src
  3810. " lazy />
  3811. <!-- <img :src="
  3812. testJson.testJson[index1].checkList[checkIndex]
  3813. .src
  3814. " alt="" /> -->
  3815. </div>
  3816. </div>
  3817. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex]
  3818. " placeholder="请输入选项" style="width: 300px; margin-right: 10px"
  3819. @change="() => { $forceUpdate() }"></textarea>
  3820. <div class="moveBtn moveBtn2" v-if="testJson.testJson[index1].testItem != 1">
  3821. <div class="chapter_upload_up" @click.stop="tcheckMove(1, index1, checkIndex)">
  3822. </div>
  3823. <div class="chapter_upload_down" @click.stop="tcheckMove(2, index1, checkIndex)"></div>
  3824. </div>
  3825. <div class="xzUpImg" @click.stop="addImg($event)">
  3826. <img src="../../../assets/icon/xzUpImg.png" alt="" />
  3827. <input type="file" accept="image/*" style="display: none"
  3828. @change="beforeUploadTi($event, index1, checkIndex)" />
  3829. </div>
  3830. <div class="a_add_body_div">
  3831. <el-button type="primary" size="small"
  3832. @click.stop="addTcheckList(testJson.testJson[index1], checkIndex)">添加</el-button>
  3833. <el-button type="primary" size="small"
  3834. @click.stop="deleteTcheckList(testJson.testJson[index1], checkIndex)"
  3835. v-if="testJson.testJson[index1].testItem != 1">删除
  3836. </el-button>
  3837. </div>
  3838. </el-radio>
  3839. </div>
  3840. </el-radio-group>
  3841. <el-checkbox-group v-model="testJson.testJson[index1].answer" v-if="testJson.testJson[index1].type == '2'"
  3842. @change="() => { $forceUpdate() }">
  3843. <div class="radioBox">
  3844. <el-checkbox v-for="(item2, checkIndex1) in testJson.testJson[index1]
  3845. .testItem" :key="checkIndex1" :label="checkIndex1">
  3846. <div style="margin-right: 10px">
  3847. 选项{{ checkIndex1 + 1 }}
  3848. </div>
  3849. <div style="margin-right: 10px; width: 300px" v-if="testJson.testJson[index1].checkList[checkIndex1] &&
  3850. testJson.testJson[index1].checkList[checkIndex1]
  3851. .imgType &&
  3852. testJson.testJson[index1].checkList[checkIndex1]
  3853. .imgType == 1
  3854. ">
  3855. <div class="inImg" @click.stop="
  3856. previewImg(
  3857. testJson.testJson[index1].checkList[checkIndex1]
  3858. .src
  3859. )
  3860. ">
  3861. <el-image :src="testJson.testJson[index1].checkList[checkIndex1]
  3862. .src
  3863. " lazy />
  3864. <!-- <img :src="
  3865. testJson.testJson[index1].checkList[checkIndex1]
  3866. .src
  3867. " alt="" /> -->
  3868. </div>
  3869. </div>
  3870. <textarea class="a_add_head_input textarea_css" v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
  3871. " placeholder="请输入选项" style="width: 300px; margin-right: 10px"
  3872. @change="() => { $forceUpdate() }"></textarea>
  3873. <div class="moveBtn moveBtn2" v-if="testJson.testJson[index1].testItem != 1">
  3874. <div class="chapter_upload_up" @click.stop="tcheckMove(1, index1, checkIndex1)">
  3875. </div>
  3876. <div class="chapter_upload_down" @click.stop="tcheckMove(2, index1, checkIndex1)"></div>
  3877. </div>
  3878. <div class="xzUpImg" @click.stop="addImg($event)">
  3879. <img src="../../../assets/icon/xzUpImg.png" alt="" />
  3880. <input type="file" accept="image/*" style="display: none"
  3881. @change="beforeUploadTi($event, index1, checkIndex1)" />
  3882. </div>
  3883. <div class="a_add_body_div">
  3884. <el-button type="primary" size="small"
  3885. @click.stop="addTcheckList(testJson.testJson[index1], checkIndex1)">添加</el-button>
  3886. <el-button type="primary" size="small"
  3887. @click.stop="deleteTcheckList(testJson.testJson[index1], checkIndex1)"
  3888. v-if="testJson.testJson[index1].testItem != 1">删除
  3889. </el-button>
  3890. </div>
  3891. </el-checkbox>
  3892. </div>
  3893. </el-checkbox-group>
  3894. </div>
  3895. <!-- <div class="a_add_body_div">
  3896. <el-button type="primary" size="small" @click="addTcheckList(testJson.testJson[index1])">添加</el-button>
  3897. <el-button type="primary" size="small" @click="deleteTcheckList(testJson.testJson[index1])"
  3898. v-if="testJson.testJson[index1].testItem != 1">删除
  3899. </el-button>
  3900. </div> -->
  3901. </div>
  3902. </div>
  3903. </div>
  3904. </div>
  3905. <span slot="footer" class="dialog-footer">
  3906. <el-button @click="closePan(45)">取 消</el-button>
  3907. <el-button type="primary" @click="addTest">确 定</el-button>
  3908. </span>
  3909. </el-dialog>
  3910. <el-dialog title="添加工具" :visible.sync="dialogVisible4" :append-to-body="true" width="600px"
  3911. :before-close="handleClose" class="dialog_diy addToolsDia">
  3912. <div class="toolChoose" style="padding: 0 0 0 30px">
  3913. <div class="tools">
  3914. <div class="leftTools" style="
  3915. width: 95%;
  3916. padding: 0 0 15px 0;
  3917. margin: 15px 0;
  3918. " v-for="(itemTools, itemToolsIndex) in chapTools" :key="itemToolsIndex">
  3919. <div style="
  3920. display: flex;
  3921. flex-direction: row;
  3922. align-items: baseline;
  3923. flex-wrap: nowrap;
  3924. justify-content: flex-start;
  3925. position: relative;
  3926. ">
  3927. <div class="chooseWho">
  3928. <div :class="chapToolsType == 0 ? 'isChooseActive' : ''" @click="chapToolsType = 0">
  3929. 互动类
  3930. </div>
  3931. <div :class="chapToolsType == 1 ? 'isChooseActive' : ''" @click="chapToolsType = 1">
  3932. 思维类
  3933. </div>
  3934. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  3935. 评价类
  3936. </div>
  3937. <div :class="chapToolsType == 2 ? 'isChooseActive' : ''" @click="chapToolsType = 2">
  3938. 其他
  3939. </div>
  3940. </div>
  3941. </div>
  3942. <div style="min-height: 163px">
  3943. <div class="toolSort" v-if="chapToolsType == 0">
  3944. <div class="tool">
  3945. <div class="whiteBIcon" @click="chapAddTools(8)">
  3946. <img src="../../../assets/icon/secondToolList/library.png" alt />
  3947. <div style="margin: 5px 0">素材库</div>
  3948. </div>
  3949. <div class="check" @click="chapAddTools(8)">
  3950. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(8) == -1" />
  3951. <div class="checkDiv" v-else>
  3952. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3953. </div>
  3954. </div>
  3955. </div>
  3956. </div>
  3957. <div class="toolSort" v-if="chapToolsType == 1">
  3958. <div class="tool">
  3959. <div class="whiteBIcon" @click="chapAddTools(7)">
  3960. <img src="../../../assets/icon/secondToolList/mindNetwork.png" alt />
  3961. <div style="margin: 5px 0">思维网格</div>
  3962. </div>
  3963. <div class="check" @click="chapAddTools(7)">
  3964. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(7) == -1" />
  3965. <div class="checkDiv" v-else>
  3966. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3967. </div>
  3968. </div>
  3969. </div>
  3970. <div class="tool">
  3971. <div class="whiteBIcon" @click="chapAddTools(1)">
  3972. <img src="../../../assets/icon/secondToolList/whiteBoard.png" alt />
  3973. <div style="margin: 5px 0">电子白板</div>
  3974. </div>
  3975. <div class="check" @click="chapAddTools(1)">
  3976. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(1) == -1" />
  3977. <div class="checkDiv" v-else>
  3978. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3979. </div>
  3980. </div>
  3981. </div>
  3982. <div class="tool">
  3983. <div class="whiteBIcon" @click="chapAddTools(2)">
  3984. <img src="../../../assets/icon/secondToolList/note.png" alt />
  3985. <div style="margin: 5px 0">便签</div>
  3986. </div>
  3987. <div class="check" @click="chapAddTools(2)">
  3988. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(2) == -1" />
  3989. <div class="checkDiv" v-else>
  3990. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  3991. </div>
  3992. </div>
  3993. </div>
  3994. <div class="tool">
  3995. <div class="whiteBIcon" @click="chapAddTools(6)">
  3996. <img src="../../../assets/icon/secondToolList/doc.png" alt />
  3997. <div style="margin: 5px 0">协同文档</div>
  3998. </div>
  3999. <div class="check" @click="chapAddTools(6)">
  4000. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(6) == -1" />
  4001. <div class="checkDiv" v-else>
  4002. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  4003. </div>
  4004. </div>
  4005. </div>
  4006. <div class="tool">
  4007. <div class="whiteBIcon" @click="chapAddTools(3)">
  4008. <img src="../../../assets/icon/secondToolList/mindMapping.png" alt />
  4009. <div style="margin: 5px 0">思维导图</div>
  4010. </div>
  4011. <div class="check" @click="chapAddTools(3)">
  4012. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(3) == -1" />
  4013. <div class="checkDiv" v-else>
  4014. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  4015. </div>
  4016. </div>
  4017. </div>
  4018. <div class="tool">
  4019. <div class="whiteBIcon" @click="chapAddTools(31)">
  4020. <img src="../../../assets/icon/secondToolList/networkPanel.png" alt />
  4021. <div style="margin: 5px 0">数学画板</div>
  4022. </div>
  4023. <div class="check" @click="chapAddTools(31)">
  4024. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(31) == -1" />
  4025. <div class="checkDiv" v-else>
  4026. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  4027. </div>
  4028. </div>
  4029. </div>
  4030. </div>
  4031. <div class="toolSort" v-if="chapToolsType == 2">
  4032. <div class="tool">
  4033. <div class="whiteBIcon" @click="chapAddTools(5)">
  4034. <img src="../../../assets/icon/thirdToolList/score.png" alt />
  4035. <div style="margin: 5px 0">量规评分</div>
  4036. </div>
  4037. <div class="check" @click="chapAddTools(5)">
  4038. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(5) == -1" />
  4039. <div class="checkDiv" v-else>
  4040. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  4041. </div>
  4042. </div>
  4043. </div>
  4044. <div class="tool">
  4045. <div class="whiteBIcon" @click="openTools(chapCount, 4, null)">
  4046. <img src="../../../assets/icon/thirdToolList/ask.png" alt />
  4047. <div style="margin: 5px 0">问卷调查</div>
  4048. </div>
  4049. <div class="check" @click="chapAddTools(4)">
  4050. <img src="../../../assets/icon/checkNo.png" alt v-if="itemTools.tools.indexOf(4) == -1" />
  4051. <div class="checkDiv" v-else>
  4052. <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
  4053. </div>
  4054. </div>
  4055. </div>
  4056. </div>
  4057. </div>
  4058. <div>
  4059. <input type="text" placeholder="添加工具描述" class="binfo_input" style="margin: 20px 0; width: 71.5% !important"
  4060. v-model="itemTools.toolDetail" />
  4061. </div>
  4062. </div>
  4063. </div>
  4064. </div>
  4065. <span slot="footer" class="dialog-footer">
  4066. <el-button @click="dialogVisible4 = false">取 消</el-button>
  4067. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  4068. </span>
  4069. </el-dialog>
  4070. <el-dialog title="添加问答" :visible.sync="dialogVisible8" :append-to-body="true" width="500px"
  4071. :before-close="(done) => { closePan(15) }" class="dialog_diy">
  4072. <div>
  4073. <div class="a_add_title" style="
  4074. display: flex;
  4075. flex-direction: column;
  4076. align-items: flex-start;
  4077. justify-content: center;
  4078. ">
  4079. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  4080. <!-- <el-input v-model="answerQ" placeholder="请输入您要问的问题"></el-input> -->
  4081. <textarea rows="1" v-autoHeight="40" type="text" placeholder="请输入您要问的问题" class="binfo_input"
  4082. style="width: 100% !important;border:1px solid #DCDFE6" v-model="answerQ"></textarea>
  4083. </div>
  4084. </div>
  4085. <span slot="footer" class="dialog-footer">
  4086. <el-button @click="closePan(15)">取 消</el-button>
  4087. <el-button type="primary" @click="addAnswer">确 定</el-button>
  4088. </span>
  4089. </el-dialog>
  4090. <el-dialog title="添加问题" :visible.sync="dialogVisibleMp3" :append-to-body="true" width="500px"
  4091. :before-close="handleClose" class="dialog_diy">
  4092. <div>
  4093. <div class="a_add_title" style="
  4094. display: flex;
  4095. flex-direction: column;
  4096. align-items: flex-start;
  4097. justify-content: center;
  4098. ">
  4099. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  4100. <el-input v-model="answerQ" placeholder="请输入您想要回答的问题"></el-input>
  4101. </div>
  4102. </div>
  4103. <span slot="footer" class="dialog-footer">
  4104. <el-button @click="dialogVisibleMp3 = false">取 消</el-button>
  4105. <el-button type="primary" @click="addMp3Answer">确 定</el-button>
  4106. </span>
  4107. </el-dialog>
  4108. <el-dialog title="上传图片" :visible.sync="choosePicVisible" :append-to-body="true" width="600px"
  4109. :before-close="handleClose" class="dialog_diy">
  4110. <div>
  4111. <div class="fileCss" style="padding-top: 20px">
  4112. <div>
  4113. <button class="info_btn" @click="addImg($event)">
  4114. 选择本地文件
  4115. <input type="file" accept="image/*" style="display: none" @change="beforeUpload1" />
  4116. </button>
  4117. <div class="spanName">选择本地文件</div>
  4118. </div>
  4119. <div>
  4120. <el-button @click="getAllBanner" v-if="isSysPic == false">选择系统文件</el-button>
  4121. <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
  4122. <img :src="cover[0].url" alt="" />
  4123. <div class="deletePic" @click="deleteSysPic">
  4124. <img src="../../../assets/icon/delete.png" alt="" />
  4125. </div>
  4126. </div>
  4127. <div class="spanName">选择系统文件</div>
  4128. </div>
  4129. <div>
  4130. <el-button @click="searchImageValue = courseName, resetImage()" v-if="isSysPic2 == false">选择网络文件</el-button>
  4131. <div class="isSysPic" v-if="isSysPic2 == true && cover.length > 0">
  4132. <img :src="cover[0].url" alt="" />
  4133. <div class="deletePic" @click="deleteSysPic">
  4134. <img src="../../../assets/icon/delete.png" alt="" />
  4135. </div>
  4136. </div>
  4137. <div class="spanName">选择网络文件</div>
  4138. </div>
  4139. </div>
  4140. <!-- <div class="fileCss">
  4141. <div>选择本地文件</div>
  4142. <div>选择系统文件</div>
  4143. </div> -->
  4144. </div>
  4145. <span slot="footer" class="dialog-footer">
  4146. <el-button @click="choosePicVisible = false">取 消</el-button>
  4147. <el-button type="primary" @click="choosePicVisible = false">确 定</el-button>
  4148. </span>
  4149. </el-dialog>
  4150. <el-dialog title="选择系统文件" :visible.sync="sysPicVisible" :append-to-body="true" width="710px"
  4151. :before-close="handleClose" class="dialog_diy">
  4152. <div class="cru_selectBox" style="margin: 0">
  4153. <div @click="getChoosePic(1)" class="cru_select" :class="chooseType == 1 ? 'cru_selected' : ''">
  4154. 绘画
  4155. </div>
  4156. <div @click="getChoosePic(2)" class="cru_select" :class="chooseType == 2 ? 'cru_selected' : ''">
  4157. 科技
  4158. </div>
  4159. <div @click="getChoosePic(3)" class="cru_select" :class="chooseType == 3 ? 'cru_selected' : ''">
  4160. 人文
  4161. </div>
  4162. <div @click="getChoosePic(4)" class="cru_select" :class="chooseType == 4 ? 'cru_selected' : ''">
  4163. 艺术
  4164. </div>
  4165. </div>
  4166. <div class="sysPicBox">
  4167. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  4168. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  4169. </div>
  4170. </div>
  4171. </el-dialog>
  4172. <el-dialog title="选择网络文件" :visible.sync="sysPicVisible2" :append-to-body="true" width="710px"
  4173. :before-close="handleClose" class="dialog_diy">
  4174. <div>
  4175. <div class="people_top_right" style="display: flex;align-items: center;">
  4176. <div style="position: relative; width: 100%;">
  4177. <el-input style="height: 100%" placeholder="搜索图片关键字" v-model="searchImageValue"
  4178. @keyup.enter.native="resetImage()"></el-input>
  4179. <div class="search_img" @click="resetImage" style="right: 10px;">
  4180. <img src="../../../assets/icon/search.png" alt />
  4181. </div>
  4182. </div>
  4183. <el-button type="primary" size="default" style="margin-left: 10px;" @click="changePicture">换一组</el-button>
  4184. </div>
  4185. <div class="sysPicBox" v-loading="imageloading">
  4186. <div class="picNone" v-if="!imageList.length">请输入关键词搜索图片</div>
  4187. <div v-for="(sys, sysIndex) in imageList" :key="sysIndex" class="sysPic">
  4188. <img :src="sys.url" alt="" @click="chooseSysPic2(sys.url)" />
  4189. </div>
  4190. </div>
  4191. </div>
  4192. </el-dialog>
  4193. <el-dialog title="选择匹配" :visible.sync="dialogVisibleSelect" :append-to-body="true" width="800px"
  4194. :before-close="(done) => { closePan(41) }" class="dialog_diy dialog_diy3 fullStyle">
  4195. <div v-if="selectJson" style="height:100%">
  4196. <div class="select_box1" v-if="selectSteps == 1">
  4197. <div class="select_box1_img">
  4198. <div class="select_box1_title">
  4199. <span>上传题目图片</span><span>提示:请将所有题目上传为一张图片。</span>
  4200. </div>
  4201. <div class="select_box1_add_img">
  4202. <div class="uploadFm" @click="addImg($event)" v-if="!selectJson.url">
  4203. <input type="file" accept="image/*" style="display: none" @change="beforeUploadSelect" />
  4204. <img src="../../../assets/icon/addPoster.png" alt="" />
  4205. </div>
  4206. <div class="isSysPic" v-else>
  4207. <img :src="selectJson.url" alt="" @click="previewImg(selectJson.url)" />
  4208. <div class="deletePic" @click="deleteSelectPic">
  4209. <img src="../../../assets/icon/delete.png" alt="" />
  4210. </div>
  4211. </div>
  4212. </div>
  4213. </div>
  4214. <div class="select_box1_select">
  4215. <div class="select_box1_title">
  4216. <span>添加选项</span><span>提示:请输入以上题目的选项内容,此选项为所有题目共享。</span>
  4217. </div>
  4218. <div class="select_box1_select_box">
  4219. <el-input v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex"
  4220. v-model="selectJson.select[checkIndex]" placeholder="请输入选项"
  4221. style="width: 150px; margin: 10px 10px 0 0"></el-input>
  4222. <div class="select_box1_select_box_add">
  4223. <el-button style="margin: 10px 0px 0 0" type="primary" size="small" @click="addSelectList(selectJson)">
  4224. 添加</el-button>
  4225. <el-button type="primary" size="small" style="margin: 10px 0 0 0" @click="deleteSelectList(selectJson)"
  4226. v-if="selectJson.select && selectJson.select.length > 0">删除</el-button>
  4227. </div>
  4228. </div>
  4229. </div>
  4230. </div>
  4231. <div v-if="selectSteps == 2" style="height:100%">
  4232. <div class="select_box2">
  4233. <div class="select_box2_title">设置每道题目的正确选项</div>
  4234. <div class="select_box2_box">
  4235. <div class="select_box2_img">
  4236. <img :src="selectJson.url" alt="" @click="previewImg(selectJson.url)" />
  4237. </div>
  4238. <div class="select_box2_answer">
  4239. <div class="select_answer_title">根据题目选择对应答案</div>
  4240. <div class="select_box2_answer_box" v-for="(item2, checkIndex) in selectJson.select" :key="checkIndex">
  4241. <span>{{ checkIndex + 1 }}、</span>
  4242. <el-select v-model="selectJson.answer[checkIndex]" placeholder="请选择正确答案">
  4243. <el-option v-for="(e, eIndex) in selectJson.select" :key="eIndex" :label="e" :value="eIndex">
  4244. </el-option>
  4245. </el-select>
  4246. </div>
  4247. </div>
  4248. </div>
  4249. </div>
  4250. </div>
  4251. </div>
  4252. <span slot="footer" class="dialog-footer">
  4253. <el-button type="primary" @click="nextSelectSteps()" v-if="selectSteps == 1">下一步</el-button>
  4254. <el-button @click="selectSteps--" v-if="selectSteps == 2">上一步</el-button>
  4255. <el-button type="primary" @click="addSelectAnswer" v-if="selectSteps == 2">确 定</el-button>
  4256. </span>
  4257. </el-dialog>
  4258. <el-dialog title="添加评价" :visible.sync="dialogVisibleRate" :append-to-body="true" width="650px"
  4259. :before-close="handleClose" class="dialog_diy">
  4260. <div style="background: #fff; padding: 15px; box-sizing: border-box">
  4261. <div style="font-size: 18px; color: #a9a9a9">请输入个人评价指标:</div>
  4262. <div class="pjCss" style="width: 100%">
  4263. <div v-if="rateJson.length" class="elist_input" style="height: 360px; overflow: auto">
  4264. <div v-for="(eItem, eIndex) in rateJson" :key="eIndex" class="elist_input_box">
  4265. <span style="min-width: 100px; text-align: right">个人评价指标:</span>
  4266. <input type="input" v-model="eItem.value" placeholder="填写评价名称" />
  4267. <div class="remove" @click="deletRateList(eIndex)"></div>
  4268. <div style="width: 100%; display: flex">
  4269. <span style="min-width: 100px; text-align: right">评星等级:</span>
  4270. <el-rate v-model="eItem.score" disabled></el-rate>
  4271. </div>
  4272. <div class="elist_inptu_text" style="align-items: flex-start">
  4273. <span style="min-width: 100px; text-align: right">描述:</span>
  4274. <textarea class="rate_textarea" :rows="3" v-model="eItem.detail" placeholder="填写评价描述"></textarea>
  4275. </div>
  4276. </div>
  4277. </div>
  4278. <div class="addToolFun" @click="addRateList()">
  4279. <div class="addToolImg">
  4280. <img src="../../../assets/icon/add.png" alt />
  4281. </div>
  4282. <div>添加</div>
  4283. </div>
  4284. </div>
  4285. </div>
  4286. <span slot="footer" class="dialog-footer">
  4287. <el-button @click="dialogVisibleRate = false">取 消</el-button>
  4288. <el-button type="primary" @click="addRateAnswer">确 定</el-button>
  4289. </span>
  4290. </el-dialog>
  4291. <el-dialog title="排序设置" :visible.sync="dialogVisibleSentence" :append-to-body="true" width="1000px"
  4292. :before-close="(done) => { closePan(47) }" class="dialog_diy dialog_diy3 fullStyle">
  4293. <div style="height: 100%;">
  4294. <div class="sentenBox" style="height: 100%;">
  4295. <div class="addSen" @click="addSt">添加题目</div>
  4296. <div v-for="(st, stIndex) in sentenceList" :key="stIndex" class="sentenContent">
  4297. <div class="sentenTopBox">
  4298. <div class="sentenTop" :index="stIndex + 1">
  4299. <div>题目设置</div>
  4300. <div>
  4301. <el-input placeholder="请输入卡片内容" v-model="st.sentenceTitle" :maxlength="10"></el-input>
  4302. </div>
  4303. <div @click="addSen(stIndex)">添加</div>
  4304. <div class="remove1" v-if="sentenceList.length > 1" @click="deleteSentence(stIndex)"></div>
  4305. </div>
  4306. </div>
  4307. <div class="cardList">
  4308. <div v-if="st.addSentence.length > 0" class="cardBox">
  4309. <div class="isCard" v-for="(s, sIndex) in st.addSentence" :key="sIndex"
  4310. @click="setRightAnswer(s, stIndex, sIndex)">
  4311. <el-tooltip class="item" effect="light" :content="s" placement="top">
  4312. <div>{{ s }}</div>
  4313. </el-tooltip>
  4314. <div class="deleteWord" @click.stop="deleteS(s, stIndex, sIndex)">
  4315. <img src="../../../assets/icon/delete.png" alt="" />
  4316. </div>
  4317. </div>
  4318. </div>
  4319. <div class="card">
  4320. <img src="../../../assets/icon/conSentences/noTitle.png" alt="" />
  4321. </div>
  4322. </div>
  4323. <div class="rightCardBox">
  4324. <div>正确顺序</div>
  4325. <div class="rightCardList">
  4326. <div v-if="st.rightAnswer.length > 0" class="cardBox">
  4327. <div v-for="(r, rIndex) in st.rightAnswer" :key="rIndex" class="cardCss">
  4328. <div class="isCard1" @click="returnCard(r, stIndex, rIndex)">
  4329. <el-tooltip class="item" effect="light" :content="r" placement="top">
  4330. <div>{{ r }}</div>
  4331. </el-tooltip>
  4332. </div>
  4333. <div>{{ rIndex + 1 }}</div>
  4334. </div>
  4335. </div>
  4336. <div class="card" v-if="st.rightAnswer.length == 0">
  4337. <img src="../../../assets/icon/conSentences/noAnswer.png" alt="" />
  4338. </div>
  4339. <div class="card" v-else>
  4340. <img src="../../../assets/icon/conSentences/clickNo.png" alt="" />
  4341. </div>
  4342. </div>
  4343. </div>
  4344. </div>
  4345. </div>
  4346. </div>
  4347. <span slot="footer" class="dialog-footer">
  4348. <el-button @click="closePan(47)">取 消</el-button>
  4349. <el-button type="primary" @click="addSentenceTool">确 定</el-button>
  4350. </span>
  4351. </el-dialog>
  4352. <el-dialog title="添加表格" :visible.sync="dialogVisibleTable" :append-to-body="true" width="95%"
  4353. :before-close="handleClose" class="dialog_diy">
  4354. <el-form>
  4355. <!-- <el-form-item label="文本标题">
  4356. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  4357. </el-form-item> -->
  4358. <div>表格内容</div>
  4359. <Table v-model="tableJson.text" @change="change"></Table>
  4360. </el-form>
  4361. <span slot="footer" class="dialog-footer">
  4362. <!-- <el-button @click="dialogVisibleTable = false">取 消</el-button>
  4363. <el-button type="primary" @click="addTableJson">确定</el-button> -->
  4364. <el-button type="primary" @click="addTableJson">上传模板</el-button>
  4365. </span>
  4366. </el-dialog>
  4367. <el-dialog title="添加文档" :visible.sync="dialogVisibleWord" :append-to-body="true" width="800px"
  4368. :before-close="handleClose" class="dialog_diy">
  4369. <el-form>
  4370. <!-- <el-form-item label="文本标题">
  4371. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  4372. </el-form-item> -->
  4373. <div>文档内容</div>
  4374. <editor-bar v-model="wordJson.text"></editor-bar>
  4375. </el-form>
  4376. <span slot="footer" class="dialog-footer">
  4377. <!-- <el-button @click="dialogVisibleWord = false">取 消</el-button> -->
  4378. <el-button type="primary" @click="addWordJson">上传模板</el-button>
  4379. </span>
  4380. </el-dialog>
  4381. <el-dialog title="添加班级" :visible.sync="dialogVisibleMoreUpload" :append-to-body="true" width="30%"
  4382. :before-close="handleClose" class="dialog_diy">
  4383. <div style="
  4384. width: 100%;
  4385. display: flex;
  4386. flex-direction: row;
  4387. flex-wrap: nowrap;
  4388. align-items: center;
  4389. justify-content: center;
  4390. ">
  4391. <div>班级:</div>
  4392. <el-select multiple v-model="uploadJson" placeholder="请选择">
  4393. <el-option v-for="item in classJuri" :key="item.id" :label="item.name" :value="item.id">
  4394. </el-option>
  4395. </el-select>
  4396. </div>
  4397. <span slot="footer" class="dialog-footer">
  4398. <el-button @click="dialogVisibleMoreUpload = false">取 消</el-button>
  4399. <el-button type="primary" @click="addMoreUpload">确定</el-button>
  4400. </span>
  4401. </el-dialog>
  4402. <el-dialog title="设置随机码" :visible.sync="dialogVisibleInvite" :append-to-body="true" width="360px"
  4403. :before-close="handleClose" class="dialog_diy">
  4404. <div style="
  4405. width: 100%;
  4406. display: flex;
  4407. flex-direction: row;
  4408. flex-wrap: nowrap;
  4409. align-items: center;
  4410. justify-content: center;
  4411. ">
  4412. <div>随机码:</div>
  4413. <el-input v-model="icode" style="width: 240px" placeholder="请输入随机码"></el-input>
  4414. </div>
  4415. <span slot="footer" class="dialog-footer">
  4416. <el-button @click="dialogVisibleInvite = false">取 消</el-button>
  4417. <el-button type="primary" @click="addInvite">确定</el-button>
  4418. </span>
  4419. </el-dialog>
  4420. <el-dialog title="添加预设时间" :visible.sync="dialogVisiblePreTime" :append-to-body="true" width="450px"
  4421. :before-close="handleClose" class="dialog_diy">
  4422. <div>
  4423. <div style="margin-bottom: 20px;color: #999;">提示:点击“+”或“-”修改倒计时时长。</div>
  4424. <Time :preTime="preTime" @updateTimeNum="updateTime" v-if="dialogVisiblePreTime"></Time>
  4425. </div>
  4426. <span slot="footer" class="dialog-footer">
  4427. <el-button @click="dialogVisiblePreTime = false">取 消</el-button>
  4428. <el-button type="primary" @click="addPreTime">确定</el-button>
  4429. </span>
  4430. </el-dialog>
  4431. <el-dialog title="导入目标" :visible.sync="dialogVisiblemb" :append-to-body="true" width="70%" :before-close="handleClose"
  4432. class="dialog_diy">
  4433. <div>
  4434. <div style="
  4435. width: 100%;
  4436. display: flex;
  4437. flex-direction: row;
  4438. flex-wrap: nowrap;
  4439. align-content: center;
  4440. align-items: center;
  4441. justify-content: space-between;
  4442. ">
  4443. <div style="
  4444. display: flex;
  4445. flex-flow: row nowrap;
  4446. align-items: flex-start;
  4447. width: 100%;
  4448. flex-direction: column;
  4449. flex-wrap: nowrap;
  4450. position: relative;
  4451. ">
  4452. <div class="e_box">
  4453. <div class="e_card" v-for="(item, index) in evaJuri" :key="index">
  4454. <div class="e_card_picture">
  4455. <img src="../../../assets/e_picture.png" />
  4456. </div>
  4457. <div class="e_card_name">
  4458. <span>{{ item.title }}</span>
  4459. </div>
  4460. <div class="e_card_btn">
  4461. <span @click="checkEva(item.id, 2)">导入</span>
  4462. </div>
  4463. </div>
  4464. <div class="addEva" @click="openT">
  4465. <img src="../../../assets/icon/addEva.png" alt="" />
  4466. </div>
  4467. <div v-if="evaJuri.length === 0" style="margin: 0 auto; color: #6e6e6e">
  4468. 暂无数据
  4469. </div>
  4470. </div>
  4471. </div>
  4472. </div>
  4473. </div>
  4474. <span slot="footer" class="dialog-footer">
  4475. <el-button @click="dialogVisiblemb = false">取 消</el-button>
  4476. </span>
  4477. </el-dialog>
  4478. <el-dialog title="分组设置" :visible.sync="dialogVisibleGroup" :append-to-body="true" width="650px"
  4479. :before-close="handleClose" class="dialog_diy">
  4480. <div class="groupBox">
  4481. <div v-if="groupJson.group" class="groupContent">
  4482. <div class="groupTitle">请设置小组数量及名称</div>
  4483. <div v-for="(item, index) in groupJson.group" :key="index" class="groupName">
  4484. <span class="groupn">第{{ index + 1 }}组名称:</span>
  4485. <el-input v-model="item.name" placeholder="请输入名称..." style="width: 250px"></el-input>
  4486. <div class="groupBtn">
  4487. <el-button type="primary" size="small" @click="addGroup(index)" v-if="groupJson.group.length - 1 == index">
  4488. 添加</el-button>
  4489. <el-button type="primary" size="small" @click="deleteGroup(index)"
  4490. v-if="groupJson.group && groupJson.group.length > 1">删除</el-button>
  4491. </div>
  4492. </div>
  4493. </div>
  4494. <div class="groupContent">
  4495. <div class="groupTitle">请设置每组人数</div>
  4496. <!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
  4497. style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
  4498. <el-input v-model="groupJson.number" style="width:150px" placeholder="请输入2-10的数字"
  4499. @change="numberPan"></el-input>
  4500. </div>
  4501. </div>
  4502. <span slot="footer" class="dialog-footer">
  4503. <el-button @click="dialogVisibleGroup = false">取 消</el-button>
  4504. <el-button type="primary" @click="addGroupJson">确定</el-button>
  4505. </span>
  4506. </el-dialog>
  4507. <el-dialog title="修改名称" :visible.sync="dialogVisibleupdataVideoT" :append-to-body="true" width="500px"
  4508. :before-close="handleClose" class="dialog_diy">
  4509. <div style="
  4510. width: 100%;
  4511. display: flex;
  4512. flex-direction: row;
  4513. flex-wrap: nowrap;
  4514. align-items: center;
  4515. justify-content: center;
  4516. ">
  4517. <div style="min-width: fit-content;">文件名称:</div>
  4518. <el-input v-model="line" placeholder="请输入要修改的名称"></el-input>
  4519. </div>
  4520. <span slot="footer" class="dialog-footer">
  4521. <el-button @click="dialogVisibleupdataVideoT = false">取 消</el-button>
  4522. <el-button type="primary" @click="updataVideoC">确 定</el-button>
  4523. </span>
  4524. </el-dialog>
  4525. <interVideo :dialogVisibleVideo.sync="dialogVisibleVideo" :videoJson="videoJson" @add="addVideoJson"></interVideo>
  4526. </div>
  4527. </template>
  4528. <script>
  4529. import "../../../common/aws-sdk-2.235.1.min.js";
  4530. import { tools as toolsData } from "../../../common/tools.js";
  4531. import $ from "jquery";
  4532. import EditorBar from "../../../components/tools/wangEnduit";
  4533. import Table from "../../../components/tools/table";
  4534. import Mind from "../../tools/jsmind2";
  4535. import Time from "../../tools/time.vue";
  4536. import Sunburst from "../../tools/sunburst";
  4537. import SeeBoard from "../../tools/seeBoard";
  4538. import weilaiData from "../components/weilai.js";
  4539. import sourceDialog from "../teacherSource/dialog.vue";
  4540. import interVideo from "../interVideo/index.vue";
  4541. export default {
  4542. components: {
  4543. EditorBar,
  4544. Mind,
  4545. Time,
  4546. Sunburst,
  4547. SeeBoard,
  4548. Table,
  4549. sourceDialog,
  4550. interVideo,
  4551. },
  4552. data() {
  4553. return {
  4554. checkAll: false,
  4555. chooseType: 1,
  4556. checkedCities: [],
  4557. isIndeterminate: true,
  4558. isSysPic: false,
  4559. isSysPic2: false,
  4560. steps: 1,
  4561. nbOrder: 0,
  4562. courseId: "",
  4563. chapToolsType: 0,
  4564. chapTools: [
  4565. {
  4566. tools: [],
  4567. toolDetail: "",
  4568. },
  4569. ],
  4570. line: "",
  4571. lineTitle: "",
  4572. sysPic: [],
  4573. sentenceList: [{ sentenceTitle: "", addSentence: [], rightAnswer: [] }],
  4574. sentenceList2: [],
  4575. isPushTitleList: [],
  4576. lineCount: 0,
  4577. lineType: 0,
  4578. chapCount: 0,
  4579. courseName: "",
  4580. isTeacherSee: false,
  4581. courseText: "",
  4582. preTime: 0,
  4583. formLabelWidth: "100px",
  4584. choosePicVisible: false,
  4585. sysPicVisible: false,
  4586. uploadLoading1: false,
  4587. noneBtnImg: false,
  4588. updateBoolean2: false,
  4589. unitIndex: 0,
  4590. taskCount: 0,
  4591. dialogVisible: false,
  4592. dialogVisible1: false,
  4593. dialogVisible2: false,
  4594. dialogVisible3: false,
  4595. dialogVisible4: false,
  4596. dialogVisible5: false,
  4597. dialogVisible6: false,
  4598. dialogVisible7: false,
  4599. dialogVisible8: false,
  4600. dialogVisible9: false,
  4601. dialogVisibleClass: false,
  4602. dialogVisibleMember: false,
  4603. dialogVisibleMp3: false,
  4604. dialogVisibleSelect: false,
  4605. dialogVisibleSentence: false,
  4606. dialogVisibleRate: false,
  4607. dialogVisibleChoice: false,
  4608. dialogVisiblemb: false,
  4609. dialogVisibleInvite: false,
  4610. dialogVisibleSource: false,
  4611. dialogVisibleVideo: false,
  4612. dialogVisibleupdataVideoT: false,
  4613. isClickColor: 1,
  4614. toolIndexType: "",
  4615. publicTool: 0,
  4616. searchPeople: "",
  4617. searchTN: "",
  4618. userid: this.$route.query.userid,
  4619. oid: this.$route.query.oid,
  4620. org: this.$route.query.org,
  4621. role: this.$route.query.role,
  4622. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  4623. dialogVisibleTable: false,
  4624. dialogVisibleWord: false,
  4625. tableJson: { text: "" },
  4626. wordJson: { text: "" },
  4627. dialogVisibleMoreUpload: false,
  4628. dialogVisiblePreTime: false,
  4629. uploadJson: [],
  4630. classJuri: [],
  4631. gradeList: [],
  4632. cover: [], //课程封面
  4633. myWord: [],
  4634. evaJuri: [],
  4635. evalua: "",
  4636. targetArray: [],
  4637. eTitle: "",
  4638. eJson: {},
  4639. fid: "", //一级
  4640. sid: "", //二级
  4641. tid: "", //二级
  4642. typeMode: 1,
  4643. eJSONNum: 0,
  4644. data: {
  4645. meta: {
  4646. name: "example",
  4647. author: "dd@163.com",
  4648. version: "0.2",
  4649. },
  4650. format: "node_array",
  4651. data: [{ id: "root", isroot: true, topic: "" }],
  4652. },
  4653. askJson: {
  4654. askCount: 1,
  4655. askTitle: "",
  4656. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4657. },
  4658. askJson2: {},
  4659. testJson: {},
  4660. testJson2: {},
  4661. selectJson: {},
  4662. selectJson2: {},
  4663. rateJson: [],
  4664. unitJson2: [],
  4665. unitJson: [
  4666. {
  4667. dyName: "", //单元标题
  4668. chapterInfo: [
  4669. {
  4670. isread: false,
  4671. chapterid: this.guid(),
  4672. title: "",
  4673. courseName: "",
  4674. taskJson: [
  4675. {
  4676. task: "",
  4677. taskDetail: "",
  4678. chapterData: [],
  4679. toolChoose: [
  4680. {
  4681. tool: [],
  4682. toolDetail: "",
  4683. toolType: 0,
  4684. askCount: 1,
  4685. askTitle: "",
  4686. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4687. },
  4688. ],
  4689. toolText: "",
  4690. isShowTools: false,
  4691. askCount: 1,
  4692. isFold: 0,
  4693. askTitle: "",
  4694. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  4695. checkJson: [{ checkCount: [], checkPerent: [] }],
  4696. homeworkList: [],
  4697. },
  4698. ],
  4699. itemCount: 1,
  4700. fileList1: [],
  4701. video: [],
  4702. testData: [],
  4703. pData: [],
  4704. templateArray: [],
  4705. },
  4706. ],
  4707. },
  4708. ],
  4709. studentJuri: [],
  4710. teacherJuri: [],
  4711. checkboxList: [],
  4712. checkboxList2: [],
  4713. checkboxList3: [],
  4714. classSearch: "",
  4715. gradeId: "",
  4716. number: "",
  4717. tTitle: "",
  4718. tdetail: "",
  4719. templateC: {},
  4720. AttText: {},
  4721. AttTextType: 0,
  4722. AttTextIndex: 0,
  4723. cTemplate: "",
  4724. CourseType: [],
  4725. CourseType2: [],
  4726. CourseTypeJson: {},
  4727. courseTypeId: [],
  4728. courseTypeSon: [],
  4729. clearArray: [],
  4730. pTypeCheck: [],
  4731. pTypeCheckName: [],
  4732. loading: false,
  4733. toolType: 0,
  4734. inputShow: true,
  4735. inputShow2: true,
  4736. toolIndex: 0,
  4737. cidType: 0,
  4738. answerQ: "",
  4739. answerQ2: "",
  4740. grade: [],
  4741. grade2: [],
  4742. courseUserid: "",
  4743. timer: null,
  4744. timer2: null,
  4745. pasteTimer: null,
  4746. checkId: "",
  4747. isDelete: 1,
  4748. addindex: 0,
  4749. selectSteps: 1,
  4750. groupJson: {},
  4751. dialogVisibleGroup: false,
  4752. rightBoxHeight: 0,
  4753. ManAarray: [],
  4754. checkBoolean: false,
  4755. inviteCode: [],
  4756. inviteId: "",
  4757. icode: "",
  4758. easyArray: [2, 4],
  4759. sourceData: {},
  4760. updateSourcePan: false,
  4761. videoJson: {},
  4762. isBtnDisplay: false,
  4763. isPasteTask: false,
  4764. isPasteChoice: false,
  4765. sysPicVisible2: false,
  4766. imageloading: false,
  4767. searchImageValue: "",
  4768. ppage: 1,
  4769. imageList: [],
  4770. heightPx: '100%',
  4771. toolsData: toolsData,
  4772. };
  4773. },
  4774. directives: {
  4775. autoHeight: {
  4776. update(el, binding) {
  4777. const { value } = binding
  4778. if (value && typeof value === 'number') {
  4779. el.style.height = `${value}px`
  4780. } else {
  4781. el.style.height = 'auto'
  4782. }
  4783. },
  4784. componentUpdated(el) {
  4785. el.style.height = `${el.scrollHeight + 5}px`
  4786. },
  4787. },
  4788. },
  4789. computed: {
  4790. // rightBoxHeight: function () {
  4791. // return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
  4792. // },
  4793. offsetLetfPx: function () {
  4794. //addnum可以直接在模板语法里面用,相当于data内的值
  4795. return (
  4796. $(".cru_select")[this.unitIndex] &&
  4797. $(".cru_select")[this.unitIndex].offsetLeft
  4798. );
  4799. },
  4800. getMan2() {
  4801. return function (people) {
  4802. let _people = people;
  4803. let _people2 = "";
  4804. if (this.ManAarray.length) {
  4805. for (var i = 0; i < this.ManAarray.length; i++) {
  4806. if (this.ManAarray[i].userid == people) {
  4807. _people2 = this.ManAarray[i].name;
  4808. break;
  4809. }
  4810. }
  4811. }
  4812. if (people == this.courseUserid) {
  4813. return "";
  4814. }
  4815. return this.ManAarray.length ? _people2 : "";
  4816. };
  4817. },
  4818. isInvite() {
  4819. return function (cid) {
  4820. let array = [];
  4821. for (var i = 0; i < this.inviteCode.length; i++) {
  4822. array.push(this.inviteCode[i].cid);
  4823. }
  4824. return array.indexOf(cid) != -1;
  4825. };
  4826. },
  4827. getInviteCodeC() {
  4828. return function (cid) {
  4829. let array = [];
  4830. for (var i = 0; i < this.inviteCode.length; i++) {
  4831. array.push(this.inviteCode[i].cid);
  4832. }
  4833. return this.inviteCode[array.indexOf(cid)].ic;
  4834. };
  4835. },
  4836. getClassC() {
  4837. return function (c) {
  4838. let _c2 = "";
  4839. if (this.grade.length) {
  4840. for (var i = 0; i < this.grade.length; i++) {
  4841. if (this.grade[i].id == c) {
  4842. _c2 = this.grade[i].name;
  4843. break;
  4844. }
  4845. }
  4846. }
  4847. return this.grade.length ? _c2 : "";
  4848. };
  4849. },
  4850. getListClassC() {
  4851. return function (list) {
  4852. let _c2 = [];
  4853. if (this.grade.length) {
  4854. for (var j = 0; j < list.length; j++) {
  4855. let c = list[j]
  4856. for (var i = 0; i < this.grade.length; i++) {
  4857. if (this.grade[i].id == c) {
  4858. _c2.push(this.grade[i].name);
  4859. break;
  4860. }
  4861. }
  4862. }
  4863. }
  4864. return this.grade.length ? _c2.join('、') : "";
  4865. };
  4866. },
  4867. },
  4868. watch: {
  4869. unitIndex(newValue, oldValue) {
  4870. if (this.isDelete == 2) {
  4871. this.isDelete = 1;
  4872. return;
  4873. }
  4874. if (this.cid != "") {
  4875. let _unitIndex = oldValue;
  4876. if (
  4877. JSON.stringify(this.unitJson2[_unitIndex]) ==
  4878. JSON.stringify(this.unitJson[_unitIndex])
  4879. ) {
  4880. this.$refs.rightboxR.scrollTop = 0;
  4881. return;
  4882. }
  4883. let cPan = 1;
  4884. for (
  4885. var j = 0;
  4886. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  4887. j++
  4888. ) {
  4889. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  4890. j
  4891. ].proVisible = false;
  4892. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  4893. j
  4894. ].proVisible2 = false;
  4895. if (
  4896. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4897. .length > 1
  4898. ) {
  4899. for (
  4900. var z = 0;
  4901. z <
  4902. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].toolChoose
  4903. .length;
  4904. z++
  4905. ) {
  4906. if (
  4907. !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j]
  4908. .toolChoose[z].tool.length
  4909. ) {
  4910. this.$message.error("请把工具添加完整");
  4911. cPan = 2;
  4912. break;
  4913. }
  4914. }
  4915. }
  4916. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  4917. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  4918. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  4919. (ele) => {
  4920. return ele.value != "";
  4921. }
  4922. );
  4923. }
  4924. }
  4925. if (cPan == 2) {
  4926. this.unitIndex = oldValue;
  4927. return;
  4928. }
  4929. for (var i = 0; i < this.unitJson.length; i++) {
  4930. if (this.addindex != i) {
  4931. delete this.unitJson[i].isUpdate;
  4932. }
  4933. }
  4934. this.$refs.rightboxR.scrollTop = 0;
  4935. this.addindex = -1;
  4936. let params = [
  4937. {
  4938. cid: this.cid,
  4939. chapters: JSON.stringify(this.unitJson),
  4940. uid: this.userid,
  4941. unitIndex: _unitIndex,
  4942. },
  4943. ];
  4944. this.ajax
  4945. .post(this.$store.state.api + "updateWorkNew4", params)
  4946. .then((res) => {
  4947. // this.$message({
  4948. // message: "修改成功",
  4949. // type: "success",
  4950. // });
  4951. // this.courseId = this.cid;
  4952. })
  4953. .catch((err) => {
  4954. this.$message.error("网络不佳");
  4955. console.error(err);
  4956. });
  4957. }
  4958. },
  4959. steps(newValue) {
  4960. if (newValue == 4) {
  4961. this.goTo(
  4962. "/course?userid=" +
  4963. this.userid +
  4964. "&oid=" +
  4965. this.oid +
  4966. "&org=" +
  4967. this.org +
  4968. "&role=" +
  4969. this.role
  4970. );
  4971. }
  4972. },
  4973. },
  4974. methods: {
  4975. openAI() {
  4976. window.parent.postMessage({ tools: "64" }, "*");
  4977. },
  4978. setMan() {
  4979. // let teacherJuri = this.teacherJuri2;
  4980. this.ManAarray = [];
  4981. let _user = JSON.parse(JSON.stringify(this.checkboxList3));
  4982. if (_user.indexOf(this.userid) == -1) {
  4983. _user.push(this.userid);
  4984. }
  4985. if (_user.indexOf(this.courseUserid) == -1) {
  4986. _user.push(this.courseUserid);
  4987. }
  4988. let params = {
  4989. uid: _user.join(","),
  4990. };
  4991. this.ajax
  4992. .get(this.$store.state.api + "getAllUserById", params)
  4993. .then((res) => {
  4994. let teacherJuri = res.data[0];
  4995. this.ManAarray = teacherJuri;
  4996. })
  4997. .catch((err) => {
  4998. console.error(err);
  4999. });
  5000. },
  5001. previewImg(url) {
  5002. this.$hevueImgPreview(url);
  5003. },
  5004. btnDisplay(bool) {
  5005. this.isBtnDisplay = bool
  5006. },
  5007. scrollChange() {
  5008. this.rightBoxHeight = $(".rightBox")[0].scrollHeight;
  5009. // document.querySelector('.course_left').scrollHeight
  5010. // document.querySelector('.stepsBottom2').scrollHeight
  5011. let stepsBottom2 = $(".stepsBottom2")[0].clientHeight;
  5012. // let client = $(".course_left")[0].clientHeight - stepsBottom2
  5013. let client = $(".course_left")[0].clientHeight - stepsBottom2;
  5014. let maxheight = $('.whiteBg')[0].offsetHeight + $('.whiteBg')[1].offsetHeight + 120
  5015. let top = $(".rightBox")[0].scrollTop - maxheight;
  5016. // if (top < client) {
  5017. // $('.stepsBottom2')[0].style.position = 'absolute'
  5018. // $('.stepsBottom2')[0].style.top = 0 + 'px'
  5019. // // $('.stepsBottom2')[0].style.top = client + 'px'
  5020. // } else
  5021. if (top > 0) {
  5022. let top = $(".rightBox")[0].offsetTop;
  5023. $(".stepsBottom2")[0].style.position = "fixed";
  5024. $(".stepsBottom2")[0].style.top = top + "px";
  5025. this.heightPx = $(".rightBox")[0].offsetHeight - 40 + 'px'
  5026. // $('.stepsBottom2')[0].style.top = top + 'px'
  5027. } else {
  5028. $(".stepsBottom2")[0].style.position = "absolute";
  5029. $(".stepsBottom2")[0].style.top = "0px";
  5030. this.heightPx = $(".basic_box2")[0].offsetHeight - 50 + 'px'
  5031. }
  5032. const clientHeight = $(".rightBox")[0].clientHeight;
  5033. const scrollTop = $(".rightBox")[0].scrollTop;
  5034. const scrollHeight = $(".rightBox")[0].scrollHeight;
  5035. if ((clientHeight + scrollTop > (scrollHeight - 10)) && (top > 0)) {
  5036. this.heightPx = $(".rightBox")[0].offsetHeight - 130 + 'px'
  5037. }
  5038. },
  5039. handleCheckAllChange(val) {
  5040. this.checkedCities = val ? cityOptions : [];
  5041. this.isIndeterminate = false;
  5042. },
  5043. handleCheckedCitiesChange(value) {
  5044. let checkedCount = value.length;
  5045. this.checkAll = checkedCount === this.cities.length;
  5046. this.isIndeterminate =
  5047. checkedCount > 0 && checkedCount < this.cities.length;
  5048. },
  5049. addHw(e) {
  5050. var el = e.currentTarget;
  5051. el.getElementsByTagName("input")[0].click();
  5052. },
  5053. change(val) {
  5054. if (this.dialogVisible1) {
  5055. this.tdetail = val
  5056. } else if (this.dialogVisible6) {
  5057. this.AttText.text = val
  5058. } else if (this.dialogVisible2) {
  5059. this.cTemplate = val
  5060. } else if (this.dialogVisibleTable) {
  5061. this.tableJson.text = val
  5062. }
  5063. this.$forceUpdate();
  5064. console.log(val);
  5065. },
  5066. change2(val) {
  5067. console.log(val);
  5068. this.$forceUpdate();
  5069. },
  5070. handleClose(done) {
  5071. done();
  5072. },
  5073. closePan(tool) {
  5074. if (tool == 15) {
  5075. if (JSON.stringify(this.answerQ) == JSON.stringify(this.answerQ2)) {
  5076. this.dialogVisible8 = false
  5077. } else {
  5078. this.closeConfirm(tool);
  5079. }
  5080. } else if (tool == 4) {
  5081. if (JSON.stringify(this.askJson) == JSON.stringify(this.askJson2)) {
  5082. this.dialogVisible5 = false
  5083. } else {
  5084. this.closeConfirm(tool);
  5085. }
  5086. } else if (tool == 45) {
  5087. if (JSON.stringify(this.testJson) == JSON.stringify(this.testJson2)) {
  5088. this.dialogVisibleChoice = false
  5089. } else {
  5090. this.closeConfirm(tool);
  5091. }
  5092. } else if (tool == 41) {
  5093. if (JSON.stringify(this.selectJson) == JSON.stringify(this.selectJson2)) {
  5094. this.dialogVisibleSelect = false
  5095. } else {
  5096. this.closeConfirm(tool);
  5097. }
  5098. } else if (tool == 47) {
  5099. if (JSON.stringify(this.sentenceList) == JSON.stringify(this.sentenceList2)) {
  5100. this.dialogVisibleSentence = false
  5101. } else {
  5102. this.closeConfirm(tool);
  5103. }
  5104. }
  5105. },
  5106. closeConfirm(tool) {
  5107. this
  5108. .$confirm("是否保存已编辑内容?", "提示", {
  5109. confirmButtonText: "保存",
  5110. cancelButtonText: "不保存",
  5111. type: "warning",
  5112. })
  5113. .then(() => {
  5114. if (tool == 15) {
  5115. this.addAnswer();
  5116. } else if (tool == 4) {
  5117. this.addAsk();
  5118. } else if (tool == 45) {
  5119. this.addTest();
  5120. } else if (tool == 41) {
  5121. this.addSelectAnswer();
  5122. } else if (tool == 47) {
  5123. this.addSentenceTool();
  5124. }
  5125. })
  5126. .catch(() => {
  5127. if (tool == 15) {
  5128. this.dialogVisible8 = false;
  5129. } else if (tool == 4) {
  5130. this.dialogVisible5 = false;
  5131. } else if (tool == 45) {
  5132. this.dialogVisibleChoice = false;
  5133. } else if (tool == 41) {
  5134. this.dialogVisibleSelect = false;
  5135. } else if (tool == 47) {
  5136. this.dialogVisibleSentence = false;
  5137. }
  5138. });
  5139. },
  5140. imgChange2(i, j) {
  5141. var _tmp = this.testJson.testJson[i].checkList[j];
  5142. this.noneBtnImg = _tmp.length >= 1;
  5143. },
  5144. imgChange3(i) {
  5145. var _tmp = this.testJson.testJson[i];
  5146. this.noneBtnImg = _tmp.length >= 1;
  5147. },
  5148. imgChange1(file, fileList, type, itemTaskIndex) {
  5149. if (type == 1) {
  5150. var _tmp = this.cover;
  5151. } else if (
  5152. type == 2 ||
  5153. type == 3 ||
  5154. type == 6 ||
  5155. type == 7 ||
  5156. type == 8
  5157. ) {
  5158. var _tmp =
  5159. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5160. .chapterData;
  5161. } else if (type == 4) {
  5162. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  5163. } else {
  5164. var _tmp =
  5165. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  5166. .homeworkList;
  5167. }
  5168. this.noneBtnImg = _tmp.length >= 1;
  5169. },
  5170. goTo(path) {
  5171. this.$router.push(path);
  5172. },
  5173. guid() {
  5174. var _num,
  5175. i,
  5176. _guid = "";
  5177. for (i = 0; i < 32; i++) {
  5178. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  5179. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  5180. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  5181. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  5182. _guid += "-";
  5183. }
  5184. }
  5185. return _guid;
  5186. },
  5187. lastSteps() {
  5188. this
  5189. .$confirm("是否保存已编辑内容?", "提示", {
  5190. confirmButtonText: "保存",
  5191. cancelButtonText: "不保存",
  5192. type: "warning",
  5193. })
  5194. .then(() => {
  5195. if (this.cid == "" || this.cid == undefined) {
  5196. if (this.courseName == "") {
  5197. this.$message.error("请补充填写课程名称");
  5198. return;
  5199. } else {
  5200. this.addWork();
  5201. }
  5202. } else {
  5203. if (this.courseName == "") {
  5204. this.$message.error("请补充填写课程名称");
  5205. return;
  5206. } else {
  5207. if (this.userid != this.courseUserid && this.role != "1") {
  5208. this.updateWork2();
  5209. } else {
  5210. this.updateWork();
  5211. }
  5212. }
  5213. }
  5214. })
  5215. .catch(() => {
  5216. this.goTo(
  5217. "/course?userid=" +
  5218. this.userid +
  5219. "&oid=" +
  5220. this.oid +
  5221. "&org=" +
  5222. this.org +
  5223. "&role=" +
  5224. this.role
  5225. );
  5226. });
  5227. },
  5228. nextSteps() {
  5229. if (this.cid == "" || this.cid == undefined) {
  5230. if (this.courseName == "") {
  5231. this.$message.error("请补充填写课程名称");
  5232. return;
  5233. } else {
  5234. this.addWork();
  5235. }
  5236. } else {
  5237. if (this.courseName == "") {
  5238. this.$message.error("请补充填写课程名称");
  5239. return;
  5240. } else {
  5241. if (this.userid != this.courseUserid && this.role != "1") {
  5242. this.updateWork2();
  5243. } else {
  5244. this.updateWork();
  5245. }
  5246. }
  5247. }
  5248. this.$refs.stepBox.scrollTop = 0;
  5249. },
  5250. unitSet(i) {
  5251. this.unitIndex = i;
  5252. // this.$refs.rightboxR.scrollTop = 0;
  5253. },
  5254. time() {
  5255. if (!this.now) {
  5256. this.now = new Date().getTime();
  5257. return true;
  5258. } else {
  5259. let time = new Date().getTime();
  5260. if (time - this.now > 3000) {
  5261. this.now = time;
  5262. return true;
  5263. } else {
  5264. return false;
  5265. }
  5266. }
  5267. },
  5268. deleteUnit(i) {
  5269. var _this = this;
  5270. if (_this.time()) {
  5271. _this
  5272. .$confirm("确定删除此单元吗?", "提示", {
  5273. confirmButtonText: "确定",
  5274. cancelButtonText: "取消",
  5275. type: "warning",
  5276. })
  5277. .then(() => {
  5278. _this.isDelete = 2;
  5279. // _this.unitIndex = _this.unitIndex - 1;
  5280. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  5281. // _this.$message.success("删除成功");
  5282. })
  5283. .catch(() => {
  5284. return;
  5285. });
  5286. }
  5287. },
  5288. deleteWork(chapid) {
  5289. let params = [
  5290. {
  5291. cid: this.cid,
  5292. chapters: JSON.stringify(this.unitJson),
  5293. uid: this.userid,
  5294. chapid: chapid,
  5295. },
  5296. ];
  5297. this.ajax
  5298. .post(this.$store.state.api + "deleteWork", params)
  5299. .then((res) => {
  5300. this.$message({
  5301. message: "删除成功",
  5302. type: "success",
  5303. });
  5304. this.unitJson.splice(this.unitIndex, 1);
  5305. this.unitIndex = this.unitIndex - 1;
  5306. })
  5307. .catch((err) => {
  5308. this.$message.error("网络不佳");
  5309. console.error(err);
  5310. });
  5311. },
  5312. deleteTool(itemTaskIndex, i) {
  5313. var _this = this;
  5314. if (_this.time()) {
  5315. _this
  5316. .$confirm("确定删除此工具吗?", "提示", {
  5317. confirmButtonText: "确定",
  5318. cancelButtonText: "取消",
  5319. type: "warning",
  5320. })
  5321. .then(() => {
  5322. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5323. itemTaskIndex
  5324. ].toolChoose.splice(i, 1);
  5325. _this.$message.success("删除成功");
  5326. })
  5327. .catch(() => {
  5328. return;
  5329. });
  5330. }
  5331. },
  5332. deleteSentence(i) {
  5333. var _this = this;
  5334. _this
  5335. .$confirm("确定删除此题目吗?", "提示", {
  5336. confirmButtonText: "确定",
  5337. cancelButtonText: "取消",
  5338. type: "warning",
  5339. })
  5340. .then(() => {
  5341. _this.sentenceList.splice(i, 1);
  5342. _this.$message.success("删除成功");
  5343. })
  5344. .catch(() => {
  5345. return;
  5346. });
  5347. },
  5348. deleteS(s, i, j) {
  5349. this.sentenceList[i].addSentence.splice(j, 1);
  5350. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  5351. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  5352. this.sentenceList[i].rightAnswer.splice(a, 1);
  5353. }
  5354. },
  5355. openT() {
  5356. window.parent.postMessage({ tools: "25" }, "*");
  5357. },
  5358. deleteTask(i) {
  5359. var _this = this;
  5360. //((_this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.length - 1) == i) ? "确定删除此任务吗?" : "切换任务顺序将删除所有工具的提交成果,是否继续此操作?"
  5361. _this
  5362. .$confirm("确定删除此任务吗?", "提示", {
  5363. confirmButtonText: "确定",
  5364. cancelButtonText: "取消",
  5365. type: "warning",
  5366. })
  5367. .then(() => {
  5368. if (i == 0) {
  5369. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5370. i + 1
  5371. ].chapterData = JSON.parse(
  5372. JSON.stringify(
  5373. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[i]
  5374. .chapterData
  5375. )
  5376. );
  5377. }
  5378. _this.$forceUpdate();
  5379. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(i, 1);
  5380. _this.$message.success("删除成功");
  5381. // this.$nextTick(() => {
  5382. // $('.stepsBottom2')[0].style.transition = 'unset'
  5383. // setTimeout(() => {
  5384. // let stepsBottom2 = $(".stepsBottom2")[0].clientHeight
  5385. // let client = $(".basic_box2")[0].clientHeight - stepsBottom2 - 100
  5386. // let top = $('.stepsBottom2')[0].offsetTop - 20
  5387. // if (top > client) {
  5388. // $('.stepsBottom2')[0].style.top = client + 'px'
  5389. // }
  5390. // $('.stepsBottom2')[0].style.transition = 'all .5s'
  5391. // this.$forceUpdate()
  5392. // }, 500)
  5393. // })
  5394. })
  5395. .catch(() => {
  5396. return;
  5397. });
  5398. },
  5399. handlePictureCardPreview(file) {
  5400. this.dialogImageUrl = file.url;
  5401. },
  5402. clean(i, c) {
  5403. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  5404. },
  5405. handle_remove1(file, fileList, type) {
  5406. var _tmp = this.cover;
  5407. // for (var i = 0, len = _tmp.length; i < len; i++) {
  5408. // if (_tmp[i].uid == file.uid) {
  5409. // _tmp.splice(i, 1);
  5410. // break;
  5411. // }
  5412. // this.cover = _tmp;
  5413. // }
  5414. this.cover = [];
  5415. this.noneBtnImg = this.cover.length >= 1;
  5416. this.isSysPic = false;
  5417. this.isSysPic2 = false;
  5418. this.$forceUpdate();
  5419. },
  5420. addImg(e) {
  5421. var el = e.currentTarget;
  5422. el.getElementsByTagName("input")[0].click();
  5423. e.target.value = "";
  5424. },
  5425. addChaptersTools(i) {
  5426. this.chapTools = [
  5427. {
  5428. tools: [],
  5429. toolDetail: "",
  5430. },
  5431. ];
  5432. this.chapCount = i;
  5433. this.dialogVisible4 = true;
  5434. },
  5435. isNoFinsh() {
  5436. this.$message.warning("功能正在开发中");
  5437. },
  5438. addAttText(i) {
  5439. this.AttText = {
  5440. title: "",
  5441. text: "",
  5442. };
  5443. this.taskCount = i;
  5444. this.AttTextType = 0;
  5445. this.$forceUpdate();
  5446. this.dialogVisible6 = true;
  5447. setTimeout(() => {
  5448. this.$refs['fuInput'].focus();
  5449. }, 100);
  5450. },
  5451. openLine(i) {
  5452. this.line = "";
  5453. this.lineCount = i;
  5454. this.lineType = 0;
  5455. this.$forceUpdate();
  5456. this.dialogVisible7 = true;
  5457. },
  5458. pasteLine(i) {
  5459. navigator.clipboard
  5460. .readText()
  5461. .then((v) => {
  5462. console.log("获取剪贴板成功:", v);
  5463. const html = v;
  5464. const regex = /src="(.*?)"/g;
  5465. const match = regex.exec(html);
  5466. if (match && match[1]) {
  5467. console.log(match[1]);
  5468. this.$message.success("粘贴成功");
  5469. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5470. i
  5471. ].chapterData.push({
  5472. name: "链接",
  5473. title: "嵌入代码",
  5474. url: match[1],
  5475. type: 8,
  5476. });
  5477. } else {
  5478. // console.log("未找到包含 src 属性的 iframe");
  5479. this.$message.error("系统没有找到粘贴对象,请首先复制可用于粘贴的链接。");
  5480. }
  5481. })
  5482. .catch((v) => {
  5483. console.log("获取剪贴板失败: ", v);
  5484. });
  5485. },
  5486. openSource(i) {
  5487. this.lineCount = i;
  5488. this.sourceData = {};
  5489. this.dialogVisibleSource = true;
  5490. this.updateSourcePan = false;
  5491. },
  5492. addSource() {
  5493. if (!Object.keys(this.sourceData).length) {
  5494. this.$message.error("请选择要上传的资源");
  5495. return;
  5496. }
  5497. let keys = Object.keys(this.sourceData);
  5498. for (var i = 0; i < keys.length; i++) {
  5499. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5500. this.lineCount
  5501. ].chapterData.push({
  5502. name: "链接",
  5503. title: this.sourceData[keys[i]].name,
  5504. url: this.sourceData[keys[i]].url,
  5505. type: 14,
  5506. id: keys[i]
  5507. });
  5508. }
  5509. this.$forceUpdate();
  5510. this.dialogVisibleSource = false;
  5511. },
  5512. updateSource() {
  5513. if (!Object.keys(this.sourceData).length) {
  5514. this.$message.error("请选择要上传的资源");
  5515. return;
  5516. }
  5517. let keys = Object.keys(this.sourceData);
  5518. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5519. this.taskCount
  5520. ].chapterData[this.lineCount].url = this.sourceData[keys[0]].url;
  5521. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5522. this.taskCount
  5523. ].chapterData[this.lineCount].title = this.sourceData[keys[0]].name;
  5524. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  5525. this.taskCount
  5526. ].chapterData[this.lineCount].id = keys[0];
  5527. this.updateSourcePan = false;
  5528. this.$forceUpdate();
  5529. this.dialogVisibleSource = false;
  5530. },
  5531. deleteM(i, j) {
  5532. this.testJson.testJson[i].timuList.splice(j, 1);
  5533. },
  5534. beforeUploadTiMu(event, i) {
  5535. const loading = this.openLoading();
  5536. var file = event.target.files[0];
  5537. var credentials = {
  5538. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5539. secretAccessKey: "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",
  5540. }; //秘钥形式的登录上传
  5541. window.AWS.config.update(credentials);
  5542. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5543. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5544. var _this = this;
  5545. if (file) {
  5546. var params = {
  5547. Key:
  5548. file.name.split(".")[0] +
  5549. new Date().getTime() +
  5550. "." +
  5551. file.name.split(".")[file.name.split(".").length - 1],
  5552. ContentType: file.type,
  5553. Body: file,
  5554. "Access-Control-Allow-Credentials": "*",
  5555. ACL: "public-read",
  5556. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5557. var options = {
  5558. partSize: 2048 * 1024 * 1024,
  5559. queueSize: 2,
  5560. leavePartsOnError: true,
  5561. };
  5562. bucket
  5563. .upload(params, options)
  5564. .on("httpUploadProgress", function (evt) {
  5565. //这里可以写进度条
  5566. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5567. })
  5568. .send(function (err, data) {
  5569. loading.close();
  5570. if (err) {
  5571. _this.$message.error("上传失败");
  5572. } else {
  5573. if (_this.testJson.testJson[i].timuList) {
  5574. _this.testJson.testJson[i].timuList.push({
  5575. src: data.Location,
  5576. });
  5577. } else {
  5578. _this.testJson.testJson[i].timuList = [];
  5579. _this.testJson.testJson[i].timuList.push({
  5580. src: data.Location,
  5581. });
  5582. }
  5583. _this.imgChange3(i);
  5584. _this.$forceUpdate();
  5585. }
  5586. });
  5587. }
  5588. },
  5589. beforeUploadTi(event, i, j) {
  5590. const loading = this.openLoading();
  5591. var file = event.target.files[0];
  5592. var credentials = {
  5593. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5594. secretAccessKey: "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",
  5595. }; //秘钥形式的登录上传
  5596. window.AWS.config.update(credentials);
  5597. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5598. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5599. var _this = this;
  5600. if (file) {
  5601. var params = {
  5602. Key:
  5603. file.name.split(".")[0] +
  5604. new Date().getTime() +
  5605. "." +
  5606. file.name.split(".")[file.name.split(".").length - 1],
  5607. ContentType: file.type,
  5608. Body: file,
  5609. "Access-Control-Allow-Credentials": "*",
  5610. ACL: "public-read",
  5611. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5612. var options = {
  5613. partSize: 2048 * 1024 * 1024,
  5614. queueSize: 2,
  5615. leavePartsOnError: true,
  5616. };
  5617. bucket
  5618. .upload(params, options)
  5619. .on("httpUploadProgress", function (evt) {
  5620. //这里可以写进度条
  5621. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5622. })
  5623. .send(function (err, data) {
  5624. loading.close();
  5625. if (err) {
  5626. _this.$message.error("上传失败");
  5627. } else {
  5628. _this.testJson.testJson[i].checkList[j] = {};
  5629. _this.testJson.testJson[i].checkList[j].src = data.Location;
  5630. _this.testJson.testJson[i].checkList[j].imgType = 1;
  5631. _this.imgChange2(i, j);
  5632. _this.$forceUpdate();
  5633. }
  5634. });
  5635. }
  5636. },
  5637. beforeUpload1(event, type) {
  5638. // const loading = this.openLoading();
  5639. var file = event.target.files[0];
  5640. var credentials = {
  5641. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5642. secretAccessKey: "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",
  5643. }; //秘钥形式的登录上传
  5644. window.AWS.config.update(credentials);
  5645. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5646. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5647. var _this = this;
  5648. if (file) {
  5649. var params = {
  5650. Key:
  5651. file.name.split(".")[0] +
  5652. new Date().getTime() +
  5653. "." +
  5654. file.name.split(".")[file.name.split(".").length - 1],
  5655. ContentType: file.type,
  5656. Body: file,
  5657. "Access-Control-Allow-Credentials": "*",
  5658. ACL: "public-read",
  5659. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5660. var options = {
  5661. partSize: 2048 * 1024 * 1024,
  5662. queueSize: 2,
  5663. leavePartsOnError: true,
  5664. };
  5665. bucket
  5666. .upload(params, options)
  5667. .on("httpUploadProgress", function (evt) {
  5668. //这里可以写进度条
  5669. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5670. })
  5671. .send(function (err, data) {
  5672. // loading.close();
  5673. if (err) {
  5674. // var a = _this.$refs.upload1.uploadFiles;
  5675. // a.splice(a.length - 1, a.length);
  5676. _this.$message.error("上传失败");
  5677. } else {
  5678. _this.cover.push({
  5679. name: file.name,
  5680. url: data.Location,
  5681. uid: file.uid,
  5682. });
  5683. _this.imgChange1(null, null, 1, null);
  5684. _this.choosePicVisible = false;
  5685. console.log(data.Location);
  5686. }
  5687. });
  5688. }
  5689. },
  5690. beforeUploadSelect(event, type) {
  5691. // const loading = this.openLoading();
  5692. var file = event.target.files[0];
  5693. var credentials = {
  5694. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5695. secretAccessKey: "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",
  5696. }; //秘钥形式的登录上传
  5697. window.AWS.config.update(credentials);
  5698. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5699. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5700. var _this = this;
  5701. if (file) {
  5702. var params = {
  5703. Key:
  5704. file.name.split(".")[0] +
  5705. new Date().getTime() +
  5706. "." +
  5707. file.name.split(".")[file.name.split(".").length - 1],
  5708. ContentType: file.type,
  5709. Body: file,
  5710. "Access-Control-Allow-Credentials": "*",
  5711. ACL: "public-read",
  5712. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5713. var options = {
  5714. partSize: 2048 * 1024 * 1024,
  5715. queueSize: 2,
  5716. leavePartsOnError: true,
  5717. };
  5718. bucket
  5719. .upload(params, options)
  5720. .on("httpUploadProgress", function (evt) {
  5721. //这里可以写进度条
  5722. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5723. })
  5724. .send(function (err, data) {
  5725. // loading.close();
  5726. if (err) {
  5727. _this.$message.error("上传失败");
  5728. } else {
  5729. _this.selectJson.url = data.Location;
  5730. console.log(data.Location);
  5731. }
  5732. });
  5733. }
  5734. },
  5735. chooseSysPic(p) {
  5736. this.cover = []
  5737. setTimeout(() => {
  5738. this.cover[0] = {
  5739. name: "系统图片.png",
  5740. url: p,
  5741. };
  5742. this.imgChange1(null, null, 1, null);
  5743. this.$forceUpdate();
  5744. }, 0);
  5745. this.isSysPic = true;
  5746. this.isSysPic2 = false;
  5747. this.sysPicVisible = false;
  5748. this.$forceUpdate();
  5749. },
  5750. chooseSysPic2(p) {
  5751. this.cover = []
  5752. setTimeout(() => {
  5753. this.cover[0] = {
  5754. name: "网络图片.png",
  5755. url: p,
  5756. };
  5757. this.imgChange1(null, null, 1, null);
  5758. this.$forceUpdate();
  5759. }, 0);
  5760. this.isSysPic2 = true;
  5761. this.isSysPic = false;
  5762. this.sysPicVisible2 = false;
  5763. this.$forceUpdate();
  5764. },
  5765. beforeUpload(data) {
  5766. this.$refs.upload1.uploadFiles;
  5767. this.uploadLoading1 = true;
  5768. var file = data.file;
  5769. var credentials = {
  5770. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5771. secretAccessKey: "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",
  5772. }; //秘钥形式的登录上传
  5773. window.AWS.config.update(credentials);
  5774. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5775. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5776. var _this = this;
  5777. if (file) {
  5778. var params = {
  5779. Key:
  5780. file.name.split(".")[0] +
  5781. new Date().getTime() +
  5782. "." +
  5783. file.name.split(".")[file.name.split(".").length - 1],
  5784. ContentType: file.type,
  5785. Body: file,
  5786. "Access-Control-Allow-Credentials": "*",
  5787. ACL: "public-read",
  5788. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5789. var options = {
  5790. partSize: 2048 * 1024 * 1024,
  5791. queueSize: 2,
  5792. leavePartsOnError: true,
  5793. };
  5794. bucket
  5795. .upload(params, options)
  5796. .on("httpUploadProgress", function (evt) {
  5797. //这里可以写进度条
  5798. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5799. })
  5800. .send(function (err, data) {
  5801. _this.uploadLoading1 = false;
  5802. if (err) {
  5803. // var a = _this.$refs.upload1.uploadFiles;
  5804. // a.splice(a.length - 1, a.length);
  5805. _this.$message.error("上传失败");
  5806. } else {
  5807. //上传成功处理
  5808. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  5809. name: file.name,
  5810. url: data.Location,
  5811. uid: file.uid,
  5812. });
  5813. _this.imgChange();
  5814. console.log(data.Location);
  5815. }
  5816. });
  5817. }
  5818. },
  5819. onExceed() {
  5820. this.$message.error("课程封面仅支持上传一张,请删除后再进行上传");
  5821. },
  5822. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  5823. // const loading = this.openLoading();
  5824. var file = event.target.files[0];
  5825. var credentials = {
  5826. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5827. secretAccessKey: "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",
  5828. }; //秘钥形式的登录上传
  5829. window.AWS.config.update(credentials);
  5830. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5831. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  5832. var _this = this;
  5833. if (type == 3) {
  5834. var b = [
  5835. "DOC",
  5836. "DOCX",
  5837. "DOCM",
  5838. "DOTM",
  5839. "DOTX",
  5840. "PPTX",
  5841. "PPSX",
  5842. "PPT",
  5843. "PPS",
  5844. "PPTM",
  5845. "POTM",
  5846. "PPAM",
  5847. "POTX",
  5848. "PPSM",
  5849. "XLSX",
  5850. "XLS",
  5851. ];
  5852. if (
  5853. b.indexOf(
  5854. file.name
  5855. .split(".")
  5856. [file.name.split(".").length - 1].toLocaleUpperCase()
  5857. ) != -1
  5858. ) {
  5859. if (file.size / 1024 / 1024 > 80) {
  5860. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5861. this.inputShow = true;
  5862. // var a = _this.$refs.upload1.uploadFiles;
  5863. // a.splice(a.length - 1, a.length);
  5864. // loading.close();
  5865. return;
  5866. }
  5867. } else if (
  5868. file.name
  5869. .split(".")
  5870. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5871. ) {
  5872. if (file.size / 1024 / 1024 > 80) {
  5873. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5874. this.inputShow = true;
  5875. // var a = _this.$refs.upload1.uploadFiles;
  5876. // a.splice(a.length - 1, a.length);
  5877. // loading.close();
  5878. return;
  5879. }
  5880. }
  5881. }
  5882. this.inputShow = false;
  5883. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5884. itemTaskIndex
  5885. ].progress = 0;
  5886. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5887. itemTaskIndex
  5888. ].proVisible = true;
  5889. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5890. itemTaskIndex
  5891. ].isFinishSize = 0;
  5892. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5893. itemTaskIndex
  5894. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5895. _this.$forceUpdate();
  5896. if (file) {
  5897. var params = {
  5898. Key:
  5899. file.name.split(".")[0] +
  5900. new Date().getTime() +
  5901. "." +
  5902. file.name.split(".")[file.name.split(".").length - 1],
  5903. ContentType: file.type,
  5904. Body: file,
  5905. "Access-Control-Allow-Credentials": "*",
  5906. ACL: "public-read",
  5907. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5908. var options = {
  5909. partSize: 2048 * 1024 * 1024,
  5910. queueSize: 2,
  5911. leavePartsOnError: true,
  5912. };
  5913. bucket
  5914. .upload(params, options)
  5915. .on("httpUploadProgress", function (evt) {
  5916. //这里可以写进度条
  5917. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5918. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5919. itemTaskIndex
  5920. ].progress = parseInt((evt.loaded / evt.total) * 100);
  5921. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5922. itemTaskIndex
  5923. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5924. _this.$forceUpdate();
  5925. })
  5926. .send(function (err, data) {
  5927. // loading.close();
  5928. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5929. itemTaskIndex
  5930. ].progress = 100;
  5931. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5932. itemTaskIndex
  5933. ].isFinishSize =
  5934. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5935. itemTaskIndex
  5936. ].isAllSize;
  5937. _this.$forceUpdate();
  5938. setTimeout(() => {
  5939. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5940. itemTaskIndex
  5941. ].proVisible = false;
  5942. _this.$forceUpdate();
  5943. }, 1000);
  5944. _this.inputShow = true;
  5945. if (err) {
  5946. // var a = _this.$refs.upload1.uploadFiles;
  5947. // a.splice(a.length - 1, a.length);
  5948. _this.$message.error("上传失败");
  5949. } else {
  5950. if (type == 13) {
  5951. let _type = 2;
  5952. var imgA = [
  5953. "png",
  5954. "jpg",
  5955. "jpeg",
  5956. "bmp",
  5957. "gif",
  5958. "webp",
  5959. "psd",
  5960. "svg",
  5961. "tiff",
  5962. ];
  5963. var fileA = [
  5964. "PDF",
  5965. "DOC",
  5966. "DOCX",
  5967. "DOCM",
  5968. "DOTM",
  5969. "DOTX",
  5970. "PPTX",
  5971. "PPSX",
  5972. "PPT",
  5973. "PPS",
  5974. "PPTM",
  5975. "POTM",
  5976. "PPAM",
  5977. "POTX",
  5978. "PPSM",
  5979. "XLSX",
  5980. "XLS",
  5981. ];
  5982. var videoA = [
  5983. "AVI",
  5984. "NAVI",
  5985. "MPEG",
  5986. "ASF",
  5987. "MOV",
  5988. "WMV",
  5989. "3GP",
  5990. "RM",
  5991. "RMVB",
  5992. "FLV",
  5993. "F4V",
  5994. "H.264",
  5995. "H.265",
  5996. "REAL VIDEO",
  5997. "MKV",
  5998. "WebM",
  5999. "HDDVD",
  6000. "MP4",
  6001. "MPG",
  6002. "M4V",
  6003. "MGV",
  6004. "OGV",
  6005. "QTM",
  6006. "STR",
  6007. "AMC",
  6008. "DVX",
  6009. "EVO",
  6010. "DAT",
  6011. "OGG",
  6012. "OGM",
  6013. ];
  6014. if (
  6015. fileA.indexOf(
  6016. data.Location.split(".")[
  6017. data.Location.split(".").length - 1
  6018. ].toLocaleUpperCase()
  6019. ) != -1
  6020. ) {
  6021. _type = 3;
  6022. } else if (
  6023. videoA.indexOf(
  6024. data.Location.split(".")[
  6025. data.Location.split(".").length - 1
  6026. ].toLocaleUpperCase()
  6027. ) != -1
  6028. ) {
  6029. _type = 2;
  6030. } else if (
  6031. imgA.indexOf(
  6032. data.Location.split(".")[
  6033. data.Location.split(".").length - 1
  6034. ].toLocaleLowerCase()
  6035. ) != -1
  6036. ) {
  6037. _type = 13;
  6038. } else {
  6039. _type = 12;
  6040. }
  6041. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6042. itemTaskIndex
  6043. ].chapterData.push({
  6044. name: file.name,
  6045. url: data.Location,
  6046. uid: file.uid,
  6047. type: _type,
  6048. });
  6049. _this.imgChange1(null, null, _type, itemTaskIndex);
  6050. } else if (type == 2 || type == 3 || type == 12) {
  6051. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6052. itemTaskIndex
  6053. ].chapterData.push({
  6054. name: file.name,
  6055. url: data.Location,
  6056. uid: file.uid,
  6057. type: type,
  6058. });
  6059. _this.imgChange1(null, null, type, itemTaskIndex);
  6060. } else if (type == 4) {
  6061. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  6062. itemTaskIndex
  6063. ].fileList1.push({
  6064. name: file.name,
  6065. url: data.Location,
  6066. uid: file.uid,
  6067. });
  6068. _this.imgChange1(null, null, type, itemTaskIndex);
  6069. } else if (type == 5) {
  6070. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  6071. itemTaskIndex
  6072. ].homeworkList.push({
  6073. name: file.name,
  6074. url: data.Location,
  6075. uid: file.uid,
  6076. });
  6077. _this.imgChange1(null, null, type, itemTaskIndex);
  6078. }
  6079. console.log(data.Location);
  6080. }
  6081. });
  6082. }
  6083. },
  6084. beforeUpload3(event, unitIndex, type, itemTaskIndex, string) {
  6085. // const loading = this.openLoading();
  6086. var file = event.target.files[0];
  6087. var credentials = {
  6088. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  6089. secretAccessKey: "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",
  6090. }; //秘钥形式的登录上传
  6091. window.AWS.config.update(credentials);
  6092. window.AWS.config.region = "cn-northwest-1"; //设置区域
  6093. var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
  6094. var _this = this;
  6095. if (type == 3) {
  6096. var b = [
  6097. "DOC",
  6098. "DOCX",
  6099. "DOCM",
  6100. "DOTM",
  6101. "DOTX",
  6102. "PPTX",
  6103. "PPSX",
  6104. "PPT",
  6105. "PPS",
  6106. "PPTM",
  6107. "POTM",
  6108. "PPAM",
  6109. "POTX",
  6110. "PPSM",
  6111. ];
  6112. if (
  6113. b.indexOf(
  6114. file.name
  6115. .split(".")
  6116. [file.name.split(".").length - 1].toLocaleUpperCase()
  6117. ) != -1
  6118. ) {
  6119. if (file.size / 1024 / 1024 > 80) {
  6120. this.$message.error("上传文件大于80兆,请重新选择文件!");
  6121. this.inputShow = true;
  6122. // var a = _this.$refs.upload1.uploadFiles;
  6123. // a.splice(a.length - 1, a.length);
  6124. // loading.close();
  6125. return;
  6126. }
  6127. } else if (
  6128. file.name
  6129. .split(".")
  6130. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  6131. ) {
  6132. if (file.size / 1024 / 1024 > 80) {
  6133. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  6134. this.inputShow = true;
  6135. // var a = _this.$refs.upload1.uploadFiles;
  6136. // a.splice(a.length - 1, a.length);
  6137. // loading.close();
  6138. return;
  6139. }
  6140. }
  6141. }
  6142. this.inputShow = false;
  6143. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6144. itemTaskIndex
  6145. ].progress = 0;
  6146. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6147. itemTaskIndex
  6148. ].proVisible = true;
  6149. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6150. itemTaskIndex
  6151. ].isFinishSize = 0;
  6152. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6153. itemTaskIndex
  6154. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  6155. _this.$forceUpdate();
  6156. if (file) {
  6157. var params = {
  6158. Key:
  6159. file.name.split(".")[0] +
  6160. new Date().getTime() +
  6161. "." +
  6162. file.name.split(".")[file.name.split(".").length - 1],
  6163. ContentType: file.type,
  6164. Body: file,
  6165. "Access-Control-Allow-Credentials": "*",
  6166. ACL: "public-read",
  6167. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  6168. var options = {
  6169. partSize: 2048 * 1024 * 1024,
  6170. queueSize: 2,
  6171. leavePartsOnError: true,
  6172. };
  6173. bucket
  6174. .upload(params, options)
  6175. .on("httpUploadProgress", function (evt) {
  6176. //这里可以写进度条
  6177. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  6178. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6179. itemTaskIndex
  6180. ].progress = parseInt((evt.loaded / evt.total) * 100);
  6181. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6182. itemTaskIndex
  6183. ].isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  6184. _this.$forceUpdate();
  6185. })
  6186. .send(function (err, data) {
  6187. // loading.close();
  6188. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6189. itemTaskIndex
  6190. ].progress = 100;
  6191. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6192. itemTaskIndex
  6193. ].isFinishSize =
  6194. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6195. itemTaskIndex
  6196. ].isAllSize;
  6197. _this.$forceUpdate();
  6198. setTimeout(() => {
  6199. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6200. itemTaskIndex
  6201. ].proVisible = false;
  6202. _this.$forceUpdate();
  6203. }, 1000);
  6204. _this.inputShow = true;
  6205. if (err) {
  6206. // var a = _this.$refs.upload1.uploadFiles;
  6207. // a.splice(a.length - 1, a.length);
  6208. _this.$message.error("上传失败");
  6209. } else {
  6210. if (type == 2 || type == 3) {
  6211. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6212. itemTaskIndex
  6213. ].chapterData.push({
  6214. name: file.name,
  6215. // name: string+''+(_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6216. // itemTaskIndex
  6217. // ].chapterData.length+1),
  6218. url: data.Location,
  6219. uid: file.uid,
  6220. type: type,
  6221. text: string,
  6222. // text: string + '' + (_this.unitJson[unitIndex].chapterInfo[0].taskJson[
  6223. // itemTaskIndex
  6224. // ].chapterData.length + 1),
  6225. });
  6226. _this.imgChange1(null, null, type, itemTaskIndex);
  6227. } else if (type == 4) {
  6228. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  6229. itemTaskIndex
  6230. ].fileList1.push({
  6231. name: file.name,
  6232. url: data.Location,
  6233. uid: file.uid,
  6234. });
  6235. _this.imgChange1(null, null, type, itemTaskIndex);
  6236. } else if (type == 5) {
  6237. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  6238. itemTaskIndex
  6239. ].homeworkList.push({
  6240. name: file.name,
  6241. url: data.Location,
  6242. uid: file.uid,
  6243. });
  6244. _this.imgChange1(null, null, type, itemTaskIndex);
  6245. }
  6246. console.log(data.Location);
  6247. }
  6248. });
  6249. }
  6250. },
  6251. addunit() {
  6252. this.unitJson.push({
  6253. dyName: "", //单元标题
  6254. isUpdate: 1,
  6255. easy: this.unitJson[this.unitJson.length - 1].easy ? 1 : 0,
  6256. chapterInfo: [
  6257. {
  6258. isread: false,
  6259. chapterid: this.guid(),
  6260. title: "",
  6261. courseName: "",
  6262. taskJson: [
  6263. {
  6264. task: "",
  6265. taskDetail: "",
  6266. chapterData: [],
  6267. toolText: "",
  6268. toolChoose: [
  6269. {
  6270. tool: [],
  6271. toolDetail: "",
  6272. toolType: 0,
  6273. askCount: 1,
  6274. askTitle: "",
  6275. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6276. },
  6277. ],
  6278. isShowTools: false,
  6279. askCount: 1,
  6280. isFold: 0,
  6281. askTitle: "",
  6282. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6283. checkJson: [{ checkCount: [], checkPerent: [] }],
  6284. homeworkList: [],
  6285. },
  6286. ],
  6287. itemCount: 1,
  6288. fileList1: [],
  6289. video: [],
  6290. testData: [],
  6291. pData: [],
  6292. templateArray: [],
  6293. },
  6294. ],
  6295. });
  6296. this.addindex = this.unitJson.length - 1;
  6297. setTimeout(() => {
  6298. this.unitIndex = this.unitJson.length - 1;
  6299. this.unitSet(this.unitIndex);
  6300. }, 0);
  6301. },
  6302. addToolFun(itemTaskIndex) {
  6303. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6304. itemTaskIndex
  6305. ].toolChoose.push({
  6306. tool: [],
  6307. toolDetail: "",
  6308. toolType: 0,
  6309. askCount: 1,
  6310. askTitle: "",
  6311. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6312. });
  6313. },
  6314. addTaskBorder() {
  6315. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  6316. task: "",
  6317. taskDetail: "",
  6318. chapterData: [],
  6319. toolChoose: [
  6320. {
  6321. tool: [],
  6322. toolDetail: "",
  6323. toolType: 0,
  6324. askCount: 1,
  6325. askTitle: "",
  6326. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6327. },
  6328. ],
  6329. toolText: "",
  6330. isShowTools: false,
  6331. askCount: 1,
  6332. isFold: 0,
  6333. askTitle: "",
  6334. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6335. checkJson: [{ checkCount: [], checkPerent: [] }],
  6336. homeworkList: [],
  6337. });
  6338. },
  6339. add(e, i) {
  6340. var el = e.currentTarget;
  6341. el.getElementsByTagName("input")[0].click();
  6342. },
  6343. fold(i, e, type) {
  6344. var a = e.currentTarget.parentElement.parentElement;
  6345. var b = e.currentTarget.parentElement;
  6346. if (type == 1) {
  6347. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  6348. a.className += " smallTaskBorder";
  6349. b.className += " funBlockTop";
  6350. } else {
  6351. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  6352. a.className = "taskBorder";
  6353. b.className = "funBlock";
  6354. }
  6355. console.log(e);
  6356. },
  6357. fold2(i) {
  6358. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2) {
  6359. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = false;
  6360. } else {
  6361. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold2 = true;
  6362. }
  6363. setTimeout(() => {
  6364. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].taskDetail += '*0*%*'
  6365. setTimeout(() => {
  6366. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].taskDetail = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].taskDetail.replaceAll('*0*%*', '')
  6367. }, 0);
  6368. }, 0);
  6369. this.$forceUpdate();
  6370. },
  6371. foldC(i) {
  6372. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter) {
  6373. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = false;
  6374. } else {
  6375. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFoldchapter = true;
  6376. }
  6377. this.$forceUpdate();
  6378. },
  6379. fold3(i, ti) {
  6380. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3) {
  6381. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = false;
  6382. } else {
  6383. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[ti].isFold3 = true;
  6384. }
  6385. this.$forceUpdate();
  6386. },
  6387. deleteHomeworkBox(unitIndex, index, i) {
  6388. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  6389. this.taskCount
  6390. ].homeworkList.splice(i, 1);
  6391. },
  6392. getStudent() {
  6393. let params = {
  6394. oid: this.oid,
  6395. cu: "",
  6396. cn: this.searchPeople,
  6397. };
  6398. this.ajax
  6399. .get(this.$store.state.api + "selectStudentAdd", params)
  6400. .then((res) => {
  6401. this.studentJuri = res.data[0];
  6402. })
  6403. .catch((err) => {
  6404. this.isLoading = false;
  6405. console.error(err);
  6406. });
  6407. },
  6408. getTeacher() {
  6409. let params = {
  6410. oid:
  6411. this.org && this.org != "undefined" && this.org != "null"
  6412. ? this.org
  6413. : this.oid,
  6414. cu: "",
  6415. cn: this.searchTN,
  6416. };
  6417. this.ajax
  6418. .get(
  6419. this.$store.state.api +
  6420. (this.org && this.org != "undefined" && this.org != "null"
  6421. ? "selectTeacherAddOrg"
  6422. : "selectTeacherAdd"),
  6423. params
  6424. )
  6425. .then((res) => {
  6426. let teacherJuri = res.data[0];
  6427. for (var i = 0; i < teacherJuri.length; i++) {
  6428. if (teacherJuri[i].userid == this.userid) {
  6429. teacherJuri.splice(i, 1);
  6430. break;
  6431. }
  6432. }
  6433. this.teacherJuri = teacherJuri;
  6434. })
  6435. .catch((err) => {
  6436. console.error(err);
  6437. });
  6438. },
  6439. searchStudent() {
  6440. this.getStudent();
  6441. },
  6442. selectGrage() {
  6443. let params = {
  6444. oid: this.oid,
  6445. };
  6446. this.ajax
  6447. .get(this.$store.state.api + "selectGrageBySchool", params)
  6448. .then((res) => {
  6449. this.gradeList = res.data[0];
  6450. })
  6451. .catch((err) => {
  6452. this.isLoading = false;
  6453. console.error(err);
  6454. });
  6455. },
  6456. //获取班级列表
  6457. getClass() {
  6458. let params = {
  6459. oid: this.oid,
  6460. gid: this.gradeId,
  6461. cn: this.classSearch,
  6462. };
  6463. this.ajax
  6464. .get(this.$store.state.api + "selectClassBySchoolSearch2", params)
  6465. .then((res) => {
  6466. if (!this.grade.length) {
  6467. this.grade = res.data[0];
  6468. }
  6469. this.grade2 = res.data[0];
  6470. this.classJuri = res.data[0];
  6471. })
  6472. .catch((err) => {
  6473. this.isLoading = false;
  6474. console.error(err);
  6475. });
  6476. },
  6477. CourseType2Change(val) {
  6478. this.pTypeCheck = [];
  6479. for (var i = 0; i < this.CourseType2.length; i++) {
  6480. let typeA = this.CourseType2[i];
  6481. if (val.indexOf(typeA.name) != -1) {
  6482. this.pTypeCheck.push(...typeA.id);
  6483. }
  6484. }
  6485. },
  6486. getChapterData(e, i, j, ic, type) {
  6487. e.stopPropagation();
  6488. this.updataC = true;
  6489. this.icc = ic;
  6490. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  6491. console.log("还不能下载图片喔");
  6492. }
  6493. },
  6494. deleteChapterData(e, i, j, ic, taskI) {
  6495. e.stopPropagation();
  6496. let _this = this;
  6497. _this
  6498. .$confirm("确定删除此项?", "提示", {
  6499. confirmButtonText: "确定",
  6500. cancelButtonText: "取消",
  6501. type: "warning",
  6502. })
  6503. .then(() => {
  6504. _this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  6505. })
  6506. .catch(() => {
  6507. return;
  6508. });
  6509. },
  6510. updataVideoT(e, i, j, ic) {
  6511. // e.stopPropagation();
  6512. // this.unitJson[i].chapterInfo[0].taskJson[0].chapterData[
  6513. // ic
  6514. // ].name = JSON.parse(JSON.stringify(e.target.value));
  6515. this.line = this.unitJson[i].chapterInfo[0].taskJson[0].chapterData[
  6516. ic
  6517. ].name;
  6518. this.taskCount = j;
  6519. this.lineCount = ic;
  6520. this.dialogVisibleupdataVideoT = true;
  6521. this.$forceUpdate();
  6522. },
  6523. updataVideoC() {
  6524. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData[this.lineCount].name = JSON.parse(JSON.stringify(this.line));
  6525. this.dialogVisibleupdataVideoT = false;
  6526. this.$forceUpdate();
  6527. },
  6528. upCd(e, i, j, taskCount, ic) {
  6529. e.stopPropagation();
  6530. if (ic == 0) {
  6531. return;
  6532. }
  6533. var a =
  6534. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1]));
  6535. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic - 1] =
  6536. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  6537. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  6538. this.$forceUpdate();
  6539. },
  6540. downCd(e, i, j, taskCount, ic) {
  6541. e.stopPropagation();
  6542. if (
  6543. ic ==
  6544. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData.length -
  6545. 1
  6546. ) {
  6547. return;
  6548. }
  6549. var a =
  6550. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1]));
  6551. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic + 1] =
  6552. JSON.parse(JSON.stringify(this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic]));
  6553. this.unitJson[i].chapterInfo[0].taskJson[taskCount].chapterData[ic] = a;
  6554. this.$forceUpdate();
  6555. },
  6556. addWork() {
  6557. let cPan = 1;
  6558. for (var i = 0; i < this.unitJson.length; i++) {
  6559. for (
  6560. var j = 0;
  6561. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6562. j++
  6563. ) {
  6564. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  6565. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  6566. if (
  6567. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  6568. ) {
  6569. for (
  6570. var z = 0;
  6571. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  6572. z++
  6573. ) {
  6574. if (
  6575. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  6576. .length
  6577. ) {
  6578. this.$message.error("请把工具添加完整");
  6579. cPan = 2;
  6580. break;
  6581. }
  6582. }
  6583. }
  6584. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6585. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6586. i
  6587. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6588. return ele.value != "";
  6589. });
  6590. }
  6591. }
  6592. }
  6593. this.inputShow = true;
  6594. if (cPan == 2) {
  6595. return;
  6596. }
  6597. for (var i = 0; i < this.unitJson.length; i++) {
  6598. delete this.unitJson[i].isUpdate;
  6599. }
  6600. let params = [
  6601. {
  6602. uid: this.userid,
  6603. title: this.courseName.replace(/%/g, "%25"),
  6604. brief: this.courseText.replace(/%/g, "%25"),
  6605. cover:
  6606. this.cover.length > 0
  6607. ? JSON.stringify(this.cover)
  6608. : JSON.stringify([
  6609. {
  6610. name: "noBanner.jpg",
  6611. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6612. uid: 1656409780264,
  6613. status: "success",
  6614. },
  6615. ]),
  6616. evaId: this.evalua,
  6617. astudent:
  6618. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6619. see: this.isTeacherSee == true ? 1 : 0,
  6620. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6621. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  6622. courseType: JSON.stringify(this.courseTypeId),
  6623. ateacher:
  6624. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6625. inviteCode: JSON.stringify(this.inviteCode),
  6626. },
  6627. ];
  6628. this.ajax
  6629. .post(this.$store.state.api + "addWorkNew2T", params)
  6630. .then((res) => {
  6631. console.log(this.steps);
  6632. // if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  6633. this.$message({
  6634. message: "新增成功",
  6635. type: "success",
  6636. });
  6637. // }
  6638. this.number = res.data.ordernumber;
  6639. this.courseId = res.data.courseId;
  6640. this.cid = res.data.courseId;
  6641. this.courseUserid = this.userid;
  6642. this.islogin = true;
  6643. this.steps = 4;
  6644. })
  6645. .catch((err) => {
  6646. this.$message.error("网络不佳");
  6647. console.error(err);
  6648. });
  6649. },
  6650. goCourse() {
  6651. window.parent.postMessage({ cid: this.courseId, type: "1" }, "*");
  6652. },
  6653. updateWork2() {
  6654. let _unitIndex = this.unitIndex;
  6655. let cPan = 1;
  6656. for (
  6657. var j = 0;
  6658. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  6659. j++
  6660. ) {
  6661. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].proVisible = false;
  6662. this.unitJson[_unitIndex].chapterInfo[0].taskJson[
  6663. j
  6664. ].proVisible2 = false;
  6665. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  6666. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  6667. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  6668. (ele) => {
  6669. return ele.value != "";
  6670. }
  6671. );
  6672. }
  6673. }
  6674. this.inputShow = true;
  6675. if (cPan == 2) {
  6676. return;
  6677. }
  6678. let params = [
  6679. {
  6680. cid: this.cid,
  6681. chapters: JSON.stringify(this.unitJson),
  6682. uid: this.userid,
  6683. unitIndex: _unitIndex,
  6684. },
  6685. ];
  6686. this.ajax
  6687. .post(this.$store.state.api + "updateWorkNew4", params)
  6688. .then((res) => {
  6689. this.$message({
  6690. message: "修改成功",
  6691. type: "success",
  6692. });
  6693. this.courseId = this.cid;
  6694. })
  6695. .catch((err) => {
  6696. this.$message.error("网络不佳");
  6697. console.error(err);
  6698. });
  6699. },
  6700. updateWork() {
  6701. let cPan = 1;
  6702. for (var i = 0; i < this.unitJson.length; i++) {
  6703. for (
  6704. var j = 0;
  6705. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6706. j++
  6707. ) {
  6708. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible = false;
  6709. this.unitJson[i].chapterInfo[0].taskJson[j].proVisible2 = false;
  6710. if (
  6711. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  6712. ) {
  6713. for (
  6714. var z = 0;
  6715. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  6716. z++
  6717. ) {
  6718. if (
  6719. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  6720. .length
  6721. ) {
  6722. this.$message.error("请把工具添加完整");
  6723. cPan = 2;
  6724. break;
  6725. }
  6726. }
  6727. }
  6728. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6729. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6730. i
  6731. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6732. return ele.value != "";
  6733. });
  6734. }
  6735. }
  6736. }
  6737. this.inputShow = true;
  6738. if (cPan == 2) {
  6739. return;
  6740. }
  6741. for (var i = 0; i < this.unitJson.length; i++) {
  6742. delete this.unitJson[i].isUpdate;
  6743. }
  6744. let params = [
  6745. {
  6746. cid: this.cid,
  6747. title: this.courseName.replace(/%/g, "%25"),
  6748. brief: this.courseText.replace(/%/g, "%25"),
  6749. cover:
  6750. this.cover.length > 0
  6751. ? JSON.stringify(this.cover)
  6752. : JSON.stringify([
  6753. {
  6754. name: "noBanner.jpg",
  6755. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6756. uid: 1656409780264,
  6757. status: "success",
  6758. },
  6759. ]),
  6760. evaId: this.evalua,
  6761. astudent:
  6762. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6763. see: this.isTeacherSee == true ? 1 : 0,
  6764. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6765. template: this.myWord != "undefined" ? this.myWord : [],
  6766. uid: this.userid,
  6767. courseType: JSON.stringify(this.courseTypeId),
  6768. ateacher:
  6769. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6770. inviteCode: JSON.stringify(this.inviteCode),
  6771. },
  6772. ];
  6773. this.ajax
  6774. .post(this.$store.state.api + "updateWorkNew2", params)
  6775. .then((res) => {
  6776. // if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  6777. if (this.cidType == 1) {
  6778. this.$message({
  6779. message: "修改成功",
  6780. type: "success",
  6781. });
  6782. } else {
  6783. this.$message({
  6784. message: "新增成功",
  6785. type: "success",
  6786. });
  6787. }
  6788. // }
  6789. this.number = this.nbOrder;
  6790. this.courseId = this.cid;
  6791. this.steps = 4;
  6792. })
  6793. .catch((err) => {
  6794. this.$message.error("网络不佳");
  6795. console.error(err);
  6796. });
  6797. },
  6798. guid() {
  6799. var _num,
  6800. i,
  6801. _guid = "";
  6802. for (i = 0; i < 32; i++) {
  6803. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  6804. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  6805. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  6806. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  6807. _guid += "-";
  6808. }
  6809. }
  6810. return _guid;
  6811. },
  6812. insertWord() {
  6813. this.dialogVisible1 = true;
  6814. this.updateBoolean2 = false;
  6815. this.tTitle = "";
  6816. this.tdetail = "";
  6817. },
  6818. addWord() {
  6819. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  6820. name: this.tTitle,
  6821. content: this.tdetail,
  6822. uid: this.guid(),
  6823. });
  6824. this.dialogVisible1 = false;
  6825. },
  6826. upWord() { },
  6827. selectWord(uid, i, c) {
  6828. this.dialogVisible1 = true;
  6829. this.updateBoolean2 = true;
  6830. if (
  6831. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  6832. ) {
  6833. this.tTitle =
  6834. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  6835. this.tdetail =
  6836. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  6837. }
  6838. },
  6839. isAddPP() {
  6840. if (this.checkboxList.length > 0) {
  6841. this.$message({
  6842. message: "添加成功",
  6843. type: "success",
  6844. });
  6845. this.dialogVisible3 = false;
  6846. } else {
  6847. this.$message({
  6848. message: "请添加课程成员",
  6849. type: "error",
  6850. });
  6851. }
  6852. },
  6853. isAddClass() {
  6854. this.dialogVisibleClass = false;
  6855. },
  6856. isAddPPTeacher() {
  6857. this.dialogVisibleMember = false;
  6858. this.setMan();
  6859. },
  6860. getTemplate() {
  6861. this.ajax
  6862. .get(this.$store.state.api + "getCourseTemplateT", "")
  6863. .then((res) => {
  6864. this.templateArray = res.data[0];
  6865. this.getTemplateOid();
  6866. this.$forceUpdate();
  6867. })
  6868. .catch((err) => { });
  6869. },
  6870. getTemplateOid() {
  6871. let params = {
  6872. oid: this.oid,
  6873. };
  6874. this.ajax
  6875. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6876. .then((res) => {
  6877. if (res.data[0].length) {
  6878. this.templateArray = [...res.data[0], ...this.templateArray];
  6879. }
  6880. this.getTemplateOrg();
  6881. this.$forceUpdate();
  6882. })
  6883. .catch((err) => { });
  6884. },
  6885. getTemplateOrg() {
  6886. let params = {
  6887. oid: this.org,
  6888. };
  6889. this.ajax
  6890. .get(this.$store.state.api + "getCourseTemplateTByOid", params)
  6891. .then((res) => {
  6892. if (res.data[0].length) {
  6893. this.templateArray = [...res.data[0], ...this.templateArray];
  6894. }
  6895. this.$forceUpdate();
  6896. })
  6897. .catch((err) => { });
  6898. },
  6899. clearChoose() {
  6900. this.clearArray.splice(this.templateC.id, 1);
  6901. this.dialogVisible2 = false;
  6902. },
  6903. clearAttText() {
  6904. this.AttText = {
  6905. title: "",
  6906. text: "",
  6907. };
  6908. this.dialogVisible6 = false;
  6909. },
  6910. clearLine() {
  6911. this.line = "";
  6912. this.dialogVisible7 = false;
  6913. },
  6914. checkTemplate(res) {
  6915. let _this = this;
  6916. _this
  6917. .$confirm("确定选择此模板吗?", "提示", {
  6918. confirmButtonText: "确定",
  6919. cancelButtonText: "取消",
  6920. type: "warning",
  6921. })
  6922. .then(() => {
  6923. _this.unitJson = JSON.parse(res.chapters);
  6924. _this.steps++;
  6925. setTimeout(() => {
  6926. this.checkEva(this.checkId);
  6927. }, 1000);
  6928. })
  6929. .catch(() => {
  6930. return;
  6931. });
  6932. },
  6933. checkTemplate1(w) {
  6934. this.steps++;
  6935. },
  6936. checkTemplate2() {
  6937. let _this = this;
  6938. _this
  6939. .$confirm("确定选择空模板吗?", "提示", {
  6940. confirmButtonText: "确定",
  6941. cancelButtonText: "取消",
  6942. type: "warning",
  6943. })
  6944. .then(() => {
  6945. _this.unitIndex = 0;
  6946. _this.unitJson = [
  6947. {
  6948. dyName: "", //单元标题
  6949. chapterInfo: [
  6950. {
  6951. isread: false,
  6952. chapterid: this.guid(),
  6953. title: "",
  6954. courseName: "",
  6955. taskJson: [
  6956. {
  6957. task: "",
  6958. taskDetail: "",
  6959. chapterData: [],
  6960. toolText: "",
  6961. toolChoose: [
  6962. {
  6963. tool: [],
  6964. toolDetail: "",
  6965. toolType: 0,
  6966. askCount: 1,
  6967. askTitle: "",
  6968. askJson: [
  6969. { askstitle: "", askItem: 1, checkList: [] },
  6970. ],
  6971. },
  6972. ],
  6973. isShowTools: false,
  6974. askCount: 1,
  6975. isFold: 0,
  6976. askTitle: "",
  6977. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6978. checkJson: [{ checkCount: [], checkPerent: [] }],
  6979. homeworkList: [],
  6980. },
  6981. ],
  6982. itemCount: 1,
  6983. fileList1: [],
  6984. video: [],
  6985. testData: [],
  6986. pData: [],
  6987. templateArray: [],
  6988. },
  6989. ],
  6990. },
  6991. ];
  6992. this.steps++;
  6993. this.updateWork();
  6994. })
  6995. .catch(() => {
  6996. return;
  6997. });
  6998. },
  6999. checkTemplate3() {
  7000. let _this = this;
  7001. _this
  7002. .$confirm("确定选择简易模式吗?", "提示", {
  7003. confirmButtonText: "确定",
  7004. cancelButtonText: "取消",
  7005. type: "warning",
  7006. })
  7007. .then(() => {
  7008. _this.unitIndex = 0;
  7009. _this.unitJson = [
  7010. {
  7011. dyName: "", //单元标题
  7012. easy: 1,
  7013. chapterInfo: [
  7014. {
  7015. isread: false,
  7016. chapterid: this.guid(),
  7017. title: "",
  7018. courseName: "",
  7019. taskJson: [
  7020. {
  7021. task: "",
  7022. taskDetail: "",
  7023. chapterData: [],
  7024. toolText: "",
  7025. toolChoose: [
  7026. {
  7027. tool: [],
  7028. toolDetail: "",
  7029. toolType: 0,
  7030. askCount: 1,
  7031. askTitle: "",
  7032. askJson: [
  7033. { askstitle: "", askItem: 1, checkList: [] },
  7034. ],
  7035. },
  7036. ],
  7037. isShowTools: false,
  7038. askCount: 1,
  7039. isFold: 0,
  7040. askTitle: "",
  7041. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  7042. checkJson: [{ checkCount: [], checkPerent: [] }],
  7043. homeworkList: [],
  7044. },
  7045. ],
  7046. itemCount: 1,
  7047. fileList1: [],
  7048. video: [],
  7049. testData: [],
  7050. pData: [],
  7051. templateArray: [],
  7052. },
  7053. ],
  7054. },
  7055. ];
  7056. this.steps++;
  7057. this.updateWork();
  7058. })
  7059. .catch(() => {
  7060. return;
  7061. });
  7062. },
  7063. checkTemplate4() {
  7064. let _this = this;
  7065. _this
  7066. .$confirm("确定选择未来小学课程设计吗?", "提示", {
  7067. confirmButtonText: "确定",
  7068. cancelButtonText: "取消",
  7069. type: "warning",
  7070. })
  7071. .then(() => {
  7072. _this.unitIndex = 0;
  7073. _this.unitJson = JSON.parse(JSON.stringify(weilaiData));
  7074. this.steps++;
  7075. this.updateWork();
  7076. })
  7077. .catch(() => {
  7078. return;
  7079. });
  7080. },
  7081. wordNext() {
  7082. this.dialogVisible2 = false;
  7083. },
  7084. isAddOrUpdateAttText() {
  7085. if (this.AttTextType == 0) {
  7086. this.addAttTextMessage();
  7087. } else {
  7088. this.updateAttText();
  7089. }
  7090. },
  7091. isAddOrUpdateLine() {
  7092. if (!this.lineTitle) {
  7093. this.$message.error("请填写链接标题");
  7094. return;
  7095. }
  7096. if (this.lineType == 0) {
  7097. this.addLine();
  7098. } else {
  7099. this.updateLine();
  7100. }
  7101. },
  7102. addAttTextMessage() {
  7103. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7104. this.taskCount
  7105. ].chapterData.push({
  7106. name: this.AttText.title,
  7107. url: this.AttText.text,
  7108. type: 6,
  7109. });
  7110. this.imgChange1(null, null, 6, this.taskCount);
  7111. this.dialogVisible6 = false;
  7112. },
  7113. selectAttText(itemTaskIndex, i) {
  7114. this.AttText.title =
  7115. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7116. itemTaskIndex
  7117. ].chapterData[i].name;
  7118. this.AttText.text =
  7119. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7120. itemTaskIndex
  7121. ].chapterData[i].url;
  7122. this.taskCount = itemTaskIndex;
  7123. this.AttTextIndex = i;
  7124. this.AttTextType = 1;
  7125. this.dialogVisible6 = true;
  7126. },
  7127. updateAttText() {
  7128. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7129. this.taskCount
  7130. ].chapterData[this.AttTextIndex].name = this.AttText.title;
  7131. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7132. this.taskCount
  7133. ].chapterData[this.AttTextIndex].url = this.AttText.text;
  7134. this.dialogVisible6 = false;
  7135. },
  7136. addLine() {
  7137. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7138. this.lineCount
  7139. ].chapterData.push({
  7140. name: "链接",
  7141. title: this.lineTitle,
  7142. url: this.line,
  7143. type: 8,
  7144. });
  7145. this.imgChange1(null, null, 8, this.lineCount);
  7146. this.dialogVisible7 = false;
  7147. },
  7148. selectLine(itemTaskIndex, i) {
  7149. this.line =
  7150. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7151. itemTaskIndex
  7152. ].chapterData[i].url;
  7153. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7154. itemTaskIndex
  7155. ].chapterData[i].title
  7156. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7157. .chapterData[i].title
  7158. : "";
  7159. this.taskCount = itemTaskIndex;
  7160. this.lineCount = i;
  7161. this.lineType = 1;
  7162. this.dialogVisible7 = true;
  7163. },
  7164. openUpdateSource(itemTaskIndex, i) {
  7165. this.sourceData = {}
  7166. let source = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex].chapterData[i]
  7167. this.sourceData[source.id] = {}
  7168. this.sourceData[source.id].name = source.title
  7169. this.sourceData[source.id].url = source.url
  7170. this.dialogVisibleSource = true;
  7171. this.updateSourcePan = true;
  7172. this.taskCount = itemTaskIndex;
  7173. this.lineCount = i;
  7174. },
  7175. updateLine() {
  7176. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7177. this.taskCount
  7178. ].chapterData[this.lineCount].url = this.line;
  7179. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7180. this.taskCount
  7181. ].chapterData[this.lineCount].title = this.lineTitle;
  7182. this.dialogVisible7 = false;
  7183. },
  7184. addPP() {
  7185. this.dialogVisible3 = true;
  7186. },
  7187. goTo(path) {
  7188. this.$router.push(path);
  7189. },
  7190. openTools(itemTaskIndex, i, toolIndex) {
  7191. this.toolIndex = toolIndex;
  7192. this.taskCount = itemTaskIndex;
  7193. if (i == 4) {
  7194. if (toolIndex == null) {
  7195. var a =
  7196. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7197. .chapterData;
  7198. for (var i = 0; i < a.length; i++) {
  7199. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  7200. this.askJson =
  7201. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7202. itemTaskIndex
  7203. ].chapterData[i].askJson;
  7204. }
  7205. }
  7206. } else {
  7207. this.askJson = JSON.parse(
  7208. JSON.stringify(
  7209. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7210. itemTaskIndex
  7211. ].toolChoose[toolIndex]
  7212. )
  7213. );
  7214. }
  7215. this.askJson2 = JSON.parse(JSON.stringify(this.askJson))
  7216. this.dialogVisible5 = true;
  7217. } else if (i == 45) {
  7218. if (
  7219. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7220. .toolChoose[toolIndex].testJson
  7221. ) {
  7222. this.testJson = JSON.parse(
  7223. JSON.stringify(
  7224. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7225. itemTaskIndex
  7226. ].toolChoose[toolIndex].testJson
  7227. )
  7228. );
  7229. } else {
  7230. var testJson = {
  7231. testCount: 1,
  7232. testTitle: "",
  7233. testJson: [
  7234. {
  7235. teststitle: "",
  7236. testItem: 1,
  7237. checkList: [],
  7238. timuList: [],
  7239. answer: [],
  7240. type: "1",
  7241. },
  7242. ],
  7243. };
  7244. this.testJson = testJson;
  7245. }
  7246. this.testJson2 = JSON.parse(JSON.stringify(this.testJson));
  7247. this.dialogVisibleChoice = true;
  7248. } else if (i == 47) {
  7249. if (
  7250. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7251. .toolChoose[toolIndex].sentenceList
  7252. ) {
  7253. this.sentenceList = JSON.parse(
  7254. JSON.stringify(
  7255. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7256. itemTaskIndex
  7257. ].toolChoose[toolIndex].sentenceList
  7258. )
  7259. );
  7260. } else {
  7261. var sentenceList = [
  7262. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  7263. ];
  7264. this.sentenceList = sentenceList;
  7265. }
  7266. this.sentenceList2 = JSON.parse(JSON.stringify(this.sentenceList));
  7267. this.dialogVisibleSentence = true;
  7268. } else if (i == 48) {
  7269. if (
  7270. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7271. .toolChoose[toolIndex].tableJson
  7272. ) {
  7273. this.tableJson = JSON.parse(
  7274. JSON.stringify(
  7275. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7276. itemTaskIndex
  7277. ].toolChoose[toolIndex].tableJson
  7278. )
  7279. );
  7280. } else {
  7281. var tableJson = { text: "" };
  7282. this.tableJson = tableJson;
  7283. }
  7284. this.dialogVisibleTable = true;
  7285. } else if (i == 52) {
  7286. if (
  7287. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7288. .toolChoose[toolIndex].wordJson
  7289. ) {
  7290. this.wordJson = JSON.parse(
  7291. JSON.stringify(
  7292. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7293. itemTaskIndex
  7294. ].toolChoose[toolIndex].wordJson
  7295. )
  7296. );
  7297. } else {
  7298. var wordJson = { text: "" };
  7299. this.wordJson = wordJson;
  7300. }
  7301. this.dialogVisibleWord = true;
  7302. // else if (i == 50) {
  7303. // if (
  7304. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7305. // .toolChoose[toolIndex].uploadJson
  7306. // ) {
  7307. // this.uploadJson = JSON.parse(
  7308. // JSON.stringify(
  7309. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7310. // itemTaskIndex
  7311. // ].toolChoose[toolIndex].uploadJson
  7312. // )
  7313. // );
  7314. // } else {
  7315. // var uploadJson = [];
  7316. // this.uploadJson = uploadJson;
  7317. // }
  7318. // this.dialogVisibleMoreUpload = true;
  7319. // }
  7320. } else if (i == 10) {
  7321. if (
  7322. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7323. .toolChoose[toolIndex].preTime
  7324. ) {
  7325. this.preTime = JSON.parse(
  7326. JSON.stringify(
  7327. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7328. itemTaskIndex
  7329. ].toolChoose[toolIndex].preTime
  7330. )
  7331. );
  7332. } else {
  7333. var preTime = 0;
  7334. this.preTime = preTime;
  7335. }
  7336. this.dialogVisiblePreTime = true;
  7337. } else if (i == 49) {
  7338. if (
  7339. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7340. .toolChoose[toolIndex].groupJson
  7341. ) {
  7342. this.groupJson = JSON.parse(
  7343. JSON.stringify(
  7344. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7345. itemTaskIndex
  7346. ].toolChoose[toolIndex].groupJson
  7347. )
  7348. );
  7349. } else {
  7350. var groupJson = {
  7351. group: [{ name: "第1组" }],
  7352. number: undefined,
  7353. islock: 1,
  7354. };
  7355. this.groupJson = groupJson;
  7356. }
  7357. this.dialogVisibleGroup = true;
  7358. } else if (i == 62) {
  7359. if (
  7360. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7361. .toolChoose[toolIndex].videoJson
  7362. ) {
  7363. this.videoJson = JSON.parse(
  7364. JSON.stringify(
  7365. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7366. itemTaskIndex
  7367. ].toolChoose[toolIndex].videoJson
  7368. )
  7369. );
  7370. } else {
  7371. var videoJson = {
  7372. video: "",
  7373. setting: [],
  7374. };
  7375. this.videoJson = videoJson;
  7376. }
  7377. this.dialogVisibleVideo = true;
  7378. } else if (i == 15) {
  7379. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7380. itemTaskIndex
  7381. ].toolChoose[toolIndex].answerQ
  7382. ? JSON.parse(
  7383. JSON.stringify(
  7384. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7385. itemTaskIndex
  7386. ].toolChoose[toolIndex].answerQ
  7387. )
  7388. )
  7389. : "";
  7390. this.answerQ2 = JSON.parse(JSON.stringify(this.answerQ))
  7391. this.dialogVisible8 = true;
  7392. } else if (i == 40) {
  7393. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7394. itemTaskIndex
  7395. ].toolChoose[toolIndex].rateJson
  7396. ? JSON.parse(
  7397. JSON.stringify(
  7398. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7399. itemTaskIndex
  7400. ].toolChoose[toolIndex].rateJson
  7401. )
  7402. )
  7403. : [{ detail: "", score: 5, value: "" }]; //{detail:"",score:5,value:""}
  7404. this.selectSteps = 1;
  7405. this.dialogVisibleRate = true;
  7406. } else if (i == 42) {
  7407. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7408. itemTaskIndex
  7409. ].toolChoose[toolIndex].answerQ
  7410. ? JSON.parse(
  7411. JSON.stringify(
  7412. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7413. itemTaskIndex
  7414. ].toolChoose[toolIndex].answerQ
  7415. )
  7416. )
  7417. : "";
  7418. this.dialogVisibleMp3 = true;
  7419. } else if (i == 41) {
  7420. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7421. itemTaskIndex
  7422. ].toolChoose[toolIndex].selectJson
  7423. ? JSON.parse(
  7424. JSON.stringify(
  7425. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7426. itemTaskIndex
  7427. ].toolChoose[toolIndex].selectJson
  7428. )
  7429. )
  7430. : { url: "", select: [], answer: [] };
  7431. this.selectSteps = 1;
  7432. this.selectJson2 = JSON.parse(JSON.stringify(this.selectJson))
  7433. this.dialogVisibleSelect = true;
  7434. } else if (i == 3) {
  7435. if (!this.cid) {
  7436. this.$message.error(
  7437. "极简模式添加时不能添加模板,请添加课程后再修改添加模板"
  7438. );
  7439. return;
  7440. }
  7441. window.parent.postMessage(
  7442. {
  7443. tools: "3y",
  7444. cid: this.cid,
  7445. stage: this.unitIndex,
  7446. task: itemTaskIndex,
  7447. tool: toolIndex,
  7448. },
  7449. "*"
  7450. );
  7451. } else if (i == 1) {
  7452. if (!this.cid) {
  7453. this.$message.error(
  7454. "极简模式添加时不能添加模板,请添加课程后再修改添加模板"
  7455. );
  7456. return;
  7457. }
  7458. window.parent.postMessage(
  7459. {
  7460. tools: "1y",
  7461. cid: this.cid,
  7462. stage: this.unitIndex,
  7463. task: itemTaskIndex,
  7464. tool: toolIndex,
  7465. },
  7466. "*"
  7467. );
  7468. } else if (i == 57) {
  7469. if (!this.cid) {
  7470. this.$message.error(
  7471. "极简模式添加时不能添加模板,请添加课程后再修改添加模板"
  7472. );
  7473. return;
  7474. }
  7475. window.parent.postMessage(
  7476. {
  7477. tools: "57y",
  7478. cid: this.cid,
  7479. stage: this.unitIndex,
  7480. task: itemTaskIndex,
  7481. tool: toolIndex,
  7482. },
  7483. "*"
  7484. );
  7485. }
  7486. },
  7487. chapAddTools(i) {
  7488. if (this.chapTools[0].tools.length == 0) {
  7489. this.chapTools[0].tools.push(i);
  7490. } else {
  7491. if (this.chapTools[0].tools.indexOf(i) != -1) {
  7492. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  7493. } else {
  7494. this.chapTools[0].tools.push(i);
  7495. }
  7496. }
  7497. this.$forceUpdate();
  7498. },
  7499. addChaptersDataTools() {
  7500. if (this.chapTools[0].tools.indexOf(4) != -1) {
  7501. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7502. this.chapCount
  7503. ].chapterData.push({
  7504. name: this.chapTools[0].toolDetail,
  7505. url: this.chapTools[0].tools,
  7506. type: 7,
  7507. askJson: this.askJson,
  7508. });
  7509. } else {
  7510. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7511. this.chapCount
  7512. ].chapterData.push({
  7513. name: this.chapTools[0].toolDetail,
  7514. url: this.chapTools[0].tools,
  7515. type: 7,
  7516. });
  7517. }
  7518. this.imgChange1(null, null, 7, this.chapCount);
  7519. this.dialogVisible4 = false;
  7520. },
  7521. addTools(i, itemTaskIndex, toolIndex) {
  7522. // if (
  7523. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7524. // .toolChoose[toolIndex].tool.length == 0
  7525. // ) {
  7526. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7527. // itemTaskIndex
  7528. // ].toolChoose[toolIndex].tool.push(i);
  7529. // } else {
  7530. // if (
  7531. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7532. // itemTaskIndex
  7533. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  7534. // ) {
  7535. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7536. // itemTaskIndex
  7537. // ].toolChoose[toolIndex].tool.splice(
  7538. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7539. // itemTaskIndex
  7540. // ].toolChoose[toolIndex].tool.indexOf(i),
  7541. // 1
  7542. // );
  7543. // } else {
  7544. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7545. // itemTaskIndex
  7546. // ].toolChoose[toolIndex].tool.push(i);
  7547. // }
  7548. // console.log(
  7549. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7550. // .toolChoose[toolIndex].tool
  7551. // );
  7552. // }
  7553. if (i == 4) {
  7554. if (
  7555. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7556. .toolChoose[toolIndex].askJson.askTitle == "" ||
  7557. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7558. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  7559. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7560. .toolChoose[toolIndex].askJson[0].checkList < 2
  7561. ) {
  7562. this.openTools(itemTaskIndex, 4, toolIndex);
  7563. // this.$message({
  7564. // message: "请填写完整问卷内容",
  7565. // type: "error",
  7566. // });
  7567. return;
  7568. }
  7569. }
  7570. if (i == 45) {
  7571. if (
  7572. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7573. .toolChoose[toolIndex].testJson ||
  7574. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7575. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  7576. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7577. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  7578. ) {
  7579. this.openTools(itemTaskIndex, 45, toolIndex);
  7580. // this.$message({
  7581. // message: "请填写完整问卷内容",
  7582. // type: "error",
  7583. // });
  7584. return;
  7585. }
  7586. }
  7587. if (i == 47) {
  7588. if (
  7589. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7590. .toolChoose[toolIndex].sentenceList ||
  7591. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7592. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  7593. ) {
  7594. this.openTools(itemTaskIndex, 47, toolIndex);
  7595. return;
  7596. }
  7597. }
  7598. // if (i == 48) {
  7599. // if (
  7600. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7601. // .toolChoose[toolIndex].tableJson
  7602. // ) {
  7603. // this.openTools(itemTaskIndex, 48, toolIndex);
  7604. // return;
  7605. // }
  7606. // }
  7607. // if (i == 50) {
  7608. // if (
  7609. // !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7610. // .toolChoose[toolIndex].uploadJson
  7611. // ) {
  7612. // this.openTools(itemTaskIndex, 50, toolIndex);
  7613. // return;
  7614. // }
  7615. // }
  7616. if (i == 49) {
  7617. if (
  7618. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7619. .toolChoose[toolIndex].groupJson
  7620. ) {
  7621. this.openTools(itemTaskIndex, 49, toolIndex);
  7622. return;
  7623. }
  7624. }
  7625. if (i == 62) {
  7626. if (
  7627. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7628. .toolChoose[toolIndex].videoJson
  7629. ) {
  7630. this.openTools(itemTaskIndex, 62, toolIndex);
  7631. return;
  7632. }
  7633. }
  7634. if (i == 15) {
  7635. if (
  7636. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7637. .toolChoose[toolIndex].answerQ ||
  7638. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7639. .toolChoose[toolIndex].answerQ == ""
  7640. ) {
  7641. this.openTools(itemTaskIndex, 15, toolIndex);
  7642. // this.$message({
  7643. // message: "请填写问答内容",
  7644. // type: "error",
  7645. // });
  7646. return;
  7647. }
  7648. }
  7649. if (i == 40) {
  7650. if (
  7651. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7652. .toolChoose[toolIndex].rateJson ||
  7653. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7654. .toolChoose[toolIndex].rateJson.length
  7655. ) {
  7656. this.openTools(itemTaskIndex, 40, toolIndex);
  7657. return;
  7658. }
  7659. }
  7660. if (i == 41) {
  7661. if (
  7662. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7663. .toolChoose[toolIndex].selectJson ||
  7664. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7665. .toolChoose[toolIndex].selectJson.url == "" ||
  7666. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7667. .toolChoose[toolIndex].selectJson.select.length ||
  7668. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7669. .toolChoose[toolIndex].selectJson.answer.length
  7670. ) {
  7671. this.openTools(itemTaskIndex, 41, toolIndex);
  7672. return;
  7673. }
  7674. }
  7675. if (i == 42) {
  7676. if (
  7677. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7678. .toolChoose[toolIndex].answerQ ||
  7679. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7680. .toolChoose[toolIndex].answerQ == ""
  7681. ) {
  7682. this.openTools(itemTaskIndex, 42, toolIndex);
  7683. return;
  7684. }
  7685. }
  7686. if (
  7687. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7688. .toolChoose[toolIndex].tool.length > 0
  7689. ) {
  7690. if (
  7691. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7692. itemTaskIndex
  7693. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  7694. ) {
  7695. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7696. itemTaskIndex
  7697. ].toolChoose[toolIndex].tool.splice(
  7698. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7699. itemTaskIndex
  7700. ].toolChoose[toolIndex].tool.indexOf(i),
  7701. 1
  7702. );
  7703. } else {
  7704. // this.$message({
  7705. // message: "每个工具只能添加一个",
  7706. // type: "error",
  7707. // });
  7708. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7709. itemTaskIndex
  7710. ].toolChoose[toolIndex].tool = [];
  7711. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7712. itemTaskIndex
  7713. ].toolChoose[toolIndex].tool.push(i);
  7714. }
  7715. } else {
  7716. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7717. itemTaskIndex
  7718. ].toolChoose[toolIndex].tool.push(i);
  7719. }
  7720. this.$forceUpdate();
  7721. },
  7722. addAskList(index) {
  7723. this.askJson.askJson.splice(index + 1, 0, {
  7724. askstitle: "",
  7725. askItem: 1,
  7726. checkList: [],
  7727. })
  7728. this.askJson.askCount++;
  7729. },
  7730. addTestList(index) {
  7731. this.testJson.testJson.splice(index + 1, 0, {
  7732. teststitle: "",
  7733. testItem: 1,
  7734. checkList: [],
  7735. timuList: [],
  7736. answer: [],
  7737. type: "1",
  7738. })
  7739. this.testJson.testCount++;
  7740. },
  7741. deleteAskList(index) {
  7742. if (!this.askJson.askJson[index].askstitle && this.askJson.askJson[index].askItem == 1 && !this.askJson.askJson[index].checkList[0]) {
  7743. this.askJson.askJson.splice(index, 1);
  7744. this.askJson.askCount--;
  7745. } else {
  7746. let _this = this;
  7747. _this
  7748. .$confirm("此操作不可撤销,是否继续?", "提示", {
  7749. confirmButtonText: "确定",
  7750. cancelButtonText: "取消",
  7751. type: "warning",
  7752. })
  7753. .then(() => {
  7754. _this.askJson.askJson.splice(index, 1);
  7755. _this.askJson.askCount--;
  7756. })
  7757. .catch(() => {
  7758. return;
  7759. });
  7760. }
  7761. },
  7762. deleteTestList(index) {
  7763. if (!this.testJson.testJson[index].teststitle && this.testJson.testJson[index].testItem == 1 && !this.testJson.testJson[index].checkList[0]) {
  7764. this.testJson.testJson.splice(index, 1);
  7765. this.testJson.testCount--;
  7766. } else {
  7767. let _this = this;
  7768. _this
  7769. .$confirm("此操作不可撤销,是否继续?", "提示", {
  7770. confirmButtonText: "确定",
  7771. cancelButtonText: "取消",
  7772. type: "warning",
  7773. })
  7774. .then(() => {
  7775. _this.testJson.testJson.splice(index, 1);
  7776. _this.testJson.testCount--;
  7777. })
  7778. .catch(() => {
  7779. return;
  7780. });
  7781. }
  7782. },
  7783. askMove(type, index) {
  7784. if (type == 1) {
  7785. if (index > 0) {
  7786. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index - 1]));
  7787. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  7788. this.askJson.askJson[index - 1] = b;
  7789. this.askJson.askJson[index] = a;
  7790. }
  7791. } else {
  7792. if (
  7793. index < this.askJson.askJson.length - 1
  7794. ) {
  7795. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index + 1]));
  7796. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index]));
  7797. this.askJson.askJson[index + 1] = b;
  7798. this.askJson.askJson[index] = a;
  7799. }
  7800. }
  7801. this.$forceUpdate();
  7802. },
  7803. checkMove(type, index, checkIndex) {
  7804. if (type == 1) {
  7805. if (checkIndex > 0) {
  7806. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex - 1]));
  7807. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7808. this.askJson.askJson[index].checkList[checkIndex - 1] = b;
  7809. this.askJson.askJson[index].checkList[checkIndex] = a;
  7810. }
  7811. } else {
  7812. if (
  7813. checkIndex < this.askJson.askJson[index].checkList.length - 1
  7814. ) {
  7815. let a = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex + 1]));
  7816. let b = JSON.parse(JSON.stringify(this.askJson.askJson[index].checkList[checkIndex]));
  7817. this.askJson.askJson[index].checkList[checkIndex + 1] = b;
  7818. this.askJson.askJson[index].checkList[checkIndex] = a;
  7819. }
  7820. }
  7821. this.$forceUpdate();
  7822. },
  7823. testMove(type, index) {
  7824. if (type == 1) {
  7825. if (index > 0) {
  7826. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index - 1]));
  7827. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7828. this.testJson.testJson[index - 1] = b;
  7829. this.testJson.testJson[index] = a;
  7830. }
  7831. } else {
  7832. if (
  7833. index < this.testJson.testJson.length - 1
  7834. ) {
  7835. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index + 1]));
  7836. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index]));
  7837. this.testJson.testJson[index + 1] = b;
  7838. this.testJson.testJson[index] = a;
  7839. }
  7840. }
  7841. this.$forceUpdate();
  7842. },
  7843. tcheckMove(type, index, checkIndex) {
  7844. if (type == 1) {
  7845. if (checkIndex > 0) {
  7846. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex - 1]));
  7847. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7848. this.testJson.testJson[index].checkList[checkIndex - 1] = b;
  7849. this.testJson.testJson[index].checkList[checkIndex] = a;
  7850. }
  7851. } else {
  7852. if (
  7853. checkIndex < this.testJson.testJson[index].checkList.length - 1
  7854. ) {
  7855. let a = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex + 1]));
  7856. let b = JSON.parse(JSON.stringify(this.testJson.testJson[index].checkList[checkIndex]));
  7857. this.testJson.testJson[index].checkList[checkIndex + 1] = b;
  7858. this.testJson.testJson[index].checkList[checkIndex] = a;
  7859. }
  7860. }
  7861. this.$forceUpdate();
  7862. },
  7863. addcheckList(json, index) {
  7864. // json.checkList.length++;
  7865. json.checkList.splice(index + 1, 0, '')
  7866. json.askItem++;
  7867. this.$forceUpdate();
  7868. },
  7869. deletecheckList(json, index) {
  7870. // json.checkList.length--;
  7871. json.checkList.splice(index, 1)
  7872. json.askItem--;
  7873. this.$forceUpdate();
  7874. },
  7875. addTcheckList(json, index) {
  7876. // json.checkList.length++;
  7877. json.checkList.splice(index + 1, 0, '')
  7878. json.testItem++;
  7879. this.$forceUpdate();
  7880. },
  7881. deleteTcheckList(json, index) {
  7882. // json.checkList.length--;
  7883. json.checkList.splice(index, 1)
  7884. json.testItem--;
  7885. this.$forceUpdate();
  7886. },
  7887. checkTestType(type, json) {
  7888. json.type = type;
  7889. setTimeout(() => {
  7890. json.answer = [];
  7891. }, 100)
  7892. this.$forceUpdate();
  7893. },
  7894. checkAskType(type, json) {
  7895. json.type = type;
  7896. // json.checkList = [];
  7897. this.$forceUpdate();
  7898. },
  7899. addSelectList(json) {
  7900. json.select.push("");
  7901. json.answer.push("");
  7902. },
  7903. deleteSelectList(json) {
  7904. // json.select.length--;
  7905. // json.answer.length--;
  7906. json.select.splice(json.select.length - 1, 1);
  7907. json.answer.splice(json.answer.length - 1, 1);
  7908. },
  7909. addAsk() {
  7910. if (this.askJson.askTitle === "") {
  7911. this.$message.error("标题不能为空!");
  7912. return;
  7913. }
  7914. var aj = this.askJson.askJson;
  7915. var b = 1;
  7916. for (var i = 0; i < aj.length; i++) {
  7917. if (aj[i].askstitle === "") {
  7918. var a = 1;
  7919. for (let index = 0; index < aj[i].askItem; index++) {
  7920. const element = aj[i].checkList[index]
  7921. ? aj[i].checkList[index]
  7922. : "";
  7923. if (element != "") {
  7924. b++;
  7925. this.$message.error(`请将题目${i + 1}填写完整。`);
  7926. return;
  7927. } else {
  7928. a++;
  7929. }
  7930. }
  7931. if (b == 1) {
  7932. this.$message.error("至少填写一个问题");
  7933. return;
  7934. }
  7935. } else if (aj[i].askstitle != "") {
  7936. for (let index = 0; index < aj[i].askItem; index++) {
  7937. const element = aj[i].checkList[index]
  7938. ? aj[i].checkList[index]
  7939. : "";
  7940. var index = 0;
  7941. for (var z = 0; z < aj[i].checkList.length; z++) {
  7942. let checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7943. if (checkC != "") {
  7944. index++;
  7945. } else {
  7946. this.$message.error(`题目${i + 1}选项不能为空!`);
  7947. return;
  7948. }
  7949. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  7950. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  7951. if (checkC == checkC2) {
  7952. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  7953. return;
  7954. }
  7955. }
  7956. }
  7957. b++;
  7958. if (index < 2) {
  7959. this.$message.error("每道题目至少需要设置2个选项。");
  7960. return;
  7961. }
  7962. }
  7963. }
  7964. }
  7965. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  7966. var elc = el.checkList.filter((element) => {
  7967. return element != "";
  7968. });
  7969. return el.askstitle != "" && elc.length != 0;
  7970. });
  7971. if (!this.dialogVisible4) {
  7972. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7973. this.taskCount
  7974. ].toolChoose[this.toolIndex] = this.askJson;
  7975. }
  7976. this.dialogVisible5 = false;
  7977. if (
  7978. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7979. .toolChoose[this.toolIndex].tool != 4
  7980. ) {
  7981. this.addTools(4, this.taskCount, this.toolIndex);
  7982. }
  7983. },
  7984. addTest() {
  7985. // if (this.testJson.testTitle === "") {
  7986. // this.$message.error("标题不能为空!");
  7987. // return;
  7988. // }
  7989. var aj = this.testJson.testJson;
  7990. var b = 1;
  7991. for (var i = 0; i < aj.length; i++) {
  7992. if (aj[i].teststitle === "" && aj[i].timuList.length == 0) {
  7993. var a = 1;
  7994. for (let index = 0; index < aj[i].testItem; index++) {
  7995. const element = aj[i].checkList[index]
  7996. ? aj[i].checkList[index]
  7997. : "";
  7998. if (element != "") {
  7999. b++;
  8000. this.$message.error(`请将题目${i + 1}填写完整。`);
  8001. return;
  8002. } else {
  8003. a++;
  8004. }
  8005. }
  8006. if (b == 1) {
  8007. this.$message.error("至少填写一个问题");
  8008. return;
  8009. }
  8010. } else if (aj[i].teststitle != "" || aj[i].timuList.length > 0) {
  8011. for (let index = 0; index < aj[i].testItem; index++) {
  8012. const element = aj[i].checkList[index]
  8013. ? aj[i].checkList[index]
  8014. : "";
  8015. var index = 0;
  8016. for (var z = 0; z < aj[i].checkList.length; z++) {
  8017. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  8018. if (checkC != "") {
  8019. index++;
  8020. } else {
  8021. this.$message.error(`题目${i + 1}选项不能为空!`);
  8022. return;
  8023. }
  8024. for (var z2 = z + 1; z2 < aj[i].checkList.length; z2++) {
  8025. let checkC2 = aj[i].checkList[z2] ? aj[i].checkList[z2] : "";
  8026. if (checkC == checkC2) {
  8027. this.$message.error(`第${i + 1}题的选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  8028. return;
  8029. }
  8030. }
  8031. }
  8032. b++;
  8033. if (index < 2) {
  8034. this.$message.error("每道题目至少需要设置2个选项。");
  8035. return;
  8036. }
  8037. if (
  8038. (aj[i].type == "2" && !aj[i].answer.length) ||
  8039. (aj[i].type == "1" && ((typeof aj[i].answer == 'object' && !aj[i].answer.length) || (aj[i].answer !== 0 && !aj[i].answer)))
  8040. ) {
  8041. this.$message.error(`请将题目${i + 1}的正确选项设置完整`);
  8042. return;
  8043. }
  8044. }
  8045. }
  8046. }
  8047. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  8048. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  8049. var elc = el.checkList.filter((element) => {
  8050. return element != "";
  8051. });
  8052. return (
  8053. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  8054. );
  8055. });
  8056. isTestJson.testCount = isTestJson.testJson.length;
  8057. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8058. this.taskCount
  8059. ].toolChoose[this.toolIndex].testJson = isTestJson;
  8060. this.dialogVisibleChoice = false;
  8061. if (
  8062. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8063. .toolChoose[this.toolIndex].tool != 45
  8064. ) {
  8065. this.addTools(45, this.taskCount, this.toolIndex);
  8066. }
  8067. },
  8068. addVideoJson(videoJson) {
  8069. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8070. this.taskCount
  8071. ].toolChoose[this.toolIndex].videoJson = videoJson;
  8072. this.dialogVisibleVideo = false;
  8073. if (
  8074. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8075. .toolChoose[this.toolIndex].tool != 62
  8076. ) {
  8077. this.addTools(62, this.taskCount, this.toolIndex);
  8078. }
  8079. },
  8080. //自动获取剪贴板
  8081. pasteOption() {
  8082. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  8083. if (!iframe) {
  8084. this.$message.error("请使用AI共创生成题目");
  8085. return;
  8086. }
  8087. let copyData = iframe.contentWindow.copyData;
  8088. if (!copyData || !copyData.selectData.length) {
  8089. this.$message.error("请使用AI共创生成题目");
  8090. return;
  8091. }
  8092. let selectData = copyData.selectData;
  8093. for (var i = 0; i < selectData.length; i++) {
  8094. let answer = 0;
  8095. switch (selectData[i].answer[0]) {
  8096. case "A":
  8097. answer = 0;
  8098. break;
  8099. case "B":
  8100. answer = 1;
  8101. break;
  8102. case "C":
  8103. answer = 2;
  8104. break;
  8105. case "D":
  8106. answer = 3;
  8107. break;
  8108. case "E":
  8109. answer = 4;
  8110. break;
  8111. default:
  8112. break;
  8113. }
  8114. this.testJson.testJson.push({
  8115. teststitle: selectData[i].subject,
  8116. testItem: selectData[i].options.length,
  8117. checkList: selectData[i].options,
  8118. timuList: [],
  8119. answer: answer,
  8120. type: "1",
  8121. });
  8122. this.testJson.testCount++;
  8123. }
  8124. var isTestJson = JSON.parse(JSON.stringify(this.testJson));
  8125. isTestJson.testJson = this.testJson.testJson.filter((el) => {
  8126. var elc = el.checkList.filter((element) => {
  8127. return element != "";
  8128. });
  8129. return (
  8130. (el.teststitle != "" || el.timuList.length > 0) && elc.length != 0
  8131. );
  8132. });
  8133. isTestJson.testCount = isTestJson.testJson.length;
  8134. this.testJson = isTestJson;
  8135. this.$forceUpdate();
  8136. },
  8137. pasteTask() {
  8138. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  8139. if (!iframe) {
  8140. this.$message.error("请使用AI共创生成");
  8141. return;
  8142. }
  8143. let copyData = iframe.contentWindow.copyData;
  8144. if (!copyData || !copyData.tasksData || !copyData.tasksData.length) {
  8145. this.$message.error("请使用AI共创生成");
  8146. return;
  8147. }
  8148. let stageTasksData = copyData.tasksData;
  8149. let taskA = [];
  8150. let tasks = stageTasksData;
  8151. for (var j = 0; j < tasks.length; j++) {
  8152. taskA.push({
  8153. task: tasks[j].taskName,
  8154. taskDetail: tasks[j].taskDecs,
  8155. chapterData: [],
  8156. toolText: "",
  8157. toolChoose: [
  8158. {
  8159. tool: [],
  8160. toolDetail: "",
  8161. toolType: 0,
  8162. askCount: 1,
  8163. askTitle: "",
  8164. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  8165. },
  8166. ],
  8167. isShowTools: false,
  8168. askCount: 1,
  8169. isFold: 0,
  8170. askTitle: "",
  8171. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  8172. checkJson: [{ checkCount: [], checkPerent: [] }],
  8173. homeworkList: [],
  8174. });
  8175. }
  8176. this.unitJson[this.unitIndex].chapterInfo[0].taskJson = taskA;
  8177. this.$forceUpdate();
  8178. },
  8179. pasteStage() {
  8180. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  8181. if (!iframe) {
  8182. this.$message.error("请使用AI共创生成");
  8183. return;
  8184. }
  8185. let copyData = iframe.contentWindow.copyData;
  8186. if (!copyData || !copyData.stageData || !copyData.stageData.length) {
  8187. this.$message.error("请使用AI共创生成");
  8188. return;
  8189. }
  8190. let stageData = copyData.stageData;
  8191. let stage = [];
  8192. for (var i = 0; i < stageData.length; i++) {
  8193. stage.push({
  8194. dyName: stageData[i], //单元标题
  8195. chapterInfo: [
  8196. {
  8197. isread: false,
  8198. chapterid: this.guid(),
  8199. title: "",
  8200. courseName: "",
  8201. taskJson: [
  8202. {
  8203. task: "",
  8204. taskDetail: "",
  8205. chapterData: [],
  8206. toolText: "",
  8207. toolChoose: [
  8208. {
  8209. tool: [],
  8210. toolDetail: "",
  8211. toolType: 0,
  8212. askCount: 1,
  8213. askTitle: "",
  8214. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  8215. },
  8216. ],
  8217. isShowTools: false,
  8218. askCount: 1,
  8219. isFold: 0,
  8220. askTitle: "",
  8221. askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  8222. checkJson: [{ checkCount: [], checkPerent: [] }],
  8223. homeworkList: [],
  8224. },
  8225. ],
  8226. itemCount: 1,
  8227. fileList1: [],
  8228. video: [],
  8229. testData: [],
  8230. pData: [],
  8231. templateArray: [],
  8232. },
  8233. ],
  8234. });
  8235. }
  8236. let _this = this;
  8237. _this
  8238. .$confirm("确定选择智能粘贴模式吗?", "提示", {
  8239. confirmButtonText: "确定",
  8240. cancelButtonText: "取消",
  8241. type: "warning",
  8242. })
  8243. .then(() => {
  8244. _this.unitIndex = 0;
  8245. _this.unitJson = stage;
  8246. _this.steps++;
  8247. _this.updateWork();
  8248. })
  8249. .catch(() => {
  8250. return;
  8251. });
  8252. },
  8253. addAnswer() {
  8254. if (this.answerQ == "") {
  8255. this.$message.error("请输入您想要问的问题");
  8256. return;
  8257. }
  8258. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8259. this.taskCount
  8260. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  8261. this.dialogVisible8 = false;
  8262. if (
  8263. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8264. .toolChoose[this.toolIndex].tool != 15
  8265. ) {
  8266. this.addTools(15, this.taskCount, this.toolIndex);
  8267. }
  8268. },
  8269. addMp3Answer() {
  8270. if (this.answerQ == "") {
  8271. this.$message.error("请输入您想要回答的问题");
  8272. return;
  8273. }
  8274. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8275. this.taskCount
  8276. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  8277. this.dialogVisibleMp3 = false;
  8278. },
  8279. addRateAnswer() {
  8280. var a = 1;
  8281. for (var i = 0; i < this.rateJson.length; i++) {
  8282. if (this.rateJson[i].value == "") {
  8283. a = 2;
  8284. break;
  8285. }
  8286. }
  8287. if (a == 2) {
  8288. this.$message.error("请把评价信息填写完整");
  8289. return;
  8290. }
  8291. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8292. this.taskCount
  8293. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  8294. this.dialogVisibleRate = false;
  8295. if (
  8296. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8297. .toolChoose[this.toolIndex].tool != 40
  8298. ) {
  8299. this.addTools(40, this.taskCount, this.toolIndex);
  8300. }
  8301. },
  8302. addSelectAnswer() {
  8303. if (this.selectJson.url == "") {
  8304. this.$message.error("请上传题目");
  8305. return;
  8306. }
  8307. if (!this.selectJson.select.length) {
  8308. this.$message.error("请添加选项");
  8309. return;
  8310. }
  8311. if (!this.selectJson.answer.length) {
  8312. this.$message.error("请设置答案");
  8313. return;
  8314. }
  8315. var a = 1;
  8316. for (var i = 0; i < this.selectJson.answer.length; i++) {
  8317. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  8318. a = 2;
  8319. }
  8320. }
  8321. if (a == 2) {
  8322. this.$message.error("请设置答案");
  8323. return;
  8324. }
  8325. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8326. this.taskCount
  8327. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  8328. this.dialogVisibleSelect = false;
  8329. if (
  8330. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8331. .toolChoose[this.toolIndex].tool != 41
  8332. ) {
  8333. this.addTools(41, this.taskCount, this.toolIndex);
  8334. }
  8335. },
  8336. nextSelectSteps() {
  8337. if (this.selectJson.url == "") {
  8338. this.$message.error("请上传题目");
  8339. return;
  8340. }
  8341. if (!this.selectJson.select.length) {
  8342. this.$message.error("请添加选项");
  8343. return;
  8344. } else {
  8345. for (var z = 0; z < this.selectJson.select.length; z++) {
  8346. let checkC = this.selectJson.select[z];
  8347. for (var z2 = z + 1; z2 < this.selectJson.select.length; z2++) {
  8348. let checkC2 = this.selectJson.select[z2];
  8349. if (checkC == checkC2) {
  8350. this.$message.error(`选项${z + 1}和选项${z2 + 1}重复了,请修改!`);
  8351. return;
  8352. }
  8353. }
  8354. }
  8355. }
  8356. var a = 1;
  8357. for (var i = 0; i < this.selectJson.select.length; i++) {
  8358. if (!this.selectJson.select[i]) {
  8359. a = 2;
  8360. }
  8361. }
  8362. if (a == 2) {
  8363. this.$message.error("添加的选项不能为空");
  8364. return;
  8365. }
  8366. this.selectSteps++;
  8367. },
  8368. selectCourseDetail() {
  8369. if (this.cid == "" || this.cid == undefined) {
  8370. console.log("这是新增课程");
  8371. this.selectAllType();
  8372. } else {
  8373. this.cidType = 1;
  8374. let params = {
  8375. cid: this.cid,
  8376. };
  8377. this.ajax
  8378. .get(this.$store.state.api + "select_course_detail", params)
  8379. .then((res) => {
  8380. this.loading = true;
  8381. this.unitJson = JSON.parse(res.data[0][0].chapters);
  8382. for (var j = 0; j < this.unitJson.length; j++) {
  8383. for (
  8384. var k = 0;
  8385. k < this.unitJson[j].chapterInfo[0].taskJson.length;
  8386. k++
  8387. ) {
  8388. this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose = this
  8389. .unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  8390. ? this.unitJson[j].chapterInfo[0].taskJson[k].toolChoose
  8391. : [];
  8392. let _chapterData = [];
  8393. for (
  8394. var c = 0;
  8395. c <
  8396. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData
  8397. .length;
  8398. c++
  8399. ) {
  8400. if (
  8401. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  8402. ) {
  8403. _chapterData.push(
  8404. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData[c]
  8405. );
  8406. }
  8407. }
  8408. this.unitJson[j].chapterInfo[0].taskJson[k].chapterData =
  8409. _chapterData;
  8410. }
  8411. }
  8412. this.$forceUpdate();
  8413. this.courseName = res.data[0][0].title;
  8414. this.courseText = res.data[0][0].brief;
  8415. this.evalua = res.data[0][0].evaId;
  8416. this.cover = JSON.parse(res.data[0][0].cover);
  8417. this.noneBtnImg = this.cover.length >= 1;
  8418. // this.checkboxList =
  8419. // res.data[0][0].course_student.length > 0
  8420. // ? JSON.parse(res.data[0][0].course_student)
  8421. // : [];
  8422. this.checkboxList2 = res.data[0][0].juri
  8423. ? res.data[0][0].juri.split(",")
  8424. : [];
  8425. this.inviteCode = [];
  8426. for (var i = 0; i < res.data[2].length; i++) {
  8427. this.inviteCode.push({
  8428. cid: res.data[2][i].classid,
  8429. ic: res.data[2][i].code,
  8430. });
  8431. }
  8432. this.checkboxList3 = res.data[0][0].course_teacher
  8433. ? res.data[0][0].course_teacher.split(",")
  8434. : [];
  8435. // this.isTeacherSee =
  8436. // res.data[0][0].is_teacher_look == 0 ? true : false;
  8437. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  8438. this.myWord = res.data[0][0].template;
  8439. this.templateC.id = "123";
  8440. this.courseUserid = res.data[0][0].userid;
  8441. // if(this.courseUserid == this.userid){
  8442. // this.InviteChange(this.checkboxList2)
  8443. // }
  8444. this.nbOrder = res.data[0][0].ordernumber;
  8445. this.courseTypeId = [];
  8446. for (var i = 0; i < res.data[1].length; i++) {
  8447. this.courseTypeId.push(res.data[1][i].typeid);
  8448. }
  8449. console.log(this.courseTypeId);
  8450. // if (this.timer) clearInterval(this.timer);
  8451. if (this.timer) clearTimeout(this.timer);
  8452. this.timer = null;
  8453. // this.timer = setInterval(() => {
  8454. // this.seleteCourseUpdate();
  8455. this.setMan();
  8456. this.selectAllType();
  8457. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  8458. // }, 5000);
  8459. this.$forceUpdate();
  8460. setTimeout(() => {
  8461. this.checkEva(this.evalua);
  8462. }, 0);
  8463. })
  8464. .catch((err) => {
  8465. console.error(err);
  8466. });
  8467. }
  8468. },
  8469. seleteCourseUpdate() {
  8470. let params = {
  8471. cid: this.cid,
  8472. };
  8473. this.ajax
  8474. .get(this.$store.state.api + "select_course_detail", params)
  8475. .then((res) => {
  8476. // console.log(this.unitJson);
  8477. let unitJson = JSON.parse(res.data[0][0].chapters);
  8478. this.unitJson2 = JSON.parse(res.data[0][0].chapters);
  8479. let _unitJson2 = JSON.parse(JSON.stringify(this.unitJson));
  8480. let _unitJson = [];
  8481. let _chapAarry = [];
  8482. let _unitIndex = JSON.parse(JSON.stringify(this.unitIndex));
  8483. let _unitIndex2 = JSON.parse(JSON.stringify(this.unitIndex));
  8484. let index = 1;
  8485. let chapindex;
  8486. if (_unitJson2.length > unitJson.length) {
  8487. for (let c = 0; c < _unitJson2.length; c++) {
  8488. _chapAarry.push(_unitJson2[c].chapterInfo[0].chapterid);
  8489. }
  8490. for (let j = 0; j < unitJson.length; j++) {
  8491. let count = 0;
  8492. for (let k = 0; k < _unitJson2.length; k++) {
  8493. if (
  8494. unitJson[j].chapterInfo[0].chapterid ==
  8495. _unitJson2[k].chapterInfo[0].chapterid
  8496. ) {
  8497. count++;
  8498. _chapAarry.splice(
  8499. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  8500. 1
  8501. );
  8502. _unitJson.push(unitJson[j]);
  8503. break;
  8504. }
  8505. }
  8506. // if(count === 0){
  8507. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  8508. // }
  8509. }
  8510. for (let k = 0; k < _unitJson2.length; k++) {
  8511. if (_unitJson2[k].isUpdate == 1) {
  8512. _chapAarry.splice(
  8513. _chapAarry.indexOf(_unitJson2[k].chapterInfo[0].chapterid),
  8514. 1
  8515. );
  8516. _unitJson.push(_unitJson2[k]);
  8517. }
  8518. }
  8519. console.log(_chapAarry);
  8520. for (let d = 0; d < _unitJson2.length; d++) {
  8521. if (
  8522. _chapAarry.indexOf(_unitJson2[d].chapterInfo[0].chapterid) != -1
  8523. ) {
  8524. if (_unitIndex == d) {
  8525. index = 2;
  8526. }
  8527. chapindex = d;
  8528. // this.$message.error("您所修改的阶段已经被其他老师删除了");
  8529. }
  8530. }
  8531. } else {
  8532. _unitJson = JSON.parse(JSON.stringify(_unitJson2));
  8533. }
  8534. for (let i = 0; i < unitJson.length; i++) {
  8535. if (
  8536. (i < _unitJson.length - 1 || i == _unitJson.length - 1) &&
  8537. _unitJson[i].chapterInfo[0].chapterid !=
  8538. unitJson[i].chapterInfo[0].chapterid
  8539. ) {
  8540. if (i == _unitJson.length - 1) {
  8541. // this.unitIndex++
  8542. _unitIndex2++;
  8543. }
  8544. _unitJson.splice(i, 0, unitJson[i]);
  8545. } else if (i > _unitJson.length - 1) {
  8546. _unitJson.push(unitJson[i]);
  8547. } else if (
  8548. _unitJson[i].chapterInfo[0].chapterid ==
  8549. unitJson[i].chapterInfo[0].chapterid
  8550. ) {
  8551. _unitJson[i] = unitJson[i];
  8552. }
  8553. // if (i == _unitIndex) {
  8554. // continue;
  8555. // } else
  8556. }
  8557. if (_chapAarry.length && index != 2) {
  8558. if (chapindex < _unitIndex) {
  8559. this.isDelete = 2;
  8560. // this.unitIndex--;
  8561. _unitIndex2--;
  8562. } else if (
  8563. _unitJson2[_unitIndex].chapterInfo[0].chapterid !=
  8564. _unitJson[_unitIndex].chapterInfo[0].chapterid
  8565. ) {
  8566. this.isDelete = 2;
  8567. for (let n = 0; n < _unitJson.length; n++) {
  8568. if (
  8569. _unitJson2[_unitIndex].chapterInfo[0].chapterid ==
  8570. _unitJson[n].chapterInfo[0].chapterid
  8571. ) {
  8572. // this.unitIndex = n;
  8573. _unitIndex2 = n;
  8574. _unitJson[n] = _unitJson2[_unitIndex];
  8575. break;
  8576. }
  8577. }
  8578. }
  8579. } else if (index != 2) {
  8580. // _unitJson[this.unitIndex] = _unitJson2[_unitIndex];
  8581. _unitJson2[_unitIndex];
  8582. for (
  8583. var ci = 0;
  8584. ci < _unitJson2[_unitIndex].chapterInfo[0].taskJson.length;
  8585. ci++
  8586. ) {
  8587. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose =
  8588. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].toolChoose
  8589. ? _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  8590. .toolChoose
  8591. : [];
  8592. let _chapterData = [];
  8593. for (
  8594. var c = 0;
  8595. c <
  8596. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData
  8597. .length;
  8598. c++
  8599. ) {
  8600. if (
  8601. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  8602. .chapterData[c]
  8603. ) {
  8604. _chapterData.push(
  8605. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci]
  8606. .chapterData[c]
  8607. );
  8608. }
  8609. }
  8610. _unitJson2[_unitIndex].chapterInfo[0].taskJson[ci].chapterData =
  8611. _chapterData;
  8612. }
  8613. _unitJson[_unitIndex2] = _unitJson2[_unitIndex];
  8614. }
  8615. if (index == 1) {
  8616. this.unitJson = _unitJson;
  8617. this.$forceUpdate();
  8618. setTimeout(() => {
  8619. if (this.unitIndex != _unitIndex2) {
  8620. this.isDelete = 2;
  8621. this.unitIndex = _unitIndex2;
  8622. }
  8623. }, 0);
  8624. this.timer = setTimeout(() => {
  8625. this.seleteCourseUpdate();
  8626. }, 1000);
  8627. } else if (index == 2) {
  8628. let _this = this;
  8629. _this
  8630. .$confirm(
  8631. "您所修改的阶段已经被其他老师删除了,需要恢复嘛?",
  8632. "提示",
  8633. {
  8634. confirmButtonText: "需要",
  8635. cancelButtonText: "取消",
  8636. type: "warning",
  8637. }
  8638. )
  8639. .then(() => {
  8640. if (_this.time()) {
  8641. _this.restoreWork(
  8642. _chapAarry[0],
  8643. _unitJson,
  8644. chapindex,
  8645. _unitJson2,
  8646. _unitIndex2
  8647. );
  8648. }
  8649. })
  8650. .catch(() => {
  8651. _this.unitJson = _unitJson;
  8652. _this.$forceUpdate();
  8653. setTimeout(() => {
  8654. if (this.unitIndex != _unitIndex2) {
  8655. this.isDelete = 2;
  8656. this.unitIndex = _unitIndex2;
  8657. }
  8658. }, 0);
  8659. _this.timer = setTimeout(() => {
  8660. _this.seleteCourseUpdate();
  8661. }, 1000);
  8662. });
  8663. }
  8664. })
  8665. .catch((err) => {
  8666. console.error(err);
  8667. });
  8668. },
  8669. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  8670. let params = [
  8671. {
  8672. cid: this.cid,
  8673. chapters: JSON.stringify(this.unitJson),
  8674. uid: this.userid,
  8675. chapid: chapid,
  8676. },
  8677. ];
  8678. this.ajax
  8679. .post(this.$store.state.api + "restoreWork", params)
  8680. .then((res) => {
  8681. this.$message({
  8682. message: "恢复成功",
  8683. type: "success",
  8684. });
  8685. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  8686. this.unitJson = unitJson;
  8687. this.$forceUpdate();
  8688. setTimeout(() => {
  8689. if (this.unitIndex != unitIndex2) {
  8690. this.isDelete = 2;
  8691. this.unitIndex = unitIndex2;
  8692. }
  8693. }, 0);
  8694. this.timer = setTimeout(() => {
  8695. this.seleteCourseUpdate();
  8696. }, 1000);
  8697. })
  8698. .catch((err) => {
  8699. this.$message.error("网络不佳");
  8700. console.error(err);
  8701. });
  8702. },
  8703. getTypeName() {
  8704. console.log(this.courseTypeId);
  8705. this.$forceUpdate();
  8706. },
  8707. selectAllType() {
  8708. let params = {
  8709. org: this.org && this.org != "" ? this.org : "",
  8710. oid: this.oid && this.oid != "" ? this.oid : "",
  8711. };
  8712. this.ajax
  8713. .get(this.$store.state.api + "selectAllType", params)
  8714. .then((res) => {
  8715. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  8716. res.data[0] = [...res.data[0], ...res.data[4]]
  8717. }
  8718. this.CourseType = res.data;
  8719. this.CourseType2 = [
  8720. { name: "智见课程", id: [] },
  8721. { name: "智行课程", id: [] },
  8722. { name: "智创课程", id: [] },
  8723. ];
  8724. for (var cti = 0; cti < res.data[0].length; cti++) {
  8725. if (
  8726. res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" ||
  8727. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5"
  8728. ) {
  8729. this.CourseType2[0].id.push(res.data[0][cti].id);
  8730. } else if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5" ||
  8731. res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  8732. this.CourseType2[1].id.push(res.data[0][cti].id);
  8733. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  8734. this.CourseType2[2].id.push(res.data[0][cti].id);
  8735. }
  8736. if (res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34628934-d02f-11ec-8c78-005056b86ac5") {
  8737. res.data[0][cti].name = "年级";
  8738. } else if (res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86db5" || res.data[0][cti].id == "34629907-d02f-11ec-8c78-005056b86ac5") {
  8739. res.data[0][cti].name = "学科";
  8740. } else if (res.data[0][cti].id == "34629bcc-d02f-11ec-8c78-005056b86db5") {
  8741. res.data[0][cti].name = "主题";
  8742. }
  8743. }
  8744. let _courseTypeId = [];
  8745. for (var i = 0; i < res.data[0].length; i++) {
  8746. if (!this.cid) {
  8747. this.courseTypeId[res.data[0][i].id] = [];
  8748. }
  8749. // if (!this.CourseTypeJson[res.data[0][i].id]) {
  8750. // }
  8751. this.CourseTypeJson[res.data[0][i].id] = [];
  8752. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  8753. if (res.data[0][i].name == "栏目") {
  8754. this.CourseType[0][i].name = "主题";
  8755. }
  8756. }
  8757. if (res.data[2].length == 0 && res.data[3].length == 0) {
  8758. for (var j = 0; j < res.data[1].length; j++) {
  8759. if (
  8760. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  8761. _courseTypeId.indexOf(res.data[1][j].id) == -1
  8762. ) {
  8763. _courseTypeId.push(res.data[1][j].id);
  8764. }
  8765. if (res.data[0][i].id == res.data[1][j].pid) {
  8766. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8767. }
  8768. }
  8769. } else {
  8770. if (res.data[2].length > 0) {
  8771. for (var j = 0; j < res.data[2].length; j++) {
  8772. if (
  8773. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  8774. _courseTypeId.indexOf(res.data[2][j].id) == -1
  8775. ) {
  8776. _courseTypeId.push(res.data[2][j].id);
  8777. }
  8778. if (res.data[0][i].id == res.data[2][j].pid) {
  8779. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  8780. }
  8781. }
  8782. }
  8783. if (res.data[3].length > 0) {
  8784. for (var j = 0; j < res.data[3].length; j++) {
  8785. if (
  8786. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  8787. _courseTypeId.indexOf(res.data[3][j].id) == -1
  8788. ) {
  8789. _courseTypeId.push(res.data[3][j].id);
  8790. }
  8791. if (res.data[0][i].id == res.data[3][j].pid) {
  8792. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  8793. }
  8794. }
  8795. }
  8796. }
  8797. }
  8798. this.courseTypeId = _courseTypeId;
  8799. })
  8800. .catch((err) => {
  8801. console.error(err);
  8802. });
  8803. },
  8804. selectType() {
  8805. this.ajax
  8806. .get(this.$store.state.api + "selectType")
  8807. .then((res) => {
  8808. this.CourseType = res.data;
  8809. for (var i = 0; i < res.data[0].length; i++) {
  8810. if (!this.cid) {
  8811. this.courseTypeId[res.data[0][i].id] = "";
  8812. }
  8813. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  8814. if (res.data[0][i].name == "栏目") {
  8815. this.CourseType[0][i].name = "主题";
  8816. }
  8817. }
  8818. for (var j = 0; j < res.data[1].length; j++) {
  8819. if (res.data[0][i].id == res.data[1][j].pid) {
  8820. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8821. this.CourseTypeJson[res.data[0][i].id] = [];
  8822. }
  8823. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8824. }
  8825. }
  8826. }
  8827. this.selectTypeByOid();
  8828. this.selectTypeByOrg();
  8829. })
  8830. .catch((err) => {
  8831. console.error(err);
  8832. });
  8833. },
  8834. selectTypeByOid() {
  8835. let params = {
  8836. oid: this.oid,
  8837. };
  8838. this.ajax
  8839. .get(this.$store.state.api + "selectTypeByOid", params)
  8840. .then((res) => {
  8841. for (var i = 0; i < res.data[0].length; i++) {
  8842. for (var j = 0; j < res.data[1].length; j++) {
  8843. if (res.data[0][i].id == res.data[1][j].pid) {
  8844. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8845. this.CourseTypeJson[res.data[0][i].id] = [];
  8846. }
  8847. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8848. }
  8849. }
  8850. }
  8851. })
  8852. .catch((err) => {
  8853. console.error(err);
  8854. });
  8855. },
  8856. selectTypeByOrg() {
  8857. let params = {
  8858. oid: this.org,
  8859. };
  8860. this.ajax
  8861. .get(this.$store.state.api + "selectTypeByOrg", params)
  8862. .then((res) => {
  8863. for (var i = 0; i < res.data[0].length; i++) {
  8864. for (var j = 0; j < res.data[1].length; j++) {
  8865. if (res.data[0][i].id == res.data[1][j].pid) {
  8866. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8867. this.CourseTypeJson[res.data[0][i].id] = [];
  8868. }
  8869. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8870. }
  8871. }
  8872. }
  8873. this.$forceUpdate();
  8874. })
  8875. .catch((err) => {
  8876. console.error(err);
  8877. });
  8878. },
  8879. OtherMb(type) {
  8880. this.typeMode = type;
  8881. setTimeout(() => {
  8882. this.checkEva(this.checkId);
  8883. }, 0);
  8884. },
  8885. openMember() {
  8886. this.searchTN = "";
  8887. this.getTeacher();
  8888. this.dialogVisibleMember = true;
  8889. },
  8890. checkEva(id, type) {
  8891. this.dialogVisiblemb = false;
  8892. this.selectEva();
  8893. if (this.evalua != id && type == 2) {
  8894. this.$message.success("导入成功");
  8895. }
  8896. this.evalua = id;
  8897. this.checkId = id;
  8898. if (this.evalua != "") {
  8899. for (var i = 0; i < this.evaJuri.length; i++) {
  8900. if (this.evalua == this.evaJuri[i].id) {
  8901. this.eTitle = this.evaJuri[i].title;
  8902. this.eJson = JSON.parse(this.evaJuri[i].content);
  8903. }
  8904. }
  8905. this.data.data = [];
  8906. this.$forceUpdate();
  8907. setTimeout(() => {
  8908. this.setMindData();
  8909. }, 500);
  8910. }
  8911. },
  8912. deleteEva() {
  8913. let _this = this;
  8914. if (_this.evalua == "") {
  8915. this.$message.warning("内容已经清空了,请勿重复清空");
  8916. return;
  8917. }
  8918. _this
  8919. .$confirm("确定删除此目标吗?", "提示", {
  8920. confirmButtonText: "确定",
  8921. cancelButtonText: "取消",
  8922. type: "warning",
  8923. })
  8924. .then(() => {
  8925. _this.evalua = "";
  8926. _this.checkId = "";
  8927. _this.eTitle = "";
  8928. let _unitJson = _this.unitJson;
  8929. for (var i = 0; i < _unitJson.length; i++) {
  8930. let _task = _unitJson[i].chapterInfo[0].taskJson;
  8931. for (var j = 0; j < _task.length; j++) {
  8932. let _eList = _task[j].eList;
  8933. for (var k = 0; k < _eList.length; k++) {
  8934. delete _eList[k].target;
  8935. }
  8936. }
  8937. }
  8938. _this.$forceUpdate();
  8939. if (_this.cid) {
  8940. _this.updateWork();
  8941. }
  8942. })
  8943. .catch(() => {
  8944. return;
  8945. });
  8946. },
  8947. selectEva() {
  8948. let params = {
  8949. oid: this.oid,
  8950. };
  8951. this.ajax
  8952. .get(this.$store.state.api + "selectAllEvaluation", params)
  8953. .then((res) => {
  8954. this.evaJuri = res.data[0];
  8955. })
  8956. .catch((err) => {
  8957. console.error(err);
  8958. });
  8959. },
  8960. setMindData() {
  8961. let targetArray = [];
  8962. this.data.data = [];
  8963. this.data.data.push({ id: "root", isroot: true, topic: this.eTitle });
  8964. let _eJson = Object.keys(this.eJson);
  8965. let _e = this.eJson;
  8966. for (let i = 0; i < _eJson.length; i++) {
  8967. let element = _e[_eJson[i]];
  8968. this.data.data.push({
  8969. id: element.id,
  8970. parentid: "root",
  8971. topic: element.name,
  8972. });
  8973. // targetArray.push({
  8974. // id: element.id,
  8975. // parentid: "root",
  8976. // name: element.name,
  8977. // });
  8978. targetArray.push({
  8979. value: element.name,
  8980. label: element.name,
  8981. children: [],
  8982. });
  8983. let _eJsonc = Object.keys(element.child);
  8984. let _e2 = element.child;
  8985. for (let j = 0; j < _eJsonc.length; j++) {
  8986. let _ec = _e2[_eJsonc[j]];
  8987. this.data.data.push({
  8988. id: _ec.id,
  8989. parentid: element.id,
  8990. topic: _ec.name,
  8991. });
  8992. // targetArray.push({
  8993. // id: _ec.id,
  8994. // parentid: element.id,
  8995. // name: _ec.name,
  8996. // });
  8997. targetArray[i].children.push({
  8998. value: _ec.name,
  8999. label: _ec.name,
  9000. children: [],
  9001. });
  9002. let _eJsonz = Object.keys(_ec.child);
  9003. let _e3 = _ec.child;
  9004. for (let z = 0; z < _eJsonz.length; z++) {
  9005. let _ez = _e3[_eJsonz[z]];
  9006. this.data.data.push({
  9007. id: _ez.id,
  9008. parentid: _ec.id,
  9009. topic: _ez.name,
  9010. });
  9011. // targetArray.push({
  9012. // id: _ez.id,
  9013. // parentid: _ec.id,
  9014. // name: _ez.name,
  9015. // });
  9016. targetArray[i].children[j].children.push({
  9017. value: _ez.name,
  9018. label: _ez.name,
  9019. });
  9020. }
  9021. }
  9022. }
  9023. this.targetArray = targetArray;
  9024. this.$forceUpdate();
  9025. },
  9026. /*添加评价 */
  9027. addEList(index, tIndex) {
  9028. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  9029. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  9030. value: "",
  9031. detail: "",
  9032. score: 5,
  9033. })
  9034. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  9035. { value: "", detail: "", score: 5 },
  9036. ]);
  9037. this.$forceUpdate();
  9038. },
  9039. forceUpdate() {
  9040. this.$forceUpdate();
  9041. },
  9042. deletEList(index, tIndex, eIndex) {
  9043. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  9044. eIndex,
  9045. 1
  9046. );
  9047. this.$forceUpdate();
  9048. },
  9049. getChoosePic(t) {
  9050. this.chooseType = t;
  9051. this.getAllBanner();
  9052. },
  9053. getAllBanner() {
  9054. this.sysPicVisible = true;
  9055. let params = {
  9056. t: this.chooseType,
  9057. };
  9058. this.ajax
  9059. .get(this.$store.state.api + "selectAllBanner", params)
  9060. .then((res) => {
  9061. this.sysPic = res.data[0];
  9062. })
  9063. .catch((err) => {
  9064. console.error(err);
  9065. });
  9066. },
  9067. // getClass() {
  9068. // let params = {
  9069. // oid: this.oid,
  9070. // };
  9071. // this.ajax
  9072. // .get(this.$store.state.api + "selectClassBySchool", params)
  9073. // .then((res) => {
  9074. // this.classJuri = res.data[0];
  9075. // })
  9076. // .catch((err) => {
  9077. // console.error(err);
  9078. // });
  9079. // },
  9080. deleteSysPic() {
  9081. this.cover = [];
  9082. this.isSysPic = false;
  9083. this.isSysPic2 = false;
  9084. },
  9085. deleteSelectPic() {
  9086. this.selectJson.url = "";
  9087. },
  9088. setEListStar() {
  9089. this.$forceUpdate();
  9090. },
  9091. deletRateList(i) {
  9092. this.rateJson.splice(i, 1);
  9093. },
  9094. addRateList() {
  9095. this.rateJson.push({ detail: "", score: 5, value: "" });
  9096. },
  9097. addSt() {
  9098. this.sentenceList.push({
  9099. sentenceTitle: "",
  9100. addSentence: [],
  9101. rightAnswer: [],
  9102. });
  9103. },
  9104. addSen(i) {
  9105. if (!this.sentenceList[i].sentenceTitle) {
  9106. this.$message.error("请填写卡片内容!");
  9107. return;
  9108. }
  9109. if (this.sentenceList[i].sentenceTitle.length > 10) {
  9110. this.$message.error("卡片内容字数不能超过10位");
  9111. return;
  9112. }
  9113. if (this.sentenceList[i].addSentence.indexOf(this.sentenceList[i].sentenceTitle) !== -1) {
  9114. this.$message.error("不能添加重复的卡片内容!");
  9115. return;
  9116. }
  9117. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  9118. // this.isPushTitleList.push(this.sentenceTitle);
  9119. this.sentenceList[i].sentenceTitle = "";
  9120. },
  9121. setRightAnswer(s, i, j) {
  9122. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  9123. this.sentenceList[i].rightAnswer.push(s);
  9124. }
  9125. },
  9126. returnCard(r, i, j) {
  9127. this.sentenceList[i].rightAnswer.splice(j, 1);
  9128. },
  9129. addSentenceTool() {
  9130. for (var i = 0; i < this.sentenceList.length; i++) {
  9131. if (this.sentenceList[i].rightAnswer.length == 0) {
  9132. this.$message.error(`请将题目${i + 1}设置完整。`);
  9133. return;
  9134. }
  9135. if (
  9136. this.sentenceList[i].addSentence.length !=
  9137. this.sentenceList[i].rightAnswer.length
  9138. ) {
  9139. this.$message.error(`请将题目${i + 1}设置完整。`);
  9140. return;
  9141. }
  9142. }
  9143. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9144. this.taskCount
  9145. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  9146. this.sentenceList = [
  9147. { sentenceTitle: "", addSentence: [], rightAnswer: [] },
  9148. ];
  9149. this.dialogVisibleSentence = false;
  9150. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9151. // itemTaskIndex
  9152. // ].toolChoose[toolIndex].tool = [];
  9153. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9154. // itemTaskIndex
  9155. // ].toolChoose[toolIndex].tool.push(i);
  9156. if (
  9157. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9158. .toolChoose[this.toolIndex].tool != 47
  9159. ) {
  9160. this.addTools(47, this.taskCount, this.toolIndex);
  9161. }
  9162. },
  9163. addTableJson() {
  9164. // if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  9165. // this.$message.error("请将信息填写完整!");
  9166. // return;
  9167. // }
  9168. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9169. this.taskCount
  9170. ].toolChoose[this.toolIndex].tableJson = this.tableJson;
  9171. // this.tableJson = [{ text: "" }];
  9172. // this.dialogVisibleTable = false;
  9173. this.$message.success("上传成功");
  9174. if (
  9175. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9176. .toolChoose[this.toolIndex].tool != 48
  9177. ) {
  9178. this.addTools(48, this.taskCount, this.toolIndex);
  9179. }
  9180. },
  9181. addWordJson() {
  9182. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9183. this.taskCount
  9184. ].toolChoose[this.toolIndex].wordJson = this.wordJson;
  9185. // this.wordJson = [{ text: "" }];
  9186. // this.dialogVisibleWord = false;
  9187. this.$message.success("上传成功");
  9188. if (
  9189. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9190. .toolChoose[this.toolIndex].tool != 52
  9191. ) {
  9192. this.addTools(52, this.taskCount, this.toolIndex);
  9193. }
  9194. },
  9195. addMoreUpload() {
  9196. if (this.uploadJson.length == 0) {
  9197. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9198. this.taskCount
  9199. ].toolChoose[this.toolIndex].uploadJson = [];
  9200. } else {
  9201. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9202. this.taskCount
  9203. ].toolChoose[this.toolIndex].uploadJson = this.uploadJson;
  9204. }
  9205. this.uploadJson = [];
  9206. this.dialogVisibleMoreUpload = false;
  9207. if (
  9208. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9209. .toolChoose[this.toolIndex].tool != 50
  9210. ) {
  9211. this.addTools(50, this.taskCount, this.toolIndex);
  9212. }
  9213. },
  9214. addPreTime() {
  9215. if (this.preTime == 0) {
  9216. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9217. this.taskCount
  9218. ].toolChoose[this.toolIndex].preTime = 0;
  9219. } else {
  9220. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9221. this.taskCount
  9222. ].toolChoose[this.toolIndex].preTime = this.preTime;
  9223. }
  9224. this.preTime = 0;
  9225. this.dialogVisiblePreTime = false;
  9226. if (
  9227. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9228. .toolChoose[this.toolIndex].tool != 10
  9229. ) {
  9230. this.addTools(10, this.taskCount, this.toolIndex);
  9231. }
  9232. },
  9233. goToTask(i) {
  9234. this.toolIndexType = ''
  9235. if (this.isClickColor == (i + 1)) {
  9236. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen) {
  9237. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  9238. } else {
  9239. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  9240. }
  9241. this.$forceUpdate();
  9242. return;
  9243. }
  9244. if (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen) {
  9245. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = false
  9246. } else {
  9247. document.querySelectorAll(".rightBox")[0].scrollTop =
  9248. document.querySelectorAll(".taskBorder")[i + 1].offsetTop +
  9249. document.querySelectorAll(".taskBorder")[i + 1].parentElement.parentElement.offsetTop;
  9250. this.isClickColor = i + 1;
  9251. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolOpen = true
  9252. }
  9253. this.$forceUpdate();
  9254. },
  9255. taskMove(type, index) {
  9256. // this
  9257. // .$confirm("切换任务顺序将删除所有工具的提交成果,是否继续此操作?", "提示", {
  9258. // confirmButtonText: "确定",
  9259. // cancelButtonText: "取消",
  9260. // type: "warning",
  9261. // })
  9262. // .then(() => {
  9263. if (type == 1) {
  9264. if (index > 0) {
  9265. let a = JSON.parse(
  9266. JSON.stringify(
  9267. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1]
  9268. )
  9269. );
  9270. let b = JSON.parse(
  9271. JSON.stringify(
  9272. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index]
  9273. )
  9274. );
  9275. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  9276. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  9277. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  9278. if (index - 1 == 0) {
  9279. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9280. index - 1
  9281. ].chapterData = a.chapterData;
  9282. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9283. index
  9284. ].chapterData = b.chapterData;
  9285. }
  9286. }
  9287. } else {
  9288. if (
  9289. index <
  9290. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  9291. ) {
  9292. let a = JSON.parse(
  9293. JSON.stringify(
  9294. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1]
  9295. )
  9296. );
  9297. let b = JSON.parse(
  9298. JSON.stringify(
  9299. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index]
  9300. )
  9301. );
  9302. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  9303. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  9304. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  9305. if (index == 0) {
  9306. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9307. index + 1
  9308. ].chapterData = a.chapterData;
  9309. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9310. index
  9311. ].chapterData = b.chapterData;
  9312. }
  9313. }
  9314. }
  9315. this.$forceUpdate();
  9316. // })
  9317. // .catch(() => {
  9318. // return;
  9319. // })
  9320. },
  9321. addGroup(i) {
  9322. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  9323. this.groupJson.group.push({
  9324. name: "第" + (this.groupJson.group.length + 1) + "组",
  9325. });
  9326. },
  9327. deleteGroup(i) {
  9328. this.groupJson.group.splice(i, 1);
  9329. },
  9330. numberPan() {
  9331. if (/[^\d]/.test(this.groupJson.number) || this.groupJson.number < 2 || this.groupJson.number > 10) {
  9332. this.$message.error('请输入2-10的数字')
  9333. this.groupJson.number = ''
  9334. }
  9335. },
  9336. addGroupJson() {
  9337. for (var i = 0; i < this.groupJson.group.length; i++) {
  9338. if (!this.groupJson.group[i].name) {
  9339. this.$message.error("请将信息填写完整!");
  9340. return;
  9341. }
  9342. }
  9343. if (!this.groupJson.number) {
  9344. this.$message.error("请将信息填写完整!");
  9345. return;
  9346. }
  9347. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  9348. this.taskCount
  9349. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  9350. JSON.stringify(this.groupJson)
  9351. );
  9352. this.dialogVisibleGroup = false;
  9353. this.groupJson = {};
  9354. if (
  9355. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  9356. .toolChoose[this.toolIndex].tool != 49
  9357. ) {
  9358. this.addTools(49, this.taskCount, this.toolIndex);
  9359. }
  9360. },
  9361. updateTime(preTime) {
  9362. this.preTime = preTime;
  9363. },
  9364. InviteChange(val) {
  9365. console.log(val);
  9366. return;
  9367. let array = JSON.parse(JSON.stringify(val));
  9368. this.inviteCode = this.inviteCode.filter((el) => {
  9369. if (val.indexOf(el.cid) != -1) {
  9370. array.splice(array.indexOf(el.cid), 1);
  9371. return el;
  9372. }
  9373. });
  9374. for (var i = 0; i < array.length; i++) {
  9375. this.getInviteCode(array[i]);
  9376. }
  9377. },
  9378. async getInviteCode(cid) {
  9379. let code = this.randomNumber();
  9380. let params = {
  9381. code: code,
  9382. oid: this.oid,
  9383. };
  9384. let type = 1;
  9385. for (var i = 0; i < this.inviteCode.length; i++) {
  9386. if (this.inviteCode[i].cid != cid && code == this.inviteCode[i].ic) {
  9387. type = 2;
  9388. }
  9389. }
  9390. if (type == 2) {
  9391. this.getInviteCode(cid);
  9392. return;
  9393. }
  9394. const res = await this.ajax.get(
  9395. this.$store.state.api + "selectInviteCode2",
  9396. params
  9397. );
  9398. if (
  9399. res.data.length &&
  9400. res.data[0].length &&
  9401. res.data[0][0].courseId != this.cid
  9402. ) {
  9403. this.getInviteCode(cid);
  9404. return;
  9405. }
  9406. let array = [];
  9407. for (var i = 0; i < this.inviteCode.length; i++) {
  9408. array.push(this.inviteCode[i].cid);
  9409. }
  9410. if (array.indexOf(cid) != -1) {
  9411. this.inviteCode[array.indexOf(cid)].ic = code;
  9412. } else {
  9413. this.inviteCode.push({ cid: cid, ic: code });
  9414. }
  9415. },
  9416. OpenInviteD(cid) {
  9417. let array = [];
  9418. this.icode = "";
  9419. for (var i = 0; i < this.inviteCode.length; i++) {
  9420. array.push(this.inviteCode[i].cid);
  9421. }
  9422. if (array.indexOf(cid) != -1) {
  9423. this.icode = this.inviteCode[array.indexOf(cid)].ic;
  9424. }
  9425. this.inviteId = cid;
  9426. this.dialogVisibleInvite = true;
  9427. },
  9428. addInvite() {
  9429. let reg = /^[A-Za-z0-9]{4,}$/;
  9430. if (!reg.test(this.icode)) {
  9431. this.$message.error("请输入至少四位数字或英文组合的随机码");
  9432. return;
  9433. }
  9434. let type = 1;
  9435. for (var i = 0; i < this.inviteCode.length; i++) {
  9436. if (
  9437. this.inviteCode[i].cid != this.inviteId &&
  9438. this.icode == this.inviteCode[i].ic
  9439. ) {
  9440. type = 2;
  9441. }
  9442. }
  9443. if (type == 2) {
  9444. this.$message.error("已有此随机码,不能重复");
  9445. return;
  9446. }
  9447. let params = {
  9448. code: this.icode,
  9449. oid: this.oid,
  9450. };
  9451. this.ajax
  9452. .get(this.$store.state.api + "selectInviteCode", params)
  9453. .then((res) => {
  9454. if (
  9455. res.data.length &&
  9456. res.data[0].length &&
  9457. res.data[0][0].courseId != this.cid
  9458. ) {
  9459. this.$message.error("已有此随机码,不能重复");
  9460. return;
  9461. }
  9462. let array = [];
  9463. for (var i = 0; i < this.inviteCode.length; i++) {
  9464. array.push(this.inviteCode[i].cid);
  9465. }
  9466. if (array.indexOf(this.inviteId) != -1) {
  9467. this.inviteCode[array.indexOf(this.inviteId)].ic = this.icode;
  9468. } else {
  9469. this.inviteCode.push({ cid: this.inviteId, ic: this.icode });
  9470. }
  9471. this.icode = "";
  9472. this.dialogVisibleInvite = false;
  9473. })
  9474. .catch((err) => {
  9475. console.error(err);
  9476. });
  9477. },
  9478. randomNumber() {
  9479. // 随机生成两位数
  9480. // let num = Math.floor(Math.random() * 900) + 100;
  9481. // 生成 0 到 99 之间的随机整数
  9482. const randomNumber = Math.floor(Math.random() * 100);
  9483. // 如果随机数小于 10,补上前导零
  9484. const num =
  9485. randomNumber < 10 ? "0" + randomNumber : randomNumber.toString();
  9486. // 随机生成两个大写字母
  9487. let letters = "";
  9488. let chars2 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
  9489. for (let i = 0; i < 3; i++) {
  9490. letters += chars2.charAt(Math.floor(Math.random() * chars2.length));
  9491. }
  9492. // 随机生成两位数字和字母的组合
  9493. let mix = "";
  9494. let chars =
  9495. "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  9496. for (let i = 0; i < 3; i++) {
  9497. let char = chars.charAt(Math.floor(Math.random() * chars.length));
  9498. mix += char;
  9499. }
  9500. // 随机选择一种类型
  9501. let type = Math.floor(Math.random() * 3);
  9502. return num;
  9503. // 根据类型输出结果
  9504. switch (type) {
  9505. case 0:
  9506. console.log(num); // 输出两位数
  9507. return num;
  9508. case 1:
  9509. console.log(letters); // 输出两个大写字母
  9510. return letters;
  9511. case 2:
  9512. console.log(mix); // 输出两位数字和字母的组合
  9513. return mix;
  9514. }
  9515. },
  9516. getPaste() {
  9517. let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
  9518. if (!iframe) {
  9519. return;
  9520. }
  9521. let copyData = iframe.contentWindow.copyData;
  9522. // if (copyData && copyData.stageData && copyData.stageData.length) {
  9523. // this.isPasteStage = true
  9524. // }
  9525. if (copyData && copyData.selectData.length) {
  9526. this.isPasteChoice = true
  9527. }
  9528. if (copyData && copyData.tasksData && copyData.tasksData.length) {
  9529. this.isPasteTask = true
  9530. }
  9531. },
  9532. searchImage() {
  9533. var _this = this;
  9534. _this.imageList = []
  9535. if (!_this.searchImageValue) {
  9536. _this.sysPicVisible2 = true
  9537. return
  9538. }
  9539. _this.imageloading = true
  9540. _this.ajax.post('https://gpt.cocorobo.cn/search_image', {
  9541. page: _this.ppage,
  9542. pagesize: 9,
  9543. query: _this.searchImageValue
  9544. }).then(function (response) {
  9545. // console.log(response.data.data);
  9546. var data = response.data.FunctionResponse.result;
  9547. for (var i = 0; i < data.length; i++) {
  9548. _this.imageList.push({ url: data[i].thumbnail })
  9549. }
  9550. _this.imageloading = false
  9551. }).catch(function (error) {
  9552. console.log(error);
  9553. });
  9554. _this.sysPicVisible2 = true
  9555. },
  9556. changePicture() {
  9557. this.ppage++
  9558. this.searchImage()
  9559. },
  9560. resetImage() {
  9561. this.ppage = 1
  9562. this.searchImage()
  9563. },
  9564. jumpGj(i, j) {
  9565. if ((i + 1) != this.isClickColor) {
  9566. this.isClickColor = (i + 1)
  9567. }
  9568. var a = document.scrollingElement;
  9569. this.toolIndexType = `gj${i}${j}`
  9570. let target = document.querySelector(`#gj${i}${j}`);
  9571. if (target) {
  9572. target.scrollIntoView(true);
  9573. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].toolChoose[j].isFold3 = true
  9574. // setTimeout(() => {
  9575. // this.$refs.rightboxR.scrollTop = this.$refs.rightboxR.scrollTop - 100;
  9576. // }, 0);
  9577. }
  9578. },
  9579. dragStart(val, i, j) {
  9580. this.taskCount = j
  9581. this.oldIndex = i;
  9582. this.oldData = val;
  9583. },
  9584. dragOver(i) {
  9585. this.newIndex = i;
  9586. },
  9587. dragEnd() {
  9588. let newItems = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData];
  9589. // 删除老的节点
  9590. newItems.splice(this.oldIndex, 1);
  9591. // 在列表中目标位置增加新的节点
  9592. newItems.splice(this.newIndex, 0, this.oldData);
  9593. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].chapterData = [...newItems];
  9594. this.newIndex = "";
  9595. this.$forceUpdate()
  9596. },
  9597. dragTaskStart(val, i) {
  9598. this.oldIndex = i;
  9599. this.oldData = val;
  9600. },
  9601. dragTaskOver(i) {
  9602. this.newIndex = i;
  9603. },
  9604. dragTaskEnd() {
  9605. if(this.newIndex == this.oldIndex){
  9606. return;
  9607. }
  9608. this.$confirm(
  9609. "切换任务顺序将删除所有工具的提交成果,是否继续此操作?",
  9610. "提示",
  9611. {
  9612. confirmButtonText: "确定",
  9613. cancelButtonText: "取消",
  9614. type: "warning",
  9615. }
  9616. )
  9617. .then(() => {
  9618. let newItems = [...this.unitJson[this.unitIndex].chapterInfo[0].taskJson];
  9619. let chapterData = []
  9620. if(this.oldIndex == 0){
  9621. chapterData = newItems[this.oldIndex].chapterData
  9622. newItems[this.oldIndex].chapterData = []
  9623. }
  9624. // 删除老的节点
  9625. newItems.splice(this.oldIndex, 1);
  9626. // 在列表中目标位置增加新的节点
  9627. newItems.splice(this.newIndex, 0, this.oldData);
  9628. if(this.oldIndex == 0){
  9629. newItems[0].chapterData = chapterData
  9630. }
  9631. this.unitJson[this.unitIndex].chapterInfo[0].taskJson = [...newItems];
  9632. this.newIndex = "";
  9633. this.$forceUpdate()
  9634. })
  9635. .catch(() => {
  9636. this.newIndex = "";
  9637. return;
  9638. });
  9639. },
  9640. },
  9641. beforeDestroy() {
  9642. clearTimeout(this.timer);
  9643. this.timer = null;
  9644. clearInterval(this.timer2);
  9645. this.timer2 = null;
  9646. clearInterval(this.pasteTimer);
  9647. this.pasteTimer = null;
  9648. },
  9649. beforeRouteLeave(to, from, next) {
  9650. clearTimeout(this.timer);
  9651. this.timer = null;
  9652. clearInterval(this.timer2);
  9653. this.timer2 = null;
  9654. clearInterval(this.pasteTimer);
  9655. this.pasteTimer = null;
  9656. next();
  9657. },
  9658. created() {
  9659. this.getStudent();
  9660. this.getTeacher();
  9661. this.getClass();
  9662. this.selectGrage();
  9663. this.getTemplate();
  9664. // this.selectType();
  9665. this.selectEva();
  9666. this.loading = false;
  9667. this.timer2 = setInterval(() => {
  9668. this.selectEva();
  9669. }, 5000);
  9670. this.pasteTimer = setInterval(() => {
  9671. this.getPaste();
  9672. }, 1000);
  9673. setTimeout(() => {
  9674. this.selectCourseDetail();
  9675. }, 500);
  9676. },
  9677. mounted() {
  9678. this.$nextTick(() => {
  9679. //监听这个dom的scroll事件
  9680. $(".rightBox")[0].addEventListener("scroll", this.scrollChange);
  9681. this.heightPx = $(".rightBox")[0].offsetHeight + 'px'
  9682. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[0].toolOpen = true
  9683. this.$forceUpdate();
  9684. });
  9685. },
  9686. };
  9687. </script>
  9688. <style scoped>
  9689. @media screen and (max-width: 1280px) {
  9690. .mbCss {
  9691. flex-direction: column !important;
  9692. }
  9693. .pjCss {
  9694. width: 100% !important;
  9695. }
  9696. .evaCss {
  9697. width: 100% !important;
  9698. }
  9699. }
  9700. .dialog_diy>>>.el-dialog__header {
  9701. background: #3c3c3c !important;
  9702. padding: 15px 20px;
  9703. }
  9704. .dialog_diy>>>.el-dialog__title {
  9705. color: #fff;
  9706. }
  9707. .dialog_diy>>>.el-dialog__headerbtn {
  9708. top: 19px;
  9709. }
  9710. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  9711. color: #fff;
  9712. }
  9713. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  9714. color: #fff;
  9715. }
  9716. .dialog_diy>>>.el-dialog__body,
  9717. .dialog_diy>>>.el-dialog__footer {
  9718. background: #fafafa;
  9719. }
  9720. .dialog_diy3>>>.el-dialog__body,
  9721. .dialog_diy3>>>.el-dialog__footer {
  9722. background: #eee !important;
  9723. }
  9724. .dialog_diy3>>>.el-dialog__body {
  9725. padding: 20px 20px;
  9726. }
  9727. .source_diy>>>.el-dialog {
  9728. height: 100% !important;
  9729. margin: 0 auto !important;
  9730. }
  9731. .source_diy>>>.el-dialog__body {
  9732. height: calc(100% - 185px);
  9733. overflow: auto;
  9734. background: #e6eaf0;
  9735. }
  9736. .source_diy>>>.el-dialog__footer {
  9737. background: #e6eaf0 !important;
  9738. }
  9739. .left {
  9740. border-right: 1px solid rgb(60, 94, 143);
  9741. display: flex;
  9742. flex-direction: column;
  9743. align-items: center;
  9744. min-height: 600px;
  9745. width: 385px;
  9746. height: 80%;
  9747. }
  9748. .tips {
  9749. color: rgb(128, 128, 128);
  9750. font-size: 12px;
  9751. width: 270px;
  9752. margin: 40px;
  9753. }
  9754. .pb_content {
  9755. height: 100% !important;
  9756. /* margin: 0 20px 0 20px; */
  9757. }
  9758. .pb_content_body {
  9759. width: 100% !important;
  9760. height: 100%;
  9761. }
  9762. .info_solid {
  9763. width: 270px;
  9764. height: 30px;
  9765. border-left: 1px solid #bdbdbd;
  9766. margin: 10px 0px 10px 30px;
  9767. }
  9768. .info_steps {
  9769. width: 270px;
  9770. font-size: 0.875rem;
  9771. display: flex;
  9772. align-items: center;
  9773. }
  9774. .info_steps span:nth-child(1) {
  9775. width: 30px;
  9776. height: 30px;
  9777. background: rgba(0, 0, 0, 0.38);
  9778. display: block;
  9779. color: #fff;
  9780. border-radius: 40px;
  9781. text-align: center;
  9782. line-height: 30px;
  9783. }
  9784. .steps_active {
  9785. background: #3d67bc !important;
  9786. }
  9787. .info_steps span:nth-child(2) {
  9788. margin-left: 5px;
  9789. }
  9790. .right {
  9791. height: 100%;
  9792. width: calc(100% - 40px);
  9793. display: flex;
  9794. overflow: hidden;
  9795. margin: 0 auto;
  9796. }
  9797. .basic_box {
  9798. margin: 0 auto;
  9799. position: relative;
  9800. padding: 0 20px 0 20px;
  9801. }
  9802. .basic_box2 {
  9803. position: relative;
  9804. width: calc(100% - 300px);
  9805. }
  9806. .basic_box_success {
  9807. width: 100%;
  9808. height: 100%;
  9809. padding: 50px 0;
  9810. position: relative;
  9811. text-align: center;
  9812. /* border-bottom: 1px solid #bfbfbf; */
  9813. box-sizing: border-box;
  9814. display: flex;
  9815. align-items: center;
  9816. flex-direction: column;
  9817. justify-content: center;
  9818. }
  9819. .info_title {
  9820. font-size: 1.5em;
  9821. margin-right: 25px;
  9822. /* margin: 20px 30px 20px 30px; */
  9823. }
  9824. .bInfo_title {
  9825. text-align: left;
  9826. margin: 10px 0;
  9827. }
  9828. .small_title {
  9829. font-size: 14px;
  9830. line-height: 40px;
  9831. }
  9832. .chapter_beizhu {
  9833. font-size: 12px;
  9834. font-weight: bold;
  9835. float: right;
  9836. color: rgb(128, 128, 128);
  9837. margin-top: 5px;
  9838. }
  9839. .chapter_uploadBox1 {
  9840. text-align: left;
  9841. background-color: rgb(242, 242, 242);
  9842. width: 100%;
  9843. height: 67px;
  9844. padding: 0px 15px;
  9845. border-radius: 8px;
  9846. overflow: hidden;
  9847. font-size: 16px;
  9848. box-sizing: border-box;
  9849. position: relative;
  9850. }
  9851. .chapter_add {
  9852. width: 100%;
  9853. height: 32px;
  9854. margin-top: 15px;
  9855. cursor: pointer;
  9856. }
  9857. .chapter_add_l {
  9858. margin-left: 5px;
  9859. width: 30px;
  9860. height: 30px;
  9861. float: left;
  9862. border: 1px solid #aaa;
  9863. color: #aaa;
  9864. border-radius: 50%;
  9865. font-size: 25px;
  9866. text-align: center;
  9867. }
  9868. .chapter_add_r {
  9869. font-size: 18px;
  9870. height: 40px;
  9871. line-height: 30px;
  9872. text-indent: 10px;
  9873. color: #aaa;
  9874. }
  9875. .chapter_add_r span {
  9876. font-size: 12px;
  9877. color: rgb(204, 204, 204);
  9878. }
  9879. .chapter_add_input {
  9880. display: none;
  9881. }
  9882. .line {
  9883. width: 85%;
  9884. margin: 0 auto;
  9885. border-top: 1px solid #e5e5e5;
  9886. margin-top: 20px;
  9887. }
  9888. .info_btnBox {
  9889. width: calc(100%);
  9890. display: flex;
  9891. justify-content: center;
  9892. height: 70px;
  9893. align-items: center;
  9894. background: #fff;
  9895. margin: 0 auto;
  9896. border-top: 2px solid rgb(228, 232, 237);
  9897. box-sizing: border-box;
  9898. border-radius: 0px 0 5px 5px;
  9899. }
  9900. .info_btnBox2 {
  9901. width: calc(100%);
  9902. display: flex;
  9903. justify-content: center;
  9904. height: 20px;
  9905. align-items: center;
  9906. background: #fff;
  9907. margin: 0 auto;
  9908. border-top: 2px solid rgb(228, 232, 237);
  9909. box-sizing: border-box;
  9910. overflow: hidden;
  9911. cursor: pointer;
  9912. }
  9913. .info_btnBox3 {
  9914. width: calc(100%);
  9915. display: flex;
  9916. justify-content: flex-end;
  9917. padding: 0 20px;
  9918. height: 60px;
  9919. align-items: center;
  9920. background: unset;
  9921. margin: 0 auto;
  9922. /* border-top: 1px solid rgb(228, 232, 237); */
  9923. box-sizing: border-box;
  9924. overflow: hidden;
  9925. cursor: pointer;
  9926. background: #fff;
  9927. border-radius: 10px;
  9928. }
  9929. .info_btn+.info_btn {
  9930. margin-left: 15px;
  9931. }
  9932. .info_btn,
  9933. .teacherWord {
  9934. color: #fff;
  9935. background-color: #0f7eff;
  9936. padding: 8px 24px;
  9937. font-size: 0.9375rem;
  9938. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  9939. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  9940. min-width: 64px;
  9941. font-weight: 500;
  9942. border-radius: 4px;
  9943. box-sizing: border-box;
  9944. border: none;
  9945. cursor: pointer;
  9946. }
  9947. .teacherWord {
  9948. width: 105px !important;
  9949. text-align: center !important;
  9950. line-height: 36px !important;
  9951. padding: 0 !important;
  9952. font-size: 14px !important;
  9953. margin: 10px 0 !important;
  9954. }
  9955. .wordTeacher {
  9956. display: flex;
  9957. flex-direction: column;
  9958. width: 20%;
  9959. text-align: center;
  9960. font-size: 14px;
  9961. margin: 30px 30px 0 10px;
  9962. background: #fff;
  9963. position: relative;
  9964. border-radius: 5px;
  9965. padding: 25px 0px;
  9966. }
  9967. .wordPic {
  9968. margin: 0 auto;
  9969. width: 60px;
  9970. height: 60px;
  9971. cursor: pointer;
  9972. }
  9973. .deleteWord {
  9974. width: 22px;
  9975. height: 22px;
  9976. position: absolute;
  9977. right: 5px;
  9978. top: -15px;
  9979. cursor: pointer;
  9980. display: none;
  9981. z-index: 999;
  9982. }
  9983. .wordPic>img,
  9984. .deleteWord>img,
  9985. .addToolImg>img {
  9986. width: 100%;
  9987. height: 100%;
  9988. }
  9989. .info_btn:hover {
  9990. background-color: #4f7cd5 !important;
  9991. }
  9992. .cru_selectBox {
  9993. display: flex;
  9994. margin: 24px 0 10px;
  9995. flex-wrap: nowrap;
  9996. white-space: nowrap;
  9997. overflow: auto;
  9998. position: relative;
  9999. height: 47px;
  10000. }
  10001. .cru_selectBox::-webkit-scrollbar {
  10002. /*滚动条整体样式*/
  10003. width: 6px;
  10004. /*高宽分别对应横竖滚动条的尺寸*/
  10005. height: 6px;
  10006. }
  10007. /*定义滚动条轨道 内阴影+圆角*/
  10008. .cru_selectBox::-webkit-scrollbar-track {
  10009. border-radius: 10px;
  10010. background-color: #eee;
  10011. }
  10012. /*定义滑块 内阴影+圆角*/
  10013. .cru_selectBox::-webkit-scrollbar-thumb {
  10014. border-radius: 10px;
  10015. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  10016. background-color: rgba(0, 0, 0, 0.1);
  10017. }
  10018. .cru_line {
  10019. position: absolute;
  10020. bottom: 0px;
  10021. transition: all 0.5s;
  10022. left: 0px;
  10023. width: 125px;
  10024. margin-left: -25px;
  10025. }
  10026. .cru_select {
  10027. font-size: 21px;
  10028. margin-right: 37px;
  10029. margin-left: 5px;
  10030. cursor: pointer;
  10031. color: #a6a6a6;
  10032. }
  10033. .cru_selected {
  10034. color: #0b7fc2 !important;
  10035. }
  10036. .chapter_contentbox {
  10037. display: flex;
  10038. align-items: center;
  10039. margin-top: 15px;
  10040. }
  10041. .chapter_contentbox .cc_title {
  10042. margin: 0px;
  10043. color: black;
  10044. display: block;
  10045. white-space: nowrap;
  10046. overflow: hidden;
  10047. text-overflow: ellipsis;
  10048. margin-right: 20px;
  10049. font-size: 18px;
  10050. height: 20px;
  10051. line-height: 22px;
  10052. min-width: fit-content;
  10053. display: flex;
  10054. }
  10055. .chapter_contentbox .cc_title::before {
  10056. content: '';
  10057. height: 100%;
  10058. width: 3px;
  10059. background: #3681FC;
  10060. border-radius: 3px;
  10061. opacity: 1;
  10062. display: block;
  10063. margin-right: 10px;
  10064. }
  10065. .chapter_contentbox .cc_input {
  10066. width: 100%;
  10067. display: flex;
  10068. }
  10069. .show_taskD {
  10070. min-width: fit-content;
  10071. margin-left: 10px;
  10072. display: flex;
  10073. align-items: center;
  10074. font-size: 14px;
  10075. cursor: pointer;
  10076. color: #717C8D;
  10077. }
  10078. .show_taskD>img {
  10079. width: 15px;
  10080. margin-right: 5px;
  10081. transition: .2s all;
  10082. transform: rotate(-90deg);
  10083. }
  10084. .show_taskD.show>img {
  10085. transform: rotate(0deg);
  10086. }
  10087. .show_toolD {
  10088. min-width: fit-content;
  10089. margin-left: 10px;
  10090. display: flex;
  10091. align-items: center;
  10092. font-size: 14px;
  10093. cursor: pointer;
  10094. color: #717C8D;
  10095. position: absolute;
  10096. right: 45px;
  10097. top: 5px;
  10098. }
  10099. .show_toolD>img {
  10100. width: 15px;
  10101. margin-right: 5px;
  10102. transition: .2s all;
  10103. transform: rotate(-90deg);
  10104. }
  10105. .show_toolD.show>img {
  10106. transform: rotate(0deg);
  10107. }
  10108. .remove {
  10109. background-image: url("../../../assets/icon/new/delete_u.png");
  10110. cursor: pointer;
  10111. opacity: 0.5;
  10112. width: 30px;
  10113. min-width: 30px;
  10114. height: 30px;
  10115. background-size: 100% 100%;
  10116. background-repeat: no-repeat;
  10117. margin-left: 10px;
  10118. }
  10119. .remove1 {
  10120. background-image: url("../../../assets/remove1.png");
  10121. background-repeat: no-repeat;
  10122. background-position: 5px 10px;
  10123. width: 40px;
  10124. height: 50px;
  10125. cursor: pointer;
  10126. margin-left: 10px;
  10127. }
  10128. .binfo_input {
  10129. width: 100%;
  10130. margin: 0;
  10131. padding: 12px 14px;
  10132. display: block;
  10133. min-width: 0;
  10134. outline: none;
  10135. box-sizing: border-box;
  10136. background: none;
  10137. border: none;
  10138. border-radius: 4px;
  10139. background: #fff;
  10140. font-size: 16px;
  10141. resize: none;
  10142. font-family: 'Microsoft YaHei';
  10143. min-height: 48px;
  10144. border: 1.5px solid #CAD1DC;
  10145. }
  10146. .binfo_textarea {
  10147. border: 1.5px solid #CAD1DC;
  10148. font-size: 16px;
  10149. resize: none;
  10150. background: #f6f6f6;
  10151. font-family: 'Microsoft YaHei';
  10152. }
  10153. .binfo_input:focus-visible {
  10154. border: 1.5px solid #3681FC !important;
  10155. }
  10156. .time {
  10157. display: flex;
  10158. margin: 35px 0 80px 0;
  10159. }
  10160. .chapter_btnbox {
  10161. width: 160px;
  10162. border-radius: 5px;
  10163. border: 2px dashed gray;
  10164. display: flex;
  10165. padding: 8px 50px;
  10166. align-items: center;
  10167. justify-content: center;
  10168. margin: 30px auto 0;
  10169. cursor: pointer;
  10170. }
  10171. .icon_add {
  10172. position: relative;
  10173. width: 24px;
  10174. padding-top: 20px;
  10175. border-radius: 100%;
  10176. border-width: 2px;
  10177. border-style: solid;
  10178. border-color: gray;
  10179. }
  10180. .icon_add i:nth-child(1) {
  10181. position: absolute;
  10182. left: 50%;
  10183. top: 50%;
  10184. height: 60%;
  10185. transform: translate(-50%, -50%);
  10186. border-width: 1px;
  10187. border-style: solid;
  10188. border-color: inherit;
  10189. }
  10190. .icon_add i:nth-child(2) {
  10191. position: absolute;
  10192. top: 50%;
  10193. left: 50%;
  10194. width: 60%;
  10195. transform: translate(-50%, -50%);
  10196. border-width: 1px;
  10197. border-style: solid;
  10198. border-color: inherit;
  10199. }
  10200. .chapter_btn_w {
  10201. font-size: 0.9375rem;
  10202. font-weight: bold;
  10203. color: gray;
  10204. margin-left: 20px;
  10205. }
  10206. .disUoloadSty>>>.el-icon-plus {
  10207. display: none !important;
  10208. /* 上传按钮隐藏 */
  10209. }
  10210. .imgLeft {
  10211. margin: 15px 0;
  10212. }
  10213. .add_info_box {
  10214. margin: 0 0 0 auto;
  10215. display: flex;
  10216. flex-wrap: wrap;
  10217. }
  10218. .add_info_box button {
  10219. margin: 0 5px 10px 0;
  10220. }
  10221. .add_info_box2 {
  10222. display: flex;
  10223. align-items: center;
  10224. flex-wrap: wrap;
  10225. }
  10226. .add_info_box2::after {
  10227. content: "提示:支持上传10M以内的PPT和Word文件、5M以内的Excel文件, PDF文件不限制大小。";
  10228. color: red;
  10229. font-size: 14px;
  10230. margin-bottom: 10px;
  10231. }
  10232. .add_chapters_box {
  10233. text-align: left;
  10234. background-color: #fff;
  10235. width: 100%;
  10236. border-radius: 4px;
  10237. font-size: 16px;
  10238. box-sizing: border-box;
  10239. position: relative;
  10240. padding: 0 15px;
  10241. height: auto;
  10242. overflow-y: auto;
  10243. overflow-x: hidden;
  10244. border: 1px solid #CAD1DC;
  10245. }
  10246. .add_chapters_box.add_c_none {
  10247. display: flex;
  10248. justify-content: center;
  10249. align-items: center;
  10250. padding: 15px;
  10251. }
  10252. .add_c_none>img {
  10253. width: 25px;
  10254. }
  10255. .add_chapters_box.add_c_none>span {
  10256. font-size: 14px;
  10257. font-weight: 400;
  10258. margin: 0 0 5px 5px;
  10259. }
  10260. .homework_box {
  10261. display: flex;
  10262. align-items: flex-start;
  10263. flex-wrap: wrap;
  10264. margin: 15px 0 0 0;
  10265. flex-direction: column;
  10266. align-content: flex-start;
  10267. }
  10268. .course_homework {
  10269. display: flex;
  10270. justify-content: center;
  10271. flex-direction: row;
  10272. align-items: center;
  10273. margin: 0 10px 0 0;
  10274. }
  10275. .course_homework>>>.el-input__inner {
  10276. width: 140px;
  10277. margin-left: 15px;
  10278. }
  10279. .chapter_upload_move {
  10280. position: relative;
  10281. background-color: #fff;
  10282. position: absolute;
  10283. width: 100%;
  10284. top: 0px;
  10285. left: 0px;
  10286. border: 1px solid #eee;
  10287. border-radius: 5px;
  10288. transition: width 2s;
  10289. -moz-transition: width 2s;
  10290. -webkit-transition: width 2s;
  10291. -o-transition: width 2s;
  10292. }
  10293. .chapter_upload_l_i {
  10294. background-image: url("../../../assets/icon.png");
  10295. background-position: 3px -165px;
  10296. width: 30px;
  10297. height: 30px;
  10298. margin: 10px auto 0 auto;
  10299. }
  10300. .course_input_box {
  10301. display: flex;
  10302. margin-right: 20px;
  10303. width: 100%;
  10304. align-items: center;
  10305. position: relative;
  10306. }
  10307. .course_input_box>.binfo_input {
  10308. width: calc(100% - 0 - 200px - 20px);
  10309. margin: 0 10px;
  10310. }
  10311. .bb_courseIcon {
  10312. width: 57px;
  10313. height: 45px;
  10314. background: #F0F4FA;
  10315. border-radius: 5px 0px 0px 5px;
  10316. display: flex;
  10317. align-items: center;
  10318. justify-content: center;
  10319. border-right: 1.5px solid rgb(202, 209, 220);
  10320. box-sizing: border-box;
  10321. position: absolute;
  10322. left: 1.5px
  10323. }
  10324. .bb_courseIcon>img {
  10325. width: 25px;
  10326. height: auto
  10327. }
  10328. .big_box {
  10329. /* margin-top: 20px; */
  10330. display: flex;
  10331. justify-content: space-between;
  10332. /* border-bottom: 1px solid #E0E2ED; */
  10333. }
  10334. .left_first {
  10335. display: flex;
  10336. flex-direction: column;
  10337. flex-wrap: nowrap;
  10338. width: calc(100% - 310px);
  10339. padding: 20px;
  10340. box-sizing: border-box;
  10341. background: #fff;
  10342. border-radius: 5px;
  10343. }
  10344. .right_first {
  10345. width: 300px;
  10346. display: flex;
  10347. align-items: center;
  10348. justify-content: center;
  10349. /* border-left: 1px solid #E0E2ED; */
  10350. box-sizing: border-box;
  10351. padding: 20px;
  10352. flex-direction: column;
  10353. background: #fff;
  10354. border-radius: 5px;
  10355. }
  10356. .ai_box {
  10357. width: 204px;
  10358. display: flex;
  10359. justify-content: flex-end;
  10360. margin-bottom: 15px;
  10361. }
  10362. .ai_content {
  10363. display: flex;
  10364. align-items: center;
  10365. font-size: 14px;
  10366. padding: 7px 20px;
  10367. box-sizing: border-box;
  10368. box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.16);
  10369. border-radius: 12px;
  10370. font-weight: 700;
  10371. cursor: pointer;
  10372. }
  10373. .ai_content>img {
  10374. width: 40px;
  10375. margin-right: 5px;
  10376. }
  10377. .c_info_title {
  10378. padding: 15px 0 15px 0;
  10379. font-size: 16px;
  10380. font-weight: bold;
  10381. margin: 0 0 0 20px;
  10382. box-sizing: border-box;
  10383. display: flex;
  10384. align-items: center;
  10385. line-height: 20px;
  10386. }
  10387. .c_info_title::before {
  10388. content: '';
  10389. display: block;
  10390. width: 3px;
  10391. height: 20px;
  10392. background: #0061FF;
  10393. border-radius: 3px;
  10394. margin: 0 5px 0 0;
  10395. }
  10396. .right_title {
  10397. /* height: 30px; */
  10398. padding: 0 20px;
  10399. font-size: 18px;
  10400. font-weight: bold;
  10401. /* color: #0f7eff; */
  10402. margin: 20px auto 0;
  10403. display: flex;
  10404. /* justify-content: space-between; */
  10405. align-items: center;
  10406. }
  10407. .people {
  10408. border: 1px solid rgb(229 229 229);
  10409. height: 495px;
  10410. border-radius: 5px;
  10411. width: 100%;
  10412. overflow: auto;
  10413. }
  10414. .people_top {
  10415. display: flex;
  10416. width: 100%;
  10417. /* justify-content: space-between; */
  10418. /* align-items: center; */
  10419. flex-direction: column;
  10420. padding: 10px 10px 0;
  10421. box-sizing: border-box;
  10422. }
  10423. .people_nav,
  10424. .people_top_right {
  10425. /* padding: 20px 0 0 20px; */
  10426. }
  10427. .people_top_right {
  10428. height: 40px;
  10429. margin-bottom: 10px;
  10430. }
  10431. .people_search {
  10432. display: flex;
  10433. position: relative;
  10434. }
  10435. .people_search>>>.el-input__inner {
  10436. /* height: 25px; */
  10437. width: 95%;
  10438. }
  10439. .search_img {
  10440. width: 20px;
  10441. height: 20px;
  10442. position: absolute;
  10443. right: 30px;
  10444. top: 50%;
  10445. transform: translateY(-50%);
  10446. }
  10447. .search_img>img {
  10448. width: 100%;
  10449. height: 100%;
  10450. }
  10451. .people_name {
  10452. display: flex;
  10453. justify-content: flex-start;
  10454. padding: 20px 10px;
  10455. flex-direction: column;
  10456. flex-wrap: wrap;
  10457. }
  10458. .p_box {
  10459. position: relative;
  10460. }
  10461. .people_name>>>.el-checkbox {
  10462. width: 100%;
  10463. display: flex;
  10464. align-items: center;
  10465. margin-bottom: 10px;
  10466. }
  10467. .people_name>>>.el-checkbox__label {
  10468. text-overflow: ellipsis;
  10469. overflow: hidden;
  10470. width: calc(100%);
  10471. }
  10472. .people_name2>>>.el-checkbox__label {
  10473. width: calc(100% - 130px);
  10474. }
  10475. .inviteCode {
  10476. position: absolute;
  10477. right: 30px;
  10478. color: #237ade;
  10479. top: 0;
  10480. cursor: pointer;
  10481. font-size: 13px;
  10482. }
  10483. .noneInvite {
  10484. color: #a8a8a8;
  10485. }
  10486. .inviteImg {
  10487. position: absolute;
  10488. right: 5px;
  10489. top: 0;
  10490. width: 20px;
  10491. }
  10492. .right_img {
  10493. width: 150px;
  10494. height: 150px;
  10495. margin: 20px auto;
  10496. }
  10497. .right_img>img {
  10498. width: 100%;
  10499. height: 100%;
  10500. }
  10501. .number {
  10502. margin-top: 20px;
  10503. color: #4aa6ff;
  10504. text-decoration: underline;
  10505. }
  10506. .success_button {
  10507. display: flex;
  10508. text-align: center;
  10509. margin: 5% 0 auto;
  10510. flex-direction: row;
  10511. justify-content: center;
  10512. }
  10513. .look_course {
  10514. margin-right: 40px;
  10515. background: #3d67bc;
  10516. width: 200px;
  10517. height: 35px;
  10518. line-height: 35px;
  10519. color: #fff;
  10520. text-align: center;
  10521. font-size: 14px;
  10522. border-radius: 5px;
  10523. cursor: pointer;
  10524. }
  10525. .attend_others {
  10526. width: 250px;
  10527. background: #4fb13c;
  10528. height: 35px;
  10529. line-height: 35px;
  10530. color: #fff;
  10531. text-align: center;
  10532. font-size: 14px;
  10533. border-radius: 5px;
  10534. cursor: pointer;
  10535. }
  10536. .dialog_diy2>>>.el-dialog__body {
  10537. text-align: center;
  10538. }
  10539. .write_togother {
  10540. position: absolute;
  10541. right: 45px;
  10542. display: flex;
  10543. top: 5%;
  10544. }
  10545. .write_people {
  10546. font-size: 14px;
  10547. line-height: 50px;
  10548. padding-right: 10px;
  10549. }
  10550. .end_write {
  10551. background: #3d67bc;
  10552. color: #fff;
  10553. width: 100px;
  10554. height: 35px;
  10555. line-height: 35px;
  10556. text-align: center;
  10557. font-size: 14px;
  10558. border-radius: 5px;
  10559. cursor: pointer;
  10560. }
  10561. .chapter_upload+.chapter_upload {
  10562. /* margin-top: 15px; */
  10563. border-top: 1px solid #E7EBF1;
  10564. }
  10565. .chapter_upload {
  10566. height: 45px;
  10567. position: relative;
  10568. display: flex;
  10569. align-items: center;
  10570. width: 100%;
  10571. min-height: 45px;
  10572. /* box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16); */
  10573. /* border-radius: 4px; */
  10574. /* overflow: hidden; */
  10575. box-sizing: border-box;
  10576. }
  10577. .chapter_upload_drag {
  10578. position: absolute;
  10579. cursor: pointer;
  10580. width: 16px;
  10581. height: 16px;
  10582. left: -9px;
  10583. background-image: url("../../../assets/icon/new/icon_course_drag.png");
  10584. background-size: 100% 100%;
  10585. z-index: 10;
  10586. }
  10587. .chapter_upload_t {
  10588. background-color: #fff;
  10589. position: absolute;
  10590. height: 100%;
  10591. top: 0px;
  10592. left: 0px;
  10593. box-sizing: border-box;
  10594. }
  10595. .chapter_upload_o {
  10596. width: 100%;
  10597. height: 100%;
  10598. position: relative;
  10599. z-index: 1;
  10600. }
  10601. .chapter_upload_ic {
  10602. margin: 0 15px 0px auto;
  10603. display: flex;
  10604. align-items: center;
  10605. }
  10606. .chapter_upload_ic_l {
  10607. width: 50px;
  10608. height: 50px;
  10609. float: left;
  10610. }
  10611. .chapter_upload_ic_l div {
  10612. width: 30px;
  10613. height: 35px;
  10614. background: url("../../../assets/icon/icon.png");
  10615. }
  10616. .chapter_upload_ic_edit {
  10617. height: 100%;
  10618. display: flex;
  10619. align-items: center;
  10620. cursor: pointer;
  10621. margin: 0 10px 0 0;
  10622. }
  10623. .chapter_upload_ic_edit div {
  10624. width: 18px;
  10625. height: 18px;
  10626. background-image: url("../../../assets/icon/new/edit_u.png");
  10627. background-size: 100% 100%;
  10628. }
  10629. .chapter_upload_ic_r {
  10630. height: 100%;
  10631. display: flex;
  10632. align-items: center;
  10633. cursor: pointer;
  10634. }
  10635. .chapter_upload_ic_r div {
  10636. width: 18px;
  10637. height: 18px;
  10638. background-image: url("../../../assets/icon/new/delete_u.png");
  10639. background-size: 100% 100%;
  10640. }
  10641. .chapter_upload_n {
  10642. display: flex;
  10643. text-indent: 10px;
  10644. text-decoration: none;
  10645. text-overflow: ellipsis;
  10646. white-space: nowrap;
  10647. overflow: hidden;
  10648. width: 55%;
  10649. margin-left: 10px;
  10650. cursor: pointer;
  10651. margin-top: 2px;
  10652. align-items: center;
  10653. }
  10654. .chapter_upload_l_i2,
  10655. .chapter_upload_l_i3,
  10656. .chapter_upload_l_i8,
  10657. .chapter_upload_l_i6,
  10658. .chapter_upload_l_i12,
  10659. .chapter_upload_l_i14,
  10660. .chapter_upload_l_i13 {
  10661. width: 15px;
  10662. height: 15px;
  10663. background-size: 100% 100%;
  10664. }
  10665. .chapter_upload_l_i2 {
  10666. background-image: url("../../../assets/icon/new/u_word.png");
  10667. }
  10668. .chapter_upload_l_i3 {
  10669. background-image: url("../../../assets/icon/new/u_video.png");
  10670. }
  10671. .chapter_upload_l_i8 {
  10672. background-image: url("../../../assets/icon/new/u_url.png");
  10673. }
  10674. .chapter_upload_l_i14 {
  10675. background-image: url("../../../assets/icon/new/u_source.png");
  10676. }
  10677. .chapter_upload_l_i6 {
  10678. background-image: url("../../../assets/icon/new/u_picture.png");
  10679. }
  10680. .chapter_upload_l_i12 {
  10681. background-image: url("../../../assets/icon/new/u_word.png");
  10682. }
  10683. .chapter_upload_l_i13 {
  10684. background-image: url("../../../assets/icon/new/u_img.png");
  10685. }
  10686. .chapter_upload_noSee {
  10687. background-image: url("../../../assets/icon/new/u_noUpload.png");
  10688. width: 18px;
  10689. height: 18px;
  10690. background-size: 100% 100%;
  10691. display: block;
  10692. margin-right: 10px;
  10693. }
  10694. .chapter_upload_ud {
  10695. display: flex;
  10696. flex-direction: row;
  10697. justify-content: center;
  10698. margin: 0 10px 0 0;
  10699. }
  10700. .chapter_upload_ud>.chapter_upload_up {
  10701. margin-bottom: 0;
  10702. margin-right: 10px;
  10703. }
  10704. .chapter_upload_down,
  10705. .chapter_upload_up {
  10706. width: 20px;
  10707. height: 20px;
  10708. background: #e4eaf2;
  10709. cursor: pointer;
  10710. margin: 0 auto;
  10711. border-radius: 5px;
  10712. display: flex;
  10713. justify-content: center;
  10714. align-items: center;
  10715. }
  10716. .chapter_upload_up::after,
  10717. .chapter_upload_down::after {
  10718. content: '';
  10719. background-image: url('../../../assets/icon/new/downBtn.png');
  10720. width: 13px;
  10721. height: 13px;
  10722. background-size: 100% 100%;
  10723. display: block;
  10724. }
  10725. .chapter_upload_up::after {
  10726. background-image: url('../../../assets/icon/new/upBtn.png') !important;
  10727. }
  10728. .chapter_upload_up {
  10729. margin-bottom: 5px;
  10730. }
  10731. .addWordStyle {
  10732. display: flex;
  10733. flex-direction: row;
  10734. justify-content: flex-start;
  10735. overflow-x: auto;
  10736. white-space: nowrap;
  10737. flex-wrap: wrap;
  10738. }
  10739. /* table 样式 */
  10740. .cont>>>table {
  10741. border-top: 1px solid #ccc;
  10742. border-left: 1px solid #ccc;
  10743. }
  10744. .cont>>>table td,
  10745. .cont>>>table th {
  10746. border-bottom: 1px solid #ccc;
  10747. border-right: 1px solid #ccc;
  10748. /* padding: 20px 5px; */
  10749. padding: 5px 10px;
  10750. max-width: 0px;
  10751. height: 30px;
  10752. vertical-align: baseline;
  10753. }
  10754. .cont>>>table th {
  10755. border-bottom: 2px solid #ccc;
  10756. text-align: center;
  10757. }
  10758. /* blockquote 样式 */
  10759. .cont>>>blockquote {
  10760. display: block;
  10761. border-left: 8px solid #d0e5f2;
  10762. padding: 5px 10px;
  10763. margin: 10px 0;
  10764. line-height: 1.4;
  10765. font-size: 100%;
  10766. background-color: #f1f1f1;
  10767. }
  10768. /* code 样式 */
  10769. .cont>>>code {
  10770. display: inline-block;
  10771. /* *display: inline; */
  10772. zoom: 1;
  10773. background-color: #f1f1f1;
  10774. border-radius: 3px;
  10775. padding: 3px 5px;
  10776. margin: 0 3px;
  10777. }
  10778. .cont>>>pre code {
  10779. display: block;
  10780. }
  10781. /* ul ol 样式 */
  10782. .cont>>>ul,
  10783. ol {
  10784. margin: 10px 0 10px 20px;
  10785. }
  10786. .wordbox {
  10787. display: flex;
  10788. flex-wrap: wrap;
  10789. cursor: pointer;
  10790. width: 100%;
  10791. }
  10792. .checkword {
  10793. width: 22px;
  10794. height: 22px;
  10795. margin: 10px auto 0;
  10796. cursor: pointer;
  10797. }
  10798. .checkword img {
  10799. width: 100%;
  10800. }
  10801. .stepBg {
  10802. display: flex;
  10803. flex-direction: column;
  10804. justify-content: space-between;
  10805. align-items: center;
  10806. background: #fff;
  10807. width: 300px;
  10808. margin: 0 25px 0 0;
  10809. }
  10810. .stepTop {
  10811. min-width: 300px;
  10812. width: 300px;
  10813. /* border-radius: 10px; */
  10814. display: flex;
  10815. flex-direction: column;
  10816. justify-content: flex-start;
  10817. align-items: center;
  10818. flex-wrap: nowrap;
  10819. background: #fff;
  10820. /* top: 18%; */
  10821. }
  10822. .stepTop>div {
  10823. height: 80px;
  10824. width: 85%;
  10825. cursor: pointer;
  10826. margin: 10px 0;
  10827. border-radius: 10px;
  10828. }
  10829. .first,
  10830. .second,
  10831. .third,
  10832. .four {
  10833. background: #4a83d0;
  10834. height: 90px;
  10835. color: #fff;
  10836. display: flex;
  10837. flex-direction: row;
  10838. align-items: center;
  10839. justify-content: center;
  10840. }
  10841. .first>div:nth-child(1),
  10842. .second>div:nth-child(1),
  10843. .third>div:nth-child(1),
  10844. .four>div:nth-child(1) {
  10845. margin: 5px 10px 0 0;
  10846. width: 2rem;
  10847. }
  10848. .firstNo,
  10849. .secondNo,
  10850. .thirdNo,
  10851. .fourNo {
  10852. background: #e7e7e7;
  10853. color: #adadad;
  10854. display: flex;
  10855. flex-direction: row;
  10856. align-items: center;
  10857. justify-content: center;
  10858. }
  10859. .firstNo>div:nth-child(1),
  10860. .secondNo>div:nth-child(1),
  10861. .thirdNo>div:nth-child(1),
  10862. .fourNo>div:nth-child(1) {
  10863. margin: 5px 10px 0 0;
  10864. width: 2rem;
  10865. }
  10866. .uploadWidth>>>.el-upload {
  10867. width: 60px;
  10868. height: 60px;
  10869. position: relative;
  10870. }
  10871. .addPeople {
  10872. background: #fa6060;
  10873. width: 150px;
  10874. height: 40px;
  10875. color: #fff;
  10876. border-radius: 5px;
  10877. text-align: center;
  10878. line-height: 40px;
  10879. font-size: 14px;
  10880. cursor: pointer;
  10881. }
  10882. .kcImg {
  10883. width: 60px;
  10884. margin-left: 10px;
  10885. }
  10886. .zyImg {
  10887. width: 55px;
  10888. margin: 0 10px;
  10889. }
  10890. .deleteZy {
  10891. width: 20px;
  10892. position: absolute;
  10893. top: 5px;
  10894. right: 5px;
  10895. cursor: pointer;
  10896. }
  10897. .kcImg>img,
  10898. .zyImg>img,
  10899. .deleteZy>img {
  10900. width: 100%;
  10901. height: 100%;
  10902. }
  10903. .zyBox {
  10904. display: flex;
  10905. flex-direction: row;
  10906. align-items: center;
  10907. background: #67d37d;
  10908. color: #fff;
  10909. width: 210px;
  10910. margin: 20px 20px 0 0;
  10911. border-radius: 10px;
  10912. height: 70px;
  10913. position: relative;
  10914. }
  10915. .upCss {
  10916. display: flex;
  10917. flex-direction: row;
  10918. justify-content: flex-start;
  10919. }
  10920. .upCss>>>.el-icon-plus {
  10921. position: none !important;
  10922. width: 200px;
  10923. height: 100px;
  10924. display: flex;
  10925. flex-wrap: nowrap;
  10926. flex-direction: column;
  10927. align-items: center;
  10928. justify-content: center;
  10929. border: 1px dashed #ccc;
  10930. min-width: 78px;
  10931. min-height: 100px;
  10932. z-index: 999;
  10933. }
  10934. .upCss>>>.el-upload-list__item-name {
  10935. width: 100px;
  10936. white-space: nowrap;
  10937. overflow: hidden;
  10938. text-overflow: ellipsis;
  10939. }
  10940. .upCss>>>.el-upload-list__item .el-icon-close {
  10941. font-size: 20px;
  10942. z-index: 9999;
  10943. }
  10944. .addStageImg {
  10945. min-width: 25px;
  10946. min-height: 25px;
  10947. width: 25px;
  10948. height: 25px;
  10949. cursor: pointer;
  10950. }
  10951. .addHW {
  10952. width: 28px;
  10953. height: 28px;
  10954. cursor: pointer;
  10955. }
  10956. .addStageImg>img,
  10957. .addHW>img {
  10958. width: 100%;
  10959. height: 100%;
  10960. }
  10961. .addNewPP>>>.el-dialog__body {
  10962. padding: 5px 20px;
  10963. }
  10964. .addNewPP>>>.el-dialog {
  10965. margin-top: 5vh !important;
  10966. }
  10967. .addNewPP2>>>.el-dialog__body {
  10968. padding: 5px 0;
  10969. }
  10970. .addNewPP2>>>.el-dialog {
  10971. margin-top: 5vh !important;
  10972. }
  10973. .isHeight {
  10974. height: 680px;
  10975. }
  10976. .toolChoose {
  10977. display: flex;
  10978. /* width: 100%; */
  10979. flex-direction: row;
  10980. flex-wrap: wrap;
  10981. }
  10982. .tool,
  10983. .isToolChoose {
  10984. display: flex;
  10985. flex-direction: column;
  10986. flex-wrap: nowrap;
  10987. width: fit-content;
  10988. margin: 10px 0 10px 0;
  10989. align-items: center;
  10990. border: 2px solid #dbdbdb00;
  10991. padding: 10px 20px;
  10992. border-radius: 5px;
  10993. cursor: pointer;
  10994. /* box-shadow: 0 0 2px 0px #dedede; */
  10995. position: relative;
  10996. box-sizing: border-box;
  10997. }
  10998. .tool:hover {
  10999. border: 2px solid #a5c7ff;
  11000. }
  11001. .tool:hover>.noCTool {
  11002. display: block;
  11003. opacity: 0.5;
  11004. }
  11005. .isToolChoose {
  11006. border: 2px solid #438aff !important;
  11007. box-shadow: 0 0 2px 0px #438aff;
  11008. opacity: 1 !important;
  11009. }
  11010. .isCTool,
  11011. .noCTool {
  11012. width: 30px;
  11013. height: 30px;
  11014. position: absolute;
  11015. top: -4px;
  11016. right: -4px;
  11017. }
  11018. .noCTool {
  11019. display: none;
  11020. }
  11021. .isCTool>img,
  11022. .noCTool>img {
  11023. width: 100%;
  11024. height: 100%;
  11025. }
  11026. .tool+.tool {
  11027. margin-right: 45px;
  11028. }
  11029. .whiteBIcon {
  11030. width: 80px;
  11031. cursor: pointer;
  11032. display: flex;
  11033. flex-direction: column;
  11034. flex-wrap: nowrap;
  11035. align-items: center;
  11036. font-size: 14px;
  11037. }
  11038. .whiteBIcon>img,
  11039. .toolIcon>img,
  11040. .arrow>img {
  11041. width: 100%;
  11042. height: 100%;
  11043. }
  11044. .check img {
  11045. width: 20px;
  11046. height: 20px;
  11047. }
  11048. .whiteBIcon>img {
  11049. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  11050. border-radius: 15px;
  11051. }
  11052. .whiteBIcon>div:nth-child(2) {
  11053. height: 20px;
  11054. line-height: 20px;
  11055. }
  11056. .check {
  11057. /* width: 20px;
  11058. height: 20px; */
  11059. cursor: pointer;
  11060. margin: 10px 0 0;
  11061. }
  11062. .checkDiv {
  11063. display: flex;
  11064. align-items: center;
  11065. }
  11066. .checkDiv span {
  11067. margin-left: 5px;
  11068. color: #858585;
  11069. }
  11070. .customWidth>>>.el-dialog {
  11071. min-width: 500px !important;
  11072. }
  11073. .a_addBox {
  11074. margin: 10px 0;
  11075. background: #fff;
  11076. padding: 15px;
  11077. /* max-height: 600px; */
  11078. overflow: auto;
  11079. }
  11080. .a_add_box {
  11081. border-bottom: 2px solid #eee;
  11082. padding-bottom: 25px;
  11083. }
  11084. .a_add_head {
  11085. display: flex;
  11086. align-items: center;
  11087. justify-content: space-between;
  11088. margin: 10px 0 0 0;
  11089. font-size: 18px;
  11090. }
  11091. .a_add_checkType {
  11092. margin-top: 10px;
  11093. display: flex;
  11094. font-size: 14px;
  11095. align-items: center;
  11096. }
  11097. .a_add_checkType span {
  11098. box-sizing: border-box;
  11099. padding: 0 0 5px 0;
  11100. cursor: pointer;
  11101. }
  11102. .a_add_checkType span+span {
  11103. margin-left: 10px;
  11104. }
  11105. .a_add_checkType .active {
  11106. border-bottom: 2px solid #409eff;
  11107. color: #409eff;
  11108. }
  11109. .a_add_head .a_add_head_input {
  11110. width: 100%;
  11111. }
  11112. .a_add_head .a_add_head_div {
  11113. display: flex;
  11114. align-items: center;
  11115. justify-content: space-between;
  11116. }
  11117. .a_add_body {
  11118. display: flex;
  11119. /* align-items: center; */
  11120. align-items: flex-end;
  11121. }
  11122. .a_add_input {
  11123. display: flex;
  11124. align-items: center;
  11125. flex-wrap: wrap;
  11126. }
  11127. .a_add_input_choice {
  11128. flex-direction: column;
  11129. margin-right: 10px;
  11130. }
  11131. .a_add_input_choice>>>.el-radio {
  11132. display: flex;
  11133. align-items: center;
  11134. flex-direction: row-reverse;
  11135. margin: 30px 0 0 0;
  11136. position: relative;
  11137. }
  11138. .a_add_input_choice>>>.el-checkbox {
  11139. display: flex;
  11140. align-items: center;
  11141. flex-direction: row-reverse;
  11142. margin: 30px 0 0 0;
  11143. position: relative;
  11144. }
  11145. .width100 {
  11146. width: 100%;
  11147. }
  11148. .a_add_input .a_add_persent {
  11149. width: 100%;
  11150. }
  11151. .a_add_persent_div {
  11152. width: 100%;
  11153. display: flex;
  11154. align-items: center;
  11155. }
  11156. .a_add_persent_div span {
  11157. margin: 5px 0;
  11158. }
  11159. .a_add_persent_div span:nth-child(1) {
  11160. width: 30%;
  11161. }
  11162. .a_add_persent_div span:nth-child(2) {
  11163. width: 7%;
  11164. }
  11165. .a_add_persent_div span:nth-child(3) {
  11166. width: 40%;
  11167. }
  11168. .a_add_body_div {
  11169. display: flex;
  11170. align-items: center;
  11171. justify-content: center;
  11172. /* flex-direction: column; */
  11173. position: absolute;
  11174. right: -20px;
  11175. transform: translateX(100%);
  11176. }
  11177. .a_add_body_div>>>.el-button--primary {
  11178. background: #466b99;
  11179. border: none;
  11180. }
  11181. .all_choose {
  11182. display: flex;
  11183. flex-direction: row;
  11184. align-items: flex-start;
  11185. width: 100%;
  11186. }
  11187. .all_choose>span {
  11188. min-width: fit-content;
  11189. display: block;
  11190. white-space: nowrap;
  11191. overflow: hidden;
  11192. text-overflow: ellipsis;
  11193. margin-right: 20px;
  11194. font-weight: bold;
  11195. font-size: 14px;
  11196. }
  11197. .all_choose>>>.el-checkbox-group {
  11198. display: flex;
  11199. flex-direction: row;
  11200. width: 100%;
  11201. flex-wrap: wrap;
  11202. align-content: center;
  11203. justify-content: flex-start;
  11204. align-items: center;
  11205. margin-top: 3px;
  11206. }
  11207. .all_choose>.el-checkbox-group>>>.el-checkbox {
  11208. margin-bottom: 10px;
  11209. display: flex;
  11210. flex-direction: row;
  11211. align-items: center;
  11212. margin-right: 10px;
  11213. }
  11214. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label {
  11215. min-width: 80px;
  11216. overflow: hidden;
  11217. width: 80px;
  11218. text-overflow: ellipsis;
  11219. white-space: nowrap;
  11220. }
  11221. .all_choose>.el-checkbox-group>.el-checkbox>>>.el-checkbox__label:hover {
  11222. width: auto;
  11223. }
  11224. .choose>div:nth-child(3)>span {
  11225. /* letter-spacing: 0 !important; */
  11226. }
  11227. .choose {
  11228. display: flex;
  11229. flex-direction: column;
  11230. flex-wrap: nowrap;
  11231. height: 100%;
  11232. justify-content: space-evenly;
  11233. align-items: flex-start;
  11234. }
  11235. .both {
  11236. display: flex;
  11237. flex-direction: row;
  11238. flex-wrap: wrap;
  11239. width: 100%;
  11240. align-items: center;
  11241. justify-content: flex-start;
  11242. margin: 15px 0;
  11243. }
  11244. .notice>>>.el-dialog {
  11245. width: 500px !important;
  11246. text-align: center;
  11247. }
  11248. .notice>>>.el-button {
  11249. margin-top: 20px;
  11250. }
  11251. .whiteBg {
  11252. background: #fff;
  11253. border-radius: 10px;
  11254. }
  11255. .wb_j_box {
  11256. display: flex;
  11257. width: 100%;
  11258. padding: 10px 20px;
  11259. box-sizing: border-box;
  11260. }
  11261. .wb_j_box_content {
  11262. width: calc(100% - 55% - 100px);
  11263. display: flex;
  11264. align-items: center;
  11265. }
  11266. .wb_j_box_p_box {
  11267. max-width: calc(100% - 200px);
  11268. word-break: break-all;
  11269. overflow: hidden;
  11270. margin: 0 0 0 10px;
  11271. font-size: 14px;
  11272. color: #6e6e6e;
  11273. }
  11274. .chooseWho {
  11275. display: flex;
  11276. width: 410px;
  11277. flex-direction: row;
  11278. flex-wrap: nowrap;
  11279. justify-content: space-between;
  11280. padding-bottom: 10px;
  11281. }
  11282. .chooseWho>div {
  11283. cursor: pointer;
  11284. padding-bottom: 10px;
  11285. font-weight: bold;
  11286. }
  11287. .isChooseActive {
  11288. color: #3e88f4;
  11289. border-bottom: 2px solid #2f80f3;
  11290. }
  11291. .toolSort {
  11292. display: flex;
  11293. flex-direction: row;
  11294. flex-wrap: wrap;
  11295. justify-content: flex-start;
  11296. align-items: flex-start;
  11297. }
  11298. .toolSort>div {
  11299. margin-right: 45px;
  11300. }
  11301. .tools {
  11302. width: 100%;
  11303. display: flex;
  11304. flex-direction: column;
  11305. flex-wrap: nowrap;
  11306. align-items: flex-start;
  11307. }
  11308. .leftTools,
  11309. .rightTools {
  11310. width: 50%;
  11311. }
  11312. .leftTools+.leftTools {
  11313. border-top: 1px solid #dbdbdb;
  11314. padding-top: 30px;
  11315. }
  11316. .rightTools {
  11317. display: flex;
  11318. flex-direction: row;
  11319. flex-wrap: nowrap;
  11320. justify-content: space-around;
  11321. }
  11322. .firstToolList {
  11323. display: flex;
  11324. flex-direction: column;
  11325. flex-wrap: nowrap;
  11326. align-items: center;
  11327. }
  11328. .iconList {
  11329. display: flex;
  11330. flex-direction: row;
  11331. flex-wrap: wrap;
  11332. justify-content: flex-start;
  11333. align-items: center;
  11334. margin: 20px 0 5px 0;
  11335. width: 240px;
  11336. min-width: 240px;
  11337. }
  11338. .iconTool {
  11339. display: flex;
  11340. flex-direction: column;
  11341. flex-wrap: nowrap;
  11342. align-items: center;
  11343. justify-content: flex-start;
  11344. margin: 15px 10px;
  11345. }
  11346. .toolIcon {
  11347. width: 50px;
  11348. }
  11349. .taskBorder {
  11350. /*border: 1px solid #e1e1e1; */
  11351. border-radius: 8px;
  11352. margin-top: 10px;
  11353. /* min-height: 1160px; */
  11354. position: relative;
  11355. background: #fff;
  11356. padding: 20px 20px 0;
  11357. overflow: hidden;
  11358. box-sizing: border-box;
  11359. }
  11360. .smallTaskBorder {
  11361. height: 170px;
  11362. min-height: 170px !important;
  11363. overflow: hidden;
  11364. }
  11365. .taskBorder>div {
  11366. /* padding: 30px 0 10px 30px; */
  11367. }
  11368. .addTaskBorder {
  11369. /* border: 2px solid #5E9AFC; */
  11370. border-radius: 8px;
  11371. margin-top: 10px;
  11372. cursor: pointer;
  11373. /* height: 50px;
  11374. line-height: 50px; */
  11375. background: #fff;
  11376. padding: 15px 0;
  11377. display: flex;
  11378. align-items: center;
  11379. justify-content: center;
  11380. }
  11381. /* .addTaskBorder>div {
  11382. margin: 0 auto;
  11383. display: flex;
  11384. align-items: center;
  11385. justify-content: center;
  11386. }
  11387. .addTaskBorder>div>img {
  11388. width: 20px;
  11389. }
  11390. .addTaskBorder>div>span {
  11391. font-size: 16px;
  11392. margin-left: 10px;
  11393. color: #5E9AFC;
  11394. } */
  11395. .funBlock {
  11396. display: flex;
  11397. padding: 15px 0;
  11398. flex-direction: row;
  11399. justify-content: flex-end;
  11400. align-items: center;
  11401. position: absolute;
  11402. right: 15px;
  11403. bottom: 35px;
  11404. }
  11405. .fold {
  11406. display: flex;
  11407. margin: 0 10px;
  11408. flex-direction: row;
  11409. align-items: center;
  11410. cursor: pointer;
  11411. }
  11412. .arrow {
  11413. width: 15px;
  11414. height: 15px;
  11415. margin-left: 10px;
  11416. }
  11417. .addToolFun {
  11418. display: flex;
  11419. width: 150px;
  11420. flex-direction: row;
  11421. align-items: center;
  11422. justify-content: center;
  11423. border: 1px dashed;
  11424. border-radius: 5px;
  11425. height: 50px;
  11426. margin: 20px auto 35px;
  11427. cursor: pointer;
  11428. }
  11429. .addToolFun2 {
  11430. display: flex;
  11431. width: 150px;
  11432. border: 2px dashed #CAD1DC;
  11433. flex-direction: row;
  11434. align-items: center;
  11435. justify-content: center;
  11436. border-radius: 5px;
  11437. height: 50px;
  11438. margin: 0 auto 0;
  11439. cursor: pointer;
  11440. }
  11441. .addToolImg {
  11442. width: 20px;
  11443. height: 20px;
  11444. margin-right: 10px;
  11445. }
  11446. .addToolsDia>>>.el-dialog__body {
  11447. padding: 20px;
  11448. }
  11449. .addToolsDia>>>.el-dialog__body>.toolChoose {
  11450. padding: 0;
  11451. }
  11452. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools {
  11453. padding: 0;
  11454. border-bottom: none;
  11455. margin-bottom: 0;
  11456. }
  11457. .addToolsDia>>>.el-dialog__body>.toolChoose>.leftTools>.chooseWho {
  11458. width: 100%;
  11459. }
  11460. .lineCss>>>.el-form-item__label {
  11461. width: auto !important;
  11462. }
  11463. .lineCss>>>.el-form-item__content {
  11464. margin-left: 50px !important;
  11465. }
  11466. .newSteps {
  11467. display: flex;
  11468. width: 100% !important;
  11469. height: 80px;
  11470. cursor: pointer;
  11471. margin: 10px 0;
  11472. border-radius: 10px;
  11473. flex-direction: row;
  11474. align-content: center;
  11475. justify-content: center;
  11476. align-items: center;
  11477. margin: 0 !important;
  11478. }
  11479. /* 评价样式 */
  11480. .elist_css {
  11481. padding-bottom: 60px !important;
  11482. }
  11483. .elist_title {
  11484. margin-bottom: 10px;
  11485. }
  11486. .elist_input {}
  11487. .elist_input_box {
  11488. display: flex;
  11489. align-items: center;
  11490. flex-wrap: wrap;
  11491. }
  11492. .elist_input_box+.elist_input_box {
  11493. margin-top: 30px;
  11494. }
  11495. .elist_input .elist_input_box input {
  11496. font: inherit;
  11497. color: currentColor;
  11498. /* width: 200px; */
  11499. max-width: 200px;
  11500. padding: 8px 14px;
  11501. display: block;
  11502. min-width: 0;
  11503. outline: none;
  11504. border: 1px solid rgba(0, 0, 0, 0.23);
  11505. border-radius: 4px;
  11506. box-sizing: border-box;
  11507. background: #fff;
  11508. margin: 0 5px 0 0;
  11509. }
  11510. .elist_input .elist_input_box span {
  11511. height: 36px;
  11512. line-height: 36px;
  11513. color: rgb(82, 82, 82);
  11514. min-width: 80px;
  11515. }
  11516. .elist_input .elist_input_box .remove {
  11517. height: 20px;
  11518. width: 20px;
  11519. min-width: 20px;
  11520. background-size: 100% 100%;
  11521. background-position: unset;
  11522. margin-left: 5px;
  11523. }
  11524. .elist_input_box>>>.el-rate {
  11525. display: flex;
  11526. height: 36px;
  11527. align-items: center;
  11528. }
  11529. .elist_input_box .elist_inptu_text {
  11530. width: 100%;
  11531. display: flex;
  11532. align-items: center;
  11533. margin-top: 10px;
  11534. }
  11535. .elist_input_box .elist_inptu_text input {
  11536. /* width: 500px; */
  11537. width: 100%;
  11538. max-width: unset;
  11539. }
  11540. .elist_input_box>>>.el-rate__icon {
  11541. font-size: 24px;
  11542. }
  11543. .elist_btn {
  11544. margin-top: 10px;
  11545. }
  11546. .lineTitle {
  11547. /* margin-top: 15px; */
  11548. width: 110px;
  11549. font-size: 16px;
  11550. display: flex;
  11551. align-items: center;
  11552. line-height: 20px;
  11553. }
  11554. .lineTitle::before {
  11555. content: '';
  11556. display: block;
  11557. width: 3px;
  11558. height: 20px;
  11559. background: #0061FF;
  11560. border-radius: 3px;
  11561. margin: 0 5px 0 0;
  11562. }
  11563. .courseTop {
  11564. display: flex;
  11565. flex-direction: row;
  11566. justify-content: space-between;
  11567. align-items: center;
  11568. width: calc(100%);
  11569. padding: 10px 0;
  11570. margin: 0 auto;
  11571. }
  11572. .stepsNav {
  11573. display: flex;
  11574. flex-direction: row;
  11575. justify-content: flex-start;
  11576. align-items: center;
  11577. }
  11578. .stepsWord {
  11579. font-size: 18px;
  11580. color: #fff;
  11581. font-weight: bold;
  11582. margin-left: auto;
  11583. background: rgb(15, 126, 255);
  11584. border-radius: 5px;
  11585. padding: 3px 25px;
  11586. box-sizing: border-box;
  11587. }
  11588. .rightBox {
  11589. width: calc(100%);
  11590. background: #F0F2F5;
  11591. /* border-radius: 10px; */
  11592. overflow: auto;
  11593. height: calc(100% - 120px);
  11594. margin: 0 auto;
  11595. position: relative;
  11596. box-sizing: border-box;
  11597. border-radius: 5px;
  11598. }
  11599. .e_add_top {
  11600. display: flex;
  11601. justify-content: space-between;
  11602. padding: 20px 20px 0 20px;
  11603. border-radius: 3px;
  11604. background: #fff;
  11605. }
  11606. .e_add_title2 {
  11607. display: flex;
  11608. align-items: center;
  11609. }
  11610. .e_add_title2 span {
  11611. width: 40px;
  11612. }
  11613. .e_add_title {
  11614. display: flex;
  11615. align-items: center;
  11616. color: #b8b8b8;
  11617. font-size: 18px;
  11618. position: relative;
  11619. height: 40px;
  11620. }
  11621. .e_add_title span {
  11622. margin-right: 10px;
  11623. }
  11624. .e_add_title .el_input {
  11625. width: 300px;
  11626. }
  11627. .e_add_title>>>.el-input__inner {
  11628. width: 400px;
  11629. }
  11630. .e_add_btn {}
  11631. .e_add_content {
  11632. display: flex;
  11633. width: 100%;
  11634. }
  11635. .e_add_list {
  11636. background: #fff;
  11637. height: 500px;
  11638. width: 210px;
  11639. position: relative;
  11640. margin: 15px 5px 0 0;
  11641. flex-shrink: 0;
  11642. display: flex;
  11643. flex-direction: column;
  11644. }
  11645. .e_add_list_title {
  11646. font-size: 20px;
  11647. width: 100%;
  11648. box-sizing: border-box;
  11649. padding: 15px 40px;
  11650. text-align: center;
  11651. border-bottom: 1px solid #eaeaea;
  11652. position: relative;
  11653. display: flex;
  11654. align-items: center;
  11655. justify-content: center;
  11656. height: 57px;
  11657. background: #f6f6f6;
  11658. }
  11659. .e_add_list_title span {
  11660. overflow: hidden;
  11661. white-space: nowrap;
  11662. text-overflow: ellipsis;
  11663. }
  11664. .e_add_list_title img {
  11665. position: absolute;
  11666. right: 15px;
  11667. width: 25px;
  11668. cursor: pointer;
  11669. top: 50%;
  11670. transform: translateY(-50%);
  11671. }
  11672. .e_add_list_body {
  11673. height: calc(100% - 187px);
  11674. overflow: auto;
  11675. }
  11676. .e_add_list_child {
  11677. width: 100%;
  11678. display: flex;
  11679. align-items: center;
  11680. justify-content: center;
  11681. position: relative;
  11682. box-sizing: border-box;
  11683. padding: 15px 40px;
  11684. text-align: center;
  11685. }
  11686. .e_add_list_child span {
  11687. overflow: hidden;
  11688. white-space: nowrap;
  11689. text-overflow: ellipsis;
  11690. cursor: pointer;
  11691. }
  11692. .e_add_list_child img {
  11693. position: absolute;
  11694. right: 10px;
  11695. width: 21px;
  11696. cursor: pointer;
  11697. top: 50%;
  11698. transform: translateY(-50%);
  11699. }
  11700. .e_add_list_child+.e_add_list_child {
  11701. border-top: 1px solid #eaeaea;
  11702. }
  11703. .e_add_list_child .active {
  11704. color: #409eff;
  11705. }
  11706. .e_add_list_btn {
  11707. position: absolute;
  11708. bottom: 0;
  11709. height: 50px;
  11710. background: rgb(120, 120, 254);
  11711. width: 100%;
  11712. color: #fff;
  11713. font-size: 16px;
  11714. text-align: center;
  11715. line-height: 50px;
  11716. cursor: pointer;
  11717. }
  11718. .e_add_list_detail {
  11719. position: absolute;
  11720. bottom: 0;
  11721. height: 130px;
  11722. background: rgb(120, 120, 254);
  11723. width: 100%;
  11724. color: #fff;
  11725. font-size: 16px;
  11726. display: flex;
  11727. align-items: center;
  11728. justify-content: center;
  11729. }
  11730. .e_add_list_detail textarea {
  11731. height: 90%;
  11732. width: 95%;
  11733. border: none;
  11734. resize: none;
  11735. outline: none;
  11736. padding: 5px;
  11737. box-sizing: border-box;
  11738. }
  11739. .e_add_list_pbox {
  11740. width: 100%;
  11741. }
  11742. .e_add_list_pbox_title {
  11743. height: 50px;
  11744. background: #fff;
  11745. display: flex;
  11746. align-items: center;
  11747. width: 100%;
  11748. box-sizing: border-box;
  11749. padding: 0 20px;
  11750. flex-direction: row;
  11751. flex-wrap: wrap;
  11752. }
  11753. .type_title {
  11754. font-size: 18px;
  11755. font-weight: 700;
  11756. }
  11757. .type_content {
  11758. font-size: 16px;
  11759. margin-left: 30px;
  11760. }
  11761. .type_content span+span {
  11762. margin-left: 20px;
  11763. }
  11764. .type_content span {
  11765. cursor: pointer;
  11766. padding-bottom: 5px;
  11767. box-sizing: border-box;
  11768. }
  11769. .type_content .active {
  11770. color: #409eff;
  11771. border-bottom: 2px solid #409eff;
  11772. }
  11773. .e_add_list_pbox_content {
  11774. height: calc(100% - 50px);
  11775. display: flex;
  11776. align-items: center;
  11777. width: 100%;
  11778. background: #fff;
  11779. }
  11780. .mbCss {
  11781. width: 100%;
  11782. display: flex;
  11783. flex-direction: row;
  11784. flex-wrap: nowrap;
  11785. align-content: center;
  11786. align-items: flex-start;
  11787. justify-content: flex-start;
  11788. }
  11789. .pjCss {
  11790. /* width: 42%; */
  11791. width: calc(100% - 55%);
  11792. display: flex;
  11793. flex-direction: column;
  11794. flex-wrap: nowrap;
  11795. align-items: flex-start;
  11796. margin-top: 1.5%;
  11797. }
  11798. .e_box {
  11799. display: flex;
  11800. flex-wrap: wrap;
  11801. max-height: 500px;
  11802. align-items: flex-start;
  11803. overflow: auto;
  11804. }
  11805. .e_card {
  11806. border: 1px solid #ccc;
  11807. background: #fff;
  11808. margin-right: 20px;
  11809. width: 270px;
  11810. display: flex;
  11811. flex-direction: column;
  11812. align-items: center;
  11813. border-radius: 5px;
  11814. margin-top: 10px;
  11815. text-align: center;
  11816. }
  11817. .e_card_picture {
  11818. margin: 10px 0;
  11819. }
  11820. .e_card_picture>img {
  11821. width: 50px;
  11822. }
  11823. .e_card_name {
  11824. width: 100%;
  11825. padding: 0 10px;
  11826. box-sizing: border-box;
  11827. margin-bottom: 10px;
  11828. overflow: hidden;
  11829. text-overflow: ellipsis;
  11830. white-space: nowrap;
  11831. }
  11832. .e_card_time {
  11833. width: 100%;
  11834. padding: 0 10px;
  11835. box-sizing: border-box;
  11836. font-size: 15px;
  11837. color: #c3c3c3;
  11838. margin-bottom: 10px;
  11839. }
  11840. .e_card_btn {
  11841. height: 40px;
  11842. display: flex;
  11843. align-items: center;
  11844. width: 100%;
  11845. background: rgb(244, 244, 244);
  11846. }
  11847. .e_card_btn:hover {
  11848. background: rgb(221 221 221);
  11849. }
  11850. .e_card_btn span {
  11851. flex: 1 1 auto;
  11852. text-align: center;
  11853. cursor: pointer;
  11854. }
  11855. .addEva {
  11856. border: 1px solid #ccc;
  11857. background: #fff;
  11858. margin-right: 20px;
  11859. width: 270px;
  11860. height: 149px;
  11861. display: flex;
  11862. flex-direction: column;
  11863. align-items: center;
  11864. border-radius: 5px;
  11865. margin-top: 10px;
  11866. text-align: center;
  11867. cursor: pointer;
  11868. justify-content: center;
  11869. }
  11870. .addEva>img {
  11871. width: 50px;
  11872. object-fit: cover;
  11873. }
  11874. .uploadFm {
  11875. border: 1px dashed #ccc;
  11876. width: 100%;
  11877. height: 140px;
  11878. position: relative;
  11879. cursor: pointer;
  11880. display: flex;
  11881. flex-direction: column;
  11882. justify-content: center;
  11883. align-items: center;
  11884. font-size: 14px;
  11885. color: #6e6e6e;
  11886. }
  11887. .uploadFm>img {
  11888. width: 50px;
  11889. }
  11890. .fileCss {
  11891. width: 100%;
  11892. display: flex;
  11893. flex-direction: row;
  11894. flex-wrap: nowrap;
  11895. justify-content: space-around;
  11896. align-items: center;
  11897. padding-top: 15px;
  11898. }
  11899. .fileCss>div {
  11900. display: flex;
  11901. flex-direction: column;
  11902. align-items: center;
  11903. }
  11904. .fileCss .spanName {
  11905. margin-top: 10px
  11906. }
  11907. .sysPicBox {
  11908. display: flex;
  11909. flex-direction: row;
  11910. flex-wrap: wrap;
  11911. align-content: flex-start;
  11912. height: 435px;
  11913. overflow: auto;
  11914. position: relative;
  11915. }
  11916. .picNone {
  11917. position: absolute;
  11918. left: 50%;
  11919. top: 45%;
  11920. transform: translate(-50%, -50%);
  11921. width: fit-content;
  11922. color: #9c9c9c;
  11923. }
  11924. .sysPic {
  11925. width: 200px;
  11926. height: 115px;
  11927. margin: 0 20px 20px 0;
  11928. cursor: pointer;
  11929. }
  11930. .sysPic>img,
  11931. .isSysPic>img,
  11932. .deletePic>img {
  11933. width: 100%;
  11934. height: 100%;
  11935. object-fit: cover;
  11936. }
  11937. .isSysPic {
  11938. width: 200px;
  11939. height: 115px;
  11940. position: relative;
  11941. }
  11942. .deletePic {
  11943. width: 20px;
  11944. height: 20px;
  11945. position: absolute;
  11946. top: 0;
  11947. right: 0;
  11948. cursor: pointer;
  11949. }
  11950. .select_box1 {
  11951. height: 100%;
  11952. }
  11953. .select_box1_img {
  11954. background: #fff;
  11955. border-radius: 5px;
  11956. padding: 15px;
  11957. box-sizing: border-box;
  11958. margin-bottom: 20px;
  11959. }
  11960. .select_box1_title {
  11961. padding: 0 0 15px 0;
  11962. border-bottom: 1px solid #eee;
  11963. margin-bottom: 15px;
  11964. }
  11965. .select_box1_title span:nth-child(1) {
  11966. font-size: 16px;
  11967. margin-right: 20px;
  11968. color: #000;
  11969. }
  11970. .select_box1_title span:nth-child(2) {
  11971. font-size: 14px;
  11972. color: rgb(112, 112, 112);
  11973. }
  11974. .select_box1_add_img {}
  11975. .select_box1_select {
  11976. background: #fff;
  11977. border-radius: 5px;
  11978. padding: 15px;
  11979. box-sizing: border-box;
  11980. height: calc(100% - 200px);
  11981. overflow: auto;
  11982. }
  11983. .select_box2 {
  11984. height: 100%;
  11985. }
  11986. .select_box2_title {
  11987. background: #fff;
  11988. border-radius: 5px;
  11989. padding: 5px 10px;
  11990. box-sizing: border-box;
  11991. margin-bottom: 10px;
  11992. }
  11993. .select_box2_box {
  11994. display: flex;
  11995. height: calc(100% - 30px);
  11996. }
  11997. .select_box2_img {
  11998. width: calc(100% - 310px);
  11999. height: 100%;
  12000. overflow: auto;
  12001. background: #fff;
  12002. border-radius: 5px;
  12003. }
  12004. .select_box2_img img {
  12005. width: 100%;
  12006. }
  12007. .select_box2_answer {
  12008. background: #fff;
  12009. margin-left: 10px;
  12010. border-radius: 5px;
  12011. width: 300px;
  12012. overflow: auto;
  12013. height: 100%;
  12014. display: flex;
  12015. flex-direction: column;
  12016. align-items: center;
  12017. padding-top: 10px;
  12018. box-sizing: border-box;
  12019. }
  12020. .select_box2_answer_box {
  12021. margin: 0 0 10px 0;
  12022. width: 85%;
  12023. }
  12024. .rate_textarea {
  12025. font: inherit;
  12026. color: currentColor;
  12027. width: 100%;
  12028. padding: 8px 14px;
  12029. display: block;
  12030. min-width: 0;
  12031. outline: none;
  12032. border: 1px solid rgba(0, 0, 0, 0.23);
  12033. border-radius: 4px;
  12034. box-sizing: border-box;
  12035. background: #fff;
  12036. margin: 0 20px 0 0;
  12037. resize: none;
  12038. }
  12039. .select_answer_title {
  12040. text-align: left;
  12041. width: 85%;
  12042. margin-bottom: 10px;
  12043. font-size: 18px;
  12044. color: #8e8e8e;
  12045. }
  12046. .mask {
  12047. background-color: rgb(0 0 0 / 30%);
  12048. /* position: fixed; */
  12049. position: absolute;
  12050. top: 0;
  12051. left: 0;
  12052. width: 100%;
  12053. height: 100%;
  12054. z-index: 90;
  12055. display: flex;
  12056. align-items: center;
  12057. justify-content: center;
  12058. }
  12059. .progressBox {
  12060. width: 300px;
  12061. height: 150px;
  12062. background: #fff;
  12063. border-radius: 10px;
  12064. box-shadow: 0 0 6px 1px #bfbfbf;
  12065. display: flex;
  12066. align-items: center;
  12067. justify-content: center;
  12068. flex-direction: column;
  12069. position: relative;
  12070. color: #6c6c6c;
  12071. }
  12072. .progressBox>>>.el-progress-bar__outer {
  12073. background-color: #d1dfff !important;
  12074. }
  12075. .progressBox .lbox {
  12076. height: 50px;
  12077. font-size: 19px;
  12078. display: flex;
  12079. align-items: center;
  12080. color: #747474;
  12081. }
  12082. .progressBox .lbox img {
  12083. width: 40px;
  12084. margin-right: 20px;
  12085. }
  12086. .closeCss {
  12087. position: absolute;
  12088. top: 8px;
  12089. right: 8px;
  12090. cursor: pointer;
  12091. width: 20px;
  12092. height: 20px;
  12093. }
  12094. .closeCss>img {
  12095. width: 100%;
  12096. height: 100%;
  12097. }
  12098. .updateTips::after {
  12099. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  12100. font-size: 14px;
  12101. margin-left: 20px;
  12102. font-weight: 400;
  12103. color: #ff3a3a;
  12104. }
  12105. .updateMask {
  12106. width: 100%;
  12107. z-index: 3;
  12108. top: 0;
  12109. position: absolute;
  12110. /* background-color: rgba(0,0,0,.3); */
  12111. }
  12112. .t_j_box {
  12113. display: flex;
  12114. }
  12115. .t_j_box span:nth-child(1) {
  12116. width: 15%;
  12117. overflow: hidden;
  12118. margin-right: 10px;
  12119. text-overflow: ellipsis;
  12120. white-space: nowrap;
  12121. }
  12122. .t_j_box span:nth-child(2) {
  12123. width: 30%;
  12124. overflow: hidden;
  12125. text-overflow: ellipsis;
  12126. margin-right: 10px;
  12127. }
  12128. .t_j_box span:nth-child(3) {
  12129. max-width: calc(55% - 20px);
  12130. overflow: hidden;
  12131. text-overflow: ellipsis;
  12132. }
  12133. .sentenBox {
  12134. background: #fff;
  12135. height: 600px;
  12136. overflow: auto;
  12137. background-image: url("../../../assets/icon/conSentences/csBg.png");
  12138. background-position: 102%;
  12139. background-repeat: no-repeat;
  12140. background-size: 60%;
  12141. }
  12142. .sentenBox>.sentenContent {
  12143. padding-bottom: 10px;
  12144. width: 97%;
  12145. margin: 0 auto;
  12146. }
  12147. .sentenBox>.sentenContent+.sentenContent {
  12148. border-top: 1px solid #cbcbcb;
  12149. }
  12150. .addSen {
  12151. background: #409efe;
  12152. width: 90px;
  12153. color: #fff;
  12154. height: 35px;
  12155. text-align: center;
  12156. line-height: 35px;
  12157. border-radius: 5px;
  12158. float: right;
  12159. margin: 10px 20px 0 0;
  12160. cursor: pointer;
  12161. }
  12162. .sentenTop {
  12163. display: flex;
  12164. flex-direction: row;
  12165. flex-wrap: nowrap;
  12166. align-items: center;
  12167. }
  12168. .sentenTop::before {
  12169. content: attr(index);
  12170. background: #3681fc;
  12171. border-radius: 50%;
  12172. color: #fff;
  12173. width: 25px;
  12174. height: 25px;
  12175. min-width: 25px;
  12176. min-height: 25px;
  12177. text-align: center;
  12178. line-height: 25px;
  12179. margin-right: 5px;
  12180. }
  12181. .sentenTop>div:nth-child(2) {
  12182. width: 300px;
  12183. margin: 0 15px;
  12184. }
  12185. .sentenTop>div:nth-child(3) {
  12186. background: #409efe;
  12187. color: #fff;
  12188. width: 65px;
  12189. height: 35px;
  12190. text-align: center;
  12191. line-height: 35px;
  12192. border-radius: 5px;
  12193. cursor: pointer;
  12194. }
  12195. .cardList {
  12196. padding: 20px 0 20px 0;
  12197. display: flex;
  12198. flex-direction: row;
  12199. flex-wrap: wrap;
  12200. align-items: center;
  12201. box-sizing: border-box;
  12202. border-bottom: 1px solid #f4f4f4;
  12203. width: 98%;
  12204. margin: 0 auto;
  12205. }
  12206. .rightCardList {
  12207. display: flex;
  12208. flex-wrap: wrap;
  12209. }
  12210. .cardBox {
  12211. display: flex;
  12212. flex-direction: row;
  12213. flex-wrap: wrap;
  12214. align-items: center;
  12215. align-content: center;
  12216. }
  12217. .isCard,
  12218. .isCard1 {
  12219. width: auto;
  12220. padding: 0 20px;
  12221. height: 65px;
  12222. text-align: center;
  12223. line-height: 65px;
  12224. font-size: 14px;
  12225. cursor: pointer;
  12226. background-image: url("../../../assets/icon/conSentences/titleBorder.png");
  12227. background-size: 100% 100%;
  12228. position: relative;
  12229. z-index: 99;
  12230. }
  12231. .isCard1 {
  12232. background-image: url("../../../assets/icon/conSentences/answerBorder.png");
  12233. }
  12234. .isCard:hover .deleteWord {
  12235. display: block;
  12236. }
  12237. .isCard>div:nth-child(1),
  12238. .isCard1>div:nth-child(1) {
  12239. white-space: nowrap;
  12240. overflow: hidden;
  12241. text-overflow: ellipsis;
  12242. width: 100%;
  12243. margin: 0 auto;
  12244. }
  12245. .card {
  12246. width: 140px;
  12247. height: 65px;
  12248. }
  12249. .card>img {
  12250. width: 100%;
  12251. height: 100%;
  12252. }
  12253. .rightCardBox {
  12254. width: 98%;
  12255. margin: 10px auto 0;
  12256. }
  12257. .rightCardBox>div:nth-child(1) {
  12258. margin-bottom: 10px;
  12259. }
  12260. .cardCss {
  12261. display: flex;
  12262. flex-direction: column;
  12263. flex-wrap: nowrap;
  12264. align-items: center;
  12265. border-bottom: 3px solid #b4c3d3;
  12266. padding: 0 0 5px 0;
  12267. /* margin-right: 10px; */
  12268. }
  12269. .cardCss>div:nth-child(2) {
  12270. background: #5b7b9d;
  12271. color: #fff;
  12272. width: 20px;
  12273. height: 20px;
  12274. border-radius: 50%;
  12275. text-align: center;
  12276. line-height: 20px;
  12277. }
  12278. .sentenTopBox {
  12279. display: flex;
  12280. flex-direction: row;
  12281. flex-wrap: nowrap;
  12282. align-items: center;
  12283. justify-content: space-between;
  12284. padding: 55px 0 0 20px;
  12285. box-sizing: border-box;
  12286. width: 85%;
  12287. }
  12288. .stepsBottom {
  12289. width: 85%;
  12290. margin-bottom: 20px;
  12291. box-shadow: 0 0 10px 10px #f7f7f7;
  12292. background: #f7f7f7;
  12293. border-radius: 10px;
  12294. overflow: hidden;
  12295. }
  12296. .course_left {
  12297. width: 300px;
  12298. height: auto;
  12299. position: relative;
  12300. }
  12301. .stepsBottom2 {
  12302. width: 300px;
  12303. margin: 10px 0;
  12304. /* box-shadow: 0 0 10px 10px #f7f7f7; */
  12305. /* background: #f7f7f7; */
  12306. border-radius: 8px;
  12307. overflow: hidden;
  12308. height: fit-content;
  12309. position: relative;
  12310. /* transition: all .5s; */
  12311. }
  12312. .navTop {
  12313. background: #53749b;
  12314. color: #fff;
  12315. height: 40px;
  12316. line-height: 40px;
  12317. padding-left: 15px;
  12318. font-size: 18px;
  12319. }
  12320. .navBottom {
  12321. background: #fff;
  12322. height: calc(100vh - 210px);
  12323. overflow: auto;
  12324. }
  12325. .navTask {
  12326. display: flex;
  12327. flex-direction: row;
  12328. flex-wrap: nowrap;
  12329. align-items: center;
  12330. padding: 10px 10px 10px 0;
  12331. cursor: pointer;
  12332. background: #ffffff;
  12333. width: 95%;
  12334. margin: 10px auto 0;
  12335. box-sizing: border-box;
  12336. border-radius: 5px;
  12337. flex-wrap: wrap;
  12338. position: relative;
  12339. }
  12340. .navTask::before {
  12341. content: '';
  12342. display: block;
  12343. width: 16px;
  12344. height: 16px;
  12345. background-image: url(../../../assets/icon/new/icon_arrow.png);
  12346. background-size: 100%;
  12347. margin-left: 23px;
  12348. }
  12349. .isNavOpen::before {
  12350. background-image: url(../../../assets/icon/new/icon_arrow_a.png) !important;
  12351. }
  12352. .isNavTask {
  12353. /* background: #3681FC; */
  12354. background: #EEF3FB;
  12355. }
  12356. .isNavTask>.chapter_upload_drag {
  12357. background-image: url(../../../assets/icon/new/icon_course_drag_active.png) !important;
  12358. }
  12359. .isNavTask .nt_taskName {
  12360. /* color: #fff !important; */
  12361. font-weight: bold !important;
  12362. color: #0061FF !important;
  12363. }
  12364. .isNavTask .nt_taskTitle {
  12365. /* color: #AECCFE !important; */
  12366. font-weight: bold !important;
  12367. color: #0061FF !important;
  12368. }
  12369. .navTask .nt_taskBox {
  12370. width: calc(100% - 40px);
  12371. padding: 0 0 0 5px;
  12372. box-sizing: border-box;
  12373. box-sizing: border-box;
  12374. display: flex;
  12375. flex-direction: row;
  12376. flex-wrap: nowrap;
  12377. align-items: baseline;
  12378. }
  12379. .navTask .nt_taskTitle {
  12380. /* color: #717C8D; */
  12381. color: #060E17;
  12382. line-height: 25px;
  12383. font-size: 16px;
  12384. min-width: 45px;
  12385. }
  12386. .navTask .nt_taskName {
  12387. /* color: #fff; */
  12388. /* max-width: 130px; */
  12389. /* width: 100%; */
  12390. max-width: calc(100% - 50px);
  12391. white-space: nowrap;
  12392. overflow: hidden;
  12393. text-overflow: ellipsis;
  12394. font-size: 16px;
  12395. color: #060E17;
  12396. /* color: #0E1E33; */
  12397. }
  12398. .gjBox {
  12399. width: calc(100% - 25px);
  12400. padding: 0 0 0 0;
  12401. box-sizing: border-box;
  12402. border-left: 1px solid #CAD1DC;
  12403. margin-left: 25px;
  12404. }
  12405. .gjBox>div {
  12406. display: flex;
  12407. align-items: center;
  12408. }
  12409. .gjBox>div::before {
  12410. content: '';
  12411. height: 1px;
  12412. width: 10px;
  12413. background: #CAD1DC;
  12414. display: block;
  12415. margin-right: 5px;
  12416. }
  12417. .gjCss {
  12418. display: flex;
  12419. flex-direction: row;
  12420. flex-wrap: nowrap;
  12421. align-items: center;
  12422. padding: 15px 0;
  12423. box-sizing: border-box;
  12424. font-size: 14px;
  12425. cursor: pointer;
  12426. }
  12427. .isGjCss {
  12428. color: #0061ff;
  12429. }
  12430. .groupBox {}
  12431. .groupContent+.groupContent {
  12432. margin-top: 30px;
  12433. }
  12434. .groupTitle {
  12435. font-size: 24px;
  12436. color: rgb(80, 80, 80);
  12437. margin-bottom: 20px;
  12438. }
  12439. .groupName {
  12440. display: flex;
  12441. align-items: center;
  12442. }
  12443. .groupn {
  12444. font-size: 15px;
  12445. margin-right: 10px;
  12446. }
  12447. .groupName+.groupName {
  12448. margin-top: 15px;
  12449. }
  12450. .groupBtn {
  12451. margin-left: 10px;
  12452. }
  12453. .groupContent>>>.el-input-number.is-without-controls .el-input__inner {
  12454. text-align: left;
  12455. }
  12456. .radioBox>div {
  12457. margin: 10px 0 0 10px;
  12458. }
  12459. .radioBox>>>.el-radio__input,
  12460. .radioBox>>>.el-checkbox__inner {
  12461. margin-left: 10px;
  12462. }
  12463. .radioBox>>>.el-radio__label,
  12464. .radioBox>>>.el-checkbox__label {
  12465. display: flex;
  12466. align-items: center;
  12467. }
  12468. .inImg {
  12469. width: 50px;
  12470. }
  12471. .inImg>img {
  12472. width: 100%;
  12473. height: 100%;
  12474. object-fit: cover;
  12475. }
  12476. .upCss>>>.el-upload-list--picture .el-upload-list__item {
  12477. height: auto;
  12478. padding: 10px;
  12479. margin: 0;
  12480. }
  12481. .upCss>>>.el-upload-list {
  12482. width: 100%;
  12483. }
  12484. .upCss>>>.el-upload-list--picture .el-upload-list__item-thumbnail {
  12485. width: 100%;
  12486. height: 120px;
  12487. object-fit: contain;
  12488. background: unset;
  12489. margin-left: 0;
  12490. }
  12491. .upCss>>>.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name {
  12492. display: none;
  12493. }
  12494. .tcMember+.tcMember::before {
  12495. content: "、";
  12496. }
  12497. .xzUpImg {
  12498. width: 25px;
  12499. height: 25px;
  12500. min-width: 25px;
  12501. min-height: 25px;
  12502. cursor: pointer;
  12503. margin: 0 10px;
  12504. }
  12505. .xzUpImg>img {
  12506. width: 100%;
  12507. height: 100%;
  12508. }
  12509. .closeCss {
  12510. position: absolute;
  12511. top: 8px;
  12512. right: 8px;
  12513. cursor: pointer;
  12514. width: 20px;
  12515. height: 20px;
  12516. }
  12517. .closeCss>img {
  12518. width: 100%;
  12519. height: 100%;
  12520. }
  12521. .moveBtn {
  12522. display: flex;
  12523. flex-direction: row;
  12524. flex-wrap: nowrap;
  12525. align-items: center;
  12526. width: 55px;
  12527. }
  12528. .timuUpImg {
  12529. display: flex;
  12530. flex-direction: row;
  12531. align-items: center;
  12532. width: 100%;
  12533. margin-right: 10px;
  12534. }
  12535. .timuUpImg>div:nth-child(1) {
  12536. margin-right: 10px;
  12537. display: flex;
  12538. align-items: center;
  12539. width: 100%;
  12540. }
  12541. .timuImgBox {
  12542. margin: 10px 0;
  12543. display: flex;
  12544. flex-direction: column;
  12545. flex-wrap: wrap;
  12546. align-items: flex-start;
  12547. }
  12548. .timuImg {
  12549. width: 100px;
  12550. margin: 5px 0;
  12551. cursor: pointer;
  12552. position: relative;
  12553. }
  12554. .timuImg:hover .deleteWord {
  12555. display: block;
  12556. }
  12557. .deleteWord {
  12558. width: 25px;
  12559. height: 25px;
  12560. position: absolute;
  12561. right: -5px;
  12562. top: -5px;
  12563. cursor: pointer;
  12564. display: none;
  12565. }
  12566. .timuImg>img,
  12567. .deleteWord>img {
  12568. width: 100%;
  12569. height: 100%;
  12570. object-fit: cover;
  12571. }
  12572. .e_add_delete {
  12573. cursor: pointer;
  12574. margin-left: 10px;
  12575. }
  12576. .pType_box {
  12577. margin-top: 30px;
  12578. align-items: flex-end;
  12579. }
  12580. .noneBox {
  12581. height: 100%;
  12582. width: 100%;
  12583. display: flex;
  12584. align-items: center;
  12585. justify-content: center;
  12586. margin-top: 150px;
  12587. }
  12588. .noneBox>img {
  12589. width: 300px;
  12590. }
  12591. .textarea_css {
  12592. display: block;
  12593. resize: none;
  12594. padding: 10px 15px;
  12595. line-height: 1.5;
  12596. box-sizing: border-box;
  12597. width: 100%;
  12598. font-size: 14px;
  12599. color: #606266;
  12600. background-color: #FFF;
  12601. background-image: none;
  12602. border: 1px solid #DCDFE6;
  12603. border-radius: 4px;
  12604. transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
  12605. outline: none;
  12606. overflow: hidden;
  12607. height: 46px;
  12608. font-family: 'Microsoft YaHei';
  12609. }
  12610. .textarea_css::-webkit-input-placeholder {
  12611. color: #C0C4CC
  12612. }
  12613. .textarea_css:focus {
  12614. border-color: #409EFF;
  12615. outline: 0;
  12616. }
  12617. .moveBtn2 {
  12618. flex-direction: column;
  12619. width: fit-content;
  12620. margin: 0 10px 0 10px;
  12621. }
  12622. .moveBtn2 .chapter_upload_down,
  12623. .moveBtn2 .chapter_upload_up {
  12624. width: 16px;
  12625. height: 16px;
  12626. }
  12627. .moveBtn2 .chapter_upload_up::after,
  12628. .moveBtn2 .chapter_upload_down::after {
  12629. width: 10px;
  12630. height: 10px;
  12631. }
  12632. .fullStyle>>>.el-dialog__body {
  12633. height: calc(100% - 125px) !important;
  12634. box-sizing: border-box;
  12635. }
  12636. .fullStyle>>>.el-dialog {
  12637. width: 100% !important;
  12638. max-width: 100% !important;
  12639. height: 100% !important;
  12640. margin: 0 !important;
  12641. }
  12642. .fullStyle {
  12643. width: 100% !important;
  12644. max-width: 100% !important;
  12645. height: 100% !important;
  12646. margin: 0 auto !important;
  12647. }
  12648. .wb_j_box_btn {
  12649. width: calc(100% - 30px);
  12650. display: flex;
  12651. height: 40px;
  12652. border: 1.5px solid #CAD1DC;
  12653. border-radius: 4px;
  12654. box-sizing: border-box;
  12655. align-items: center;
  12656. font-size: 14px;
  12657. cursor: pointer;
  12658. overflow: hidden;
  12659. }
  12660. .wb_j_box_btn:hover {
  12661. border: 1.5px solid #0061FF;
  12662. }
  12663. .wb_j_box_title {
  12664. background: #F0F4FA;
  12665. height: 100%;
  12666. line-height: 40px;
  12667. width: 90px;
  12668. text-align: center;
  12669. color: #060E17;
  12670. border-right: 1.5px solid #CAD1DC;
  12671. box-sizing: border-box;
  12672. }
  12673. .wb_j_box_btn_c {
  12674. width: calc(100% - 90px);
  12675. padding: 0 35px 0 10px;
  12676. box-sizing: border-box;
  12677. position: relative;
  12678. }
  12679. .wb_j_box_span {
  12680. width: 100%;
  12681. overflow: hidden;
  12682. white-space: nowrap;
  12683. text-overflow: ellipsis;
  12684. word-wrap: break-word;
  12685. color: #717C8D;
  12686. }
  12687. .wb_j_box_arrow {
  12688. content: '';
  12689. width: 14px;
  12690. height: 14px;
  12691. background: url(../../../assets/icon/new/u_arrow.png);
  12692. background-size: 100% 100%;
  12693. position: absolute;
  12694. right: 12px;
  12695. top: 50%;
  12696. transform: translateY(-50%);
  12697. }
  12698. .check_classBox {
  12699. height: 400px;
  12700. display: flex;
  12701. border-top: 1.5px solid #E7EBF1;
  12702. border-bottom: 1.5px solid #E7EBF1;
  12703. }
  12704. .check_class_right {
  12705. width: 130px;
  12706. border-right: 1px solid #E7EBF1;
  12707. display: flex;
  12708. align-items: center;
  12709. flex-direction: column;
  12710. height: 100%;
  12711. overflow: auto;
  12712. padding: 15px 0;
  12713. box-sizing: border-box;
  12714. }
  12715. .check_class {
  12716. width: 85%;
  12717. border-radius: 5px;
  12718. height: 30px;
  12719. line-height: 30px;
  12720. text-align: center;
  12721. padding: 0 10px;
  12722. box-sizing: border-box;
  12723. cursor: pointer;
  12724. white-space: nowrap;
  12725. overflow: hidden;
  12726. text-overflow: ellipsis;
  12727. }
  12728. .check_class.activeX {
  12729. background: #E0EAFB;
  12730. color: #3681FC;
  12731. font-weight: 700;
  12732. }
  12733. .check_class+.check_class {
  12734. margin-top: 15px;
  12735. }
  12736. .check_class_left {
  12737. background: #FAFAFA;
  12738. width: calc(100% - 130px);
  12739. padding: 15px;
  12740. box-sizing: border-box;
  12741. }
  12742. .check_class_left_title {
  12743. font-size: 16px;
  12744. font-weight: 700;
  12745. margin-bottom: 10px;
  12746. }
  12747. .check_class_item {
  12748. display: flex;
  12749. flex-wrap: wrap;
  12750. height: calc(100% - 45px);
  12751. overflow: auto;
  12752. justify-content: flex-start;
  12753. align-items: flex-start;
  12754. align-content: flex-start;
  12755. }
  12756. .class_item {
  12757. margin: 0 15px 15px 0;
  12758. }
  12759. .class_item:hover>>>.el-checkbox__label {
  12760. color: #409EFF;
  12761. }
  12762. .class_item>>>.el-checkbox__label {
  12763. color: #0E1E33;
  12764. }
  12765. .class_item:hover>>>.el-checkbox__inner {
  12766. border-color: #409EFF;
  12767. }
  12768. .class_item>>>.el-checkbox,
  12769. .class_item>>>.el-checkbox__input {
  12770. display: flex;
  12771. align-items: center;
  12772. }</style>