addCourse.vue 356 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body" style="position: relative; margin: 0">
  4. <div class="right">
  5. <div class="stepBg">
  6. <div class="stepTop">
  7. <div v-if="steps == 1" class="first" @click="navSteps(1)">
  8. <div>
  9. <img src="../../../assets/icon/first.png" alt />
  10. </div>
  11. <div>填写基本信息</div>
  12. </div>
  13. <div v-else class="firstNo" @click="navSteps(1)">
  14. <div>
  15. <img src="../../../assets/icon/firstNo.png" alt />
  16. </div>
  17. <div>填写基本信息</div>
  18. </div>
  19. <div v-show="cidttt === 0" class="secondNo">
  20. <div
  21. v-if="steps == 2"
  22. class="newSteps second"
  23. @click="navSteps(2)"
  24. >
  25. <div style="margin: 5px 10px 0 0; width: 2rem">
  26. <img src="../../../assets/icon/second.png" alt />
  27. </div>
  28. <div>选择项目框架</div>
  29. </div>
  30. <div v-else class="newSteps secondNo" @click="navSteps(2)">
  31. <div>
  32. <img src="../../../assets/icon/secondNo.png" alt />
  33. </div>
  34. <div>选择项目框架</div>
  35. </div>
  36. </div>
  37. <div v-if="steps == 3" class="third" @click="navSteps(3)">
  38. <div>
  39. <img src="../../../assets/icon/third.png" alt />
  40. </div>
  41. <div>上传项目内容</div>
  42. </div>
  43. <div v-else class="thirdNo" @click="navSteps(3)">
  44. <div>
  45. <img src="../../../assets/icon/thirdNo.png" alt />
  46. </div>
  47. <div>上传项目内容</div>
  48. </div>
  49. <div v-if="steps == 4 && type == 2" class="four">
  50. <div>
  51. <img
  52. src="../../../assets/icon/five.png"
  53. alt
  54. style="width: 33px"
  55. />
  56. </div>
  57. <div>项目进展</div>
  58. </div>
  59. <div v-else-if="type == 2" class="fourNo" @click="navSteps(4)">
  60. <div>
  61. <img
  62. src="../../../assets/icon/fiveNo.png"
  63. alt
  64. style="width: 33px"
  65. />
  66. </div>
  67. <div>项目进展</div>
  68. </div>
  69. <div v-if="steps == 5" class="four">
  70. <div>
  71. <img src="../../../assets/icon/four.png" alt />
  72. </div>
  73. <div>上传完成</div>
  74. </div>
  75. <div v-else class="fourNo">
  76. <div>
  77. <img src="../../../assets/icon/fourNo.png" alt />
  78. </div>
  79. <div>上传完成</div>
  80. </div>
  81. </div>
  82. <div class="stepsBottom" v-if="steps == 3">
  83. <div class="navTop">辅助导航</div>
  84. <div class="navBottom">
  85. <div
  86. class="navTask"
  87. :class="{
  88. isNavTask: isClickColor > 0 && isClickColor == tIndex + 1,
  89. }"
  90. v-for="(t, tIndex) in unitJson[unitIndex].chapterInfo[0]
  91. .taskJson"
  92. :key="tIndex"
  93. @click="goToTask(tIndex)"
  94. >
  95. <div>任务{{ tIndex + 1 }}</div>
  96. <div>
  97. <el-tooltip effect="light" :content="t.task" placement="top">
  98. <span>{{ t.task }}</span>
  99. </el-tooltip>
  100. </div>
  101. <div
  102. class="moveBtn"
  103. v-if="unitJson[unitIndex].chapterInfo[0].taskJson.length > 1"
  104. >
  105. <div
  106. class="chapter_upload_up"
  107. style="width: 15px; height: 15px"
  108. @click.stop="taskMove(1, tIndex)"
  109. ></div>
  110. <div
  111. class="chapter_upload_down"
  112. style="width: 15px; height: 15px; margin: 2px 0 0"
  113. @click.stop="taskMove(2, tIndex)"
  114. ></div>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
  121. <div style="width: 100%; height: 100%; overflow: auto" ref="stepBox">
  122. <div class="courseTop">
  123. <div class="stepsNav">
  124. <h3 class="info_title" v-if="steps == 1">项目内容填写</h3>
  125. <h3 class="info_title" v-if="steps == 2">请选择项目框架</h3>
  126. <h3 class="info_title" v-if="steps == 3">项目内容填写</h3>
  127. <h3 class="info_title" v-if="steps == 4">项目管理</h3>
  128. <h3 class="info_title" v-if="steps == 5">上传项目</h3>
  129. <el-breadcrumb
  130. separator-class="el-icon-arrow-right"
  131. style="margin-top: 15px"
  132. >
  133. <!-- /studentCourse -->
  134. <el-breadcrumb-item
  135. :to="{
  136. path:
  137. fpath +
  138. '?userid=' +
  139. userid +
  140. '&oid=' +
  141. oid +
  142. '&org=' +
  143. org,
  144. }"
  145. >{{
  146. orgArray.indexOf(org) != -1 || oidArray.indexOf(oid) != -1
  147. ? "师生项目"
  148. : "项目管理"
  149. }}
  150. </el-breadcrumb-item>
  151. <el-breadcrumb-item>
  152. <span style="color: rgb(15, 126, 255)">添加项目</span>
  153. </el-breadcrumb-item>
  154. </el-breadcrumb>
  155. </div>
  156. <div
  157. v-if="steps == 1 || steps == 2 || steps == 3"
  158. class="stepsWord"
  159. >
  160. {{
  161. steps == 1
  162. ? "第一步"
  163. : steps == 2
  164. ? "第二步"
  165. : steps == 3
  166. ? cidttt === 0
  167. ? "第三步"
  168. : "第二步"
  169. : ""
  170. }}
  171. </div>
  172. </div>
  173. <div class="rightBox" v-if="this.steps == 1">
  174. <!-- <div class="updateMask" :style="{ height: rightBoxHeight + 'px' }" v-if="cid && userid != courseUserid">
  175. </div> -->
  176. <div class="whiteBg">
  177. <!-- :class="{ updateTips: cid && userid != courseUserid }" -->
  178. <div class="right_title">项目基本信息</div>
  179. <div class="basic_box">
  180. <div class="big_box">
  181. <div class="left_first">
  182. <div>
  183. <div>
  184. <div class="bInfo_title" style="margin-bottom: 15px">
  185. <!-- <span style="color: red">*</span> -->
  186. 项目名称
  187. </div>
  188. <div style="display: flex; margin-right: 20px">
  189. <img
  190. src="../../../assets/icon/projectName.png"
  191. alt
  192. style="margin-right: 8px"
  193. />
  194. <input
  195. type="text"
  196. placeholder="请输入项目名称"
  197. class="binfo_input"
  198. v-model="courseName"
  199. />
  200. </div>
  201. </div>
  202. <div class="both">
  203. <div class="choose">
  204. <div
  205. class="all_choose"
  206. v-for="(item, index) in CourseType[0]"
  207. :key="index"
  208. >
  209. <span v-if="CourseTypeJson[item.id].length > 0">{{
  210. item.name
  211. }}</span>
  212. <el-checkbox-group
  213. v-model="courseTypeId"
  214. v-if="CourseTypeJson[item.id].length > 0"
  215. >
  216. <el-checkbox
  217. @change="updateType(item1)"
  218. v-for="item1 in CourseTypeJson[item.id]"
  219. :key="item1.id"
  220. :label="item1.id"
  221. >{{ item1.name }}
  222. </el-checkbox>
  223. </el-checkbox-group>
  224. <!-- <div v-else style="font-size: 14px; ">
  225. 暂无分类
  226. </div> -->
  227. </div>
  228. </div>
  229. </div>
  230. <div class="subjectBox" v-if="false">
  231. <div class="bInfo_title">添加主题</div>
  232. <div class="subjectList"></div>
  233. <div class="subjectBtn">+ 添加</div>
  234. </div>
  235. </div>
  236. </div>
  237. </div>
  238. </div>
  239. </div>
  240. <div class="whiteBg" style="border-radius: 0">
  241. <div class="right_first">
  242. <div class="right_title">上传封面与成员</div>
  243. <div
  244. style="
  245. padding: 0 0 50px 20px;
  246. display: flex;
  247. align-items: baseline;
  248. justify-content: flex-start;
  249. margin: 0 auto;
  250. "
  251. >
  252. <div>
  253. <div class="bInfo_title" style="margin-top: 0 !important">
  254. 项目封面
  255. </div>
  256. <div
  257. class="uploadFm"
  258. @click="choosePicVisible = true"
  259. v-if="cover.length == 0"
  260. >
  261. <img src="../../../assets/icon/addPoster.png" alt="" />
  262. </div>
  263. <el-upload
  264. :class="{ disUoloadSty: noneBtnImg }"
  265. class="upCss"
  266. action="#"
  267. list-type="picture"
  268. v-loading="uploadLoading1"
  269. :http-request="beforeUpload1"
  270. ref="upload1"
  271. :on-preview="handlePictureCardPreview"
  272. :on-remove="handle_remove1"
  273. :show-file-list="true"
  274. :file-list="cover"
  275. accept="image/*"
  276. :limit="1"
  277. :on-exceed="onExceed"
  278. v-else
  279. >
  280. <i class="el-icon-plus"></i>
  281. </el-upload>
  282. </div>
  283. <div
  284. style="
  285. display: flex;
  286. flex-flow: row nowrap;
  287. flex-direction: row;
  288. flex-wrap: wrap;
  289. align-items: baseline;
  290. margin: 0 30px;
  291. "
  292. >
  293. <!-- <div style="margin: 0 80px">
  294. <div class="bInfo_title">
  295. 选择项目成员
  296. </div>
  297. <div
  298. class="addPeople"
  299. @click="addPP"
  300. v-if="this.checkboxList.length == 0"
  301. >添加成员</div>
  302. <div class="addPeople" @click="addPP" v-else>已添加,点击查看</div>
  303. </div>-->
  304. <!-- <div style="margin: 0 30px 0 0">
  305. <div class="bInfo_title">添加班级</div>
  306. <div class="addPeople" @click="dialogVisibleClass = true">
  307. 添加班级
  308. </div>
  309. </div> -->
  310. <div
  311. style="flex: 0.5 1 0%; margin: 0; width: 180px"
  312. v-if="courseUserid != '' ? courseUserid == userid : true"
  313. >
  314. <div class="bInfo_title">协同编辑</div>
  315. <div
  316. class="addPeople"
  317. @click="openMember"
  318. style="background: #6b92c9"
  319. >
  320. 添加协同成员
  321. </div>
  322. <div
  323. v-if="checkboxList3.length"
  324. style="
  325. max-width: 100%;
  326. word-break: break-all;
  327. overflow: hidden;
  328. margin-top: 10px;
  329. font-size: 14px;
  330. color: #6e6e6e;
  331. "
  332. >
  333. <span
  334. :class="{ tcMember: getMan2(tc) }"
  335. v-for="(tc, tcIndex) in checkboxList3"
  336. :key="tcIndex"
  337. >{{ getMan2(tc) }}</span
  338. >
  339. </div>
  340. </div>
  341. </div>
  342. </div>
  343. </div>
  344. </div>
  345. <div class="whiteBg" style="border-radius: 0; margin-top: 15px">
  346. <div class="right_title">项目简要描述</div>
  347. <div style="width: 95%; padding: 15px 0px 15px 20px">
  348. <div style="width: 55%">
  349. <textarea
  350. rows="8"
  351. class="binfo_input"
  352. cols
  353. v-model="courseText"
  354. :placeholder="
  355. '1、项目内容说明' +
  356. '\n' +
  357. '2、项目学习知识目标' +
  358. '\n' +
  359. '3、项目学习技能目标'
  360. "
  361. ></textarea>
  362. </div>
  363. </div>
  364. <!-- <div style="width: 95%; margin: 15px auto">
  365. <el-switch
  366. v-model="isTeacherSee"
  367. active-text="允许给其他老师查看"
  368. style="padding-bottom: 30px"
  369. ></el-switch>
  370. </div>-->
  371. <div style="width: 95%; padding: 15px 0px 15px 20px">
  372. <el-switch
  373. v-model="isTeacherSee"
  374. active-text="是否公开此项目"
  375. style="padding-bottom: 30px"
  376. ></el-switch>
  377. </div>
  378. </div>
  379. <div
  380. class="whiteBg"
  381. style="border-radius: 0; margin-top: 15px; padding-bottom: 20px"
  382. v-if="false"
  383. >
  384. <div class="right_title">目标管理</div>
  385. <div style="margin: 15px auto; padding: 0 0 0 20px">
  386. <div
  387. style="
  388. width: 100%%;
  389. display: flex;
  390. flex-direction: row;
  391. flex-wrap: nowrap;
  392. align-content: center;
  393. align-items: center;
  394. justify-content: space-between;
  395. "
  396. >
  397. <div
  398. style="
  399. display: flex;
  400. flex-flow: row nowrap;
  401. align-items: flex-start;
  402. width: 100%;
  403. flex-direction: column;
  404. flex-wrap: nowrap;
  405. position: relative;
  406. "
  407. >
  408. <!-- <div style="margin-right: 15px; min-width: 120px">
  409. 请选择评价指标
  410. </div>
  411. <div>
  412. <el-select
  413. v-model="evalua"
  414. placeholder="请选择体系"
  415. @change="checkEva"
  416. >
  417. <el-option
  418. v-for="(e, eIndex) in evaJuri"
  419. :key="eIndex"
  420. :label="e.title"
  421. :value="e.id"
  422. ></el-option>
  423. </el-select>
  424. </div> -->
  425. <!-- <div
  426. @click="openT"
  427. class="addPeople"
  428. style="
  429. background: #6b92c9;
  430. margin: 0 0 0 15px;
  431. position: absolute;
  432. right: 23%;
  433. "
  434. >
  435. 前往设置目标管理
  436. </div> -->
  437. <div class="e_box">
  438. <div
  439. class="e_card"
  440. v-for="(item, index) in evaJuri"
  441. :key="index"
  442. >
  443. <div class="e_card_picture">
  444. <img src="../../../assets/e_picture.png" />
  445. </div>
  446. <div class="e_card_name">
  447. <span>{{ item.title }}</span>
  448. </div>
  449. <!-- <div class="e_card_time">
  450. <span>{{ item.time }}</span>
  451. </div> -->
  452. <div class="e_card_btn">
  453. <span @click="checkEva(item.id)">导入</span>
  454. <!-- <span @click="openT">前往设置</span> -->
  455. </div>
  456. </div>
  457. <div class="addEva" @click="openT">
  458. <img src="../../../assets/icon/addEva.png" alt="" />
  459. </div>
  460. <div
  461. v-if="evaJuri.length === 0"
  462. style="margin: 0 auto; color: #6e6e6e"
  463. >
  464. 暂无数据
  465. </div>
  466. </div>
  467. </div>
  468. </div>
  469. <div
  470. v-if="evalua"
  471. style="
  472. border: 1px solid #e5e5e5;
  473. width: 95%;
  474. margin-top: 30px;
  475. box-shadow: 3px 1px 15px 3px #e0e0e0;
  476. "
  477. >
  478. <div class="e_add_top">
  479. <div class="e_add_title">
  480. <span>当前使用目标管理</span>
  481. <span>{{ eTitle }}</span>
  482. <img
  483. src="../../../assets/line.png"
  484. class="cru_line"
  485. style="
  486. width: 125px;
  487. height: 20px;
  488. bottom: -10px;
  489. left: 155px;
  490. "
  491. />
  492. <!-- <el-input
  493. v-model="eTitle"
  494. placeholder="请输入名称"
  495. @change="setMindData"
  496. ></el-input>-->
  497. </div>
  498. </div>
  499. <div class="e_add_content">
  500. <div class="e_add_list_pbox">
  501. <div class="e_add_list_pbox_title">
  502. <span class="type_title">切换模式</span>
  503. <div class="type_content">
  504. <span
  505. :class="{ active: typeMode == 1 }"
  506. @click="OtherMb(1)"
  507. >目标树</span
  508. >
  509. <span
  510. :class="{ active: typeMode == 2 }"
  511. @click="OtherMb(2)"
  512. >目标罗盘</span
  513. >
  514. <span
  515. :class="{ active: typeMode == 3 }"
  516. @click="OtherMb(3)"
  517. >目标看板</span
  518. >
  519. </div>
  520. </div>
  521. <div class="e_add_list_pbox_content">
  522. <Mind
  523. :showBar="false"
  524. :mindData="data"
  525. v-show="typeMode == 1"
  526. ></Mind>
  527. <Sunburst
  528. :Josn="eJson"
  529. :num="eJSONNum"
  530. style="width: 100%"
  531. v-if="typeMode == 2"
  532. ></Sunburst>
  533. <SeeBoard
  534. :Josn="eJson"
  535. :num="eJSONNum"
  536. :ename="eTitle"
  537. style="width: 100%"
  538. v-if="typeMode == 3"
  539. ></SeeBoard>
  540. </div>
  541. </div>
  542. </div>
  543. </div>
  544. </div>
  545. </div>
  546. </div>
  547. <div class="rightBox" v-if="this.steps == 2">
  548. <div
  549. class="basic_box"
  550. style="padding: 20px 30px 0px !important; box-sizing: border-box"
  551. >
  552. <!-- <div
  553. style="
  554. color: #b8b8b8;
  555. background: #fff;
  556. width: 26%;
  557. height: 40px;
  558. border-radius: 15px;
  559. padding-left: 20px;
  560. line-height: 40px;
  561. font-size: 17px;
  562. box-shadow: 0px 1px 2px 2px #e0e0e0;
  563. "
  564. >-->
  565. <div
  566. class="right_title"
  567. style="border: none; margin: 0; padding: 0"
  568. >
  569. 请选择合适的项目模板
  570. </div>
  571. <div class="wordbox">
  572. <div
  573. class="wordTeacher"
  574. v-for="(aa, indexF) in templateArray"
  575. :key="indexF"
  576. @click="checkTemplate(aa)"
  577. >
  578. <div class="wordPic">
  579. <img src="../../../assets/icon/wordMub.png" alt />
  580. </div>
  581. <div
  582. style="
  583. margin-top: 10px;
  584. line-height: 19px;
  585. overflow: hidden;
  586. text-overflow: ellipsis;
  587. white-space: nowrap;
  588. padding: 0 20px;
  589. "
  590. >
  591. {{ aa.title }}
  592. </div>
  593. </div>
  594. <div class="wordTeacher" @click="checkTemplate2()">
  595. <div class="wordPic">
  596. <img src="../../../assets/icon/wordMub.png" alt />
  597. </div>
  598. <div
  599. style="
  600. margin-top: 10px;
  601. line-height: 19px;
  602. overflow: hidden;
  603. text-overflow: ellipsis;
  604. white-space: nowrap;
  605. padding: 0 20px;
  606. "
  607. >
  608. 新建项目
  609. </div>
  610. </div>
  611. <!-- <div class="wordTeacher" @click="checkTemplate1()">
  612. <div class="wordPic">
  613. <img src="../../../assets/icon/wordMub.png" alt />
  614. </div>
  615. <div style="
  616. margin-top: 10px;
  617. line-height: 19px;
  618. overflow: hidden;
  619. text-overflow: ellipsis;
  620. white-space: nowrap;
  621. padding: 0 20px;
  622. ">
  623. 我的项目
  624. </div>
  625. </div> -->
  626. </div>
  627. </div>
  628. </div>
  629. <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
  630. <div class="basic_box">
  631. <div
  632. style="
  633. display: flex;
  634. flex-direction: row;
  635. align-items: center;
  636. position: sticky;
  637. top: 0;
  638. background: #fff;
  639. z-index: 99;
  640. width: 100%;
  641. padding: 0 20px 0 20px;
  642. box-sizing: border-box;
  643. "
  644. >
  645. <div class="cru_selectBox">
  646. <div
  647. v-for="(item, index) in unitJson"
  648. :key="index"
  649. class="cru_select"
  650. :class="unitIndex == index ? 'cru_selected' : ''"
  651. @click="unitSet(index)"
  652. >
  653. 第{{ index + 1 }}阶段
  654. </div>
  655. <img
  656. src="../../../assets/line.png"
  657. class="cru_line"
  658. :style="{
  659. left: offsetLetfPx + 'px',
  660. }"
  661. />
  662. </div>
  663. <div class="addStageImg" @click="addunit()">
  664. <img src="../../../assets/icon/add.png" alt />
  665. </div>
  666. </div>
  667. <div
  668. style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
  669. v-for="(item, index) in unitJson[unitIndex].chapterInfo"
  670. :key="index"
  671. >
  672. <div>
  673. <div class="chapter_contentbox">
  674. <div>第{{ unitIndex + 1 }}阶段</div>
  675. <div>
  676. <input
  677. type="text"
  678. placeholder="阶段标题"
  679. class="binfo_input"
  680. v-model="unitJson[unitIndex].dyName"
  681. />
  682. </div>
  683. <div
  684. v-if="unitJson.length > 1"
  685. @click="deleteUnit(unitIndex)"
  686. ></div>
  687. </div>
  688. </div>
  689. <div class="task_add_title">添加任务</div>
  690. <div
  691. class="taskBorder"
  692. v-for="(itemTask, itemTaskIndex) in item.taskJson"
  693. :key="itemTaskIndex"
  694. >
  695. <div>
  696. <div>
  697. <div
  698. style="font-size: 22px; color: #8e8e8e"
  699. :id="'task' + itemTaskIndex"
  700. >
  701. 任务{{ itemTaskIndex + 1 }}
  702. </div>
  703. <div
  704. class="chapter_contentbox"
  705. style="
  706. flex-direction: row;
  707. justify-content: flex-start;
  708. align-items: center;
  709. flex-wrap: wrap;
  710. "
  711. >
  712. <div
  713. style="
  714. flex-direction: row;
  715. justify-content: flex-start;
  716. align-items: center;
  717. flex-wrap: wrap;
  718. display: flex;
  719. width: calc(100% - 115px);
  720. "
  721. >
  722. <div
  723. style="
  724. flex-direction: row;
  725. justify-content: flex-start;
  726. align-items: center;
  727. display: flex;
  728. margin-bottom: 10px;
  729. "
  730. >
  731. <div
  732. style="
  733. border-left: 6px solid #5699e8;
  734. height: 20px;
  735. padding: 0 10px;
  736. line-height: 22px;
  737. "
  738. >
  739. 任务名称
  740. </div>
  741. <div style="width: auto">
  742. <input
  743. type="text"
  744. placeholder="输入任务名称"
  745. class="binfo_input"
  746. style="border-radius: 4px"
  747. v-model="
  748. unitJson[unitIndex].chapterInfo[0].taskJson[
  749. itemTaskIndex
  750. ].task
  751. "
  752. />
  753. </div>
  754. </div>
  755. <div
  756. style="
  757. flex-direction: row;
  758. justify-content: flex-start;
  759. align-items: center;
  760. display: flex;
  761. margin-bottom: 10px;
  762. "
  763. >
  764. <div
  765. style="
  766. height: 20px;
  767. padding: 0 10px 0 16px;
  768. line-height: 22px;
  769. "
  770. >
  771. 负责人
  772. </div>
  773. <div style="width: auto">
  774. <!-- <input type="text" placeholder="输入负责人" class="binfo_input" style="border-radius: 4px"
  775. v-model="
  776. unitJson[unitIndex].chapterInfo[0].taskJson[
  777. itemTaskIndex
  778. ].people
  779. " /> -->
  780. <el-select
  781. v-model="
  782. unitJson[unitIndex].chapterInfo[0].taskJson[
  783. itemTaskIndex
  784. ].people
  785. "
  786. placeholder="请选择负责人"
  787. clearable
  788. filterable
  789. @change="
  790. peopleChange(
  791. unitJson[unitIndex].chapterInfo[0].taskJson[
  792. itemTaskIndex
  793. ].people,
  794. itemTaskIndex
  795. )
  796. "
  797. >
  798. <el-option
  799. v-for="item in ManAarray"
  800. :key="item.userid"
  801. :label="
  802. item.name +
  803. (item.type == 1 ? '(老师)' : '(学生)')
  804. "
  805. :value="item.userid"
  806. >
  807. </el-option>
  808. </el-select>
  809. </div>
  810. </div>
  811. <!-- <div class="addPeople" @click="addTcMember(itemTaskIndex)"
  812. style="background: rgb(107, 146, 201);margin: 0 0 10px 15px;margin-bottom: 10px;width: 100px;">
  813. {{
  814. (unitJson[unitIndex].chapterInfo[0].taskJson[itemTaskIndex].tcMember
  815. &&
  816. unitJson[unitIndex].chapterInfo[0].taskJson[itemTaskIndex].tcMember.length)
  817. ? '已添加' : '添加协同者'
  818. }}
  819. </div> -->
  820. </div>
  821. <div
  822. class="remove"
  823. v-if="item.taskJson.length > 1"
  824. @click="deleteTask(itemTaskIndex)"
  825. style="position: absolute; right: 55px"
  826. ></div>
  827. </div>
  828. <div
  829. style="
  830. flex-direction: row;
  831. justify-content: flex-start;
  832. align-items: center;
  833. display: flex;
  834. margin: 10px 0 15px;
  835. "
  836. >
  837. <div
  838. style="
  839. height: 20px;
  840. padding-left: 16px;
  841. line-height: 22px;
  842. font-size: 18px;
  843. "
  844. >
  845. 协同人员
  846. </div>
  847. <el-tooltip
  848. :content="
  849. getMen(
  850. unitJson[unitIndex].chapterInfo[0].taskJson[
  851. itemTaskIndex
  852. ].tcMember
  853. )
  854. "
  855. placement="top"
  856. effect="dark"
  857. v-if="
  858. unitJson[unitIndex].chapterInfo[0].taskJson[
  859. itemTaskIndex
  860. ].tcMember &&
  861. unitJson[unitIndex].chapterInfo[0].taskJson[
  862. itemTaskIndex
  863. ].tcMember.length
  864. "
  865. >
  866. <div
  867. class="tcMember_box"
  868. @click="addTcMember(itemTaskIndex)"
  869. >
  870. <span
  871. :class="{ tcMember: getMan(tc) }"
  872. v-for="(tc, tcIndex) in unitJson[unitIndex]
  873. .chapterInfo[0].taskJson[itemTaskIndex]
  874. .tcMember"
  875. :key="tcIndex"
  876. >{{ getMan(tc) }}</span
  877. >
  878. </div>
  879. </el-tooltip>
  880. <div
  881. class="tcMember_box"
  882. @click="addTcMember(itemTaskIndex)"
  883. v-else
  884. >
  885. <span>点击添加协同成员</span>
  886. </div>
  887. </div>
  888. <div
  889. style="
  890. flex-direction: row;
  891. justify-content: flex-start;
  892. align-items: center;
  893. display: flex;
  894. margin-top: 10px;
  895. "
  896. >
  897. <div
  898. style="
  899. height: 20px;
  900. padding-left: 16px;
  901. line-height: 22px;
  902. "
  903. >
  904. 任务起止时间
  905. </div>
  906. <div style="margin-left: 20px">
  907. <el-date-picker
  908. v-model="
  909. unitJson[unitIndex].chapterInfo[0].taskJson[
  910. itemTaskIndex
  911. ].time
  912. "
  913. type="datetimerange"
  914. range-separator="至"
  915. start-placeholder="开始日期"
  916. end-placeholder="结束日期"
  917. >
  918. </el-date-picker>
  919. </div>
  920. </div>
  921. <div
  922. style="
  923. display: flex;
  924. margin: 0 0 20px 0;
  925. flex-direction: row;
  926. justify-content: flex-start;
  927. align-items: center;
  928. width: 70.5% !important;
  929. "
  930. >
  931. <div class="lineTitle">任务描述</div>
  932. <div class="line"></div>
  933. </div>
  934. <div>
  935. <editor-bar
  936. style="
  937. width: 90% !important;
  938. margin: 0;
  939. height: 500px;
  940. "
  941. class="ed_s"
  942. placeholder="请输入任务描述"
  943. v-model="
  944. unitJson[unitIndex].chapterInfo[0].taskJson[
  945. itemTaskIndex
  946. ].taskDetail
  947. "
  948. @change="change"
  949. ></editor-bar>
  950. </div>
  951. </div>
  952. </div>
  953. <div
  954. class="basic_box"
  955. v-if="false"
  956. style="
  957. margin: 0;
  958. min-height: 0;
  959. width: 90% !important;
  960. paddint-top: 10px !important;
  961. "
  962. >
  963. <div
  964. style="
  965. display: flex;
  966. margin: 0 0 20px 0;
  967. flex-direction: row;
  968. justify-content: flex-start;
  969. align-items: center;
  970. "
  971. >
  972. <div class="lineTitle">资源库</div>
  973. <div class="line"></div>
  974. </div>
  975. <div>
  976. <div
  977. class="add_chapters_box"
  978. v-if="
  979. itemTask.chapterData &&
  980. itemTask.chapterData.length == 0
  981. "
  982. style="height: 185px"
  983. ></div>
  984. <div
  985. v-else
  986. class="add_chapters_box"
  987. style="display: flex; flex-direction: column"
  988. >
  989. <div
  990. class="chapter_upload"
  991. v-for="(item1, index1) in itemTask.chapterData"
  992. :key="item1.id"
  993. @click="
  994. getChapterData(
  995. $event,
  996. unitIndex,
  997. index,
  998. index1,
  999. item1.type
  1000. )
  1001. "
  1002. >
  1003. <div
  1004. class="chapter_upload_t"
  1005. style="width: 100%"
  1006. ></div>
  1007. <div
  1008. class="chapter_upload_o"
  1009. style="
  1010. position: relative;
  1011. display: flex;
  1012. align-items: center;
  1013. "
  1014. >
  1015. <div
  1016. class="chapter_upload_l"
  1017. style="padding: 1px 0 0 10px"
  1018. >
  1019. <div
  1020. v-if="item1.type == 2"
  1021. class="chapter_upload_l_i1"
  1022. ></div>
  1023. <div
  1024. v-if="
  1025. item1.type == 3 ||
  1026. item1.type == 9 ||
  1027. item1.type == 6 ||
  1028. item1.type == 7
  1029. "
  1030. class="chapter_upload_l_i5"
  1031. style="margin-left: 1px"
  1032. ></div>
  1033. <div
  1034. v-if="item1.type == 8"
  1035. class="chapter_upload_l_i8"
  1036. style="margin-left: 1px"
  1037. ></div>
  1038. </div>
  1039. <div
  1040. class="chapter_upload_ic"
  1041. style="
  1042. cursor: pointer;
  1043. position: absolute;
  1044. width: 45px;
  1045. right: 0;
  1046. top: 0;
  1047. "
  1048. >
  1049. <div class="chapter_upload_ic_l"></div>
  1050. <div
  1051. class="chapter_upload_ic_r"
  1052. style="position: absolute"
  1053. @click.stop="
  1054. deleteChapterData(
  1055. $event,
  1056. unitIndex,
  1057. index,
  1058. index1,
  1059. itemTaskIndex
  1060. )
  1061. "
  1062. >
  1063. <div></div>
  1064. </div>
  1065. </div>
  1066. <div class="chapter_upload_n">
  1067. <input
  1068. v-if="
  1069. item1.type == 2 ||
  1070. item1.type == 3 ||
  1071. item1.type == 9 ||
  1072. item1.type == 7
  1073. "
  1074. :placeholder="item1.name"
  1075. @change="
  1076. updataVideoT(
  1077. $event,
  1078. unitIndex,
  1079. chapterIndex,
  1080. index1
  1081. )
  1082. "
  1083. style="
  1084. border: none;
  1085. outline: none;
  1086. width: 80%;
  1087. minwidth: 215px;
  1088. z-index: 99;
  1089. font-size: 14px;
  1090. white-space: nowrap;
  1091. overflow: hidden;
  1092. text-overflow: ellipsis;
  1093. "
  1094. />
  1095. <input
  1096. :placeholder="item1.name"
  1097. v-if="item1.type == 6"
  1098. style="
  1099. border: none;
  1100. outline: none;
  1101. width: 80%;
  1102. white-space: nowrap;
  1103. overflow: hidden;
  1104. text-overflow: ellipsis;
  1105. "
  1106. readonly="true"
  1107. @click="selectAttText(itemTaskIndex, index1)"
  1108. />
  1109. <input
  1110. :placeholder="
  1111. item1.title ? item1.title : '链接'
  1112. "
  1113. v-if="item1.type == 8"
  1114. style="
  1115. border: none;
  1116. outline: none;
  1117. width: 80%;
  1118. white-space: nowrap;
  1119. overflow: hidden;
  1120. text-overflow: ellipsis;
  1121. "
  1122. readonly="true"
  1123. @click="selectLine(itemTaskIndex, index1)"
  1124. />
  1125. <div
  1126. class="chapter_upload_ud"
  1127. style="z-index: 99"
  1128. >
  1129. <div
  1130. class="chapter_upload_up"
  1131. @click="
  1132. upCd($event, unitIndex, index, index1)
  1133. "
  1134. ></div>
  1135. <div
  1136. class="chapter_upload_down"
  1137. @click="
  1138. downCd($event, unitIndex, index, index1)
  1139. "
  1140. ></div>
  1141. </div>
  1142. </div>
  1143. </div>
  1144. </div>
  1145. </div>
  1146. </div>
  1147. <div class="add_info_box">
  1148. <button class="info_btn" @click="addImg($event)">
  1149. 添加视频
  1150. <input
  1151. type="file"
  1152. accept="video/mp4, video/quicktime, video/x-msvideo"
  1153. style="display: none"
  1154. capture="camera"
  1155. v-if="inputShow"
  1156. @change="
  1157. beforeUpload2($event, unitIndex, 2, itemTaskIndex)
  1158. "
  1159. />
  1160. </button>
  1161. <button class="info_btn" @click="addImg($event)">
  1162. 添加附件
  1163. <input
  1164. type="file"
  1165. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  1166. style="display: none"
  1167. v-if="inputShow"
  1168. @change="
  1169. beforeUpload2($event, unitIndex, 3, itemTaskIndex)
  1170. "
  1171. />
  1172. </button>
  1173. <button
  1174. class="info_btn"
  1175. @click="addAttText(itemTaskIndex)"
  1176. >
  1177. 添加图文
  1178. </button>
  1179. <button class="info_btn" @click="openLine(itemTaskIndex)">
  1180. 添加链接
  1181. </button>
  1182. </div>
  1183. <div
  1184. v-if="
  1185. unitJson[unitIndex].chapterInfo[0].taskJson[
  1186. itemTaskIndex
  1187. ].proVisible
  1188. "
  1189. class="mask"
  1190. >
  1191. <div class="progressBox">
  1192. <div class="lbox">
  1193. <img
  1194. src="../../../assets/loading.gif"
  1195. />上传中,请稍后
  1196. </div>
  1197. <el-progress
  1198. :text-inside="true"
  1199. :stroke-width="20"
  1200. :percentage="
  1201. unitJson[unitIndex].chapterInfo[0].taskJson[
  1202. itemTaskIndex
  1203. ].progress
  1204. ? unitJson[unitIndex].chapterInfo[0].taskJson[
  1205. itemTaskIndex
  1206. ].progress
  1207. : 0
  1208. "
  1209. style="width: 80%"
  1210. ></el-progress>
  1211. </div>
  1212. </div>
  1213. </div>
  1214. <div class="toolChoose" style="padding: 0 0 30px 30px">
  1215. <div class="tools" style="margin-top: 20px">
  1216. <div
  1217. class="leftTools"
  1218. style="
  1219. width: 95%;
  1220. padding: 0 0 15px 0;
  1221. border-bottom: 1px solid #efefef;
  1222. margin-bottom: 15px;
  1223. "
  1224. v-for="(itemTool, toolIndex) in itemTask.toolArray"
  1225. :key="toolIndex"
  1226. >
  1227. <div
  1228. style="
  1229. display: flex;
  1230. flex-direction: row;
  1231. align-items: center;
  1232. flex-wrap: nowrap;
  1233. justify-content: flex-start;
  1234. position: relative;
  1235. "
  1236. >
  1237. <div style="margin-right: 20px; font-weight: bold">
  1238. 步骤 {{ toolIndex + 1 }} :
  1239. </div>
  1240. <div class="chooseWho" style="padding-bottom: 0">
  1241. <span v-if="itemTool.tool == 1"> 电子白板 </span>
  1242. <span v-if="itemTool.tool == 3"> 思维导图 </span>
  1243. <span v-if="itemTool.tool == 6"> 协同文档 </span>
  1244. <span v-if="itemTool.tool == 15"> 问答工具 </span>
  1245. <span v-if="itemTool.tool == 48"> 表格 </span>
  1246. <span v-if="itemTool.tool == 51"> 资源库 </span>
  1247. <span v-if="itemTool.tool == 52"> 文档 </span>
  1248. <span v-if="itemTool.tool == 53"> 文件上传 </span>
  1249. <span v-if="itemTool.tool == 54"> 拍照 </span>
  1250. <span v-if="itemTool.tool == 55"> 压缩文件 </span>
  1251. <span v-if="itemTool.tool == 56"> 投票 </span>
  1252. </div>
  1253. <div
  1254. class="remove"
  1255. @click="deleteTool(itemTaskIndex, toolIndex)"
  1256. v-if="itemTask.toolArray.length > 0"
  1257. style="position: absolute; right: 55px"
  1258. ></div>
  1259. </div>
  1260. <div v-if="itemTool.tool != 51">
  1261. <textarea
  1262. rows="3"
  1263. type="text"
  1264. placeholder="添加工具描述"
  1265. class="binfo_input"
  1266. style="
  1267. margin: 20px 0 0;
  1268. resize: none;
  1269. width: 71.5% !important;
  1270. "
  1271. v-model="itemTool.toolDetail"
  1272. ></textarea>
  1273. </div>
  1274. <div style="margin-top: 10px">
  1275. <div class="tool" v-if="itemTool.tool == 1">
  1276. <div
  1277. class="whiteBIcon"
  1278. @click="openToolFun(1, itemTaskIndex, toolIndex)"
  1279. >
  1280. <img
  1281. src="../../../assets/icon/secondToolList/whiteBoard.png"
  1282. alt
  1283. />
  1284. <div style="margin: 5px 0">电子白板</div>
  1285. </div>
  1286. </div>
  1287. <div class="tool" v-if="itemTool.tool == 3">
  1288. <div
  1289. class="whiteBIcon"
  1290. @click="openToolFun(3, itemTaskIndex, toolIndex)"
  1291. >
  1292. <img
  1293. src="../../../assets/icon/secondToolList/mindMapping.png"
  1294. alt
  1295. />
  1296. <div style="margin: 5px 0">思维导图</div>
  1297. </div>
  1298. </div>
  1299. <div class="tool" v-if="itemTool.tool == 6">
  1300. <div
  1301. class="whiteBIcon"
  1302. @click="openToolFun(6, itemTaskIndex, toolIndex)"
  1303. >
  1304. <img
  1305. src="../../../assets/icon/secondToolList/doc.png"
  1306. alt
  1307. />
  1308. <div style="margin: 5px 0">协同文档</div>
  1309. </div>
  1310. </div>
  1311. <div class="tool" v-if="itemTool.tool == 15">
  1312. <div
  1313. class="whiteBIcon"
  1314. @click="openToolFun(15, itemTaskIndex, toolIndex)"
  1315. >
  1316. <img
  1317. src="../../../assets/icon/thirdToolList/answer.png"
  1318. alt
  1319. />
  1320. <div style="margin: 5px 0">问答工具</div>
  1321. </div>
  1322. </div>
  1323. <div
  1324. class="tool"
  1325. v-if="
  1326. itemTool.tool == 48 && !itemTool.toolPhoto.length
  1327. "
  1328. >
  1329. <div
  1330. class="whiteBIcon"
  1331. @click="openToolFun(48, itemTaskIndex, toolIndex)"
  1332. >
  1333. <img
  1334. src="../../../assets/icon/fourthToolList/table.png"
  1335. alt
  1336. />
  1337. <div style="margin: 5px 0">表格</div>
  1338. </div>
  1339. </div>
  1340. <div
  1341. class="tool"
  1342. v-if="
  1343. itemTool.tool == 52 && !itemTool.toolPhoto.length
  1344. "
  1345. style="position: relative"
  1346. >
  1347. <div
  1348. class="whiteBIcon"
  1349. @click="openToolFun(52, itemTaskIndex, toolIndex)"
  1350. >
  1351. <img
  1352. src="../../../assets/icon/fourthToolList/text.png"
  1353. alt
  1354. />
  1355. <div style="margin: 5px 0">文档</div>
  1356. </div>
  1357. </div>
  1358. <div
  1359. class="tool"
  1360. v-if="itemTool.tool == 53"
  1361. style="position: relative"
  1362. >
  1363. <div
  1364. class="whiteBIcon"
  1365. :id="itemTaskIndex + '-' + toolIndex"
  1366. @click="addImg($event)"
  1367. >
  1368. <img
  1369. src="../../../assets/icon/fourthToolList/file.png"
  1370. alt
  1371. />
  1372. <div style="margin: 5px 0">文件上传</div>
  1373. <input
  1374. type="file"
  1375. accept="application/pdf, application/.ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/zip"
  1376. capture="camera"
  1377. style="display: none"
  1378. @change="
  1379. beforeUploadCC(
  1380. $event,
  1381. 1,
  1382. itemTaskIndex,
  1383. toolIndex,
  1384. 53
  1385. )
  1386. "
  1387. />
  1388. <div v-if="itemTool.proVisible" class="mask">
  1389. <div class="lbox2">
  1390. <img src="../../../assets/loading.gif" />
  1391. </div>
  1392. </div>
  1393. </div>
  1394. </div>
  1395. <div
  1396. class="tool"
  1397. v-if="itemTool.tool == 54"
  1398. style="
  1399. display: flex;
  1400. flex-direction: row;
  1401. align-items: flex-end;
  1402. "
  1403. >
  1404. <div
  1405. class="whiteBIcon"
  1406. :id="itemTaskIndex + '-' + toolIndex"
  1407. @click="addImg($event)"
  1408. style="position: relative"
  1409. >
  1410. <img
  1411. src="../../../assets/icon/fourthToolList/photo.png"
  1412. alt
  1413. />
  1414. <div style="margin: 5px 0">拍照</div>
  1415. <input
  1416. type="file"
  1417. accept="video/mp4, video/quicktime, video/x-msvideo,image/*"
  1418. capture="camera"
  1419. style="display: none"
  1420. @change="
  1421. beforeUploadCC(
  1422. $event,
  1423. 2,
  1424. itemTaskIndex,
  1425. toolIndex,
  1426. 54
  1427. )
  1428. "
  1429. />
  1430. <div
  1431. v-if="itemTool.proVisible"
  1432. class="mask"
  1433. style="background: unset"
  1434. @click.stop="1"
  1435. >
  1436. <div class="lbox2"></div>
  1437. </div>
  1438. </div>
  1439. <div
  1440. v-if="itemTool.proVisible"
  1441. style="margin: 5px 0"
  1442. class="f_size_box"
  1443. >
  1444. <img src="../../../assets/loading.gif" />
  1445. <div>
  1446. <span>{{ itemTool.isFinishSize }}M</span> /
  1447. <span>{{ itemTool.isAllSize }}M</span>
  1448. </div>
  1449. <!-- <el-button type="text">取消</el-button> -->
  1450. </div>
  1451. </div>
  1452. <div
  1453. class="tool"
  1454. v-if="itemTool.tool == 55"
  1455. style="
  1456. display: flex;
  1457. flex-direction: row;
  1458. align-items: flex-end;
  1459. "
  1460. >
  1461. <div
  1462. class="whiteBIcon"
  1463. :id="itemTaskIndex + '-' + toolIndex"
  1464. @click="addImg($event)"
  1465. style="position: relative"
  1466. >
  1467. <img
  1468. src="../../../assets/icon/fourthToolList/zip.png"
  1469. alt
  1470. />
  1471. <div style="margin: 5px 0">压缩文件</div>
  1472. <input
  1473. type="file"
  1474. accept=".zip,.rar"
  1475. capture="camera"
  1476. style="display: none"
  1477. @change="
  1478. beforeUploadCC(
  1479. $event,
  1480. 3,
  1481. itemTaskIndex,
  1482. toolIndex,
  1483. 55
  1484. )
  1485. "
  1486. />
  1487. <div
  1488. v-if="itemTool.proVisible"
  1489. class="mask"
  1490. style="background: unset"
  1491. @click.stop="1"
  1492. >
  1493. <div class="lbox2"></div>
  1494. </div>
  1495. </div>
  1496. <div
  1497. v-if="itemTool.proVisible"
  1498. style="margin: 5px 0"
  1499. class="f_size_box"
  1500. >
  1501. <img src="../../../assets/loading.gif" />
  1502. <div>
  1503. <span>{{ itemTool.isFinishSize }}M</span> /
  1504. <span>{{ itemTool.isAllSize }}M</span>
  1505. </div>
  1506. <!-- <el-button type="text">取消</el-button> -->
  1507. </div>
  1508. </div>
  1509. <div class="tool" v-if="itemTool.tool == 56">
  1510. <div
  1511. class="whiteBIcon"
  1512. @click="openToolFun(56, itemTaskIndex, toolIndex)"
  1513. >
  1514. <img
  1515. src="../../../assets/icon/thirdToolList/ask.png"
  1516. alt
  1517. />
  1518. <div style="margin: 5px 0">投票</div>
  1519. </div>
  1520. </div>
  1521. <div v-if="itemTool.tool == 51">
  1522. <div class="vedioTaskBox">
  1523. <div
  1524. class="box_course"
  1525. :class="
  1526. 'box_course' + itemTaskIndex + toolIndex
  1527. "
  1528. v-if="itemTool.toolData.length > 0"
  1529. >
  1530. <div
  1531. class="wheel"
  1532. v-if="
  1533. itemTool.toolData[itemTool.sourceIndex]
  1534. .type == 2
  1535. "
  1536. >
  1537. <div class="workd_media" style="height: 100%">
  1538. <video-player
  1539. class="video-player vjs-custom-skin"
  1540. :playsinline="true"
  1541. :options="
  1542. itemTool.toolData[itemTool.sourceIndex]
  1543. .src
  1544. "
  1545. @play="onPlayerPlay($event)"
  1546. style="width: 99%; height: 100%"
  1547. ></video-player>
  1548. </div>
  1549. </div>
  1550. <div
  1551. class="wheel"
  1552. v-if="
  1553. itemTool.toolData[itemTool.sourceIndex]
  1554. .type == 6
  1555. "
  1556. style="
  1557. box-shadow: 0 0 6px 1px #f2f2f2;
  1558. width: 99%;
  1559. background: #f1f1f1;
  1560. height: 650px;
  1561. "
  1562. >
  1563. <div class="texttitle">查看文档</div>
  1564. <el-form class="textBox">
  1565. <el-form-item class="textTitle">
  1566. <div
  1567. style="
  1568. font-size: 22px;
  1569. max-height: 100px;
  1570. overflow: auto;
  1571. "
  1572. >
  1573. {{
  1574. itemTool.toolData[
  1575. itemTool.sourceIndex
  1576. ].name
  1577. }}
  1578. </div>
  1579. </el-form-item>
  1580. <div
  1581. v-html="
  1582. itemTool.toolData[itemTool.sourceIndex]
  1583. .url
  1584. "
  1585. class="textContent"
  1586. ></div>
  1587. </el-form>
  1588. </div>
  1589. <div
  1590. class="wheel"
  1591. v-if="
  1592. itemTool.toolData[itemTool.sourceIndex]
  1593. .type == 3
  1594. "
  1595. style="height: 650px; width: 99%"
  1596. >
  1597. <iframe
  1598. style="
  1599. width: 100%;
  1600. height: 100%;
  1601. border: none;
  1602. "
  1603. :src="
  1604. itemTool.toolData[itemTool.sourceIndex]
  1605. .src
  1606. "
  1607. security="restricted"
  1608. sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts allow-popups"
  1609. ></iframe>
  1610. </div>
  1611. <div
  1612. class="wheel"
  1613. v-if="
  1614. itemTool.toolData[itemTool.sourceIndex]
  1615. .type == 8
  1616. "
  1617. style="height: 650px; width: 99%"
  1618. >
  1619. <iframe
  1620. style="
  1621. width: 100%;
  1622. height: 100%;
  1623. border: none;
  1624. "
  1625. :src="
  1626. itemTool.toolData[itemTool.sourceIndex]
  1627. .src
  1628. "
  1629. security="restricted"
  1630. sandbox="allow-top-navigation allow-same-origin allow-forms allow-scripts"
  1631. ></iframe>
  1632. </div>
  1633. <div
  1634. class="wheel"
  1635. v-if="
  1636. itemTool.toolData[itemTool.sourceIndex]
  1637. .type == 9
  1638. "
  1639. style="height: 650px; width: 99%"
  1640. >
  1641. <pdf
  1642. :pdfUrl="
  1643. itemTool.toolData[itemTool.sourceIndex]
  1644. .url
  1645. "
  1646. style="
  1647. width: 100%;
  1648. height: 100%;
  1649. overflow: auto;
  1650. "
  1651. >
  1652. </pdf>
  1653. </div>
  1654. </div>
  1655. <div
  1656. class="vedioList"
  1657. :class="'vedioList' + itemTaskIndex + toolIndex"
  1658. v-if="itemTool.toolData.length > 0"
  1659. >
  1660. <div class="navTitile">内容列表:</div>
  1661. <div class="navBox">
  1662. <div>
  1663. <div
  1664. class="vedioTimeBox"
  1665. v-for="(
  1666. chapter, cIndex
  1667. ) in itemTool.toolData"
  1668. :key="cIndex + '1'"
  1669. @click="setChapterIndex(itemTool, cIndex)"
  1670. >
  1671. <div
  1672. class="vedioName"
  1673. :class="{
  1674. isClickNav:
  1675. itemTool.sourceIndex == cIndex,
  1676. }"
  1677. >
  1678. {{
  1679. chapter.type == 8
  1680. ? chapter.title
  1681. : chapter.name
  1682. }}
  1683. </div>
  1684. </div>
  1685. </div>
  1686. </div>
  1687. </div>
  1688. </div>
  1689. <div
  1690. style="padding: 10px 0 0"
  1691. v-if="itemTool.toolData[itemTool.sourceIndex]"
  1692. >
  1693. <el-button
  1694. v-if="
  1695. itemTool.toolData[itemTool.sourceIndex]
  1696. .type == 3 ||
  1697. itemTool.toolData[itemTool.sourceIndex]
  1698. .type == 9
  1699. "
  1700. type="primary"
  1701. @click="
  1702. checkFileFull(
  1703. itemTool.toolData[itemTool.sourceIndex]
  1704. .type,
  1705. itemTool.toolData[itemTool.sourceIndex].src
  1706. )
  1707. "
  1708. >全屏查看</el-button
  1709. >
  1710. <el-button
  1711. v-if="
  1712. itemTool.toolData[itemTool.sourceIndex]
  1713. .type == 3 ||
  1714. itemTool.toolData[itemTool.sourceIndex]
  1715. .type == 9
  1716. "
  1717. type="primary"
  1718. @click="
  1719. downloadFile(
  1720. itemTool.toolData[itemTool.sourceIndex].src
  1721. )
  1722. "
  1723. >文件下载</el-button
  1724. >
  1725. <el-button
  1726. v-if="
  1727. itemTool.toolData[itemTool.sourceIndex]
  1728. .type == 8
  1729. "
  1730. type="primary"
  1731. @click="
  1732. openLineS(
  1733. itemTool.toolData[itemTool.sourceIndex].src
  1734. )
  1735. "
  1736. >打开链接
  1737. </el-button>
  1738. <el-button
  1739. v-if="
  1740. itemTool.toolData[itemTool.sourceIndex]
  1741. .type == 6
  1742. "
  1743. type="primary"
  1744. @click="
  1745. checkFileFull(
  1746. itemTool.toolData[itemTool.sourceIndex]
  1747. .type,
  1748. itemTool.toolData[itemTool.sourceIndex]
  1749. )
  1750. "
  1751. >全屏查看</el-button
  1752. >
  1753. <el-button
  1754. type="primary"
  1755. @click="
  1756. editSourceUpadte(itemTaskIndex, toolIndex)
  1757. "
  1758. >添加资源</el-button
  1759. >
  1760. </div>
  1761. </div>
  1762. </div>
  1763. <div
  1764. v-if="itemTool.toolPhoto.length"
  1765. style="margin-top: 10px"
  1766. class="toolimg_box"
  1767. >
  1768. <div
  1769. class="toolimg"
  1770. v-for="(photo, pIndex) in itemTool.toolPhoto"
  1771. :key="pIndex"
  1772. :class="{ answerWidth: photo.type == 3 }"
  1773. >
  1774. <img
  1775. v-if="photo.type == 1"
  1776. :src="photo.content"
  1777. alt=""
  1778. @click="previewImg(photo.content)"
  1779. />
  1780. <div class="answerBg" v-if="photo.type == 3">
  1781. <!-- <div>{{ w.sName }}</div> -->
  1782. <el-tooltip
  1783. class="item"
  1784. effect="light"
  1785. :content="photo.content"
  1786. placement="top"
  1787. >
  1788. <div class="answerContent">
  1789. {{ photo.content }}
  1790. </div>
  1791. </el-tooltip>
  1792. </div>
  1793. <img
  1794. v-if="photo.type == 10"
  1795. src="../../../assets/icon/word2.png"
  1796. alt=""
  1797. @click="openToolFun(48, itemTaskIndex, toolIndex)"
  1798. />
  1799. <img
  1800. v-if="photo.type == 4"
  1801. src="../../../assets/icon/word2.png"
  1802. alt=""
  1803. @click="openFile(photo.content)"
  1804. />
  1805. <img
  1806. v-if="photo.type == 12"
  1807. src="../../../assets/icon/word2.png"
  1808. alt=""
  1809. @click="openToolFun(52, itemTaskIndex, toolIndex)"
  1810. />
  1811. <img
  1812. v-if="photo.type == 14"
  1813. src="../../../assets/icon/word2.png"
  1814. alt=""
  1815. @click="
  1816. openAsk(photo.content, itemTaskIndex, toolIndex)
  1817. "
  1818. />
  1819. <img
  1820. v-if="photo.type == 13"
  1821. src="../../../assets/icon/zip.png"
  1822. alt=""
  1823. @click="downloadFile(photo.content)"
  1824. />
  1825. <img
  1826. v-if="photo.type == 5"
  1827. src="../../../assets/icon/isVideo.png"
  1828. alt=""
  1829. @click="openVideo(photo.content)"
  1830. />
  1831. <img
  1832. class="deleteImg"
  1833. src="../../../assets/deleteworks.png"
  1834. v-if="
  1835. photo.userid == userid &&
  1836. itemTool.tool != 52 &&
  1837. itemTool.tool != 48
  1838. "
  1839. @click.stop="deleteWorks(photo.id)"
  1840. alt
  1841. />
  1842. <div class="comment">
  1843. <div class="worksName">
  1844. <div
  1845. v-if="
  1846. itemTool.tool == 52 || itemTool.tool == 48
  1847. "
  1848. >
  1849. <el-tooltip
  1850. v-if="itemTool.people.length > 1"
  1851. :content="itemTool.people.join('、')"
  1852. placement="top"
  1853. effect="dark"
  1854. >
  1855. <span>{{
  1856. itemTool.people.join("、")
  1857. }}</span>
  1858. </el-tooltip>
  1859. <span v-else>{{
  1860. itemTool.people.join("、")
  1861. }}</span>
  1862. </div>
  1863. <div v-else>{{ photo.username }}</div>
  1864. </div>
  1865. </div>
  1866. </div>
  1867. </div>
  1868. <div
  1869. v-if="
  1870. itemTool.toolPhoto.length && itemTool.tool == 56
  1871. "
  1872. >
  1873. <voteStatic
  1874. :askJSON="itemTool.askJson"
  1875. :checkJson="checkJson[toolIndex]"
  1876. ></voteStatic>
  1877. </div>
  1878. </div>
  1879. <div class="addToolFunBox">
  1880. <div
  1881. class="addToolFun"
  1882. @click="addToolFunD(itemTaskIndex)"
  1883. >
  1884. <div class="addToolImg">
  1885. <img src="../../../assets/icon/add.png" alt />
  1886. </div>
  1887. <div>添加工具</div>
  1888. </div>
  1889. <!-- <div class="addToolFun" @click="addSourceFunD(itemTaskIndex)">
  1890. <div class="addToolImg">
  1891. <img src="../../../assets/icon/add.png" alt />
  1892. </div>
  1893. <div>添加资源</div>
  1894. </div> -->
  1895. </div>
  1896. </div>
  1897. </div>
  1898. <div class="funBlock" style="padding: 0">
  1899. <div class="fold" @click="fold(itemTaskIndex, $event, 1)">
  1900. <div>折叠</div>
  1901. <div class="arrow">
  1902. <img src="../../../assets/icon/fold.png" alt />
  1903. </div>
  1904. </div>
  1905. <div class="fold" @click="fold(itemTaskIndex, $event, 0)">
  1906. <div>展开</div>
  1907. <div class="arrow">
  1908. <img src="../../../assets/icon/expand.png" alt />
  1909. </div>
  1910. </div>
  1911. </div>
  1912. </div>
  1913. <div class="addTaskBorder" @click="addTaskBorder">
  1914. <div>
  1915. <img src="../../../assets/icon/addHw.png" alt />
  1916. <span>添加任务</span>
  1917. </div>
  1918. </div>
  1919. </div>
  1920. </div>
  1921. </div>
  1922. <div class="rightBox" v-if="steps == 4">
  1923. <div class="proMan">
  1924. <div class="title">
  1925. <img src="../../../assets/icon/task.png" alt />任务进展甘特图
  1926. </div>
  1927. <ganChart :Json="unitJson" v-if="steps == 4"></ganChart>
  1928. </div>
  1929. <div class="proMan">
  1930. <div class="title">
  1931. <img src="../../../assets/icon/tupu.png" alt />图谱
  1932. </div>
  1933. <graph :Json="graphJson"></graph>
  1934. </div>
  1935. <div class="proMan">
  1936. <div class="title">
  1937. <img src="../../../assets/icon/proMan.png" alt />负责人看板
  1938. </div>
  1939. <proMan :Json="unitJson" :ManAarray="ManAarray"></proMan>
  1940. </div>
  1941. </div>
  1942. <div
  1943. style="
  1944. width: calc(100% - 20px);
  1945. background: rgb(255, 255, 255);
  1946. border-radius: 10px;
  1947. "
  1948. v-if="steps == 5"
  1949. >
  1950. <div class="basic_box_success">
  1951. <div class="right_img">
  1952. <img src="../../../assets/icon/right.png" alt />
  1953. </div>
  1954. <div style="font-weight: bold">成功</div>
  1955. <!-- <div>您的项目编号</div>
  1956. <div class="number">{{ number }}</div>-->
  1957. <!-- <div class="success_button">
  1958. <div class="look_course" @click="isNoFinsh">
  1959. 邀请老师协同编辑
  1960. </div>
  1961. <div class="attend_others" @click="goCourse">预览项目</div>
  1962. </div> -->
  1963. </div>
  1964. </div>
  1965. <div class="info_btnBox">
  1966. <button
  1967. class="info_btn"
  1968. v-if="steps == 1"
  1969. @click="
  1970. goTo(
  1971. fpath + '?userid=' + userid + '&oid=' + oid + '&org=' + org
  1972. )
  1973. "
  1974. >
  1975. 返回项目
  1976. </button>
  1977. <button
  1978. class="info_btn"
  1979. v-if="steps > 1 && steps != 6"
  1980. @click="lastSteps"
  1981. >
  1982. {{ steps == 5 ? "返回首页" : "上一步" }}
  1983. </button>
  1984. <button class="info_btn" v-if="steps < 5" @click="nextSteps">
  1985. {{
  1986. (steps == 4 && type == 2) || (steps == 3 && type != 2)
  1987. ? "确认上传"
  1988. : "下一步"
  1989. }}
  1990. </button>
  1991. </div>
  1992. </div>
  1993. </div>
  1994. </div>
  1995. <el-dialog
  1996. title="提示"
  1997. :visible.sync="dialogVisible"
  1998. :append-to-body="true"
  1999. width="25%"
  2000. :before-close="handleClose"
  2001. class="dialog_diy2 customWidth"
  2002. >
  2003. <div>请复制该链接邀请协同编辑</div>
  2004. <div>http://www.boomyon.com/index-zhang.com</div>
  2005. <span slot="footer" class="dialog-footer">
  2006. <el-button type="primary">复制链接分享</el-button>
  2007. <el-button @click="dialogVisible = false">取消</el-button>
  2008. </span>
  2009. </el-dialog>
  2010. <el-dialog
  2011. :title="updateBoolean2 ? '查看文档' : '添加文档'"
  2012. :visible.sync="dialogVisible1"
  2013. :append-to-body="true"
  2014. width="25%"
  2015. :before-close="handleClose"
  2016. class="dialog_diy2 customWidth"
  2017. >
  2018. <el-form>
  2019. <el-form-item label="文档标题">
  2020. <el-input
  2021. v-model="tTitle"
  2022. auto-complete="off"
  2023. placeholder="请输入文档标题名..."
  2024. ></el-input>
  2025. </el-form-item>
  2026. <div>文档简介</div>
  2027. <editor-bar v-model="tdetail" @change="change"></editor-bar>
  2028. </el-form>
  2029. <span slot="footer" class="dialog-footer">
  2030. <el-button @click="dialogVisible1 = false">取 消</el-button>
  2031. <el-button type="primary" @click="addWord" v-if="!updateBoolean2"
  2032. >添加</el-button
  2033. >
  2034. <el-button type="primary" @click="upWord" v-else>修 改</el-button>
  2035. </span>
  2036. </el-dialog>
  2037. <el-dialog
  2038. title="添加文档"
  2039. :visible.sync="dialogVisible2"
  2040. :append-to-body="true"
  2041. width="500px"
  2042. :before-close="handleClose"
  2043. class="dialog_diy"
  2044. >
  2045. <el-form>
  2046. <el-form-item label="文档标题">
  2047. <el-input
  2048. v-model="templateC.title"
  2049. auto-complete="off"
  2050. placeholder="请输入文档标题名..."
  2051. ></el-input>
  2052. </el-form-item>
  2053. <div>文档内容</div>
  2054. <editor-bar v-model="cTemplate" @change="change"></editor-bar>
  2055. </el-form>
  2056. <span slot="footer" class="dialog-footer">
  2057. <el-button @click="clearChoose">取 消</el-button>
  2058. <el-button type="primary" @click="wordNext()">确定</el-button>
  2059. </span>
  2060. </el-dialog>
  2061. <el-dialog
  2062. title="添加富文本"
  2063. :visible.sync="dialogVisible6"
  2064. :append-to-body="true"
  2065. width="500px"
  2066. :before-close="handleClose"
  2067. class="dialog_diy"
  2068. >
  2069. <el-form>
  2070. <el-form-item label="文本标题">
  2071. <el-input
  2072. v-model="AttText.title"
  2073. auto-complete="off"
  2074. @input="change2"
  2075. placeholder="请输入文本标题..."
  2076. ></el-input>
  2077. </el-form-item>
  2078. <div>富文本内容</div>
  2079. <editor-bar v-model="AttText.text" @change="change"></editor-bar>
  2080. </el-form>
  2081. <span slot="footer" class="dialog-footer">
  2082. <el-button @click="clearAttText">取 消</el-button>
  2083. <el-button type="primary" @click="isAddOrUpdateAttText">确定</el-button>
  2084. </span>
  2085. </el-dialog>
  2086. <el-dialog
  2087. title="添加链接"
  2088. :visible.sync="dialogVisible7"
  2089. :append-to-body="true"
  2090. width="500px"
  2091. :before-close="handleClose"
  2092. class="dialog_diy lineCss"
  2093. >
  2094. <el-form>
  2095. <el-form-item label="标题" :label-width="formLabelWidth">
  2096. <span>
  2097. <el-input
  2098. placeholder="请输入链接标题"
  2099. clearable
  2100. v-model="lineTitle"
  2101. class="add_input"
  2102. ></el-input>
  2103. </span>
  2104. </el-form-item>
  2105. <el-form-item label="链接" :label-width="formLabelWidth">
  2106. <span>
  2107. <el-input
  2108. placeholder="请输入链接"
  2109. clearable
  2110. v-model="line"
  2111. class="add_input"
  2112. ></el-input>
  2113. </span>
  2114. </el-form-item>
  2115. </el-form>
  2116. <span slot="footer" class="dialog-footer">
  2117. <el-button @click="clearLine">取 消</el-button>
  2118. <el-button type="primary" @click="isAddOrUpdateLine">确定</el-button>
  2119. </span>
  2120. </el-dialog>
  2121. <el-dialog
  2122. title="添加项目成员"
  2123. :visible.sync="dialogVisible3"
  2124. :append-to-body="true"
  2125. width="25%"
  2126. height="80%"
  2127. :before-close="handleClose"
  2128. class="addNewPP customWidth"
  2129. >
  2130. <div class="people">
  2131. <div class="people_top">
  2132. <div class="people_nav">选择成员</div>
  2133. <div class="people_top_right">
  2134. <div class="people_search">
  2135. <el-input
  2136. style="height: 100%"
  2137. placeholder="搜索成员账号"
  2138. v-model="searchPeople"
  2139. ></el-input>
  2140. <div class="search_img" @click="searchStudent">
  2141. <img src="../../../assets/icon/search.png" alt />
  2142. </div>
  2143. </div>
  2144. </div>
  2145. </div>
  2146. <el-checkbox-group v-model="checkboxList" class="people_name">
  2147. <el-checkbox
  2148. v-for="item in studentJuri"
  2149. :key="item.userid"
  2150. :label="item.userid"
  2151. >{{ item.name ? item.name : "暂无学生可选" }}
  2152. </el-checkbox>
  2153. </el-checkbox-group>
  2154. </div>
  2155. <span slot="footer" class="dialog-footer">
  2156. <el-button @click="dialogVisible3 = false">取 消</el-button>
  2157. <el-button type="primary" @click="isAddPP">确定</el-button>
  2158. </span>
  2159. </el-dialog>
  2160. <el-dialog
  2161. title="添加班级"
  2162. :visible.sync="dialogVisibleClass"
  2163. :append-to-body="true"
  2164. width="400px"
  2165. height="80%"
  2166. :before-close="handleClose"
  2167. class="addNewPP"
  2168. >
  2169. <div class="people" style="height: 300px">
  2170. <div class="people_top">
  2171. <div class="people_nav">选择班级</div>
  2172. </div>
  2173. <el-checkbox-group v-model="checkboxList2" class="people_name">
  2174. <div v-for="(item, index) in grade" :key="item.id">
  2175. <el-checkbox :label="item.id">
  2176. {{ item.name ? item.name : "暂无班级可选" }}
  2177. </el-checkbox>
  2178. <div>
  2179. <span>{{ index }}</span>
  2180. </div>
  2181. </div>
  2182. </el-checkbox-group>
  2183. </div>
  2184. <span slot="footer" class="dialog-footer">
  2185. <el-button @click="dialogVisibleClass = false">取 消</el-button>
  2186. <el-button type="primary" @click="isAddClass">确定</el-button>
  2187. </span>
  2188. </el-dialog>
  2189. <el-dialog
  2190. title="添加协同成员"
  2191. :visible.sync="dialogVisibleMember"
  2192. :append-to-body="true"
  2193. width="25%"
  2194. height="80%"
  2195. :before-close="handleClose"
  2196. class="addNewPP customWidth"
  2197. >
  2198. <div class="people">
  2199. <div class="people_top">
  2200. <div class="people_top_right">
  2201. <div class="people_search">
  2202. <el-input
  2203. placeholder="搜索完整的姓名/账号"
  2204. v-model="searchTN"
  2205. @keyup.enter.native="getTeacher"
  2206. ></el-input>
  2207. <div class="search_img" @click="getTeacher">
  2208. <img src="../../../assets/icon/search.png" alt />
  2209. </div>
  2210. </div>
  2211. </div>
  2212. <div class="people_nav">选择成员</div>
  2213. </div>
  2214. <div
  2215. class="t_j_box"
  2216. style="
  2217. padding: 20px 0 0 25px;
  2218. width: calc(100% - 55px);
  2219. margin-left: 25px;
  2220. "
  2221. >
  2222. <span>姓名</span>
  2223. <span>身份</span>
  2224. <span>账号</span>
  2225. <span>学校</span>
  2226. </div>
  2227. <el-checkbox-group
  2228. v-model="checkboxList3"
  2229. class="people_name"
  2230. v-if="teacherJuri.length"
  2231. >
  2232. <el-checkbox
  2233. v-for="item in teacherJuri"
  2234. :key="item.userid"
  2235. :label="item.userid"
  2236. >
  2237. <div class="t_j_box">
  2238. <el-tooltip
  2239. placement="top"
  2240. :content="item.name ? item.name : '暂无姓名'"
  2241. >
  2242. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  2243. </el-tooltip>
  2244. <span>{{ item.type == "1" ? "老师" : "学生" }}</span>
  2245. <el-tooltip placement="top" :content="item.username">
  2246. <span>{{ item.username }}</span>
  2247. </el-tooltip>
  2248. <el-tooltip placement="top" :content="item.school">
  2249. <span>{{ item.school }}</span>
  2250. </el-tooltip>
  2251. </div>
  2252. </el-checkbox>
  2253. </el-checkbox-group>
  2254. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  2255. </div>
  2256. <span slot="footer" class="dialog-footer">
  2257. <el-button @click="dialogVisibleMember = false">取 消</el-button>
  2258. <el-button type="primary" @click="isAddPPTeacher">确定</el-button>
  2259. </span>
  2260. </el-dialog>
  2261. <el-dialog
  2262. title="添加协同者"
  2263. :visible.sync="dialogVisibleTcMember"
  2264. :append-to-body="true"
  2265. width="25%"
  2266. height="80%"
  2267. :before-close="handleClose"
  2268. class="addNewPP customWidth"
  2269. >
  2270. <div class="people">
  2271. <div class="people_top">
  2272. <!-- <div class="people_top_right">
  2273. <div class="people_search">
  2274. <el-input placeholder="搜索成员名称" v-model="searchTN" @keyup.enter.native="getTeacher"></el-input>
  2275. <div class="search_img" @click="getTeacher">
  2276. <img src="../../../assets/icon/search.png" alt />
  2277. </div>
  2278. </div>
  2279. </div> -->
  2280. <div class="people_nav">选择成员</div>
  2281. </div>
  2282. <div
  2283. class="t_j_box"
  2284. style="
  2285. padding: 20px 0 0 25px;
  2286. width: calc(100% - 55px);
  2287. margin-left: 25px;
  2288. "
  2289. >
  2290. <span>姓名</span>
  2291. <span>身份</span>
  2292. <span>账号</span>
  2293. <span>学校</span>
  2294. </div>
  2295. <el-checkbox-group
  2296. v-model="tcMember"
  2297. class="people_name"
  2298. v-if="ManAarray2.length"
  2299. >
  2300. <el-checkbox
  2301. v-for="item in ManAarray2"
  2302. :key="item.userid"
  2303. :label="item.userid"
  2304. >
  2305. <div class="t_j_box">
  2306. <el-tooltip
  2307. placement="top"
  2308. :content="item.name ? item.name : '暂无姓名'"
  2309. >
  2310. <span>{{ item.name ? item.name : "暂无姓名" }}</span>
  2311. </el-tooltip>
  2312. <span>{{ item.type == "1" ? "老师" : "学生" }}</span>
  2313. <el-tooltip placement="top" :content="item.username">
  2314. <span>{{ item.username }}</span>
  2315. </el-tooltip>
  2316. <el-tooltip placement="top" :content="item.school">
  2317. <span>{{ item.school }}</span>
  2318. </el-tooltip>
  2319. </div>
  2320. </el-checkbox>
  2321. </el-checkbox-group>
  2322. <div style="text-align: center; margin-top: 10px" v-else>暂无数据</div>
  2323. </div>
  2324. <span slot="footer" class="dialog-footer">
  2325. <el-button @click="dialogVisibleTcMember = false">取 消</el-button>
  2326. <el-button type="primary" @click="isAddPPTcTeacher">确定</el-button>
  2327. </span>
  2328. </el-dialog>
  2329. <el-dialog
  2330. title="创建问卷"
  2331. :visible.sync="dialogVisible5"
  2332. :append-to-body="true"
  2333. width="800px"
  2334. :before-close="handleClose"
  2335. class="dialog_diy"
  2336. >
  2337. <div>
  2338. <div
  2339. class="a_add_title"
  2340. style="
  2341. display: flex;
  2342. flex-direction: row;
  2343. align-items: center;
  2344. justify-content: center;
  2345. "
  2346. >
  2347. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  2348. <el-input
  2349. v-model="askJson.askTitle"
  2350. placeholder="请输入标题"
  2351. style="width: 400px"
  2352. ></el-input>
  2353. </div>
  2354. <div class="a_addBox">
  2355. <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div>
  2356. <div
  2357. class="a_add_box"
  2358. v-for="(item1, index1) in askJson.askCount"
  2359. :key="index1"
  2360. >
  2361. <div class="a_add_head">
  2362. <div>
  2363. {{ index1 + 1 + "、" }}
  2364. <el-input
  2365. class="a_add_head_input"
  2366. v-model="askJson.askJson[index1].askstitle"
  2367. placeholder="请输入题目..."
  2368. >
  2369. </el-input>
  2370. </div>
  2371. <div class="a_add_head_div">
  2372. <el-button type="primary" size="small" @click="addAskList()"
  2373. >添加</el-button
  2374. >
  2375. <el-button
  2376. type="primary"
  2377. size="small"
  2378. @click="deleteAskList(index1)"
  2379. v-if="askJson.askCount != 1"
  2380. >删除
  2381. </el-button>
  2382. </div>
  2383. </div>
  2384. <div class="a_add_body">
  2385. <div class="a_add_input">
  2386. <el-input
  2387. v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"
  2388. :key="checkIndex"
  2389. v-model="askJson.askJson[index1].checkList[checkIndex]"
  2390. placeholder="请输入选项..."
  2391. style="width: 150px; margin: 10px 10px 0 0"
  2392. ></el-input>
  2393. </div>
  2394. <div class="a_add_body_div">
  2395. <el-button
  2396. style="margin: 10px 0px 0 0"
  2397. type="primary"
  2398. size="small"
  2399. @click="addcheckList(askJson.askJson[index1])"
  2400. >添加</el-button
  2401. >
  2402. <el-button
  2403. type="primary"
  2404. size="small"
  2405. style="margin: 10px 0 0 10px"
  2406. @click="deletecheckList(askJson.askJson[index1])"
  2407. v-if="askJson.askJson[index1].askItem != 1"
  2408. >删除
  2409. </el-button>
  2410. </div>
  2411. </div>
  2412. </div>
  2413. </div>
  2414. </div>
  2415. <span slot="footer" class="dialog-footer">
  2416. <el-button @click="dialogVisible5 = false">取 消</el-button>
  2417. <el-button type="primary" @click="addAsk">确 定</el-button>
  2418. </span>
  2419. </el-dialog>
  2420. <el-dialog
  2421. title="创建选择题"
  2422. :visible.sync="dialogVisibleChoice"
  2423. :append-to-body="true"
  2424. width="800px"
  2425. :before-close="handleClose"
  2426. class="dialog_diy"
  2427. >
  2428. <div>
  2429. <!-- <div class="a_add_title" style="
  2430. display: flex;
  2431. flex-direction: row;
  2432. align-items: center;
  2433. justify-content: center;
  2434. ">
  2435. <div style="margin-right: 20px; font-size: 20px">标题:</div>
  2436. <el-input v-model="testJson.testTitle" placeholder="请输入标题" style="width: 400px"></el-input>
  2437. </div> -->
  2438. <div class="a_addBox">
  2439. <div style="font-size: 16px; color: #c7c7c7">请输入题目内容</div>
  2440. <div
  2441. class="a_add_box"
  2442. v-for="(item1, index1) in testJson.testCount"
  2443. :key="index1"
  2444. >
  2445. <div class="a_add_checkType">
  2446. <span
  2447. :class="{ active: testJson.testJson[index1].type == '1' }"
  2448. @click="checkTestType('1', testJson.testJson[index1])"
  2449. >单选题</span
  2450. >
  2451. <span
  2452. :class="{ active: testJson.testJson[index1].type == '2' }"
  2453. @click="checkTestType('2', testJson.testJson[index1])"
  2454. >多选题</span
  2455. >
  2456. </div>
  2457. <div class="a_add_head">
  2458. <div>
  2459. {{ index1 + 1 + "、" }}
  2460. <el-input
  2461. class="a_add_head_input"
  2462. v-model="testJson.testJson[index1].teststitle"
  2463. placeholder="请输入题目..."
  2464. >
  2465. </el-input>
  2466. </div>
  2467. <div class="a_add_head_div">
  2468. <el-button type="primary" size="small" @click="addTestList()"
  2469. >添加</el-button
  2470. >
  2471. <el-button
  2472. type="primary"
  2473. size="small"
  2474. @click="deleteTestList(index1)"
  2475. v-if="testJson.testCount != 1"
  2476. >删除
  2477. </el-button>
  2478. </div>
  2479. </div>
  2480. <div class="a_add_body">
  2481. <div class="a_add_input a_add_input_choice">
  2482. <el-radio-group
  2483. v-model="testJson.testJson[index1].answer"
  2484. v-if="testJson.testJson[index1].type == 1"
  2485. >
  2486. <el-radio
  2487. v-for="(item2, checkIndex) in testJson.testJson[index1]
  2488. .testItem"
  2489. :key="checkIndex"
  2490. :label="checkIndex"
  2491. >
  2492. <el-input
  2493. v-model="testJson.testJson[index1].checkList[checkIndex]"
  2494. placeholder="请输入选项..."
  2495. style="width: 300px; margin-right: 10px"
  2496. ></el-input>
  2497. </el-radio>
  2498. </el-radio-group>
  2499. <el-checkbox-group
  2500. v-model="testJson.testJson[index1].answer"
  2501. v-if="testJson.testJson[index1].type == '2'"
  2502. >
  2503. <el-checkbox
  2504. v-for="(item2, checkIndex) in testJson.testJson[index1]
  2505. .testItem"
  2506. :key="checkIndex"
  2507. :label="checkIndex"
  2508. >
  2509. <el-input
  2510. v-model="testJson.testJson[index1].checkList[checkIndex]"
  2511. placeholder="请输入选项..."
  2512. style="width: 300px; margin-right: 10px"
  2513. ></el-input>
  2514. </el-checkbox>
  2515. </el-checkbox-group>
  2516. </div>
  2517. <div class="a_add_body_div">
  2518. <el-button
  2519. type="primary"
  2520. size="small"
  2521. @click="addTcheckList(testJson.testJson[index1])"
  2522. >添加</el-button
  2523. >
  2524. <el-button
  2525. type="primary"
  2526. size="small"
  2527. @click="deleteTcheckList(testJson.testJson[index1])"
  2528. v-if="testJson.testJson[index1].testItem != 1"
  2529. >删除
  2530. </el-button>
  2531. </div>
  2532. </div>
  2533. </div>
  2534. </div>
  2535. </div>
  2536. <span slot="footer" class="dialog-footer">
  2537. <el-button @click="dialogVisibleChoice = false">取 消</el-button>
  2538. <el-button type="primary" @click="addTest">确 定</el-button>
  2539. </span>
  2540. </el-dialog>
  2541. <el-dialog
  2542. title="添加问答"
  2543. :visible.sync="dialogVisible8"
  2544. :append-to-body="true"
  2545. width="500px"
  2546. :before-close="handleClose"
  2547. class="dialog_diy"
  2548. >
  2549. <div>
  2550. <div
  2551. class="a_add_title"
  2552. style="
  2553. display: flex;
  2554. flex-direction: column;
  2555. align-items: flex-start;
  2556. justify-content: center;
  2557. "
  2558. >
  2559. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  2560. <el-input
  2561. v-model="answerQ"
  2562. placeholder="请输入您要问的问题"
  2563. ></el-input>
  2564. </div>
  2565. </div>
  2566. <span slot="footer" class="dialog-footer">
  2567. <el-button @click="dialogVisible8 = false">取 消</el-button>
  2568. <el-button type="primary" @click="addAnswer">确 定</el-button>
  2569. </span>
  2570. </el-dialog>
  2571. <el-dialog
  2572. title="添加问题"
  2573. :visible.sync="dialogVisibleMp3"
  2574. :append-to-body="true"
  2575. width="500px"
  2576. :before-close="handleClose"
  2577. class="dialog_diy"
  2578. >
  2579. <div>
  2580. <div
  2581. class="a_add_title"
  2582. style="
  2583. display: flex;
  2584. flex-direction: column;
  2585. align-items: flex-start;
  2586. justify-content: center;
  2587. "
  2588. >
  2589. <div style="margin-bottom: 20px; font-size: 20px">问题:</div>
  2590. <el-input
  2591. v-model="answerQ"
  2592. placeholder="请输入您想要回答的问题"
  2593. ></el-input>
  2594. </div>
  2595. </div>
  2596. <span slot="footer" class="dialog-footer">
  2597. <el-button @click="dialogVisibleMp3 = false">取 消</el-button>
  2598. <el-button type="primary" @click="addMp3Answer">确 定</el-button>
  2599. </span>
  2600. </el-dialog>
  2601. <el-dialog
  2602. title="上传图片"
  2603. :visible.sync="choosePicVisible"
  2604. :append-to-body="true"
  2605. width="500px"
  2606. :before-close="handleClose"
  2607. class="dialog_diy"
  2608. >
  2609. <div>
  2610. <div class="fileCss" style="padding-top: 20px">
  2611. <div>
  2612. <button class="info_btn" @click="addImg($event)">
  2613. 选择本地文件
  2614. <input
  2615. type="file"
  2616. accept="image/*"
  2617. style="display: none"
  2618. @change="beforeUpload1"
  2619. />
  2620. </button>
  2621. </div>
  2622. <div>
  2623. <el-button
  2624. @click="getAllBanner"
  2625. v-if="isSysPic == false && cover.length == 0"
  2626. >选择系统文件</el-button
  2627. >
  2628. <div class="isSysPic" v-if="isSysPic == true && cover.length > 0">
  2629. <img :src="cover[0].url" alt="" />
  2630. <div class="deletePic" @click="deleteSysPic">
  2631. <img src="../../../assets/icon/delete.png" alt="" />
  2632. </div>
  2633. </div>
  2634. </div>
  2635. </div>
  2636. <div class="fileCss">
  2637. <div>选择本地文件</div>
  2638. <div>选择系统文件</div>
  2639. </div>
  2640. </div>
  2641. <span slot="footer" class="dialog-footer">
  2642. <el-button @click="choosePicVisible = false">取 消</el-button>
  2643. <el-button type="primary" @click="choosePicVisible = false"
  2644. >确 定</el-button
  2645. >
  2646. </span>
  2647. </el-dialog>
  2648. <el-dialog
  2649. title="选择系统文件"
  2650. :visible.sync="sysPicVisible"
  2651. :append-to-body="true"
  2652. width="710px"
  2653. :before-close="handleClose"
  2654. class="dialog_diy"
  2655. >
  2656. <div class="cru_selectBox" style="margin: 0">
  2657. <div
  2658. @click="getChoosePic(1)"
  2659. class="cru_select"
  2660. :class="chooseType == 1 ? 'cru_selected' : ''"
  2661. >
  2662. 绘画
  2663. </div>
  2664. <div
  2665. @click="getChoosePic(2)"
  2666. class="cru_select"
  2667. :class="chooseType == 2 ? 'cru_selected' : ''"
  2668. >
  2669. 科技
  2670. </div>
  2671. <div
  2672. @click="getChoosePic(3)"
  2673. class="cru_select"
  2674. :class="chooseType == 3 ? 'cru_selected' : ''"
  2675. >
  2676. 人文
  2677. </div>
  2678. <div
  2679. @click="getChoosePic(4)"
  2680. class="cru_select"
  2681. :class="chooseType == 4 ? 'cru_selected' : ''"
  2682. >
  2683. 艺术
  2684. </div>
  2685. </div>
  2686. <div class="sysPicBox">
  2687. <div v-for="(sys, sysIndex) in sysPic" :key="sysIndex" class="sysPic">
  2688. <img :src="sys.poster" alt="" @click="chooseSysPic(sys.poster)" />
  2689. </div>
  2690. </div>
  2691. <span slot="footer" class="dialog-footer">
  2692. <el-button @click="sysPicVisible = false">取 消</el-button>
  2693. <el-button type="primary">确 定</el-button>
  2694. </span>
  2695. </el-dialog>
  2696. <el-dialog
  2697. title="选择填空"
  2698. :visible.sync="dialogVisibleSelect"
  2699. :append-to-body="true"
  2700. width="800px"
  2701. :before-close="handleClose"
  2702. class="dialog_diy dialog_diy3"
  2703. >
  2704. <div v-if="selectJson">
  2705. <div class="select_box1" v-if="selectSteps == 1">
  2706. <div class="select_box1_img">
  2707. <div class="select_box1_title">
  2708. <span>上传题目图片</span
  2709. ><span>提示:请将题目以图片的方式上传</span>
  2710. </div>
  2711. <div class="select_box1_add_img">
  2712. <div
  2713. class="uploadFm"
  2714. @click="addImg($event)"
  2715. v-if="!selectJson.url"
  2716. >
  2717. <input
  2718. type="file"
  2719. accept="image/*"
  2720. style="display: none"
  2721. @change="beforeUploadSelect"
  2722. />
  2723. <img src="../../../assets/icon/addPoster.png" alt="" />
  2724. </div>
  2725. <div class="isSysPic" v-else>
  2726. <img :src="selectJson.url" alt="" />
  2727. <div class="deletePic" @click="deleteSelectPic">
  2728. <img src="../../../assets/icon/delete.png" alt="" />
  2729. </div>
  2730. </div>
  2731. </div>
  2732. </div>
  2733. <div class="select_box1_select">
  2734. <div class="select_box1_title">
  2735. <span>添加选项</span><span>提示:请输入题目选项</span>
  2736. </div>
  2737. <div class="select_box1_select_box">
  2738. <el-input
  2739. v-for="(item2, checkIndex) in selectJson.select"
  2740. :key="checkIndex"
  2741. v-model="selectJson.select[checkIndex]"
  2742. placeholder="请输入选项..."
  2743. style="width: 150px; margin: 10px 10px 0 0"
  2744. ></el-input>
  2745. <div class="select_box1_select_box_add">
  2746. <el-button
  2747. style="margin: 10px 0px 0 0"
  2748. type="primary"
  2749. size="small"
  2750. @click="addSelectList(selectJson)"
  2751. >
  2752. 添加</el-button
  2753. >
  2754. <el-button
  2755. type="primary"
  2756. size="small"
  2757. style="margin: 10px 0 0 0"
  2758. @click="deleteSelectList(selectJson)"
  2759. v-if="selectJson.select && selectJson.select.length > 0"
  2760. >删除</el-button
  2761. >
  2762. </div>
  2763. </div>
  2764. </div>
  2765. </div>
  2766. <div v-if="selectSteps == 2">
  2767. <div class="select_box2">
  2768. <div class="select_box2_title">设置答案</div>
  2769. <div class="select_box2_box">
  2770. <div class="select_box2_img">
  2771. <img :src="selectJson.url" alt="" />
  2772. </div>
  2773. <div class="select_box2_answer">
  2774. <div class="select_answer_title">根据题目选择对应答案</div>
  2775. <div
  2776. class="select_box2_answer_box"
  2777. v-for="(item2, checkIndex) in selectJson.select"
  2778. :key="checkIndex"
  2779. >
  2780. <span>{{ checkIndex + 1 }}、</span>
  2781. <el-select
  2782. v-model="selectJson.answer[checkIndex]"
  2783. placeholder="请选择正确答案"
  2784. >
  2785. <el-option
  2786. v-for="(e, eIndex) in selectJson.select"
  2787. :key="eIndex"
  2788. :label="e"
  2789. :value="eIndex"
  2790. >
  2791. </el-option>
  2792. </el-select>
  2793. </div>
  2794. </div>
  2795. </div>
  2796. </div>
  2797. </div>
  2798. </div>
  2799. <span slot="footer" class="dialog-footer">
  2800. <el-button
  2801. type="primary"
  2802. @click="nextSelectSteps()"
  2803. v-if="selectSteps == 1"
  2804. >下一步</el-button
  2805. >
  2806. <el-button @click="selectSteps--" v-if="selectSteps == 2"
  2807. >上一步</el-button
  2808. >
  2809. <el-button
  2810. type="primary"
  2811. @click="addSelectAnswer"
  2812. v-if="selectSteps == 2"
  2813. >确 定</el-button
  2814. >
  2815. </span>
  2816. </el-dialog>
  2817. <el-dialog
  2818. title="添加评价"
  2819. :visible.sync="dialogVisibleRate"
  2820. :append-to-body="true"
  2821. width="650px"
  2822. :before-close="handleClose"
  2823. class="dialog_diy"
  2824. >
  2825. <div style="background: #fff; padding: 15px; box-sizing: border-box">
  2826. <div style="font-size: 18px; color: #a9a9a9">请输入学生评价指标:</div>
  2827. <div class="pjCss" style="width: 100%">
  2828. <div
  2829. v-if="rateJson.length"
  2830. class="elist_input"
  2831. style="height: 360px; overflow: auto"
  2832. >
  2833. <div
  2834. v-for="(eItem, eIndex) in rateJson"
  2835. :key="eIndex"
  2836. class="elist_input_box"
  2837. >
  2838. <span style="min-width: 100px; text-align: right"
  2839. >学生评价指标:</span
  2840. >
  2841. <input
  2842. type="input"
  2843. v-model="eItem.value"
  2844. placeholder="填写评价名称"
  2845. />
  2846. <div class="remove" @click="deletRateList(eIndex)"></div>
  2847. <div style="width: 100%; display: flex">
  2848. <span style="min-width: 100px; text-align: right"
  2849. >评星等级:</span
  2850. >
  2851. <el-rate v-model="eItem.score" disabled></el-rate>
  2852. </div>
  2853. <div class="elist_inptu_text" style="align-items: flex-start">
  2854. <span style="min-width: 100px; text-align: right">描述:</span>
  2855. <textarea
  2856. class="rate_textarea"
  2857. :rows="3"
  2858. v-model="eItem.detail"
  2859. placeholder="填写评价描述"
  2860. ></textarea>
  2861. </div>
  2862. </div>
  2863. </div>
  2864. <div class="addToolFunBox">
  2865. <div class="addToolFun" @click="addRateList()">
  2866. <div class="addToolImg">
  2867. <img src="../../../assets/icon/add.png" alt />
  2868. </div>
  2869. <div>添加</div>
  2870. </div>
  2871. </div>
  2872. </div>
  2873. </div>
  2874. <span slot="footer" class="dialog-footer">
  2875. <el-button @click="dialogVisibleRate = false">取 消</el-button>
  2876. <el-button type="primary" @click="addRateAnswer">确 定</el-button>
  2877. </span>
  2878. </el-dialog>
  2879. <el-dialog
  2880. title="连词成句设置"
  2881. :visible.sync="dialogVisibleSentence"
  2882. :append-to-body="true"
  2883. width="1000px"
  2884. :before-close="handleClose"
  2885. class="dialog_diy dialog_diy3"
  2886. >
  2887. <div>
  2888. <div class="sentenBox">
  2889. <div class="addSen" @click="addSt">添加题目</div>
  2890. <div
  2891. v-for="(st, stIndex) in sentenceList"
  2892. :key="stIndex"
  2893. style="padding-bottom: 20px"
  2894. >
  2895. <div class="sentenTopBox">
  2896. <div class="sentenTop">
  2897. <div>题目设置</div>
  2898. <div>
  2899. <el-input
  2900. placeholder="请输入卡片内容"
  2901. v-model="st.sentenceTitle"
  2902. ></el-input>
  2903. </div>
  2904. <div @click="addSen(stIndex)">添加</div>
  2905. </div>
  2906. <div
  2907. class="remove1"
  2908. v-if="sentenceList.length > 1"
  2909. @click="deleteSentence(stIndex)"
  2910. ></div>
  2911. </div>
  2912. <div class="cardList">
  2913. <div v-if="st.addSentence.length > 0" class="cardBox">
  2914. <div
  2915. class="isCard"
  2916. v-for="(s, sIndex) in st.addSentence"
  2917. :key="sIndex"
  2918. @click="setRightAnswer(s, stIndex, sIndex)"
  2919. >
  2920. <el-tooltip
  2921. class="item"
  2922. effect="light"
  2923. :content="s"
  2924. placement="top"
  2925. >
  2926. <div>{{ s }}</div>
  2927. </el-tooltip>
  2928. <div
  2929. class="deleteWord"
  2930. @click.stop="deleteS(s, stIndex, sIndex)"
  2931. >
  2932. <img src="../../../assets/icon/delete.png" alt="" />
  2933. </div>
  2934. </div>
  2935. </div>
  2936. <div class="card">
  2937. <img
  2938. src="../../../assets/icon/conSentences/noTitle.png"
  2939. alt=""
  2940. />
  2941. </div>
  2942. </div>
  2943. <div class="rightCardBox">
  2944. <div>正确顺序</div>
  2945. <div class="rightCardList">
  2946. <div v-if="st.rightAnswer.length > 0" class="cardBox">
  2947. <div
  2948. v-for="(r, rIndex) in st.rightAnswer"
  2949. :key="rIndex"
  2950. class="cardCss"
  2951. >
  2952. <div
  2953. class="isCard1"
  2954. @click="returnCard(r, stIndex, rIndex)"
  2955. >
  2956. <el-tooltip
  2957. class="item"
  2958. effect="light"
  2959. :content="r"
  2960. placement="top"
  2961. >
  2962. <div>{{ r }}</div>
  2963. </el-tooltip>
  2964. </div>
  2965. <div>{{ rIndex + 1 }}</div>
  2966. </div>
  2967. </div>
  2968. <div class="card" v-if="st.rightAnswer.length == 0">
  2969. <img
  2970. src="../../../assets/icon/conSentences/noAnswer.png"
  2971. alt=""
  2972. />
  2973. </div>
  2974. </div>
  2975. </div>
  2976. </div>
  2977. </div>
  2978. </div>
  2979. <span slot="footer" class="dialog-footer">
  2980. <el-button @click="dialogVisibleSentence = false">取 消</el-button>
  2981. <el-button type="primary" @click="addSentenceTool">确 定</el-button>
  2982. </span>
  2983. </el-dialog>
  2984. <el-dialog
  2985. title="添加表格"
  2986. :visible.sync="dialogVisibleTable"
  2987. :append-to-body="true"
  2988. width="95%"
  2989. :before-close="handleClose"
  2990. class="dialog_diy"
  2991. >
  2992. <el-form>
  2993. <!-- <el-form-item label="文本标题">
  2994. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  2995. </el-form-item> -->
  2996. <div>表格内容</div>
  2997. <Table
  2998. v-model="tableJson.text"
  2999. @change="change"
  3000. v-if="dialogVisibleTable"
  3001. ></Table>
  3002. </el-form>
  3003. <span slot="footer" class="dialog-footer">
  3004. <el-button @click="dialogVisibleTable = false">取 消</el-button>
  3005. <el-button type="primary" @click="addTableJson">确定</el-button>
  3006. </span>
  3007. </el-dialog>
  3008. <el-dialog
  3009. title="添加表格"
  3010. :visible.sync="dialogVisibleTable1"
  3011. :append-to-body="true"
  3012. width="95%"
  3013. :before-close="handleClose"
  3014. class="dialog_diy"
  3015. >
  3016. <el-form>
  3017. <!-- <el-form-item label="文本标题">
  3018. <el-input v-model="AttText.title" auto-complete="off" @input="change2" placeholder="请输入文本标题..."></el-input>
  3019. </el-form-item> -->
  3020. <div>表格内容</div>
  3021. <Table
  3022. v-model="tableJson.text"
  3023. @change="change"
  3024. v-if="dialogVisibleTable1"
  3025. ></Table>
  3026. </el-form>
  3027. <span slot="footer" class="dialog-footer">
  3028. <el-button @click="dialogVisibleTable1 = false">取 消</el-button>
  3029. <el-button type="primary" @click="addTable">确定</el-button>
  3030. </span>
  3031. </el-dialog>
  3032. <el-dialog
  3033. title="查看表格"
  3034. :visible.sync="dialogVisibleTable2"
  3035. :append-to-body="true"
  3036. width="95%"
  3037. :before-close="handleClose"
  3038. class="dialog_diy"
  3039. >
  3040. <el-form>
  3041. <div
  3042. class="cont"
  3043. v-html="tableJson.text"
  3044. style="line-height: 24px"
  3045. ></div>
  3046. </el-form>
  3047. <span slot="footer" class="dialog-footer">
  3048. <el-button @click="dialogVisibleTable2 = false">关 闭</el-button>
  3049. </span>
  3050. </el-dialog>
  3051. <el-dialog
  3052. title="分组设置"
  3053. :visible.sync="dialogVisibleGroup"
  3054. :append-to-body="true"
  3055. width="650px"
  3056. :before-close="handleClose"
  3057. class="dialog_diy"
  3058. >
  3059. <div class="groupBox">
  3060. <div v-if="groupJson.group" class="groupContent">
  3061. <div class="groupTitle">请设置小组数量</div>
  3062. <div
  3063. v-for="(item, index) in groupJson.group"
  3064. :key="index"
  3065. class="groupName"
  3066. >
  3067. <span class="groupn">组{{ index + 1 }}名称:</span>
  3068. <el-input
  3069. v-model="item.name"
  3070. placeholder="请输入名称..."
  3071. style="width: 250px"
  3072. ></el-input>
  3073. <div class="groupBtn">
  3074. <el-button type="primary" size="small" @click="addGroup(index)">
  3075. 添加</el-button
  3076. >
  3077. <el-button
  3078. type="primary"
  3079. size="small"
  3080. @click="deleteGroup(index)"
  3081. v-if="groupJson.group && groupJson.group.length > 1"
  3082. >删除</el-button
  3083. >
  3084. </div>
  3085. </div>
  3086. </div>
  3087. <div class="groupContent">
  3088. <div class="groupTitle">请设置每组人数数量</div>
  3089. <!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
  3090. style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
  3091. <el-input-number
  3092. v-model="groupJson.number"
  3093. :controls="false"
  3094. :min="2"
  3095. :max="10"
  3096. placeholder="2-10人以内"
  3097. ></el-input-number>
  3098. </div>
  3099. </div>
  3100. <span slot="footer" class="dialog-footer">
  3101. <el-button @click="dialogVisibleGroup = false">取 消</el-button>
  3102. <el-button type="primary" @click="addGroupJson">确定</el-button>
  3103. </span>
  3104. </el-dialog>
  3105. <el-dialog
  3106. title="添加工具"
  3107. :visible.sync="dialogVisibleTool"
  3108. :append-to-body="true"
  3109. width="600px"
  3110. :before-close="handleClose"
  3111. class="dialog_diy addToolsDia"
  3112. >
  3113. <div class="toolChoose" style="padding: 0 0 30px 30px">
  3114. <div class="tools">
  3115. <div
  3116. class="leftTools"
  3117. style="
  3118. width: 95%;
  3119. padding: 0 0 15px 0;
  3120. border-bottom: 1px solid #efefef;
  3121. margin-bottom: 15px;
  3122. "
  3123. >
  3124. <div style="min-height: 163px">
  3125. <div class="toolSort">
  3126. <div class="tool">
  3127. <div class="whiteBIcon" @click="addToolFun(1)">
  3128. <img
  3129. src="../../../assets/icon/secondToolList/whiteBoard.png"
  3130. alt
  3131. />
  3132. <div style="margin: 5px 0">电子白板</div>
  3133. </div>
  3134. </div>
  3135. <div class="tool" v-if="false">
  3136. <div class="whiteBIcon" @click="addToolFun(6)">
  3137. <img
  3138. src="../../../assets/icon/secondToolList/doc.png"
  3139. alt
  3140. />
  3141. <div style="margin: 5px 0">协同文档</div>
  3142. </div>
  3143. </div>
  3144. <div class="tool">
  3145. <div class="whiteBIcon" @click="addToolFun(3)">
  3146. <img
  3147. src="../../../assets/icon/secondToolList/mindMapping.png"
  3148. alt
  3149. />
  3150. <div style="margin: 5px 0">思维导图</div>
  3151. </div>
  3152. </div>
  3153. <div class="tool">
  3154. <div class="whiteBIcon" @click="addToolFun(48)">
  3155. <img
  3156. src="../../../assets/icon/fourthToolList/table.png"
  3157. alt
  3158. />
  3159. <div style="margin: 5px 0">表格</div>
  3160. </div>
  3161. </div>
  3162. <!-- <div class="tool">
  3163. <div class="whiteBIcon" @click="addToolFun(15)">
  3164. <img src="../../../assets/icon/thirdToolList/answer.png" alt />
  3165. <div style="margin: 5px 0">问答工具</div>
  3166. </div>
  3167. </div> -->
  3168. <div class="tool">
  3169. <div class="whiteBIcon" @click="addToolFun(52)">
  3170. <img
  3171. src="../../../assets/icon/fourthToolList/text.png"
  3172. alt
  3173. />
  3174. <div style="margin: 5px 0">文档</div>
  3175. </div>
  3176. </div>
  3177. <div class="tool">
  3178. <div class="whiteBIcon" @click="addToolFun(51)">
  3179. <img
  3180. src="../../../assets/icon/fourthToolList/upload.png"
  3181. alt
  3182. />
  3183. <div style="margin: 5px 0">资源库</div>
  3184. </div>
  3185. </div>
  3186. <!-- <div class="tool">
  3187. <div class="whiteBIcon" @click="addToolFun(53)">
  3188. <img src="../../../assets/icon/fourthToolList/file.png" alt />
  3189. <div style="margin: 5px 0">文件上传</div>
  3190. </div>
  3191. </div> -->
  3192. <div class="tool">
  3193. <div class="whiteBIcon" @click="addToolFun(54)">
  3194. <img
  3195. src="../../../assets/icon/fourthToolList/photo.png"
  3196. alt
  3197. />
  3198. <div style="margin: 5px 0">拍照</div>
  3199. </div>
  3200. </div>
  3201. <div class="tool">
  3202. <div class="whiteBIcon" @click="addToolFun(55)">
  3203. <img
  3204. src="../../../assets/icon/fourthToolList/zip.png"
  3205. alt
  3206. />
  3207. <div style="margin: 5px 0">压缩文件</div>
  3208. </div>
  3209. </div>
  3210. <div class="tool">
  3211. <div class="whiteBIcon" @click="addToolFun(56)">
  3212. <img src="../../../assets/icon/thirdToolList/ask.png" alt />
  3213. <div style="margin: 5px 0">投票</div>
  3214. </div>
  3215. </div>
  3216. </div>
  3217. </div>
  3218. </div>
  3219. </div>
  3220. </div>
  3221. <!-- <span slot="footer" class="dialog-footer">
  3222. <el-button @click="dialogVisible4 = false">取 消</el-button>
  3223. <el-button type="primary" @click="addChaptersDataTools">确定</el-button>
  3224. </span> -->
  3225. </el-dialog>
  3226. <el-dialog
  3227. title="添加资源"
  3228. :visible.sync="dialogVisibleSource"
  3229. :append-to-body="true"
  3230. width="700px"
  3231. :before-close="handleClose"
  3232. class="dialog_diy addToolsDia"
  3233. >
  3234. <div class="toolChoose">
  3235. <div class="tools">
  3236. <div class="leftTools" style="width: 100%">
  3237. <div>
  3238. <div class="basic_box">
  3239. <div>
  3240. <div
  3241. class="add_chapters_box"
  3242. v-if="sourcesData.length == 0"
  3243. style="height: 185px"
  3244. ></div>
  3245. <div
  3246. v-else
  3247. class="add_chapters_box"
  3248. style="display: flex; flex-direction: column"
  3249. >
  3250. <div
  3251. class="chapter_upload"
  3252. v-for="(item, index) in sourcesData"
  3253. :key="index"
  3254. @click="getChapterData2($event, index, item.type)"
  3255. >
  3256. <div class="chapter_upload_t" style="width: 100%"></div>
  3257. <div
  3258. class="chapter_upload_o"
  3259. style="
  3260. position: relative;
  3261. display: flex;
  3262. align-items: center;
  3263. "
  3264. >
  3265. <div
  3266. class="chapter_upload_l"
  3267. style="padding: 1px 0 0 10px"
  3268. >
  3269. <div
  3270. v-if="item.type == 2"
  3271. class="chapter_upload_l_i1"
  3272. ></div>
  3273. <div
  3274. v-if="
  3275. item.type == 3 ||
  3276. item.type == 9 ||
  3277. item.type == 6 ||
  3278. item.type == 7
  3279. "
  3280. class="chapter_upload_l_i5"
  3281. style="margin-left: 1px"
  3282. ></div>
  3283. <div
  3284. v-if="item.type == 8"
  3285. class="chapter_upload_l_i8"
  3286. style="margin-left: 1px"
  3287. ></div>
  3288. </div>
  3289. <div
  3290. class="chapter_upload_ic"
  3291. style="
  3292. cursor: pointer;
  3293. position: absolute;
  3294. width: 45px;
  3295. right: 0;
  3296. top: 0;
  3297. "
  3298. >
  3299. <div class="chapter_upload_ic_l"></div>
  3300. <div
  3301. class="chapter_upload_ic_r"
  3302. style="position: absolute"
  3303. @click.stop="deleteChapterData2($event, index)"
  3304. >
  3305. <div></div>
  3306. </div>
  3307. </div>
  3308. <div class="chapter_upload_n">
  3309. <input
  3310. v-if="
  3311. item.type == 2 ||
  3312. item.type == 3 ||
  3313. item.type == 9 ||
  3314. item.type == 7
  3315. "
  3316. :placeholder="item.name"
  3317. @change="updataVideoT2($event, index)"
  3318. style="
  3319. border: none;
  3320. outline: none;
  3321. width: 80%;
  3322. minwidth: 215px;
  3323. z-index: 99;
  3324. font-size: 14px;
  3325. white-space: nowrap;
  3326. overflow: hidden;
  3327. text-overflow: ellipsis;
  3328. "
  3329. />
  3330. <input
  3331. :placeholder="item.name"
  3332. v-if="item.type == 6"
  3333. style="
  3334. border: none;
  3335. outline: none;
  3336. width: 80%;
  3337. white-space: nowrap;
  3338. overflow: hidden;
  3339. text-overflow: ellipsis;
  3340. "
  3341. readonly="true"
  3342. @click="selectAttText2(index)"
  3343. />
  3344. <input
  3345. :placeholder="item.title ? item.title : '链接'"
  3346. v-if="item.type == 8"
  3347. style="
  3348. border: none;
  3349. outline: none;
  3350. width: 80%;
  3351. white-space: nowrap;
  3352. overflow: hidden;
  3353. text-overflow: ellipsis;
  3354. "
  3355. readonly="true"
  3356. @click="selectLine2(index)"
  3357. />
  3358. <div class="chapter_upload_ud" style="z-index: 99">
  3359. <div
  3360. class="chapter_upload_up"
  3361. @click="upCd2($event, index)"
  3362. ></div>
  3363. <div
  3364. class="chapter_upload_down"
  3365. @click="downCd2($event, index)"
  3366. ></div>
  3367. </div>
  3368. </div>
  3369. </div>
  3370. </div>
  3371. </div>
  3372. </div>
  3373. <div class="add_info_box">
  3374. <button class="info_btn" @click="addImg($event)">
  3375. 添加视频
  3376. <input
  3377. type="file"
  3378. accept="video/mp4, video/quicktime, video/x-msvideo"
  3379. style="display: none"
  3380. capture="camera"
  3381. v-if="inputShow"
  3382. @change="beforeUpload3($event, 2)"
  3383. />
  3384. </button>
  3385. <button class="info_btn" @click="addImg($event)">
  3386. 添加附件
  3387. <input
  3388. type="file"
  3389. accept="application/pdf, application/.ppt, .ppt, .pptx, .xlsx, .xls, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document"
  3390. style="display: none"
  3391. v-if="inputShow"
  3392. @change="beforeUpload3($event, 3)"
  3393. />
  3394. </button>
  3395. <button class="info_btn" @click="addAttText()">
  3396. 添加图文
  3397. </button>
  3398. <button class="info_btn" @click="openLine()">添加链接</button>
  3399. </div>
  3400. <div v-if="proVisible" class="mask">
  3401. <div class="progressBox">
  3402. <!-- <div id="closePro" class="closeCss">
  3403. <img src="../../../assets/icon/close.png" alt />
  3404. </div> -->
  3405. <div class="lbox">
  3406. <img src="../../../assets/loading.gif" />上传中,请稍后
  3407. </div>
  3408. <div style="margin-bottom: 10px">
  3409. <span>{{ isFinishSize }}M</span> /
  3410. <span>{{ isAllSize }}M</span>
  3411. </div>
  3412. <el-progress
  3413. :text-inside="true"
  3414. :stroke-width="20"
  3415. :percentage="progress"
  3416. style="width: 80%"
  3417. ></el-progress>
  3418. </div>
  3419. </div>
  3420. </div>
  3421. </div>
  3422. </div>
  3423. </div>
  3424. </div>
  3425. <span slot="footer" class="dialog-footer">
  3426. <el-button @click="dialogVisibleSource = false">取 消</el-button>
  3427. <el-button type="primary" @click="addSourceData">确定</el-button>
  3428. </span>
  3429. </el-dialog>
  3430. <el-dialog
  3431. title="查看文档"
  3432. :visible.sync="fullDialogVisible"
  3433. :append-to-body="true"
  3434. width="100%"
  3435. :before-close="handleClose"
  3436. :show-close="false"
  3437. class="dialog_diy full_diy"
  3438. :class="{ full_diy2: fulltype == 9 }"
  3439. >
  3440. <div slot="title" class="header-title">
  3441. <div style="color: #fff">查看文档</div>
  3442. <div
  3443. @click="fullDialogVisible = false"
  3444. style="
  3445. cursor: pointer;
  3446. position: absolute;
  3447. top: 20px;
  3448. right: 20px;
  3449. color: #fff;
  3450. "
  3451. >
  3452. 退出全屏
  3453. </div>
  3454. </div>
  3455. <div style="height: 100%">
  3456. <iframe
  3457. v-if="fulltype == 3"
  3458. style="width: 100%; height: 100%; border: none"
  3459. :src="fullUrl"
  3460. ></iframe>
  3461. <pdf
  3462. v-else-if="fulltype == 9"
  3463. :pdfUrl="fullUrl"
  3464. style="width: 100%; height: 100%; overflow: auto"
  3465. >
  3466. </pdf>
  3467. <div
  3468. class="wheel"
  3469. v-if="fulltype == 6"
  3470. style="
  3471. box-shadow: 0 0 6px 1px #f2f2f2;
  3472. width: 100%;
  3473. background: #f1f1f1;
  3474. "
  3475. >
  3476. <div class="texttitle" style="width: 100%; box-sizing: border-box">
  3477. 查看文档
  3478. </div>
  3479. <el-form class="textBox" style="height: 90%">
  3480. <el-form-item class="textTitle">
  3481. <div style="font-size: 22px; max-height: 100px; overflow: auto">
  3482. {{ fullUrl.name }}
  3483. </div>
  3484. </el-form-item>
  3485. <!-- <div style="color: #918f8f; width: 85%">文档内容</div> -->
  3486. <div
  3487. v-html="fullUrl.url"
  3488. class="textContent"
  3489. style="height: auto"
  3490. ></div>
  3491. </el-form>
  3492. </div>
  3493. </div>
  3494. <!-- <div slot="footer">
  3495. <el-button @click="fullDialogVisible = false">关 闭</el-button>
  3496. </div> -->
  3497. </el-dialog>
  3498. <el-dialog
  3499. title="问答"
  3500. :visible.sync="answerDialogVisible"
  3501. :append-to-body="true"
  3502. width="800px"
  3503. :before-close="handleClose"
  3504. class="dialog_diy"
  3505. >
  3506. <div>
  3507. <div
  3508. style="
  3509. display: flex;
  3510. flex-wrap: nowrap;
  3511. flex-direction: column;
  3512. position: relative;
  3513. "
  3514. >
  3515. <div class="queTop" style="padding: 20px 0 20px 0">
  3516. <div class="question">
  3517. <img src="../../../assets/icon/question.png" alt />
  3518. </div>
  3519. <div class="queTitle">
  3520. <div style="width: 90px; min-width: 90px">提问:</div>
  3521. <div>{{ answerQ }}</div>
  3522. </div>
  3523. </div>
  3524. <div class="ediBottom">
  3525. <textarea
  3526. rows="6"
  3527. class="binfo_input"
  3528. cols
  3529. style="width: 95%; height: 120px"
  3530. v-model="questionAnswer"
  3531. ></textarea>
  3532. </div>
  3533. </div>
  3534. </div>
  3535. <div slot="footer">
  3536. <el-button @click="answerDialogVisible = false">取 消</el-button>
  3537. <el-button type="primary" @click="addQuestion">提 交</el-button>
  3538. </div>
  3539. </el-dialog>
  3540. <el-dialog
  3541. title="文件预览"
  3542. :visible.sync="dialogVisibleFile"
  3543. width="50%"
  3544. :before-close="handleClose"
  3545. class="dialog_diy"
  3546. :class="{ fullStyle: full }"
  3547. >
  3548. <div slot="title" class="header-title">
  3549. <div style="color: #fff">文件预览</div>
  3550. <div style="position: absolute; top: 19px; right: 50px">
  3551. <img
  3552. src="../../../assets/full.png"
  3553. style="height: 16px; cursor: pointer"
  3554. alt=""
  3555. @click="full = !full"
  3556. />
  3557. </div>
  3558. </div>
  3559. <pdf
  3560. v-if="showPDF"
  3561. :pdfUrl="pptImgUrl"
  3562. style="width: 100%; height: 520px; overflow: auto"
  3563. :class="{ fullStyle: full }"
  3564. ></pdf>
  3565. <iframe
  3566. v-else
  3567. :src="pptImgUrl"
  3568. frameborder="0"
  3569. width="100%"
  3570. height="600"
  3571. :class="{ fullStyle: full }"
  3572. ></iframe>
  3573. </el-dialog>
  3574. <el-dialog
  3575. title="添加文档"
  3576. :visible.sync="dialogVisibleText"
  3577. :append-to-body="true"
  3578. width="800px"
  3579. :before-close="handleClose"
  3580. class="dialog_diy"
  3581. >
  3582. <el-form>
  3583. <div>文档内容</div>
  3584. <editor-bar
  3585. v-model="tableJson.text"
  3586. @change="change"
  3587. v-if="dialogVisibleText"
  3588. ></editor-bar>
  3589. </el-form>
  3590. <span slot="footer" class="dialog-footer">
  3591. <el-button @click="dialogVisibleText = false">取 消</el-button>
  3592. <el-button type="primary" @click="addText">确定</el-button>
  3593. </span>
  3594. </el-dialog>
  3595. <el-dialog
  3596. title="上传文档"
  3597. :visible.sync="dialogVisibleText3"
  3598. :append-to-body="true"
  3599. width="800px"
  3600. :before-close="handleClose"
  3601. class="dialog_diy"
  3602. >
  3603. <el-form>
  3604. <div>文档内容</div>
  3605. <EditorBar2
  3606. v-model="tableJson.text"
  3607. @change="change"
  3608. v-if="dialogVisibleText3"
  3609. ></EditorBar2>
  3610. </el-form>
  3611. <span slot="footer" class="dialog-footer">
  3612. <el-button @click="dialogVisibleText3 = false">取 消</el-button>
  3613. <el-button type="primary" @click="addTextJson">确定</el-button>
  3614. </span>
  3615. </el-dialog>
  3616. <el-dialog
  3617. title="查看文档"
  3618. :visible.sync="dialogVisibleText2"
  3619. :append-to-body="true"
  3620. width="800px"
  3621. :before-close="handleClose"
  3622. class="dialog_diy"
  3623. >
  3624. <el-form>
  3625. <div
  3626. class="cont"
  3627. v-html="tableJson.text"
  3628. style="line-height: 24px"
  3629. ></div>
  3630. </el-form>
  3631. <span slot="footer" class="dialog-footer">
  3632. <el-button @click="dialogVisibleText2 = false">关 闭</el-button>
  3633. </span>
  3634. </el-dialog>
  3635. <el-dialog
  3636. title="查看视频"
  3637. :visible.sync="videoVisible"
  3638. :append-to-body="true"
  3639. width="1000px"
  3640. :before-close="handleClose"
  3641. class="dialog_diy1"
  3642. >
  3643. <div class="workd_media" style="height: 100%" v-if="videoDetail.sources">
  3644. <video-player
  3645. class="video-player vjs-custom-skin"
  3646. :playsinline="true"
  3647. :options="videoDetail"
  3648. @play="onPlayerPlay($event)"
  3649. style="width: 100%; height: 100%"
  3650. ></video-player>
  3651. </div>
  3652. <div slot="footer">
  3653. <el-button
  3654. style="background: #409efe; color: #fff"
  3655. @click="(videoVisible = false), (videoDetail = {})"
  3656. >
  3657. 关 闭</el-button
  3658. >
  3659. </div>
  3660. </el-dialog>
  3661. <el-dialog
  3662. title="创建投票"
  3663. :visible.sync="dialogVisibleVote"
  3664. :append-to-body="true"
  3665. width="800px"
  3666. :before-close="handleClose"
  3667. class="dialog_diy"
  3668. >
  3669. <div>
  3670. <div
  3671. class="a_add_title"
  3672. style="
  3673. display: flex;
  3674. flex-direction: row;
  3675. align-items: center;
  3676. justify-content: center;
  3677. "
  3678. >
  3679. <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
  3680. <el-input
  3681. v-model="askJson.askTitle"
  3682. placeholder="请输入标题"
  3683. style="width: 400px"
  3684. ></el-input>
  3685. </div>
  3686. <div class="a_addBox">
  3687. <div style="font-size: 16px; color: #c7c7c7">请输入投票内容</div>
  3688. <div
  3689. class="a_add_box"
  3690. v-for="(item1, index1) in askJson.askCount"
  3691. :key="index1"
  3692. >
  3693. <div class="a_add_head">
  3694. <div>
  3695. {{ index1 + 1 + "、" }}
  3696. <el-input
  3697. class="a_add_head_input"
  3698. v-model="askJson.askJson[index1].askstitle"
  3699. placeholder="请输入内容..."
  3700. >
  3701. </el-input>
  3702. </div>
  3703. <div class="a_add_head_div">
  3704. <el-button type="primary" size="small" @click="addAskList()"
  3705. >添加</el-button
  3706. >
  3707. <el-button
  3708. type="primary"
  3709. size="small"
  3710. @click="deleteAskList(index1)"
  3711. v-if="askJson.askCount != 1"
  3712. >删除
  3713. </el-button>
  3714. </div>
  3715. </div>
  3716. <div class="a_add_body">
  3717. <div class="a_add_input">
  3718. <el-input
  3719. v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"
  3720. :key="checkIndex"
  3721. v-model="askJson.askJson[index1].checkList[checkIndex]"
  3722. placeholder="请输入投票选项..."
  3723. style="width: 150px; margin: 10px 10px 0 0"
  3724. ></el-input>
  3725. </div>
  3726. <div class="a_add_body_div">
  3727. <el-button
  3728. style="margin: 10px 0px 0 0"
  3729. type="primary"
  3730. size="small"
  3731. @click="addcheckList(askJson.askJson[index1])"
  3732. >添加</el-button
  3733. >
  3734. <el-button
  3735. type="primary"
  3736. size="small"
  3737. style="margin: 10px 0 0 10px"
  3738. @click="deletecheckList(askJson.askJson[index1])"
  3739. v-if="askJson.askJson[index1].askItem != 1"
  3740. >删除
  3741. </el-button>
  3742. </div>
  3743. </div>
  3744. </div>
  3745. </div>
  3746. </div>
  3747. <span slot="footer" class="dialog-footer">
  3748. <el-button @click="dialogVisibleVote = false">取 消</el-button>
  3749. <el-button type="primary" @click="addAsk">确 定</el-button>
  3750. </span>
  3751. </el-dialog>
  3752. <el-dialog
  3753. title="查看投票"
  3754. :visible.sync="dialogVisibleVote2"
  3755. :append-to-body="true"
  3756. width="1000px"
  3757. :before-close="handleClose"
  3758. class="dialog_diy dialog_diy3"
  3759. >
  3760. <div>
  3761. <div
  3762. class="a_add_title"
  3763. style="
  3764. display: flex;
  3765. flex-direction: row;
  3766. align-items: center;
  3767. justify-content: center;
  3768. "
  3769. >
  3770. <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
  3771. <div style="font-size: 20px">{{ askJson.askTitle }}</div>
  3772. </div>
  3773. <div class="a_addBox">
  3774. <div style="font-size: 16px; color: #c7c7c7">投票内容</div>
  3775. <div
  3776. class="a_add_box"
  3777. v-for="(item1, index1) in askJson.askCount"
  3778. :key="index1"
  3779. >
  3780. <div class="a_add_head">
  3781. <div style="display: flex">
  3782. {{ index1 + 1 + "、" }}
  3783. <div>{{ askJson.askJson[index1].askstitle }}</div>
  3784. </div>
  3785. <img
  3786. v-if="askJson.askJson[index1].img"
  3787. :src="askJson.askJson[index1].img"
  3788. style="height: 300px; margin-top: 10px; max-width: 100%"
  3789. />
  3790. </div>
  3791. <div class="a_add_body">
  3792. <div class="a_add_input">
  3793. <el-radio-group v-model="radio[index1]">
  3794. <el-radio
  3795. v-for="(item2, checkIndex) in askJson.askJson[index1]
  3796. .checkList"
  3797. :key="checkIndex"
  3798. :label="checkIndex"
  3799. class="redioStyle"
  3800. ><span v-html="item2"></span
  3801. ></el-radio>
  3802. </el-radio-group>
  3803. </div>
  3804. </div>
  3805. </div>
  3806. </div>
  3807. </div>
  3808. <span slot="footer" class="dialog-footer">
  3809. <el-button @click="dialogVisibleVote2 = false">取 消</el-button>
  3810. <el-button type="primary" @click="addStudentAsk">确 定</el-button>
  3811. </span>
  3812. </el-dialog>
  3813. <el-dialog
  3814. title="查看投票"
  3815. :visible.sync="dialogVisibleVote3"
  3816. :append-to-body="true"
  3817. width="1000px"
  3818. :before-close="handleClose"
  3819. class="dialog_diy dialog_diy3"
  3820. >
  3821. <div>
  3822. <div
  3823. class="a_add_title"
  3824. style="
  3825. display: flex;
  3826. flex-direction: row;
  3827. align-items: center;
  3828. justify-content: center;
  3829. "
  3830. >
  3831. <div style="margin-right: 20px; font-size: 20px">投票标题:</div>
  3832. <div style="font-size: 20px">{{ askJson.askTitle }}</div>
  3833. </div>
  3834. <div class="a_addBox">
  3835. <div style="font-size: 16px; color: #c7c7c7">投票内容</div>
  3836. <div
  3837. class="a_add_box"
  3838. v-for="(item1, index1) in askJson.askCount"
  3839. :key="index1"
  3840. >
  3841. <div class="a_add_head">
  3842. <div style="display: flex">
  3843. {{ index1 + 1 + "、" }}
  3844. <div>{{ askJson.askJson[index1].askstitle }}</div>
  3845. </div>
  3846. <img
  3847. v-if="askJson.askJson[index1].img"
  3848. :src="askJson.askJson[index1].img"
  3849. style="height: 300px; margin-top: 10px; max-width: 100%"
  3850. />
  3851. </div>
  3852. <div class="a_add_body">
  3853. <div class="a_add_input">
  3854. <el-radio-group v-model="radio[index1]">
  3855. <el-radio
  3856. v-for="(item2, checkIndex) in askJson.askJson[index1]
  3857. .checkList"
  3858. :key="checkIndex"
  3859. :label="checkIndex"
  3860. disabled
  3861. class="redioStyle"
  3862. ><span v-html="item2"></span
  3863. ></el-radio>
  3864. </el-radio-group>
  3865. </div>
  3866. </div>
  3867. </div>
  3868. </div>
  3869. </div>
  3870. <span slot="footer" class="dialog-footer">
  3871. <el-button @click="dialogVisibleVote3 = false">关 闭</el-button>
  3872. </span>
  3873. </el-dialog>
  3874. </div>
  3875. </template>
  3876. <script>
  3877. import "../../../common/aws-sdk-2.235.1.min.js";
  3878. import $ from "jquery";
  3879. import EditorBar from "../../../components/tools/wangEnduit";
  3880. import EditorBar2 from "../../../components/tools/wangEnduit";
  3881. import Table from "../../../components/tools/table";
  3882. import voteStatic from "../components/voteStatic.vue";
  3883. import TextT from "../../../components/tools/text";
  3884. import Mind from "../../tools/jsmind2";
  3885. import Sunburst from "../../tools/sunburst";
  3886. import SeeBoard from "../../tools/seeBoard";
  3887. import proMan from "../components/proMan.vue";
  3888. import ganChart from "../components/ganChart.vue";
  3889. import graph from "../components/graph.vue";
  3890. import pdf from "../components/vpdf";
  3891. import * as imageConversion from "image-conversion";
  3892. import courseDetailVue from "../courseDetail.vue";
  3893. export default {
  3894. components: {
  3895. EditorBar,
  3896. EditorBar2,
  3897. Mind,
  3898. Sunburst,
  3899. SeeBoard,
  3900. Table,
  3901. proMan,
  3902. ganChart,
  3903. graph,
  3904. pdf,
  3905. TextT,
  3906. voteStatic,
  3907. },
  3908. data() {
  3909. return {
  3910. checkAll: false,
  3911. chooseType: 1,
  3912. checkedCities: [],
  3913. isIndeterminate: true,
  3914. isSysPic: false,
  3915. steps: 1,
  3916. nbOrder: 0,
  3917. courseId: "",
  3918. chapToolsType: 0,
  3919. chapTools: [
  3920. {
  3921. tools: [],
  3922. toolDetail: "",
  3923. },
  3924. ],
  3925. line: "",
  3926. lineTitle: "",
  3927. sysPic: [],
  3928. sentenceList: [
  3929. {
  3930. sentenceTitle: "",
  3931. addSentence: [],
  3932. rightAnswer: [],
  3933. },
  3934. ],
  3935. isPushTitleList: [],
  3936. lineCount: 0,
  3937. lineType: 0,
  3938. chapCount: 0,
  3939. courseName: "",
  3940. isTeacherSee: false,
  3941. courseText: "",
  3942. formLabelWidth: "100px",
  3943. choosePicVisible: false,
  3944. sysPicVisible: false,
  3945. uploadLoading1: false,
  3946. noneBtnImg: false,
  3947. updateBoolean2: false,
  3948. unitIndex: 0,
  3949. taskCount: 0,
  3950. dialogVisible: false,
  3951. dialogVisible1: false,
  3952. dialogVisible2: false,
  3953. dialogVisible3: false,
  3954. dialogVisible4: false,
  3955. dialogVisible5: false,
  3956. dialogVisible6: false,
  3957. dialogVisible7: false,
  3958. dialogVisible8: false,
  3959. dialogVisible9: false,
  3960. dialogVisibleClass: false,
  3961. dialogVisibleMember: false,
  3962. dialogVisibleTcMember: false,
  3963. dialogVisibleMp3: false,
  3964. dialogVisibleSelect: false,
  3965. dialogVisibleSentence: false,
  3966. dialogVisibleRate: false,
  3967. dialogVisibleChoice: false,
  3968. dialogVisibleTool: false,
  3969. dialogVisibleSource: false,
  3970. answerDialogVisible: false,
  3971. dialogVisibleFile: false,
  3972. dialogVisibleText: false,
  3973. dialogVisibleText2: false,
  3974. dialogVisibleText3: false,
  3975. dialogVisibleVote: false,
  3976. dialogVisibleVote2: false,
  3977. dialogVisibleVote3: false,
  3978. videoVisible: false,
  3979. videoDetail: {},
  3980. showPDF: "",
  3981. pptImgUrl: "",
  3982. full: false,
  3983. isClickColor: 0,
  3984. publicTool: 0,
  3985. searchPeople: "",
  3986. searchTN: "",
  3987. tcMember: "",
  3988. userid: this.$route.query.userid,
  3989. oid: this.$route.query.oid,
  3990. org: this.$route.query.org,
  3991. type: this.$route.query.type,
  3992. cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
  3993. orgArray: ["150e3120-9195-11ed-b13d-005056b86db5"],
  3994. oidArray: [],
  3995. dialogVisibleTable: false,
  3996. dialogVisibleTable1: false,
  3997. dialogVisibleTable2: false,
  3998. tableJson: {
  3999. text: "",
  4000. },
  4001. cover: [], //项目封面
  4002. myWord: [],
  4003. evaJuri: [],
  4004. evalua: "",
  4005. targetArray: [],
  4006. eTitle: "",
  4007. eJson: {},
  4008. fid: "", //一级
  4009. sid: "", //二级
  4010. tid: "", //二级
  4011. typeMode: 1,
  4012. eJSONNum: 0,
  4013. data: {
  4014. meta: {
  4015. name: "example",
  4016. author: "dd@163.com",
  4017. version: "0.2",
  4018. },
  4019. format: "node_array",
  4020. data: [
  4021. {
  4022. id: "root",
  4023. isroot: true,
  4024. topic: "",
  4025. },
  4026. ],
  4027. },
  4028. askJson: {
  4029. askCount: 1,
  4030. askTitle: "",
  4031. askJson: [
  4032. {
  4033. askstitle: "",
  4034. askItem: 1,
  4035. checkList: [],
  4036. },
  4037. ],
  4038. },
  4039. testJson: {},
  4040. selectJson: {},
  4041. rateJson: [],
  4042. unitJson2: [],
  4043. unitJson: [
  4044. {
  4045. dyName: "", //单元标题
  4046. chapterInfo: [
  4047. {
  4048. isread: false,
  4049. chapterid: this.guid(),
  4050. title: "",
  4051. courseName: "",
  4052. taskJson: [
  4053. {
  4054. task: "",
  4055. people: "",
  4056. time: "",
  4057. taskDetail: "",
  4058. chapterData: [],
  4059. toolText: "",
  4060. toolChoose: [
  4061. {
  4062. tool: [],
  4063. toolDetail: "",
  4064. toolType: 0,
  4065. askCount: 1,
  4066. askTitle: "",
  4067. askJson: [
  4068. {
  4069. askstitle: "",
  4070. askItem: 1,
  4071. checkList: [],
  4072. },
  4073. ],
  4074. },
  4075. ],
  4076. toolArray: [],
  4077. isShowTools: false,
  4078. askCount: 1,
  4079. isFold: 0,
  4080. askTitle: "",
  4081. askJson: [
  4082. {
  4083. askstitle: "",
  4084. askItem: 1,
  4085. checkList: [],
  4086. },
  4087. ],
  4088. checkJson: [
  4089. {
  4090. checkCount: [],
  4091. checkPerent: [],
  4092. },
  4093. ],
  4094. homeworkList: [],
  4095. },
  4096. ],
  4097. itemCount: 1,
  4098. fileList1: [],
  4099. video: [],
  4100. testData: [],
  4101. pData: [],
  4102. templateArray: [],
  4103. },
  4104. ],
  4105. },
  4106. ],
  4107. studentJuri: [],
  4108. teacherJuri: [],
  4109. teacherJuri2: [],
  4110. checkboxList: [],
  4111. checkboxList2: [],
  4112. checkboxList3: [],
  4113. checkboxListPeople: [],
  4114. number: "",
  4115. tTitle: "",
  4116. tdetail: "",
  4117. templateC: {},
  4118. AttText: {},
  4119. AttTextType: 0,
  4120. AttTextIndex: 0,
  4121. cTemplate: "",
  4122. CourseType: [],
  4123. CourseTypeJson: {},
  4124. courseTypeId: [],
  4125. courseTypeSon: [],
  4126. clearArray: [],
  4127. loading: false,
  4128. toolType: 0,
  4129. inputShow: true,
  4130. toolIndex: 0,
  4131. cidType: 0,
  4132. cidttt: 1,
  4133. answerQ: "",
  4134. questionAnswer: "",
  4135. grade: [],
  4136. courseUserid: "",
  4137. timer: null,
  4138. checkId: "",
  4139. isDelete: 1,
  4140. addindex: 0,
  4141. selectSteps: 1,
  4142. groupJson: {},
  4143. dialogVisibleGroup: false,
  4144. fpath: "",
  4145. ManAarray: [],
  4146. ManAarray2: [],
  4147. proVisible: false,
  4148. progress: 0,
  4149. isFinishSize: 0,
  4150. isAllsize: 0,
  4151. playerOptions: {
  4152. playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
  4153. autoplay: false, //如果true,浏览器准备好时开始回放。
  4154. muted: false, // 默认情况下将会消除任何音频。
  4155. loop: false, // 导致视频一结束就重新开始。
  4156. preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
  4157. language: "zh-CN",
  4158. aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
  4159. fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
  4160. sources: [
  4161. {
  4162. type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 || "video/ogg"|| "video/webm"
  4163. src: "", //url地址require("../../assets/media/aaa.mp4")
  4164. },
  4165. ],
  4166. // poster: require("../../assets/tu31.png"), //你的封面地址
  4167. // poster: dataRes.imgUrl, //你的封面地址
  4168. notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
  4169. controlBar: {
  4170. timeDivider: true, //当前时间和持续时间的分隔符
  4171. durationDisplay: true, //显示持续时间
  4172. remainingTimeDisplay: false, //是否显示剩余时间功能
  4173. fullscreenToggle: true, //全屏按钮
  4174. },
  4175. },
  4176. sourcesData: [],
  4177. fullDialogVisible: false,
  4178. fulltype: "",
  4179. fullUrl: "",
  4180. editSourceType: 1,
  4181. radio: [],
  4182. checkJson: [],
  4183. graphJson: {},
  4184. };
  4185. },
  4186. computed: {
  4187. rightBoxHeight: function () {
  4188. return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 100;
  4189. },
  4190. offsetLetfPx: function () {
  4191. //addnum可以直接在模板语法里面用,相当于data内的值
  4192. return (
  4193. $(".cru_select")[this.unitIndex] &&
  4194. $(".cru_select")[this.unitIndex].offsetLeft
  4195. );
  4196. },
  4197. getVideo() {
  4198. //此处不需要携带参数
  4199. return function (url) {
  4200. var d = JSON.parse(JSON.stringify(this.playerOptions));
  4201. d.sources[0].src = url;
  4202. return d;
  4203. };
  4204. },
  4205. getMan() {
  4206. return function (people) {
  4207. let _people = "";
  4208. if (this.ManAarray.length) {
  4209. for (var i = 0; i < this.ManAarray.length; i++) {
  4210. if (this.ManAarray[i].userid == people) {
  4211. _people = this.ManAarray[i].name;
  4212. break;
  4213. }
  4214. }
  4215. }
  4216. return _people ? _people : "";
  4217. };
  4218. },
  4219. getMan2() {
  4220. return function (people) {
  4221. let _people = people;
  4222. let _people2 = "";
  4223. if (this.ManAarray.length) {
  4224. for (var i = 0; i < this.ManAarray.length; i++) {
  4225. if (this.ManAarray[i].userid == people) {
  4226. _people2 = this.ManAarray[i].name;
  4227. break;
  4228. }
  4229. }
  4230. }
  4231. if (people == this.courseUserid) {
  4232. return "";
  4233. }
  4234. return this.ManAarray.length ? _people2 : "";
  4235. };
  4236. },
  4237. getMen() {
  4238. return function (people) {
  4239. let _people = people;
  4240. let kp = [];
  4241. if (this.ManAarray.length) {
  4242. for (var k = 0; k < _people.length; k++) {
  4243. let person = _people[k];
  4244. for (var i = 0; i < this.ManAarray.length; i++) {
  4245. if (this.ManAarray[i].userid == person) {
  4246. // _people = this.ManAarray[i].name;
  4247. kp.push(this.ManAarray[i].name);
  4248. break;
  4249. }
  4250. }
  4251. }
  4252. }
  4253. return this.ManAarray.length ? (kp.length ? kp.join("、") : "") : "";
  4254. };
  4255. },
  4256. },
  4257. watch: {
  4258. steps(newValue, oldValue) {
  4259. if (newValue == 4) {
  4260. let chapters = this.unitJson;
  4261. let gjson = {
  4262. rootId: "pid",
  4263. nodes: [{ id: "pid", text: "", borderWidth: -1, color: "#128cff" }],
  4264. lines: [],
  4265. };
  4266. gjson.nodes[0].text = this.courseName;
  4267. for (var i = 0; i < chapters.length; i++) {
  4268. let _chapter = chapters[i];
  4269. gjson.nodes.push({
  4270. id: "chap" + i,
  4271. text: "阶段" + (i + 1) + "-" + _chapter.dyName,
  4272. borderWidth: -1,
  4273. color: "#0672e1",
  4274. });
  4275. gjson.lines.push({ from: "pid", to: "chap" + i });
  4276. let tasks = _chapter.chapterInfo[0].taskJson;
  4277. for (var j = 0; j < tasks.length; j++) {
  4278. let _task = tasks[j];
  4279. gjson.nodes.push({
  4280. id: "task" + i + "-" + j,
  4281. text: "任务" + (j + 1) + "-" + _task.task,
  4282. borderWidth: -1,
  4283. color: "#3c59da",
  4284. });
  4285. gjson.lines.push({ from: "chap" + i, to: "task" + i + "-" + j });
  4286. if (_task.people) {
  4287. let _people = "负责人-" + this.getGMan(_task.people);
  4288. gjson.nodes.push({
  4289. id: "people" + i + "-" + j,
  4290. text: _people,
  4291. borderWidth: -1,
  4292. color: "#004d9b",
  4293. });
  4294. gjson.lines.push({
  4295. from: "task" + i + "-" + j,
  4296. to: "people" + i + "-" + j,
  4297. });
  4298. if (_task.tcMember && _task.tcMember.length) {
  4299. for (var tc = 0; tc < _task.tcMember.length; tc++) {
  4300. let _tc = this.getGMan(_task.tcMember[tc]);
  4301. if (_tc) {
  4302. gjson.nodes.push({
  4303. id: "tc" + i + "-" + j + "-" + tc,
  4304. text: _tc,
  4305. borderWidth: -1,
  4306. color: "#53c5fb",
  4307. });
  4308. gjson.lines.push({
  4309. from: "people" + i + "-" + j,
  4310. to: "tc" + i + "-" + j + "-" + tc,
  4311. });
  4312. }
  4313. }
  4314. }
  4315. }
  4316. }
  4317. }
  4318. this.graphJson = gjson;
  4319. }
  4320. },
  4321. unitIndex(newValue, oldValue) {
  4322. if (this.isDelete == 2) {
  4323. this.isDelete = 1;
  4324. return;
  4325. }
  4326. if (this.cid != "") {
  4327. let _unitIndex = oldValue;
  4328. if (
  4329. JSON.stringify(this.unitJson2[_unitIndex]) ==
  4330. JSON.stringify(this.unitJson[_unitIndex])
  4331. ) {
  4332. this.$refs.rightboxR.scrollTop = 0;
  4333. return;
  4334. }
  4335. let cPan = 1;
  4336. for (
  4337. var j = 0;
  4338. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  4339. j++
  4340. ) {
  4341. // if (
  4342. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].task
  4343. // ) {
  4344. // this.$message.error("请填写任务名称");
  4345. // cPan = 2
  4346. // break;
  4347. // }
  4348. // if (
  4349. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].people
  4350. // ) {
  4351. // this.$message.error("请填写负责人");
  4352. // cPan = 2
  4353. // break;
  4354. // }
  4355. // if (
  4356. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].time
  4357. // ) {
  4358. // this.$message.error("请填写任务起止时间");
  4359. // cPan = 2
  4360. // break;
  4361. // }
  4362. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  4363. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  4364. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  4365. (ele) => {
  4366. return ele.value != "";
  4367. }
  4368. );
  4369. }
  4370. }
  4371. if (cPan == 2) {
  4372. this.unitIndex = oldValue;
  4373. this.isDelete = 2;
  4374. return;
  4375. }
  4376. for (var i = 0; i < this.unitJson.length; i++) {
  4377. if (this.addindex != i) {
  4378. delete this.unitJson[i].isUpdate;
  4379. }
  4380. }
  4381. this.$refs.rightboxR.scrollTop = 0;
  4382. this.addindex = -1;
  4383. let params = [
  4384. {
  4385. cid: this.cid,
  4386. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  4387. uid: this.userid,
  4388. unitIndex: _unitIndex,
  4389. },
  4390. ];
  4391. this.ajax
  4392. .post(this.$store.state.api + "updateStudentWorkNew4", params)
  4393. .then((res) => {
  4394. // this.$message({
  4395. // message: "修改成功",
  4396. // type: "success",
  4397. // });
  4398. // this.courseId = this.cid;
  4399. })
  4400. .catch((err) => {
  4401. this.$message.error("网络不佳");
  4402. console.error(err);
  4403. });
  4404. }
  4405. },
  4406. },
  4407. methods: {
  4408. handleCheckAllChange(val) {
  4409. this.checkedCities = val ? cityOptions : [];
  4410. this.isIndeterminate = false;
  4411. },
  4412. handleCheckedCitiesChange(value) {
  4413. let checkedCount = value.length;
  4414. this.checkAll = checkedCount === this.cities.length;
  4415. this.isIndeterminate =
  4416. checkedCount > 0 && checkedCount < this.cities.length;
  4417. },
  4418. addHw(e) {
  4419. var el = e.currentTarget;
  4420. el.getElementsByTagName("input")[0].click();
  4421. },
  4422. change(val) {
  4423. console.log(val);
  4424. this.$forceUpdate();
  4425. },
  4426. change2(val) {
  4427. console.log(val);
  4428. this.$forceUpdate();
  4429. },
  4430. handleClose(done) {
  4431. this.videoDetail = {};
  4432. done();
  4433. },
  4434. imgChange1(file, fileList, type, itemTaskIndex) {
  4435. if (type == 1) {
  4436. var _tmp = this.cover;
  4437. } else if (
  4438. type == 2 ||
  4439. type == 3 ||
  4440. type == 6 ||
  4441. type == 7 ||
  4442. type == 8
  4443. ) {
  4444. var _tmp =
  4445. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4446. .chapterData;
  4447. } else if (type == 4) {
  4448. var _tmp = this.unitJson[this.unitIndex].chapterInfo[0].fileList1;
  4449. } else {
  4450. var _tmp =
  4451. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  4452. .homeworkList;
  4453. }
  4454. this.noneBtnImg = _tmp.length >= 1;
  4455. },
  4456. goTo(path) {
  4457. this.$router.push(path);
  4458. },
  4459. guid() {
  4460. var _num,
  4461. i,
  4462. _guid = "";
  4463. for (i = 0; i < 32; i++) {
  4464. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  4465. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  4466. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  4467. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  4468. _guid += "-";
  4469. }
  4470. }
  4471. return _guid;
  4472. },
  4473. lastSteps() {
  4474. if (this.steps == 5) {
  4475. this.goTo(
  4476. this.fpath +
  4477. "?userid=" +
  4478. this.userid +
  4479. "&oid=" +
  4480. this.oid +
  4481. "&org=" +
  4482. this.org
  4483. );
  4484. } else {
  4485. if (this.cidttt == 0) {
  4486. this.steps--;
  4487. if (this.steps == 1) {
  4488. setTimeout(() => {
  4489. this.checkEva(this.checkId);
  4490. }, 0);
  4491. }
  4492. } else {
  4493. if (this.steps == 3) {
  4494. this.steps = 1;
  4495. setTimeout(() => {
  4496. this.checkEva(this.checkId);
  4497. }, 0);
  4498. }
  4499. if (this.steps == 4) {
  4500. this.steps--;
  4501. setTimeout(() => {
  4502. this.checkEva(this.checkId);
  4503. }, 0);
  4504. }
  4505. }
  4506. }
  4507. },
  4508. navSteps(s) {
  4509. let typeT = 1;
  4510. if (this.courseTypeId.length) {
  4511. let array = Object.keys(this.CourseTypeJson);
  4512. for (var t = 0; t < array.length; t++) {
  4513. var tp = array[t];
  4514. var tAarray = [];
  4515. for (var tt = 0; tt < this.CourseTypeJson[tp].length; tt++) {
  4516. tAarray.push(this.CourseTypeJson[tp][tt].id);
  4517. }
  4518. for (var tt = 0; tt < this.courseTypeId.length; tt++) {
  4519. if (tAarray.indexOf(this.courseTypeId[tt]) != -1) {
  4520. typeT++;
  4521. }
  4522. }
  4523. }
  4524. }
  4525. if (this.oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5") {
  4526. typeT++;
  4527. }
  4528. if (this.courseName == "" || typeT != 3) {
  4529. if (typeT != 3) {
  4530. this.$message.error("分类为必选项目,请将信息补充完整后进行下一步");
  4531. } else {
  4532. this.$message.error("请将信息填写完整");
  4533. }
  4534. return;
  4535. }
  4536. if (this.cidttt == 0) {
  4537. if (this.steps == 1) {
  4538. if (this.cid == "" || this.cid == undefined) {
  4539. this.addWork();
  4540. } else {
  4541. if (this.userid != this.courseUserid) {
  4542. if (
  4543. this.checkboxListPeople.join(",") !=
  4544. this.checkboxList3.join(",")
  4545. ) {
  4546. this.updateWork();
  4547. } else {
  4548. this.updateWork2();
  4549. }
  4550. } else {
  4551. this.updateWork();
  4552. }
  4553. }
  4554. this.setMan();
  4555. }
  4556. if (s == 1) {
  4557. this.steps = 1;
  4558. setTimeout(() => {
  4559. this.checkEva(this.checkId);
  4560. }, 0);
  4561. }
  4562. if (s == 2) {
  4563. this.steps = 2;
  4564. }
  4565. if (s == 3) {
  4566. this.cTemplate = this.templateC.content;
  4567. this.dialogVisible2 = false;
  4568. this.steps = 3;
  4569. setTimeout(() => {
  4570. this.checkEva(this.checkId);
  4571. }, 1000);
  4572. }
  4573. if (s == 4 && this.cidType == 0) {
  4574. this.$message.error("请将信息填写完整");
  4575. return;
  4576. } else if (s == 4) {
  4577. let cPan = 1;
  4578. for (var i = 0; i < this.unitJson.length; i++) {
  4579. for (
  4580. var j = 0;
  4581. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  4582. j++
  4583. ) {
  4584. // if (
  4585. // !this.unitJson[i].chapterInfo[0].taskJson[j].task
  4586. // ) {
  4587. // this.$message.error("请填写任务名称");
  4588. // cPan = 2
  4589. // break;
  4590. // }
  4591. // if (
  4592. // !this.unitJson[i].chapterInfo[0].taskJson[j].people
  4593. // ) {
  4594. // this.$message.error("请填写负责人");
  4595. // cPan = 2
  4596. // break;
  4597. // }
  4598. // if (
  4599. // !this.unitJson[i].chapterInfo[0].taskJson[j].time
  4600. // ) {
  4601. // this.$message.error("请填写任务起止时间");
  4602. // cPan = 2
  4603. // break;
  4604. // }
  4605. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  4606. this.unitJson[i].chapterInfo[0].taskJson[j].eList =
  4607. this.unitJson[i].chapterInfo[0].taskJson[j].eList.filter(
  4608. (ele) => {
  4609. return ele.value != "";
  4610. }
  4611. );
  4612. }
  4613. }
  4614. }
  4615. if (cPan == 2) {
  4616. return;
  4617. }
  4618. if (this.userid != this.courseUserid) {
  4619. if (
  4620. this.checkboxListPeople.join(",") != this.checkboxList3.join(",")
  4621. ) {
  4622. this.updateWork();
  4623. } else {
  4624. this.updateWork2();
  4625. }
  4626. } else {
  4627. this.updateWork();
  4628. }
  4629. this.steps = 4;
  4630. }
  4631. } else {
  4632. if (this.steps == 1) {
  4633. if (this.cid == "" || this.cid == undefined) {
  4634. this.addWork();
  4635. } else {
  4636. if (this.userid != this.courseUserid) {
  4637. if (
  4638. this.checkboxListPeople.join(",") !=
  4639. this.checkboxList3.join(",")
  4640. ) {
  4641. this.updateWork();
  4642. } else {
  4643. this.updateWork2();
  4644. }
  4645. } else {
  4646. this.updateWork();
  4647. }
  4648. }
  4649. this.setMan();
  4650. }
  4651. if (s == 1) {
  4652. this.steps = 1;
  4653. setTimeout(() => {
  4654. this.checkEva(this.checkId);
  4655. }, 0);
  4656. }
  4657. if (s == 3) {
  4658. this.cTemplate = this.templateC.content;
  4659. this.dialogVisible2 = false;
  4660. this.steps = 3;
  4661. setTimeout(() => {
  4662. this.checkEva(this.checkId);
  4663. }, 1000);
  4664. }
  4665. if (s == 4 && this.cidType == 0) {
  4666. this.$message.error("请将信息填写完整");
  4667. return;
  4668. } else if (s == 4) {
  4669. let cPan = 1;
  4670. for (var i = 0; i < this.unitJson.length; i++) {
  4671. for (
  4672. var j = 0;
  4673. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  4674. j++
  4675. ) {
  4676. // if (
  4677. // !this.unitJson[i].chapterInfo[0].taskJson[j].task
  4678. // ) {
  4679. // this.$message.error("请填写任务名称");
  4680. // cPan = 2
  4681. // break;
  4682. // }
  4683. // if (
  4684. // !this.unitJson[i].chapterInfo[0].taskJson[j].people
  4685. // ) {
  4686. // this.$message.error("请填写负责人");
  4687. // cPan = 2
  4688. // break;
  4689. // }
  4690. // if (
  4691. // !this.unitJson[i].chapterInfo[0].taskJson[j].time
  4692. // ) {
  4693. // this.$message.error("请填写任务起止时间");
  4694. // cPan = 2
  4695. // break;
  4696. // }
  4697. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  4698. this.unitJson[i].chapterInfo[0].taskJson[j].eList =
  4699. this.unitJson[i].chapterInfo[0].taskJson[j].eList.filter(
  4700. (ele) => {
  4701. return ele.value != "";
  4702. }
  4703. );
  4704. }
  4705. }
  4706. }
  4707. if (cPan == 2) {
  4708. return;
  4709. }
  4710. if (this.userid != this.courseUserid) {
  4711. if (
  4712. this.checkboxListPeople.join(",") != this.checkboxList3.join(",")
  4713. ) {
  4714. this.updateWork();
  4715. } else {
  4716. this.updateWork2();
  4717. }
  4718. } else {
  4719. this.updateWork();
  4720. }
  4721. this.steps = 4;
  4722. }
  4723. }
  4724. this.$refs.stepBox.scrollTop = 0;
  4725. this.setVHeight();
  4726. },
  4727. nextSteps() {
  4728. let typeT = 1;
  4729. if (this.courseTypeId.length) {
  4730. let array = Object.keys(this.CourseTypeJson);
  4731. for (var t = 0; t < array.length; t++) {
  4732. var tp = array[t];
  4733. var tAarray = [];
  4734. for (var tt = 0; tt < this.CourseTypeJson[tp].length; tt++) {
  4735. tAarray.push(this.CourseTypeJson[tp][tt].id);
  4736. }
  4737. for (var tt = 0; tt < this.courseTypeId.length; tt++) {
  4738. if (tAarray.indexOf(this.courseTypeId[tt]) != -1) {
  4739. typeT++;
  4740. }
  4741. }
  4742. }
  4743. }
  4744. if (this.oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5") {
  4745. typeT++;
  4746. }
  4747. if (this.cidttt == 1) {
  4748. if (this.steps == 1) {
  4749. if (this.courseName != "" && typeT == 3) {
  4750. this.steps = 3;
  4751. setTimeout(() => {
  4752. this.checkEva(this.checkId);
  4753. }, 1000);
  4754. if (this.cid == "" || this.cid == undefined) {
  4755. this.addWork();
  4756. } else {
  4757. if (this.userid != this.courseUserid) {
  4758. if (
  4759. this.checkboxListPeople.join(",") !=
  4760. this.checkboxList3.join(",")
  4761. ) {
  4762. this.updateWork();
  4763. } else {
  4764. this.updateWork2();
  4765. }
  4766. } else {
  4767. this.updateWork();
  4768. }
  4769. }
  4770. } else {
  4771. if (typeT != 3) {
  4772. this.$message.error(
  4773. "分类为必选项目,请将信息补充完整后进行下一步"
  4774. );
  4775. } else {
  4776. this.$message.error("请将信息填写完整");
  4777. }
  4778. return;
  4779. }
  4780. this.setMan();
  4781. } else if (this.steps == 3) {
  4782. if (this.cid == "" || this.cid == undefined) {
  4783. if (this.courseName == "" || typeT != 3) {
  4784. if (typeT != 3) {
  4785. this.$message.error(
  4786. "分类为必选项目,请将信息补充完整后进行下一步"
  4787. );
  4788. } else {
  4789. this.$message.error("请将信息填写完整");
  4790. }
  4791. return;
  4792. } else {
  4793. this.addWork();
  4794. if (this.type != 2) {
  4795. this.steps = 5;
  4796. } else {
  4797. this.steps++;
  4798. }
  4799. }
  4800. } else {
  4801. if (this.courseName == "" || typeT != 3) {
  4802. if (typeT != 3) {
  4803. this.$message.error(
  4804. "分类为必选项目,请将信息补充完整后进行下一步"
  4805. );
  4806. } else {
  4807. this.$message.error("请将信息填写完整");
  4808. }
  4809. return;
  4810. } else {
  4811. if (this.type != 2) {
  4812. this.steps = 5;
  4813. } else {
  4814. this.steps++;
  4815. }
  4816. if (this.userid != this.courseUserid) {
  4817. if (
  4818. this.checkboxListPeople.join(",") !=
  4819. this.checkboxList3.join(",")
  4820. ) {
  4821. this.updateWork();
  4822. } else {
  4823. this.updateWork2();
  4824. }
  4825. } else {
  4826. this.updateWork();
  4827. }
  4828. }
  4829. }
  4830. } else if (this.steps == 4) {
  4831. if (this.userid != this.courseUserid) {
  4832. this.updateWork2();
  4833. // this.updateWork();
  4834. } else {
  4835. this.updateWork();
  4836. }
  4837. this.steps++;
  4838. }
  4839. } else {
  4840. if (this.steps == 1) {
  4841. if (this.courseName != "" && typeT == 3) {
  4842. if (this.cid == "" || this.cid == undefined) {
  4843. this.addWork();
  4844. } else {
  4845. if (this.userid != this.courseUserid) {
  4846. if (
  4847. this.checkboxListPeople.join(",") !=
  4848. this.checkboxList3.join(",")
  4849. ) {
  4850. this.updateWork();
  4851. } else {
  4852. this.updateWork2();
  4853. }
  4854. } else {
  4855. this.updateWork();
  4856. }
  4857. }
  4858. this.steps++;
  4859. } else {
  4860. if (typeT != 3) {
  4861. this.$message.error(
  4862. "分类为必选项目,请将信息补充完整后进行下一步"
  4863. );
  4864. } else {
  4865. this.$message.error("请将信息填写完整");
  4866. }
  4867. return;
  4868. }
  4869. this.setMan();
  4870. } else if (this.steps == 2) {
  4871. if (this.templateC.id != "" || this.templateC.id != undefined) {
  4872. this.cTemplate = this.templateC.content;
  4873. }
  4874. this.dialogVisible2 = false;
  4875. this.steps++;
  4876. setTimeout(() => {
  4877. this.checkEva(this.checkId);
  4878. }, 1000);
  4879. } else if (this.steps == 3) {
  4880. if (this.cid == "" || this.cid == undefined) {
  4881. if (this.courseName == "" || typeT != 3) {
  4882. if (typeT != 3) {
  4883. this.$message.error(
  4884. "分类为必选项目,请将信息补充完整后进行下一步"
  4885. );
  4886. } else {
  4887. this.$message.error("请将信息填写完整");
  4888. }
  4889. return;
  4890. } else {
  4891. this.addWork();
  4892. if (this.type != 2) {
  4893. this.steps = 5;
  4894. } else {
  4895. this.steps++;
  4896. }
  4897. }
  4898. } else {
  4899. if (this.courseName == "" || typeT != 3) {
  4900. if (typeT != 3) {
  4901. this.$message.error(
  4902. "分类为必选项目,请将信息补充完整后进行下一步"
  4903. );
  4904. } else {
  4905. this.$message.error("请将信息填写完整");
  4906. }
  4907. return;
  4908. } else {
  4909. if (this.type != 2) {
  4910. this.steps = 5;
  4911. } else {
  4912. this.steps++;
  4913. }
  4914. if (this.userid != this.courseUserid) {
  4915. if (
  4916. this.checkboxListPeople.join(",") !=
  4917. this.checkboxList3.join(",")
  4918. ) {
  4919. this.updateWork();
  4920. } else {
  4921. this.updateWork2();
  4922. }
  4923. } else {
  4924. this.updateWork();
  4925. }
  4926. }
  4927. }
  4928. } else if (this.steps == 4) {
  4929. if (this.userid != this.courseUserid) {
  4930. if (
  4931. this.checkboxListPeople.join(",") != this.checkboxList3.join(",")
  4932. ) {
  4933. this.updateWork();
  4934. } else {
  4935. this.updateWork2();
  4936. }
  4937. } else {
  4938. this.updateWork();
  4939. }
  4940. this.steps++;
  4941. }
  4942. }
  4943. this.$refs.stepBox.scrollTop = 0;
  4944. this.setVHeight();
  4945. },
  4946. unitSet(i) {
  4947. this.unitIndex = i;
  4948. // this.$refs.rightboxR.scrollTop = 0;
  4949. this.setVHeight();
  4950. },
  4951. time() {
  4952. if (!this.now) {
  4953. this.now = new Date().getTime();
  4954. return true;
  4955. } else {
  4956. let time = new Date().getTime();
  4957. if (time - this.now > 3000) {
  4958. this.now = time;
  4959. return true;
  4960. } else {
  4961. return false;
  4962. }
  4963. }
  4964. },
  4965. deleteUnit(i) {
  4966. var _this = this;
  4967. if (_this.time()) {
  4968. _this
  4969. .$confirm("确定删除此单元吗?", "提示", {
  4970. confirmButtonText: "确定",
  4971. cancelButtonText: "取消",
  4972. type: "warning",
  4973. })
  4974. .then(() => {
  4975. _this.isDelete = 2;
  4976. // _this.unitIndex = _this.unitIndex - 1;
  4977. _this.deleteWork(_this.unitJson[i].chapterInfo[0].chapterid);
  4978. // _this.$message.success("删除成功");
  4979. })
  4980. .catch(() => {
  4981. return;
  4982. });
  4983. }
  4984. },
  4985. deleteWork(chapid) {
  4986. let params = [
  4987. {
  4988. cid: this.cid,
  4989. chapters: JSON.stringify(this.unitJson),
  4990. uid: this.userid,
  4991. chapid: chapid,
  4992. },
  4993. ];
  4994. this.ajax
  4995. .post(this.$store.state.api + "deleteStudentWork", params)
  4996. .then((res) => {
  4997. this.$message({
  4998. message: "删除成功",
  4999. type: "success",
  5000. });
  5001. this.unitJson.splice(this.unitIndex, 1);
  5002. this.deleteStudentToolS(this.unitIndex);
  5003. this.unitIndex = this.unitIndex - 1;
  5004. })
  5005. .catch((err) => {
  5006. this.$message.error("网络不佳");
  5007. console.error(err);
  5008. });
  5009. },
  5010. deleteTool(itemTaskIndex, i) {
  5011. // var _this = this;
  5012. // if (_this.time()) {
  5013. // _this
  5014. // .$confirm("确定删除此工具吗?", "提示", {
  5015. // confirmButtonText: "确定",
  5016. // cancelButtonText: "取消",
  5017. // type: "warning",
  5018. // })
  5019. // .then(() => {
  5020. // _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5021. // itemTaskIndex
  5022. // ].toolChoose.splice(i, 1);
  5023. // _this.$message.success("删除成功");
  5024. // })
  5025. // .catch(() => {
  5026. // return;
  5027. // });
  5028. // }
  5029. var _this = this;
  5030. _this
  5031. .$confirm("确定删除此步骤吗?", "提示", {
  5032. confirmButtonText: "确定",
  5033. cancelButtonText: "取消",
  5034. type: "warning",
  5035. })
  5036. .then(() => {
  5037. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5038. itemTaskIndex
  5039. ].toolArray.splice(i, 1);
  5040. this.deleteStudentToolSTT(itemTaskIndex, i);
  5041. _this.$message.success("删除成功");
  5042. })
  5043. .catch(() => {
  5044. return;
  5045. });
  5046. },
  5047. deleteStudentToolSTT(task, tool) {
  5048. let params = [
  5049. {
  5050. cid: this.cid,
  5051. stage: this.unitIndex,
  5052. task: task,
  5053. tool: tool,
  5054. },
  5055. ];
  5056. this.ajax
  5057. .post(this.$store.state.api + "deleteStudentToolSTT", params)
  5058. .then((res) => {})
  5059. .catch((err) => {
  5060. console.error(err);
  5061. });
  5062. },
  5063. deleteStudentToolST(task) {
  5064. let params = [
  5065. {
  5066. cid: this.cid,
  5067. stage: this.unitIndex,
  5068. task: task,
  5069. },
  5070. ];
  5071. this.ajax
  5072. .post(this.$store.state.api + "deleteStudentToolST", params)
  5073. .then((res) => {})
  5074. .catch((err) => {
  5075. console.error(err);
  5076. });
  5077. },
  5078. deleteStudentToolS() {
  5079. let params = [
  5080. {
  5081. cid: this.cid,
  5082. stage: this.unitIndex,
  5083. },
  5084. ];
  5085. this.ajax
  5086. .post(this.$store.state.api + "deleteStudentToolS", params)
  5087. .then((res) => {})
  5088. .catch((err) => {
  5089. console.error(err);
  5090. });
  5091. },
  5092. deleteSentence(i) {
  5093. var _this = this;
  5094. if (_this.time()) {
  5095. _this
  5096. .$confirm("确定删除此题目吗?", "提示", {
  5097. confirmButtonText: "确定",
  5098. cancelButtonText: "取消",
  5099. type: "warning",
  5100. })
  5101. .then(() => {
  5102. _this.sentenceList.splice(i, 1);
  5103. _this.$message.success("删除成功");
  5104. })
  5105. .catch(() => {
  5106. return;
  5107. });
  5108. }
  5109. },
  5110. deleteS(s, i, j) {
  5111. this.sentenceList[i].addSentence.splice(j, 1);
  5112. if (this.sentenceList[i].rightAnswer.indexOf(s) != -1) {
  5113. var a = this.sentenceList[i].rightAnswer.indexOf(s);
  5114. this.sentenceList[i].rightAnswer.splice(a, 1);
  5115. }
  5116. },
  5117. openT() {
  5118. window.parent.postMessage(
  5119. {
  5120. tools: "25",
  5121. },
  5122. "*"
  5123. );
  5124. },
  5125. deleteTask(i) {
  5126. var _this = this;
  5127. if (_this.time()) {
  5128. _this
  5129. .$confirm("确定删除此任务吗?", "提示", {
  5130. confirmButtonText: "确定",
  5131. cancelButtonText: "取消",
  5132. type: "warning",
  5133. })
  5134. .then(() => {
  5135. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson.splice(
  5136. i,
  5137. 1
  5138. );
  5139. this.deleteStudentToolST(i);
  5140. _this.$message.success("删除成功");
  5141. })
  5142. .catch(() => {
  5143. return;
  5144. });
  5145. }
  5146. },
  5147. handlePictureCardPreview(file) {
  5148. this.dialogImageUrl = file.url;
  5149. },
  5150. clean(i, c) {
  5151. this.unitJson[this.unitIndex].chapterInfo[i].fileList1.splice(c, 1);
  5152. },
  5153. handle_remove1(file, fileList, type) {
  5154. var _tmp = this.cover;
  5155. for (var i = 0, len = _tmp.length; i < len; i++) {
  5156. if (_tmp[i].uid == file.uid) {
  5157. _tmp.splice(i, 1);
  5158. break;
  5159. }
  5160. this.cover = _tmp;
  5161. }
  5162. this.noneBtnImg = _tmp.length >= 1;
  5163. this.isSysPic = false;
  5164. },
  5165. addImg(e) {
  5166. var el = e.currentTarget || e;
  5167. el.getElementsByTagName("input")[0].click();
  5168. e.target.value = "";
  5169. },
  5170. addChaptersTools(i) {
  5171. this.chapTools = [
  5172. {
  5173. tools: [],
  5174. toolDetail: "",
  5175. },
  5176. ];
  5177. this.chapCount = i;
  5178. this.dialogVisible4 = true;
  5179. },
  5180. isNoFinsh() {
  5181. this.$message.warning("功能正在开发中");
  5182. },
  5183. addAttText(i) {
  5184. this.AttText = {
  5185. title: "",
  5186. text: "",
  5187. };
  5188. // this.taskCount = i;
  5189. this.AttTextType = 0;
  5190. this.$forceUpdate();
  5191. this.dialogVisible6 = true;
  5192. },
  5193. openLine(i) {
  5194. this.line = "";
  5195. this.lineTitle = "";
  5196. // this.lineCount = i;
  5197. this.lineType = 0;
  5198. this.$forceUpdate();
  5199. this.dialogVisible7 = true;
  5200. },
  5201. beforeUpload1(event, type) {
  5202. const loading = this.openLoading();
  5203. var file = event.target.files[0];
  5204. var credentials = {
  5205. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5206. secretAccessKey: "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",
  5207. }; //秘钥形式的登录上传
  5208. window.AWS.config.update(credentials);
  5209. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5210. var bucket = new window.AWS.S3({
  5211. params: {
  5212. Bucket: "ccrb",
  5213. },
  5214. }); //选择桶
  5215. var _this = this;
  5216. if (file) {
  5217. var params = {
  5218. Key:
  5219. file.name.split(".")[0] +
  5220. new Date().getTime() +
  5221. "." +
  5222. file.name.split(".")[file.name.split(".").length - 1],
  5223. ContentType: file.type,
  5224. Body: file,
  5225. "Access-Control-Allow-Credentials": "*",
  5226. ACL: "public-read",
  5227. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5228. var options = {
  5229. partSize: 2048 * 1024 * 1024,
  5230. queueSize: 2,
  5231. leavePartsOnError: true,
  5232. };
  5233. bucket
  5234. .upload(params, options)
  5235. .on("httpUploadProgress", function (evt) {
  5236. //这里可以写进度条
  5237. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5238. })
  5239. .send(function (err, data) {
  5240. loading.close();
  5241. if (err) {
  5242. _this.$message.error("上传失败");
  5243. } else {
  5244. _this.cover.push({
  5245. name: file.name,
  5246. url: data.Location,
  5247. uid: file.uid,
  5248. });
  5249. _this.imgChange1(null, null, 1, null);
  5250. _this.choosePicVisible = false;
  5251. console.log(data.Location);
  5252. }
  5253. });
  5254. }
  5255. },
  5256. beforeUploadSelect(event, type) {
  5257. const loading = this.openLoading();
  5258. var file = event.target.files[0];
  5259. var credentials = {
  5260. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5261. secretAccessKey: "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",
  5262. }; //秘钥形式的登录上传
  5263. window.AWS.config.update(credentials);
  5264. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5265. var bucket = new window.AWS.S3({
  5266. params: {
  5267. Bucket: "ccrb",
  5268. },
  5269. }); //选择桶
  5270. var _this = this;
  5271. if (file) {
  5272. var params = {
  5273. Key:
  5274. file.name.split(".")[0] +
  5275. new Date().getTime() +
  5276. "." +
  5277. file.name.split(".")[file.name.split(".").length - 1],
  5278. ContentType: file.type,
  5279. Body: file,
  5280. "Access-Control-Allow-Credentials": "*",
  5281. ACL: "public-read",
  5282. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5283. var options = {
  5284. partSize: 2048 * 1024 * 1024,
  5285. queueSize: 2,
  5286. leavePartsOnError: true,
  5287. };
  5288. bucket
  5289. .upload(params, options)
  5290. .on("httpUploadProgress", function (evt) {
  5291. //这里可以写进度条
  5292. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5293. })
  5294. .send(function (err, data) {
  5295. loading.close();
  5296. if (err) {
  5297. _this.$message.error("上传失败");
  5298. } else {
  5299. _this.selectJson.url = data.Location;
  5300. console.log(data.Location);
  5301. }
  5302. });
  5303. }
  5304. },
  5305. chooseSysPic(p) {
  5306. this.cover.push({
  5307. name: "系统图片.png",
  5308. url: p,
  5309. });
  5310. this.imgChange1(null, null, 1, null);
  5311. this.isSysPic = true;
  5312. this.sysPicVisible = false;
  5313. },
  5314. beforeUpload(data) {
  5315. this.uploadLoading1 = true;
  5316. var file = data.file;
  5317. var credentials = {
  5318. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5319. secretAccessKey: "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",
  5320. }; //秘钥形式的登录上传
  5321. window.AWS.config.update(credentials);
  5322. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5323. var bucket = new window.AWS.S3({
  5324. params: {
  5325. Bucket: "ccrb",
  5326. },
  5327. }); //选择桶
  5328. var _this = this;
  5329. if (file) {
  5330. var params = {
  5331. Key:
  5332. file.name.split(".")[0] +
  5333. new Date().getTime() +
  5334. "." +
  5335. file.name.split(".")[file.name.split(".").length - 1],
  5336. ContentType: file.type,
  5337. Body: file,
  5338. "Access-Control-Allow-Credentials": "*",
  5339. ACL: "public-read",
  5340. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5341. var options = {
  5342. partSize: 2048 * 1024 * 1024,
  5343. queueSize: 2,
  5344. leavePartsOnError: true,
  5345. };
  5346. bucket
  5347. .upload(params, options)
  5348. .on("httpUploadProgress", function (evt) {
  5349. //这里可以写进度条
  5350. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5351. })
  5352. .send(function (err, data) {
  5353. _this.uploadLoading1 = false;
  5354. if (err) {
  5355. _this.$message.error("上传失败");
  5356. } else {
  5357. //上传成功处理
  5358. _this.unitJson[_this.unitIndex].chapterInfo[0].fileList1.push({
  5359. name: file.name,
  5360. url: data.Location,
  5361. uid: file.uid,
  5362. });
  5363. _this.imgChange();
  5364. console.log(data.Location);
  5365. }
  5366. });
  5367. }
  5368. },
  5369. onExceed() {
  5370. this.$message.error("项目封面仅支持上传一张,请删除后再进行上传");
  5371. },
  5372. beforeUpload2(event, unitIndex, type, itemTaskIndex) {
  5373. // const loading = this.openLoading();
  5374. var file = event.target.files[0];
  5375. var credentials = {
  5376. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5377. secretAccessKey: "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",
  5378. }; //秘钥形式的登录上传
  5379. window.AWS.config.update(credentials);
  5380. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5381. var bucket = new window.AWS.S3({
  5382. params: {
  5383. Bucket: "ccrb",
  5384. },
  5385. }); //选择桶
  5386. var _this = this;
  5387. if (type == 3) {
  5388. var b = [
  5389. "DOC",
  5390. "DOCX",
  5391. "DOCM",
  5392. "DOTM",
  5393. "DOTX",
  5394. "PPTX",
  5395. "PPSX",
  5396. "PPT",
  5397. "PPS",
  5398. "PPTM",
  5399. "POTM",
  5400. "PPAM",
  5401. "POTX",
  5402. "PPSM",
  5403. ];
  5404. if (
  5405. b.indexOf(
  5406. file.name
  5407. .split(".")
  5408. [file.name.split(".").length - 1].toLocaleUpperCase()
  5409. ) != -1
  5410. ) {
  5411. if (file.size / 1024 / 1024 > 80) {
  5412. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5413. this.inputShow = true;
  5414. // loading.close();
  5415. return;
  5416. }
  5417. } else if (
  5418. file.name
  5419. .split(".")
  5420. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5421. ) {
  5422. if (file.size / 1024 / 1024 > 80) {
  5423. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5424. this.inputShow = true;
  5425. // loading.close();
  5426. return;
  5427. }
  5428. }
  5429. }
  5430. this.inputShow = false;
  5431. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5432. itemTaskIndex
  5433. ].progress = 0;
  5434. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5435. itemTaskIndex
  5436. ].proVisible = true;
  5437. if (file) {
  5438. var params = {
  5439. Key:
  5440. file.name.split(".")[0] +
  5441. new Date().getTime() +
  5442. "." +
  5443. file.name.split(".")[file.name.split(".").length - 1],
  5444. ContentType: file.type,
  5445. Body: file,
  5446. "Access-Control-Allow-Credentials": "*",
  5447. ACL: "public-read",
  5448. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5449. var options = {
  5450. partSize: 2048 * 1024 * 1024,
  5451. queueSize: 2,
  5452. leavePartsOnError: true,
  5453. };
  5454. bucket
  5455. .upload(params, options)
  5456. .on("httpUploadProgress", function (evt) {
  5457. //这里可以写进度条
  5458. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5459. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5460. itemTaskIndex
  5461. ].progress = parseInt((evt.loaded * 80) / evt.total);
  5462. })
  5463. .send(function (err, data) {
  5464. // loading.close();
  5465. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5466. itemTaskIndex
  5467. ].progress = 100;
  5468. setTimeout(() => {
  5469. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5470. itemTaskIndex
  5471. ].proVisible = false;
  5472. _this.$forceUpdate();
  5473. }, 1000);
  5474. _this.inputShow = true;
  5475. if (err) {
  5476. _this.$message.error("上传失败");
  5477. } else {
  5478. if (type == 2 || type == 3) {
  5479. if (
  5480. data.Location.split(".")[
  5481. data.Location.split(".").length - 1
  5482. ].toLocaleUpperCase() == "PDF"
  5483. ) {
  5484. type = 9;
  5485. }
  5486. _this.unitJson[unitIndex].chapterInfo[0].taskJson[
  5487. itemTaskIndex
  5488. ].chapterData.push({
  5489. name: file.name,
  5490. url: data.Location,
  5491. uid: file.uid,
  5492. type: type,
  5493. });
  5494. _this.imgChange1(null, null, type, itemTaskIndex);
  5495. } else if (type == 4) {
  5496. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5497. itemTaskIndex
  5498. ].fileList1.push({
  5499. name: file.name,
  5500. url: data.Location,
  5501. uid: file.uid,
  5502. });
  5503. _this.imgChange1(null, null, type, itemTaskIndex);
  5504. } else if (type == 5) {
  5505. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5506. itemTaskIndex
  5507. ].homeworkList.push({
  5508. name: file.name,
  5509. url: data.Location,
  5510. uid: file.uid,
  5511. });
  5512. _this.imgChange1(null, null, type, itemTaskIndex);
  5513. }
  5514. console.log(data.Location);
  5515. }
  5516. });
  5517. }
  5518. },
  5519. getVideo2(url) {
  5520. var d = JSON.parse(JSON.stringify(this.playerOptions));
  5521. d.sources[0].src = url;
  5522. return d;
  5523. },
  5524. beforeUpload3(event, type) {
  5525. // const loading = this.openLoading();
  5526. var file = event.target.files[0];
  5527. var credentials = {
  5528. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5529. secretAccessKey: "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",
  5530. }; //秘钥形式的登录上传
  5531. window.AWS.config.update(credentials);
  5532. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5533. var bucket = new window.AWS.S3({
  5534. params: {
  5535. Bucket: "ccrb",
  5536. },
  5537. }); //选择桶
  5538. var _this = this;
  5539. if (type == 3) {
  5540. var b = [
  5541. "DOC",
  5542. "DOCX",
  5543. "DOCM",
  5544. "DOTM",
  5545. "DOTX",
  5546. "PPTX",
  5547. "PPSX",
  5548. "PPT",
  5549. "PPS",
  5550. "PPTM",
  5551. "POTM",
  5552. "PPAM",
  5553. "POTX",
  5554. "PPSM",
  5555. ];
  5556. if (
  5557. b.indexOf(
  5558. file.name
  5559. .split(".")
  5560. [file.name.split(".").length - 1].toLocaleUpperCase()
  5561. ) != -1
  5562. ) {
  5563. if (file.size / 1024 / 1024 > 80) {
  5564. this.$message.error("上传文件大于80兆,请重新选择文件!");
  5565. this.inputShow = true;
  5566. // loading.close();
  5567. return;
  5568. }
  5569. } else if (
  5570. file.name
  5571. .split(".")
  5572. [file.name.split(".").length - 1].toLocaleUpperCase() != "PDF"
  5573. ) {
  5574. if (file.size / 1024 / 1024 > 80) {
  5575. this.$message.error("添加成上传文件大于80兆,请重新选择文件!");
  5576. this.inputShow = true;
  5577. // loading.close();
  5578. return;
  5579. }
  5580. }
  5581. }
  5582. _this.inputShow = false;
  5583. _this.progress = 0;
  5584. _this.proVisible = true;
  5585. _this.isFinishSize = 0;
  5586. _this.isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5587. if (file) {
  5588. var params = {
  5589. Key:
  5590. file.name.split(".")[0] +
  5591. new Date().getTime() +
  5592. "." +
  5593. file.name.split(".")[file.name.split(".").length - 1],
  5594. ContentType: file.type,
  5595. Body: file,
  5596. "Access-Control-Allow-Credentials": "*",
  5597. ACL: "public-read",
  5598. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5599. var options = {
  5600. partSize: 2048 * 1024 * 1024,
  5601. queueSize: 2,
  5602. leavePartsOnError: true,
  5603. };
  5604. bucket
  5605. .upload(params, options)
  5606. .on("httpUploadProgress", function (evt) {
  5607. //这里可以写进度条
  5608. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5609. _this.progress = parseInt((evt.loaded / evt.total) * 100);
  5610. _this.isFinishSize = (evt.loaded / 1024 / 1024).toFixed(2);
  5611. })
  5612. .send(function (err, data) {
  5613. // loading.close();
  5614. _this.progress = 100;
  5615. _this.isFinishSize = _this.isAllSize;
  5616. setTimeout(() => {
  5617. _this.proVisible = false;
  5618. // _this.dialogVisibleSource = false;
  5619. _this.$forceUpdate();
  5620. }, 1000);
  5621. _this.inputShow = true;
  5622. if (err) {
  5623. _this.$message.error("上传失败");
  5624. } else {
  5625. if (type == 2 || type == 3) {
  5626. var src = "";
  5627. if (
  5628. data.Location.split(".")[
  5629. data.Location.split(".").length - 1
  5630. ].toLocaleUpperCase() == "PDF"
  5631. ) {
  5632. type = 9;
  5633. }
  5634. if (type == 2) {
  5635. src = _this.getVideo2(data.Location);
  5636. } else if (type == 3) {
  5637. src =
  5638. "https://view.officeapps.live.com/op/view.aspx?src=" +
  5639. data.Location;
  5640. } else {
  5641. src = data.Location;
  5642. }
  5643. // _this.unitJson[unitIndex].chapterInfo[0].taskJson[itemTaskIndex].toolArray.push({
  5644. // tool: 51,
  5645. // toolDetail: "",
  5646. // toolPhoto: "",
  5647. // toolEdit: false,
  5648. // toolId: _this.guid(),
  5649. // toolData: {
  5650. // name: file.name,
  5651. // url: data.Location,
  5652. // uid: file.uid,
  5653. // type: type,
  5654. // src: src,
  5655. // }
  5656. // });
  5657. _this.sourcesData.push({
  5658. name: file.name,
  5659. url: data.Location,
  5660. uid: file.uid,
  5661. type: type,
  5662. src: src,
  5663. });
  5664. }
  5665. console.log(data.Location);
  5666. }
  5667. });
  5668. }
  5669. },
  5670. async beforeUploadCC(event, type, task, toolindex, tool) {
  5671. // this.$message.success('进入上传')
  5672. var file = "";
  5673. file = event.target.files[0];
  5674. var credentials = {
  5675. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  5676. secretAccessKey: "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",
  5677. }; //秘钥形式的登录上传
  5678. window.AWS.config.update(credentials);
  5679. window.AWS.config.region = "cn-northwest-1"; //设置区域
  5680. var bucket = new window.AWS.S3({
  5681. params: {
  5682. Bucket: "ccrb",
  5683. },
  5684. }); //选择桶
  5685. var _this = this;
  5686. // _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[toolindex].progress = 0;
  5687. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[
  5688. toolindex
  5689. ].proVisible = true;
  5690. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[
  5691. toolindex
  5692. ].isFinishSize = 0;
  5693. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[
  5694. toolindex
  5695. ].isAllSize = (file.size / 1024 / 1024).toFixed(2);
  5696. _this.$forceUpdate();
  5697. var b = [
  5698. "DOC",
  5699. "DOCX",
  5700. "DOCM",
  5701. "DOTM",
  5702. "DOTX",
  5703. "PPTX",
  5704. "PPSX",
  5705. "PPT",
  5706. "PPS",
  5707. "PPTM",
  5708. "POTM",
  5709. "PPAM",
  5710. "POTX",
  5711. "PPSM",
  5712. ];
  5713. var excelA = ["XLSX", "XLXB", "XLS", "XLSM"];
  5714. var photoA = [
  5715. "BMP",
  5716. "GIF",
  5717. "PNG",
  5718. "JPGE",
  5719. "JPG",
  5720. "TIF",
  5721. "PCX",
  5722. "TGA",
  5723. "EXIF",
  5724. "FPX",
  5725. "SVG",
  5726. "APNG",
  5727. ];
  5728. if (
  5729. photoA.indexOf(
  5730. file.name
  5731. .split(".")
  5732. [file.name.split(".").length - 1].toLocaleUpperCase()
  5733. ) != -1 &&
  5734. type != 4
  5735. ) {
  5736. // const blob = await imageConversion.compress(file, 0.8)
  5737. file = await this.pngToWhiteBg(file);
  5738. const blob = await imageConversion.compressAccurately(file, 256);
  5739. // const blob = await imageConversion.compressAccurately(file, {type:file.type});
  5740. file = new File([blob], file.name, {
  5741. type: file.type,
  5742. });
  5743. }
  5744. if (file) {
  5745. var params = {
  5746. Key:
  5747. file.name.split(".")[0] +
  5748. new Date().getTime() +
  5749. "." +
  5750. file.name.split(".")[file.name.split(".").length - 1],
  5751. ContentType: file.type,
  5752. Body: file,
  5753. "Access-Control-Allow-Credentials": "*",
  5754. ACL: "public-read",
  5755. }; //key可以设置为桶的相抵路径,Body为文件, ACL最好要设置
  5756. var options = {
  5757. // partSize: 2048 * 1024 * 1024,
  5758. partSize: 1024 * 1024 * 1024,
  5759. queueSize: 2,
  5760. leavePartsOnError: true,
  5761. };
  5762. bucket
  5763. .upload(params, options)
  5764. .on("httpUploadProgress", function (evt) {
  5765. //这里可以写进度条
  5766. // console.log("Uploaded : " + parseInt((evt.loaded * 80) / evt.total) + '%');
  5767. // _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[toolindex].progress = parseInt((evt.loaded * 80) / evt.total);
  5768. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5769. task
  5770. ].toolArray[toolindex].isFinishSize = (
  5771. evt.loaded /
  5772. 1024 /
  5773. 1024
  5774. ).toFixed(2);
  5775. _this.$forceUpdate();
  5776. })
  5777. .send(function (err, data) {
  5778. // _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[task].toolArray[toolindex].progress = 100;
  5779. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5780. task
  5781. ].toolArray[toolindex].isFinishSize =
  5782. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5783. task
  5784. ].toolArray[toolindex].isAllSize;
  5785. _this.$forceUpdate();
  5786. setTimeout(() => {
  5787. _this.unitJson[_this.unitIndex].chapterInfo[0].taskJson[
  5788. task
  5789. ].toolArray[toolindex].proVisible = false;
  5790. }, 1000);
  5791. if (err) {
  5792. var a = _this.$refs.upload1.uploadFiles;
  5793. a.splice(a.length - 1, a.length);
  5794. _this.$message.error("上传失败");
  5795. } else {
  5796. // _this.$message.success('上传成功')
  5797. var b = ["PDF", "DOC", "DOCX", "PPT", "PPTX", "XLSX", "XLS"];
  5798. var c = [
  5799. "AVI",
  5800. "NAVI",
  5801. "MPEG",
  5802. "ASF",
  5803. "MOV",
  5804. "WMV",
  5805. "3GP",
  5806. "RM",
  5807. "RMVB",
  5808. "FLV",
  5809. "F4V",
  5810. "H.264",
  5811. "H.265",
  5812. "REAL VIDEO",
  5813. "MKV",
  5814. "WebM",
  5815. "HDDVD",
  5816. "MP4",
  5817. "MPG",
  5818. "M4V",
  5819. "MGV",
  5820. "OGV",
  5821. "QTM",
  5822. "STR",
  5823. "AMC",
  5824. "DVX",
  5825. "EVO",
  5826. "DAT",
  5827. "OGG",
  5828. "OGM",
  5829. ];
  5830. if (type == 1) {
  5831. if (
  5832. ["ZIP"].indexOf(
  5833. data.Location.split(".")[
  5834. data.Location.split(".").length - 1
  5835. ].toLocaleUpperCase()
  5836. ) != -1
  5837. ) {
  5838. _this.addCourseWorksS(
  5839. tool,
  5840. 13,
  5841. data.Location,
  5842. task,
  5843. toolindex
  5844. );
  5845. } else {
  5846. _this.addCourseWorksS(
  5847. tool,
  5848. 4,
  5849. data.Location,
  5850. task,
  5851. toolindex
  5852. );
  5853. }
  5854. } else if (type == 2) {
  5855. if (
  5856. c.indexOf(
  5857. data.Location.split(".")[
  5858. data.Location.split(".").length - 1
  5859. ].toLocaleUpperCase()
  5860. ) != -1
  5861. ) {
  5862. _this.addCourseWorksS(
  5863. tool,
  5864. 5,
  5865. data.Location,
  5866. task,
  5867. toolindex
  5868. );
  5869. } else {
  5870. _this.addCourseWorksS(
  5871. tool,
  5872. 1,
  5873. data.Location,
  5874. task,
  5875. toolindex
  5876. );
  5877. }
  5878. } else if (type == 3) {
  5879. _this.addCourseWorksS(tool, 13, data.Location, task, toolindex);
  5880. }
  5881. console.log(data.Location);
  5882. // _this.$message.success('上传成功'+data.Location)
  5883. }
  5884. });
  5885. }
  5886. },
  5887. pngToWhiteBg(file) {
  5888. const _file = file;
  5889. let read = new FileReader();
  5890. read.readAsDataURL(file); // 文件转base64
  5891. return new Promise((resolve, reject) => {
  5892. read.onload = (e) => {
  5893. let img = new Image();
  5894. img.src = e.target.result;
  5895. img.onload = async () => {
  5896. // 生成canvas
  5897. let canvas = document.createElement("canvas");
  5898. let context = canvas.getContext("2d");
  5899. // 绘制图片到canvas上
  5900. canvas.width = img.width;
  5901. canvas.height = img.height;
  5902. // 在canvas绘制前填充白色背景
  5903. context.fillStyle = "#fff";
  5904. context.fillRect(0, 0, canvas.width, canvas.height);
  5905. context.drawImage(img, 0, 0);
  5906. let base64 = canvas.toDataURL(file["type"], 1);
  5907. let newFile = this.dataUrlToFile(base64, _file);
  5908. resolve(newFile);
  5909. };
  5910. };
  5911. });
  5912. },
  5913. dataUrlToFile(dataurl, file) {
  5914. let arr = dataurl.split(","),
  5915. mime = arr[0].match(/:(.*?);/)[1],
  5916. bstr = atob(arr[1]),
  5917. n = bstr.length,
  5918. u8arr = new Uint8Array(n);
  5919. while (n--) {
  5920. u8arr[n] = bstr.charCodeAt(n);
  5921. }
  5922. // return new Blob([u8arr], { type: mime });
  5923. return new File(
  5924. [
  5925. new Blob([u8arr], {
  5926. type: mime,
  5927. }),
  5928. ],
  5929. file.name,
  5930. {
  5931. type: mime,
  5932. }
  5933. );
  5934. },
  5935. addunit() {
  5936. if (this.cid != "") {
  5937. let _unitIndex = this.unitIndex;
  5938. let cPan = 1;
  5939. for (
  5940. var j = 0;
  5941. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  5942. j++
  5943. ) {
  5944. // if (
  5945. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].task
  5946. // ) {
  5947. // this.$message.error("请填写任务名称");
  5948. // cPan = 2
  5949. // break;
  5950. // }
  5951. // if (
  5952. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].people
  5953. // ) {
  5954. // this.$message.error("请填写负责人");
  5955. // cPan = 2
  5956. // break;
  5957. // }
  5958. // if (
  5959. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].time
  5960. // ) {
  5961. // this.$message.error("请填写任务起止时间");
  5962. // cPan = 2
  5963. // break;
  5964. // }
  5965. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  5966. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  5967. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  5968. (ele) => {
  5969. return ele.value != "";
  5970. }
  5971. );
  5972. }
  5973. }
  5974. if (cPan == 2) {
  5975. return;
  5976. }
  5977. }
  5978. this.unitJson.push({
  5979. dyName: "", //单元标题
  5980. isUpdate: 1,
  5981. chapterInfo: [
  5982. {
  5983. isread: false,
  5984. chapterid: this.guid(),
  5985. title: "",
  5986. courseName: "",
  5987. taskJson: [
  5988. {
  5989. task: "",
  5990. people: "",
  5991. time: "",
  5992. taskDetail: "",
  5993. chapterData: [],
  5994. toolText: "",
  5995. toolChoose: [
  5996. {
  5997. tool: [],
  5998. toolDetail: "",
  5999. toolType: 0,
  6000. askCount: 1,
  6001. askTitle: "",
  6002. askJson: [
  6003. {
  6004. askstitle: "",
  6005. askItem: 1,
  6006. checkList: [],
  6007. },
  6008. ],
  6009. },
  6010. ],
  6011. toolArray: [],
  6012. isShowTools: false,
  6013. askCount: 1,
  6014. isFold: 0,
  6015. askTitle: "",
  6016. askJson: [
  6017. {
  6018. askstitle: "",
  6019. askItem: 1,
  6020. checkList: [],
  6021. },
  6022. ],
  6023. checkJson: [
  6024. {
  6025. checkCount: [],
  6026. checkPerent: [],
  6027. },
  6028. ],
  6029. homeworkList: [],
  6030. },
  6031. ],
  6032. itemCount: 1,
  6033. fileList1: [],
  6034. video: [],
  6035. testData: [],
  6036. pData: [],
  6037. templateArray: [],
  6038. },
  6039. ],
  6040. });
  6041. this.addindex = this.unitJson.length - 1;
  6042. setTimeout(() => {
  6043. this.unitIndex = this.unitJson.length - 1;
  6044. this.unitSet(this.unitIndex);
  6045. }, 0);
  6046. },
  6047. addToolFun(tool) {
  6048. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6049. // itemTaskIndex
  6050. // ].toolChoose.push({
  6051. // tool: [],
  6052. // toolDetail: "",
  6053. // toolType: 0,
  6054. // askCount: 1,
  6055. // askTitle: "",
  6056. // askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
  6057. // });
  6058. if (tool == 15) {
  6059. this.tableJson.text = "";
  6060. this.dialogVisible8 = true;
  6061. } else if (tool == 48) {
  6062. this.tableJson.text = "";
  6063. this.dialogVisibleTable1 = true;
  6064. } else if (tool == 52) {
  6065. this.tableJson.text = "";
  6066. this.dialogVisibleText = true;
  6067. } else if (tool == 51) {
  6068. this.addSourceFunD(this.taskCount);
  6069. } else if (tool == 56) {
  6070. this.askJson = {
  6071. askCount: 1,
  6072. askTitle: "",
  6073. askJson: [
  6074. {
  6075. askstitle: "",
  6076. askItem: 1,
  6077. checkList: [],
  6078. },
  6079. ],
  6080. };
  6081. this.dialogVisibleVote = true;
  6082. } else {
  6083. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6084. this.taskCount
  6085. ].toolArray.push({
  6086. tool: tool,
  6087. toolDetail: "",
  6088. toolPhoto: "",
  6089. toolEdit: false,
  6090. toolId: this.guid(),
  6091. });
  6092. this.$forceUpdate();
  6093. this.dialogVisibleTool = false;
  6094. if (tool == 1 || tool == 3 || tool == 6) {
  6095. setTimeout(() => {
  6096. this.openToolFun(
  6097. tool,
  6098. this.taskCount,
  6099. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6100. this.taskCount
  6101. ].toolArray.length - 1
  6102. );
  6103. }, 500);
  6104. } else if (tool == 53 || tool == 54 || tool == 55) {
  6105. setTimeout(() => {
  6106. this.addImg(
  6107. document.getElementById(
  6108. this.taskCount.toString() +
  6109. "-" +
  6110. (this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6111. this.taskCount
  6112. ].toolArray.length -
  6113. 1)
  6114. )
  6115. );
  6116. }, 500);
  6117. }
  6118. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  6119. }
  6120. },
  6121. addToolFunD(itemTaskIndex) {
  6122. this.taskCount = itemTaskIndex;
  6123. this.dialogVisibleTool = true;
  6124. },
  6125. addSourceFunD(itemTaskIndex) {
  6126. this.sourcesData = [];
  6127. this.proVisible = false;
  6128. this.progress = 0;
  6129. this.taskCount = itemTaskIndex;
  6130. this.dialogVisibleSource = true;
  6131. },
  6132. setChapterIndex(itemTool, index) {
  6133. itemTool.sourceIndex = index;
  6134. this.setVHeight();
  6135. this.$forceUpdate();
  6136. },
  6137. setVHeight() {
  6138. this.$nextTick(function () {
  6139. setTimeout(() => {
  6140. let task = this.unitJson[this.unitIndex].chapterInfo[0].taskJson;
  6141. for (var j = 0; j < task.length; j++) {
  6142. let tool = task[j].toolArray;
  6143. for (var z = 0; z < tool.length; z++) {
  6144. let _tool = tool[z];
  6145. if (_tool.tool == 51) {
  6146. var a = document.getElementsByClassName("box_course" + j + z)[0]
  6147. .offsetHeight;
  6148. document.getElementsByClassName(
  6149. "vedioList" + j + z
  6150. )[0].style.height = a + "px";
  6151. }
  6152. }
  6153. }
  6154. }, 0);
  6155. });
  6156. },
  6157. addSourceData() {
  6158. if (!this.sourcesData.length) {
  6159. this.$message.error("请上传资源");
  6160. return;
  6161. }
  6162. if (this.editSourceType == 1) {
  6163. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6164. this.taskCount
  6165. ].toolArray.push({
  6166. tool: 51,
  6167. toolDetail: "",
  6168. toolPhoto: "",
  6169. toolEdit: false,
  6170. toolId: this.guid(),
  6171. toolData: JSON.parse(JSON.stringify(this.sourcesData)),
  6172. sourceIndex: 0,
  6173. });
  6174. } else {
  6175. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6176. this.taskCount
  6177. ].toolArray[this.toolIndex].toolData = JSON.parse(
  6178. JSON.stringify(this.sourcesData)
  6179. );
  6180. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6181. this.taskCount
  6182. ].toolArray[this.toolIndex].sourceIndex = 0;
  6183. }
  6184. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  6185. this.editSourceType = 1;
  6186. this.sourcesData = [];
  6187. this.dialogVisibleSource = false;
  6188. this.dialogVisibleTool = false;
  6189. this.setVHeight();
  6190. },
  6191. openToolFun(tool, taskCount, i) {
  6192. this.taskCount = taskCount;
  6193. this.toolIndex = i;
  6194. if (tool == 48) {
  6195. const array =
  6196. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6197. .toolArray[i].toolPhoto;
  6198. let txt = "";
  6199. if (array.length) {
  6200. txt = JSON.parse(JSON.stringify(array[0].content));
  6201. }
  6202. // for (var l = 0; l < array.length; l++) {
  6203. // let _uid = array[l].userid
  6204. // if (_uid == this.userid) {
  6205. // txt = JSON.parse(JSON.stringify(array[l].content))
  6206. // break;
  6207. // }
  6208. // }
  6209. this.tableJson.text = txt
  6210. ? JSON.parse(txt)
  6211. : this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6212. .toolArray[i].table
  6213. ? JSON.parse(
  6214. JSON.stringify(
  6215. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6216. .toolArray[i].table
  6217. )
  6218. )
  6219. : "";
  6220. // this.tableJson.text = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount].toolArray[i].table ? JSON.parse(JSON.stringify(this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount].toolArray[i].table)) : ''
  6221. this.dialogVisibleTable = true;
  6222. } else if (tool == 15) {
  6223. this.answerQ = JSON.parse(
  6224. JSON.stringify(
  6225. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6226. .toolArray[i].answerQ
  6227. )
  6228. );
  6229. this.answerDialogVisible = true;
  6230. } else if (tool == 52) {
  6231. const array =
  6232. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6233. .toolArray[i].toolPhoto;
  6234. let txt = "";
  6235. if (array.length) {
  6236. txt = JSON.parse(JSON.stringify(array[0].content));
  6237. }
  6238. // for (var l = 0; l < array.length; l++) {
  6239. // let _uid = array[l].userid
  6240. // if (_uid == this.userid) {
  6241. // txt = JSON.parse(JSON.stringify(array[l].content))
  6242. // break;
  6243. // }
  6244. // }
  6245. this.tableJson.text = txt
  6246. ? JSON.parse(txt)
  6247. : JSON.parse(
  6248. JSON.stringify(
  6249. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6250. .toolArray[i].text
  6251. )
  6252. );
  6253. this.dialogVisibleText3 = true;
  6254. } else if (tool == 56) {
  6255. const array =
  6256. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6257. .toolArray[i].toolPhoto;
  6258. let txt = JSON.stringify([]);
  6259. for (var l = 0; l < array.length; l++) {
  6260. let _uid = array[l].userid;
  6261. if (_uid == this.userid) {
  6262. txt = JSON.parse(JSON.stringify(array[l].content));
  6263. break;
  6264. }
  6265. }
  6266. this.radio = JSON.parse(txt);
  6267. this.askJson = JSON.parse(
  6268. JSON.stringify(
  6269. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  6270. .toolArray[i].askJson
  6271. )
  6272. );
  6273. this.dialogVisibleVote2 = true;
  6274. } else {
  6275. window.parent.postMessage(
  6276. {
  6277. tools: tool + "s",
  6278. cid: this.cid,
  6279. stage: this.unitIndex,
  6280. task: taskCount,
  6281. tool: i,
  6282. },
  6283. "*"
  6284. );
  6285. if (tool == 1 || tool == 3 || tool == 6) {
  6286. this.setPeople(this.unitIndex, taskCount, this.userid);
  6287. }
  6288. }
  6289. },
  6290. previewImg(url) {
  6291. this.$hevueImgPreview(url);
  6292. },
  6293. openTable(content) {
  6294. this.tableJson.text = JSON.parse(content);
  6295. this.dialogVisibleTable2 = true;
  6296. },
  6297. addTaskBorder() {
  6298. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.push({
  6299. task: "",
  6300. people: "",
  6301. time: "",
  6302. taskDetail: "",
  6303. chapterData: [],
  6304. toolText: "",
  6305. toolChoose: [
  6306. {
  6307. tool: [],
  6308. toolDetail: "",
  6309. toolType: 0,
  6310. askCount: 1,
  6311. askTitle: "",
  6312. askJson: [
  6313. {
  6314. askstitle: "",
  6315. askItem: 1,
  6316. checkList: [],
  6317. },
  6318. ],
  6319. },
  6320. ],
  6321. toolArray: [],
  6322. isShowTools: false,
  6323. askCount: 1,
  6324. isFold: 0,
  6325. askTitle: "",
  6326. askJson: [
  6327. {
  6328. askstitle: "",
  6329. askItem: 1,
  6330. checkList: [],
  6331. },
  6332. ],
  6333. checkJson: [
  6334. {
  6335. checkCount: [],
  6336. checkPerent: [],
  6337. },
  6338. ],
  6339. homeworkList: [],
  6340. });
  6341. },
  6342. add(e, i) {
  6343. var el = e.currentTarget;
  6344. el.getElementsByTagName("input")[0].click();
  6345. },
  6346. fold(i, e, type) {
  6347. var a = e.currentTarget.parentElement.parentElement;
  6348. var b = e.currentTarget.parentElement;
  6349. if (type == 1) {
  6350. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 1;
  6351. a.className += " smallTaskBorder";
  6352. b.className += " funBlockTop";
  6353. } else {
  6354. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[i].isFold = 0;
  6355. a.className = "taskBorder";
  6356. b.className = "funBlock";
  6357. }
  6358. console.log(e);
  6359. },
  6360. deleteHomeworkBox(unitIndex, index, i) {
  6361. this.unitJson[unitIndex].chapterInfo[index].taskJson[
  6362. this.taskCount
  6363. ].homeworkList.splice(i, 1);
  6364. },
  6365. getStudent() {
  6366. let params = {
  6367. oid: this.oid,
  6368. cu: "",
  6369. cn: this.searchPeople,
  6370. };
  6371. this.ajax
  6372. .get(this.$store.state.api + "selectStudentAdd", params)
  6373. .then((res) => {
  6374. this.studentJuri = res.data[0];
  6375. })
  6376. .catch((err) => {
  6377. this.isLoading = false;
  6378. console.error(err);
  6379. });
  6380. },
  6381. onPlayerPlay() {},
  6382. getTeacher() {
  6383. let params = {
  6384. org:
  6385. this.org && this.org != "undefined" && this.org != "null"
  6386. ? this.org
  6387. : "",
  6388. oid: this.oid,
  6389. cu: "",
  6390. cn: this.searchTN,
  6391. };
  6392. this.ajax
  6393. .get(
  6394. this.$store.state.api +
  6395. (this.org && this.org != "undefined" && this.org != "null"
  6396. ? "selectUserByOidS"
  6397. : "selectUserByOidS"),
  6398. params
  6399. )
  6400. .then((res) => {
  6401. let teacherJuri = res.data[0];
  6402. this.teacherJuri2 = JSON.parse(JSON.stringify(res.data[0]));
  6403. for (var i = 0; i < teacherJuri.length; i++) {
  6404. if (teacherJuri[i].userid == this.userid) {
  6405. teacherJuri.splice(i, 1);
  6406. break;
  6407. }
  6408. }
  6409. this.teacherJuri = teacherJuri;
  6410. })
  6411. .catch((err) => {
  6412. console.error(err);
  6413. });
  6414. },
  6415. setMan() {
  6416. let _unitJosn = this.unitJson;
  6417. // let teacherJuri = this.teacherJuri2;
  6418. this.ManAarray = [];
  6419. if (this.checkboxList3.indexOf(this.courseUserid) != -1) {
  6420. this.checkboxList3.splice(
  6421. this.checkboxList3.indexOf(this.courseUserid),
  6422. 1
  6423. );
  6424. }
  6425. let array = JSON.parse(JSON.stringify(this.checkboxList3));
  6426. if (array.indexOf(this.courseUserid || this.userid) == -1) {
  6427. array.push(this.courseUserid || this.userid);
  6428. }
  6429. for (var i = 0; i < _unitJosn.length; i++) {
  6430. let _chapter = _unitJosn[i].chapterInfo[0].taskJson;
  6431. for (var j = 0; j < _chapter.length; j++) {
  6432. let _task = _chapter[j];
  6433. if (array.indexOf(_task.people) == -1) {
  6434. _task.people = "";
  6435. }
  6436. if (_task.tcMember && _task.tcMember.length) {
  6437. let _tc = _task.tcMember;
  6438. let _tc2 = [];
  6439. for (var k = 0; k < _tc.length; k++) {
  6440. if (array.indexOf(_tc[k]) != -1) {
  6441. _tc2.push(_tc[k]);
  6442. }
  6443. }
  6444. _task.tcMember = _tc2;
  6445. }
  6446. }
  6447. }
  6448. let params = {
  6449. uid: array.join(","),
  6450. };
  6451. this.ajax
  6452. .get(this.$store.state.api + "getAllUserById", params)
  6453. .then((res) => {
  6454. let teacherJuri = res.data[0];
  6455. this.ManAarray = teacherJuri;
  6456. })
  6457. .catch((err) => {
  6458. console.error(err);
  6459. });
  6460. },
  6461. searchStudent() {
  6462. this.getStudent();
  6463. },
  6464. //获取班级列表
  6465. getClass() {
  6466. let params = {
  6467. oid: this.oid,
  6468. };
  6469. this.ajax
  6470. .get(this.$store.state.api + "selectClassBySchool", params)
  6471. .then((res) => {
  6472. this.grade = res.data[0];
  6473. })
  6474. .catch((err) => {
  6475. this.isLoading = false;
  6476. console.error(err);
  6477. });
  6478. },
  6479. getChapterData(e, i, j, ic, type) {
  6480. e.stopPropagation();
  6481. this.updataC = true;
  6482. this.icc = ic;
  6483. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  6484. console.log("还不能下载图片喔");
  6485. }
  6486. },
  6487. getChapterData2(e, ic, type) {
  6488. e.stopPropagation();
  6489. this.updataC = true;
  6490. this.icc = ic;
  6491. if ((type == 2 || type == 3) && e.target.tagName !== "INPUT") {
  6492. console.log("还不能下载图片喔");
  6493. }
  6494. },
  6495. deleteChapterData(e, i, j, ic, taskI) {
  6496. e.stopPropagation();
  6497. this.unitJson[i].chapterInfo[j].taskJson[taskI].chapterData.splice(ic, 1);
  6498. },
  6499. deleteChapterData2(e, ic) {
  6500. e.stopPropagation();
  6501. this.sourcesData.splice(ic, 1);
  6502. },
  6503. updataVideoT(e, i, j, ic) {
  6504. e.stopPropagation();
  6505. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6506. ic
  6507. ].name = e.target.value;
  6508. },
  6509. updataVideoT2(e, ic) {
  6510. e.stopPropagation();
  6511. this.sourcesData[ic].name = e.target.value;
  6512. },
  6513. upCd(e, i, j, ic) {
  6514. e.stopPropagation();
  6515. if (ic == 0) {
  6516. return;
  6517. }
  6518. var a =
  6519. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6520. ic - 1
  6521. ];
  6522. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6523. ic - 1
  6524. ] =
  6525. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6526. ic
  6527. ];
  6528. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[ic] =
  6529. a;
  6530. },
  6531. downCd(e, i, j, ic) {
  6532. e.stopPropagation();
  6533. if (
  6534. ic ==
  6535. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData
  6536. .length -
  6537. 1
  6538. ) {
  6539. return;
  6540. }
  6541. var a =
  6542. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6543. ic + 1
  6544. ];
  6545. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6546. ic + 1
  6547. ] =
  6548. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[
  6549. ic
  6550. ];
  6551. this.unitJson[i].chapterInfo[j].taskJson[this.taskCount].chapterData[ic] =
  6552. a;
  6553. },
  6554. upCd2(e, ic) {
  6555. e.stopPropagation();
  6556. if (ic == 0) {
  6557. return;
  6558. }
  6559. var a = this.sourcesData[ic - 1];
  6560. this.sourcesData[ic - 1] = this.sourcesData[ic];
  6561. this.sourcesData[ic] = a;
  6562. },
  6563. downCd2(e, ic) {
  6564. e.stopPropagation();
  6565. if (ic == this.sourcesData.length - 1) {
  6566. return;
  6567. }
  6568. var a = this.sourcesData[ic + 1];
  6569. this.sourcesData[ic + 1] = this.sourcesData[ic];
  6570. this.sourcesData[ic] = a;
  6571. },
  6572. addWork() {
  6573. let cPan = 1;
  6574. for (var i = 0; i < this.unitJson.length; i++) {
  6575. for (
  6576. var j = 0;
  6577. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6578. j++
  6579. ) {
  6580. if (
  6581. this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length > 1
  6582. ) {
  6583. for (
  6584. var z = 0;
  6585. z < this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose.length;
  6586. z++
  6587. ) {
  6588. if (
  6589. !this.unitJson[i].chapterInfo[0].taskJson[j].toolChoose[z].tool
  6590. .length
  6591. ) {
  6592. this.$message.error("请把工具添加完整");
  6593. cPan = 2;
  6594. break;
  6595. }
  6596. }
  6597. }
  6598. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6599. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6600. i
  6601. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6602. return ele.value != "";
  6603. });
  6604. }
  6605. }
  6606. }
  6607. if (cPan == 2) {
  6608. if (this.steps != 3) {
  6609. this.steps--;
  6610. }
  6611. return;
  6612. }
  6613. for (var i = 0; i < this.unitJson.length; i++) {
  6614. delete this.unitJson[i].isUpdate;
  6615. }
  6616. let params = [
  6617. {
  6618. uid: this.userid,
  6619. title: this.courseName.replace(/%/g, "%25"),
  6620. brief: this.courseText.replace(/%/g, "%25"),
  6621. cover:
  6622. this.cover.length > 0
  6623. ? JSON.stringify(this.cover)
  6624. : JSON.stringify([
  6625. {
  6626. name: "noBanner.jpg",
  6627. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6628. uid: 1656409780264,
  6629. status: "success",
  6630. },
  6631. ]),
  6632. evaId: this.evalua,
  6633. astudent:
  6634. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6635. see: this.isTeacherSee == true ? 1 : 0,
  6636. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6637. template: this.cTemplate != "undefined" ? this.cTemplate : "",
  6638. courseType: JSON.stringify(this.courseTypeId),
  6639. ateacher:
  6640. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6641. },
  6642. ];
  6643. this.ajax
  6644. .post(this.$store.state.api + "addCourseWorkNew22", params)
  6645. .then((res) => {
  6646. console.log(this.steps);
  6647. if (this.steps != 1 && this.steps != 2 && this.steps != 3) {
  6648. this.$message({
  6649. message: "新增成功",
  6650. type: "success",
  6651. });
  6652. }
  6653. this.number = res.data.ordernumber;
  6654. this.courseId = res.data.courseId;
  6655. this.cid = res.data.courseId;
  6656. this.courseUserid = this.userid;
  6657. this.islogin = true;
  6658. this.selectCourseDetail();
  6659. })
  6660. .catch((err) => {
  6661. this.$message.error("网络不佳");
  6662. console.error(err);
  6663. });
  6664. },
  6665. goCourse() {
  6666. window.parent.postMessage(
  6667. {
  6668. cid: this.courseId,
  6669. type: "1",
  6670. },
  6671. "*"
  6672. );
  6673. },
  6674. updateWork2() {
  6675. let _unitIndex = this.unitIndex;
  6676. let cPan = 1;
  6677. for (
  6678. var j = 0;
  6679. j < this.unitJson[_unitIndex].chapterInfo[0].taskJson.length;
  6680. j++
  6681. ) {
  6682. // if (
  6683. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].task
  6684. // ) {
  6685. // this.$message.error("请填写任务名称");
  6686. // cPan = 2
  6687. // break;
  6688. // }
  6689. // if (
  6690. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].people
  6691. // ) {
  6692. // this.$message.error("请填写负责人");
  6693. // cPan = 2
  6694. // break;
  6695. // }
  6696. // if (
  6697. // !this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].time
  6698. // ) {
  6699. // this.$message.error("请填写任务起止时间");
  6700. // cPan = 2
  6701. // break;
  6702. // }
  6703. if (this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList) {
  6704. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList =
  6705. this.unitJson[_unitIndex].chapterInfo[0].taskJson[j].eList.filter(
  6706. (ele) => {
  6707. return ele.value != "";
  6708. }
  6709. );
  6710. }
  6711. }
  6712. if (cPan == 2) {
  6713. if (this.steps != 3) {
  6714. if (this.type == 2 && this.steps == 5) {
  6715. this.steps == 3;
  6716. } else {
  6717. this.steps--;
  6718. }
  6719. }
  6720. return;
  6721. }
  6722. let params = [
  6723. {
  6724. cid: this.cid,
  6725. chapters: JSON.stringify(this.unitJson),
  6726. uid: this.userid,
  6727. unitIndex: _unitIndex,
  6728. },
  6729. ];
  6730. this.ajax
  6731. .post(this.$store.state.api + "updateStudentWorkNew4", params)
  6732. .then((res) => {
  6733. if (
  6734. this.steps != 1 &&
  6735. this.steps != 2 &&
  6736. this.steps != 3 &&
  6737. this.steps != 4
  6738. ) {
  6739. this.$message({
  6740. message: "修改成功",
  6741. type: "success",
  6742. });
  6743. }
  6744. this.courseId = this.cid;
  6745. })
  6746. .catch((err) => {
  6747. this.$message.error("网络不佳");
  6748. console.error(err);
  6749. });
  6750. },
  6751. updateWork() {
  6752. let cPan = 1;
  6753. for (var i = 0; i < this.unitJson.length; i++) {
  6754. for (
  6755. var j = 0;
  6756. j < this.unitJson[i].chapterInfo[0].taskJson.length;
  6757. j++
  6758. ) {
  6759. // if (
  6760. // !this.unitJson[i].chapterInfo[0].taskJson[j].task
  6761. // ) {
  6762. // this.$message.error("请填写任务名称");
  6763. // cPan = 2
  6764. // break;
  6765. // }
  6766. // if (
  6767. // !this.unitJson[i].chapterInfo[0].taskJson[j].people
  6768. // ) {
  6769. // this.$message.error("请填写负责人");
  6770. // cPan = 2
  6771. // break;
  6772. // }
  6773. // if (
  6774. // !this.unitJson[i].chapterInfo[0].taskJson[j].time
  6775. // ) {
  6776. // this.$message.error("请填写任务起止时间");
  6777. // cPan = 2
  6778. // break;
  6779. // }
  6780. if (this.unitJson[i].chapterInfo[0].taskJson[j].eList) {
  6781. this.unitJson[i].chapterInfo[0].taskJson[j].eList = this.unitJson[
  6782. i
  6783. ].chapterInfo[0].taskJson[j].eList.filter((ele) => {
  6784. return ele.value != "";
  6785. });
  6786. }
  6787. }
  6788. }
  6789. if (cPan == 2) {
  6790. if (this.steps != 3) {
  6791. this.steps--;
  6792. }
  6793. return;
  6794. }
  6795. for (var i = 0; i < this.unitJson.length; i++) {
  6796. delete this.unitJson[i].isUpdate;
  6797. }
  6798. let params = [
  6799. {
  6800. cid: this.cid,
  6801. title: this.courseName.replace(/%/g, "%25"),
  6802. brief: this.courseText.replace(/%/g, "%25"),
  6803. cover:
  6804. this.cover.length > 0
  6805. ? JSON.stringify(this.cover)
  6806. : JSON.stringify([
  6807. {
  6808. name: "noBanner.jpg",
  6809. url: "https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/wu1676621845022.png",
  6810. uid: 1656409780264,
  6811. status: "success",
  6812. },
  6813. ]),
  6814. evaId: this.evalua,
  6815. astudent:
  6816. this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
  6817. see: this.isTeacherSee == true ? 1 : 0,
  6818. chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
  6819. template: this.myWord != "undefined" ? this.myWord : [],
  6820. uid: this.userid,
  6821. courseType: JSON.stringify(this.courseTypeId),
  6822. ateacher:
  6823. this.checkboxList3.length > 0 ? this.checkboxList3.join(",") : "",
  6824. },
  6825. ];
  6826. this.ajax
  6827. .post(this.$store.state.api + "updateStudentWorkNew22", params)
  6828. .then((res) => {
  6829. if (
  6830. this.steps != 1 &&
  6831. this.steps != 2 &&
  6832. this.steps != 3 &&
  6833. this.steps != 4
  6834. ) {
  6835. if (this.cidttt == 1) {
  6836. this.$message({
  6837. message: "修改成功",
  6838. type: "success",
  6839. });
  6840. } else {
  6841. this.$message({
  6842. message: "新增成功",
  6843. type: "success",
  6844. });
  6845. }
  6846. }
  6847. this.checkboxListPeople = JSON.parse(
  6848. JSON.stringify(this.checkboxList3)
  6849. );
  6850. this.number = this.nbOrder;
  6851. this.courseId = this.cid;
  6852. })
  6853. .catch((err) => {
  6854. this.$message.error("网络不佳");
  6855. console.error(err);
  6856. });
  6857. },
  6858. guid() {
  6859. var _num,
  6860. i,
  6861. _guid = "";
  6862. for (i = 0; i < 32; i++) {
  6863. _guid += Math.floor(Math.random() * 16).toString(16); //随机0 - 16 的数字 转变为16进制的字符串
  6864. _num = Math.floor((i - 7) / 4); //计算 (i-7)除4
  6865. if (_num > -1 && _num < 4 && i == 7 + 4 * _num) {
  6866. //会使guid中间加 "-" 形式为xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
  6867. _guid += "-";
  6868. }
  6869. }
  6870. return _guid;
  6871. },
  6872. insertWord() {
  6873. this.dialogVisible1 = true;
  6874. this.updateBoolean2 = false;
  6875. this.tTitle = "";
  6876. this.tdetail = "";
  6877. },
  6878. addWord() {
  6879. this.unitJson[this.unitIndex].chapterInfo[0].fileList1.push({
  6880. name: this.tTitle,
  6881. content: this.tdetail,
  6882. uid: this.guid(),
  6883. });
  6884. this.dialogVisible1 = false;
  6885. },
  6886. upWord() {},
  6887. selectWord(uid, i, c) {
  6888. this.dialogVisible1 = true;
  6889. this.updateBoolean2 = true;
  6890. if (
  6891. uid == this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].uid
  6892. ) {
  6893. this.tTitle =
  6894. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].name;
  6895. this.tdetail =
  6896. this.unitJson[this.unitIndex].chapterInfo[i].fileList1[c].content;
  6897. }
  6898. },
  6899. isAddPP() {
  6900. if (this.checkboxList.length > 0) {
  6901. this.$message({
  6902. message: "添加成功",
  6903. type: "success",
  6904. });
  6905. this.dialogVisible3 = false;
  6906. } else {
  6907. this.$message({
  6908. message: "请添加项目成员",
  6909. type: "error",
  6910. });
  6911. }
  6912. },
  6913. isAddClass() {
  6914. this.dialogVisibleClass = false;
  6915. },
  6916. isAddPPTeacher() {
  6917. this.dialogVisibleMember = false;
  6918. // let array = JSON.parse(JSON.stringify(this.checkboxList3))
  6919. // if (array.indexOf(this.courseUserid || this.userid) == -1) {
  6920. // array.push(this.courseUserid || this.userid)
  6921. // }
  6922. this.setMan();
  6923. },
  6924. isAddPPTcTeacher() {
  6925. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6926. this.taskCount
  6927. ].tcMember = this.tcMember;
  6928. this.dialogVisibleTcMember = false;
  6929. },
  6930. addTcMember(index) {
  6931. this.taskCount = index;
  6932. // this.searchTN = ""
  6933. let tcMember = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6934. index
  6935. ].tcMember
  6936. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index].tcMember
  6937. : [];
  6938. const people =
  6939. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index].people;
  6940. let ManAarray = JSON.parse(JSON.stringify(this.ManAarray));
  6941. for (var i = 0; i < ManAarray.length; i++) {
  6942. if (ManAarray[i].userid === people) {
  6943. ManAarray.splice(i, 1);
  6944. }
  6945. }
  6946. this.tcMember = tcMember;
  6947. this.ManAarray2 = ManAarray;
  6948. // this.getTeacher();
  6949. this.dialogVisibleTcMember = true;
  6950. },
  6951. peopleChange(people, index) {
  6952. let tcMember = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  6953. index
  6954. ].tcMember
  6955. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index].tcMember
  6956. : [];
  6957. if (tcMember.indexOf(people) != -1) {
  6958. tcMember.splice(tcMember.indexOf(people), 1);
  6959. }
  6960. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index].tcMember =
  6961. tcMember;
  6962. },
  6963. getTemplate() {
  6964. let params = {
  6965. oid: this.oid,
  6966. };
  6967. this.ajax
  6968. .get(this.$store.state.api + "getCourseTemplateTs", params)
  6969. .then((res) => {
  6970. this.templateArray = res.data[0];
  6971. })
  6972. .catch((err) => {});
  6973. },
  6974. clearChoose() {
  6975. this.clearArray.splice(this.templateC.id, 1);
  6976. this.dialogVisible2 = false;
  6977. },
  6978. clearAttText() {
  6979. this.AttText = {
  6980. title: "",
  6981. text: "",
  6982. };
  6983. this.dialogVisible6 = false;
  6984. },
  6985. clearLine() {
  6986. this.line = "";
  6987. this.dialogVisible7 = false;
  6988. },
  6989. checkTemplate(res) {
  6990. let _this = this;
  6991. _this
  6992. .$confirm("确定选择此模板吗?", "提示", {
  6993. confirmButtonText: "确定",
  6994. cancelButtonText: "取消",
  6995. type: "warning",
  6996. })
  6997. .then(() => {
  6998. _this.unitJson = JSON.parse(res.chapters);
  6999. _this.steps++;
  7000. setTimeout(() => {
  7001. this.checkEva(this.checkId);
  7002. }, 1000);
  7003. })
  7004. .catch(() => {
  7005. return;
  7006. });
  7007. },
  7008. checkTemplate1(w) {
  7009. this.steps++;
  7010. },
  7011. checkTemplate2() {
  7012. let _this = this;
  7013. _this
  7014. .$confirm("确定选择空模板吗?", "提示", {
  7015. confirmButtonText: "确定",
  7016. cancelButtonText: "取消",
  7017. type: "warning",
  7018. })
  7019. .then(() => {
  7020. _this.unitJson = [
  7021. {
  7022. dyName: "", //单元标题
  7023. chapterInfo: [
  7024. {
  7025. isread: false,
  7026. chapterid: this.guid(),
  7027. title: "",
  7028. courseName: "",
  7029. taskJson: [
  7030. {
  7031. task: "",
  7032. people: "",
  7033. time: "",
  7034. taskDetail: "",
  7035. chapterData: [],
  7036. toolText: "",
  7037. toolChoose: [
  7038. {
  7039. tool: [],
  7040. toolDetail: "",
  7041. toolType: 0,
  7042. askCount: 1,
  7043. askTitle: "",
  7044. askJson: [
  7045. {
  7046. askstitle: "",
  7047. askItem: 1,
  7048. checkList: [],
  7049. },
  7050. ],
  7051. },
  7052. ],
  7053. toolArray: [],
  7054. isShowTools: false,
  7055. askCount: 1,
  7056. isFold: 0,
  7057. askTitle: "",
  7058. askJson: [
  7059. {
  7060. askstitle: "",
  7061. askItem: 1,
  7062. checkList: [],
  7063. },
  7064. ],
  7065. checkJson: [
  7066. {
  7067. checkCount: [],
  7068. checkPerent: [],
  7069. },
  7070. ],
  7071. homeworkList: [],
  7072. },
  7073. ],
  7074. itemCount: 1,
  7075. fileList1: [],
  7076. video: [],
  7077. testData: [],
  7078. pData: [],
  7079. templateArray: [],
  7080. },
  7081. ],
  7082. },
  7083. ];
  7084. this.steps++;
  7085. })
  7086. .catch(() => {
  7087. return;
  7088. });
  7089. },
  7090. wordNext() {
  7091. this.dialogVisible2 = false;
  7092. },
  7093. isAddOrUpdateAttText() {
  7094. if (this.AttTextType == 0) {
  7095. this.addAttTextMessage();
  7096. } else {
  7097. this.updateAttText();
  7098. }
  7099. },
  7100. isAddOrUpdateLine() {
  7101. if (!this.lineTitle) {
  7102. this.$message.error("请填写链接标题");
  7103. return;
  7104. }
  7105. if (this.lineType == 0) {
  7106. this.addLine();
  7107. } else {
  7108. this.updateLine();
  7109. }
  7110. },
  7111. addAttTextMessage() {
  7112. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7113. // this.taskCount
  7114. // ].chapterData.push({
  7115. // name: this.AttText.title,
  7116. // url: this.AttText.text,
  7117. // type: 6,
  7118. // });
  7119. // this.imgChange1(null, null, 6, this.taskCount);
  7120. // this.dialogVisible6 = false;
  7121. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].toolArray.push({
  7122. // tool: 51,
  7123. // toolDetail: "",
  7124. // toolPhoto: "",
  7125. // toolEdit: false,
  7126. // toolId: this.guid(),
  7127. // toolData: {
  7128. // name: this.AttText.title,
  7129. // url: this.AttText.text,
  7130. // type: 6,
  7131. // }
  7132. // });
  7133. this.sourcesData.push({
  7134. name: this.AttText.title,
  7135. url: this.AttText.text,
  7136. type: 6,
  7137. });
  7138. this.dialogVisible6 = false;
  7139. // this.dialogVisibleSource = false;
  7140. },
  7141. selectAttText(itemTaskIndex, i) {
  7142. this.AttText.title =
  7143. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7144. itemTaskIndex
  7145. ].chapterData[i].name;
  7146. this.AttText.text =
  7147. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7148. itemTaskIndex
  7149. ].chapterData[i].url;
  7150. this.taskCount = itemTaskIndex;
  7151. this.AttTextIndex = i;
  7152. this.AttTextType = 1;
  7153. this.dialogVisible6 = true;
  7154. },
  7155. selectAttText2(i) {
  7156. this.AttText.title = this.sourcesData[i].name;
  7157. this.AttText.text = this.sourcesData[i].url;
  7158. this.AttTextIndex = i;
  7159. this.AttTextType = 1;
  7160. this.dialogVisible6 = true;
  7161. },
  7162. updateAttText() {
  7163. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7164. // this.taskCount
  7165. // ].chapterData[this.AttTextIndex].name = this.AttText.title;
  7166. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7167. // this.taskCount
  7168. // ].chapterData[this.AttTextIndex].url = this.AttText.text;
  7169. this.sourcesData[this.AttTextIndex].name = this.AttText.title;
  7170. this.sourcesData[this.AttTextIndex].url = this.AttText.text;
  7171. this.dialogVisible6 = false;
  7172. },
  7173. addLine() {
  7174. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7175. // this.lineCount
  7176. // ].chapterData.push({
  7177. // name: "链接",
  7178. // title: this.lineTitle,
  7179. // url: this.line,
  7180. // type: 8,
  7181. // });
  7182. // this.imgChange1(null, null, 8, this.lineCount);
  7183. // this.dialogVisible7 = false;
  7184. let src = "";
  7185. if (
  7186. this.line.indexOf("https://") == -1 &&
  7187. this.line.indexOf("http://") == -1
  7188. ) {
  7189. src = "https://" + this.line;
  7190. } else {
  7191. src = this.line;
  7192. }
  7193. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount].toolArray.push({
  7194. // tool: 51,
  7195. // toolDetail: "",
  7196. // toolPhoto: "",
  7197. // toolEdit: false,
  7198. // toolId: this.guid(),
  7199. // toolData: {
  7200. // name: "链接",
  7201. // // title: this.lineTitle,
  7202. // url: this.line,
  7203. // src: src,
  7204. // type: 8,
  7205. // }
  7206. // });
  7207. this.sourcesData.push({
  7208. name: "链接",
  7209. title: this.lineTitle,
  7210. url: this.line,
  7211. src: src,
  7212. type: 8,
  7213. });
  7214. this.dialogVisible7 = false;
  7215. // this.dialogVisibleSource = false;
  7216. },
  7217. selectLine(itemTaskIndex, i) {
  7218. this.line =
  7219. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7220. itemTaskIndex
  7221. ].chapterData[i].url;
  7222. this.lineTitle = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7223. itemTaskIndex
  7224. ].chapterData[i].title
  7225. ? this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7226. .chapterData[i].title
  7227. : "";
  7228. this.taskCount = itemTaskIndex;
  7229. this.lineCount = i;
  7230. this.lineType = 1;
  7231. this.dialogVisible7 = true;
  7232. },
  7233. selectLine2(i) {
  7234. this.line = this.sourcesData[i].url;
  7235. this.lineTitle = this.sourcesData[i].title
  7236. ? this.sourcesData[i].title
  7237. : "";
  7238. this.lineCount = i;
  7239. this.lineType = 1;
  7240. this.dialogVisible7 = true;
  7241. },
  7242. updateLine() {
  7243. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7244. // this.taskCount
  7245. // ].chapterData[this.lineCount].url = this.line;
  7246. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7247. // this.taskCount
  7248. // ].chapterData[this.lineCount].title = this.lineTitle;
  7249. if (!this.lineTitle) {
  7250. this.$message.error("请填写链接标题");
  7251. return;
  7252. }
  7253. this.sourcesData[this.lineCount].url = this.line;
  7254. this.sourcesData[this.lineCount].title = this.lineTitle;
  7255. this.dialogVisible7 = false;
  7256. },
  7257. addPP() {
  7258. this.dialogVisible3 = true;
  7259. },
  7260. goTo(path) {
  7261. this.$router.push(path);
  7262. },
  7263. openTools(itemTaskIndex, i, toolIndex) {
  7264. this.toolIndex = toolIndex;
  7265. this.taskCount = itemTaskIndex;
  7266. if (i == 4) {
  7267. if (toolIndex == null) {
  7268. var a =
  7269. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7270. .chapterData;
  7271. for (var i = 0; i < a.length; i++) {
  7272. if (a[i].url == 4 && a[i].askJson.askTitle != "") {
  7273. this.askJson =
  7274. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7275. itemTaskIndex
  7276. ].chapterData[i].askJson;
  7277. }
  7278. }
  7279. } else {
  7280. this.askJson = JSON.parse(
  7281. JSON.stringify(
  7282. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7283. itemTaskIndex
  7284. ].toolChoose[toolIndex]
  7285. )
  7286. );
  7287. }
  7288. this.dialogVisible5 = true;
  7289. } else if (i == 45) {
  7290. if (
  7291. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7292. .toolChoose[toolIndex].testJson
  7293. ) {
  7294. this.testJson = JSON.parse(
  7295. JSON.stringify(
  7296. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7297. itemTaskIndex
  7298. ].toolChoose[toolIndex].testJson
  7299. )
  7300. );
  7301. } else {
  7302. var testJson = {
  7303. testCount: 1,
  7304. testTitle: "",
  7305. testJson: [
  7306. {
  7307. teststitle: "",
  7308. testItem: 1,
  7309. checkList: [],
  7310. answer: [],
  7311. type: "1",
  7312. },
  7313. ],
  7314. };
  7315. this.testJson = testJson;
  7316. }
  7317. this.dialogVisibleChoice = true;
  7318. } else if (i == 47) {
  7319. if (
  7320. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7321. .toolChoose[toolIndex].sentenceList
  7322. ) {
  7323. this.sentenceList = JSON.parse(
  7324. JSON.stringify(
  7325. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7326. itemTaskIndex
  7327. ].toolChoose[toolIndex].sentenceList
  7328. )
  7329. );
  7330. } else {
  7331. var sentenceList = [
  7332. {
  7333. sentenceTitle: "",
  7334. addSentence: [],
  7335. rightAnswer: [],
  7336. },
  7337. ];
  7338. this.sentenceList = sentenceList;
  7339. }
  7340. this.dialogVisibleSentence = true;
  7341. } else if (i == 48) {
  7342. if (
  7343. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7344. .toolChoose[toolIndex].tableJson
  7345. ) {
  7346. this.tableJson = JSON.parse(
  7347. JSON.stringify(
  7348. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7349. itemTaskIndex
  7350. ].toolChoose[toolIndex].tableJson
  7351. )
  7352. );
  7353. } else {
  7354. var tableJson = {
  7355. text: "",
  7356. };
  7357. this.tableJson = tableJson;
  7358. }
  7359. this.dialogVisibleTable = true;
  7360. } else if (i == 49) {
  7361. if (
  7362. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7363. .toolChoose[toolIndex].groupJson
  7364. ) {
  7365. this.groupJson = JSON.parse(
  7366. JSON.stringify(
  7367. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7368. itemTaskIndex
  7369. ].toolChoose[toolIndex].groupJson
  7370. )
  7371. );
  7372. } else {
  7373. var groupJson = {
  7374. group: [
  7375. {
  7376. name: "第1组",
  7377. },
  7378. ],
  7379. number: undefined,
  7380. islock: 1,
  7381. };
  7382. this.groupJson = groupJson;
  7383. }
  7384. this.dialogVisibleGroup = true;
  7385. } else if (i == 15) {
  7386. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7387. itemTaskIndex
  7388. ].toolChoose[toolIndex].answerQ
  7389. ? JSON.parse(
  7390. JSON.stringify(
  7391. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7392. itemTaskIndex
  7393. ].toolChoose[toolIndex].answerQ
  7394. )
  7395. )
  7396. : "";
  7397. this.dialogVisible8 = true;
  7398. } else if (i == 40) {
  7399. this.rateJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7400. itemTaskIndex
  7401. ].toolChoose[toolIndex].rateJson
  7402. ? JSON.parse(
  7403. JSON.stringify(
  7404. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7405. itemTaskIndex
  7406. ].toolChoose[toolIndex].rateJson
  7407. )
  7408. )
  7409. : [
  7410. {
  7411. detail: "",
  7412. score: 5,
  7413. value: "",
  7414. },
  7415. ]; //{detail:"",score:5,value:""}
  7416. this.selectSteps = 1;
  7417. this.dialogVisibleRate = true;
  7418. } else if (i == 42) {
  7419. this.answerQ = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7420. itemTaskIndex
  7421. ].toolChoose[toolIndex].answerQ
  7422. ? JSON.parse(
  7423. JSON.stringify(
  7424. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7425. itemTaskIndex
  7426. ].toolChoose[toolIndex].answerQ
  7427. )
  7428. )
  7429. : "";
  7430. this.dialogVisibleMp3 = true;
  7431. } else if (i == 41) {
  7432. this.selectJson = this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7433. itemTaskIndex
  7434. ].toolChoose[toolIndex].selectJson
  7435. ? JSON.parse(
  7436. JSON.stringify(
  7437. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7438. itemTaskIndex
  7439. ].toolChoose[toolIndex].selectJson
  7440. )
  7441. )
  7442. : {
  7443. url: "",
  7444. select: [],
  7445. answer: [],
  7446. };
  7447. this.selectSteps = 1;
  7448. this.dialogVisibleSelect = true;
  7449. }
  7450. },
  7451. chapAddTools(i) {
  7452. if (this.chapTools[0].tools.length == 0) {
  7453. this.chapTools[0].tools.push(i);
  7454. } else {
  7455. if (this.chapTools[0].tools.indexOf(i) != -1) {
  7456. this.chapTools[0].tools.splice(this.chapTools[0].tools.indexOf(i), 1);
  7457. } else {
  7458. this.chapTools[0].tools.push(i);
  7459. }
  7460. }
  7461. this.$forceUpdate();
  7462. },
  7463. addChaptersDataTools() {
  7464. if (this.chapTools[0].tools.indexOf(4) != -1) {
  7465. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7466. this.chapCount
  7467. ].chapterData.push({
  7468. name: this.chapTools[0].toolDetail,
  7469. url: this.chapTools[0].tools,
  7470. type: 7,
  7471. askJson: this.askJson,
  7472. });
  7473. } else {
  7474. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7475. this.chapCount
  7476. ].chapterData.push({
  7477. name: this.chapTools[0].toolDetail,
  7478. url: this.chapTools[0].tools,
  7479. type: 7,
  7480. });
  7481. }
  7482. this.imgChange1(null, null, 7, this.chapCount);
  7483. this.dialogVisible4 = false;
  7484. },
  7485. addTools(i, itemTaskIndex, toolIndex) {
  7486. // if (
  7487. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7488. // .toolChoose[toolIndex].tool.length == 0
  7489. // ) {
  7490. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7491. // itemTaskIndex
  7492. // ].toolChoose[toolIndex].tool.push(i);
  7493. // } else {
  7494. // if (
  7495. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7496. // itemTaskIndex
  7497. // ].toolChoose[toolIndex].tool.indexOf(i) != -1
  7498. // ) {
  7499. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7500. // itemTaskIndex
  7501. // ].toolChoose[toolIndex].tool.splice(
  7502. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7503. // itemTaskIndex
  7504. // ].toolChoose[toolIndex].tool.indexOf(i),
  7505. // 1
  7506. // );
  7507. // } else {
  7508. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7509. // itemTaskIndex
  7510. // ].toolChoose[toolIndex].tool.push(i);
  7511. // }
  7512. // console.log(
  7513. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7514. // .toolChoose[toolIndex].tool
  7515. // );
  7516. // }
  7517. if (i == 4) {
  7518. if (
  7519. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7520. .toolChoose[toolIndex].askJson.askTitle == "" ||
  7521. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7522. .toolChoose[toolIndex].askJson[0].askstitle == "" ||
  7523. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7524. .toolChoose[toolIndex].askJson[0].checkList < 2
  7525. ) {
  7526. this.openTools(itemTaskIndex, 4, toolIndex);
  7527. // this.$message({
  7528. // message: "请填写完整问卷内容",
  7529. // type: "error",
  7530. // });
  7531. return;
  7532. }
  7533. }
  7534. if (i == 45) {
  7535. if (
  7536. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7537. .toolChoose[toolIndex].testJson ||
  7538. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7539. .toolChoose[toolIndex].testJson.testJson[0].teststitle == "" ||
  7540. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7541. .toolChoose[toolIndex].testJson.testJson[0].checkList < 2
  7542. ) {
  7543. this.openTools(itemTaskIndex, 45, toolIndex);
  7544. // this.$message({
  7545. // message: "请填写完整问卷内容",
  7546. // type: "error",
  7547. // });
  7548. return;
  7549. }
  7550. }
  7551. if (i == 47) {
  7552. if (
  7553. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7554. .toolChoose[toolIndex].sentenceList ||
  7555. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7556. .toolChoose[toolIndex].sentenceList[0].rightAnswer == 0
  7557. ) {
  7558. this.openTools(itemTaskIndex, 47, toolIndex);
  7559. return;
  7560. }
  7561. }
  7562. if (i == 48) {
  7563. if (
  7564. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7565. .toolChoose[toolIndex].tableJson
  7566. ) {
  7567. this.openTools(itemTaskIndex, 48, toolIndex);
  7568. return;
  7569. }
  7570. }
  7571. if (i == 49) {
  7572. if (
  7573. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7574. .toolChoose[toolIndex].groupJson
  7575. ) {
  7576. this.openTools(itemTaskIndex, 49, toolIndex);
  7577. return;
  7578. }
  7579. }
  7580. if (i == 15) {
  7581. if (
  7582. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7583. .toolChoose[toolIndex].answerQ ||
  7584. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7585. .toolChoose[toolIndex].answerQ == ""
  7586. ) {
  7587. this.openTools(itemTaskIndex, 15, toolIndex);
  7588. // this.$message({
  7589. // message: "请填写问答内容",
  7590. // type: "error",
  7591. // });
  7592. return;
  7593. }
  7594. }
  7595. if (i == 40) {
  7596. if (
  7597. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7598. .toolChoose[toolIndex].rateJson ||
  7599. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7600. .toolChoose[toolIndex].rateJson.length
  7601. ) {
  7602. this.openTools(itemTaskIndex, 40, toolIndex);
  7603. return;
  7604. }
  7605. }
  7606. if (i == 41) {
  7607. if (
  7608. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7609. .toolChoose[toolIndex].selectJson ||
  7610. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7611. .toolChoose[toolIndex].selectJson.url == "" ||
  7612. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7613. .toolChoose[toolIndex].selectJson.select.length ||
  7614. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7615. .toolChoose[toolIndex].selectJson.answer.length
  7616. ) {
  7617. this.openTools(itemTaskIndex, 41, toolIndex);
  7618. return;
  7619. }
  7620. }
  7621. if (i == 42) {
  7622. if (
  7623. !this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7624. .toolChoose[toolIndex].answerQ ||
  7625. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7626. .toolChoose[toolIndex].answerQ == ""
  7627. ) {
  7628. this.openTools(itemTaskIndex, 42, toolIndex);
  7629. return;
  7630. }
  7631. }
  7632. if (
  7633. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[itemTaskIndex]
  7634. .toolChoose[toolIndex].tool.length > 0
  7635. ) {
  7636. if (
  7637. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7638. itemTaskIndex
  7639. ].toolChoose[toolIndex].tool.indexOf(i) != -1
  7640. ) {
  7641. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7642. itemTaskIndex
  7643. ].toolChoose[toolIndex].tool.splice(
  7644. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7645. itemTaskIndex
  7646. ].toolChoose[toolIndex].tool.indexOf(i),
  7647. 1
  7648. );
  7649. } else {
  7650. // this.$message({
  7651. // message: "每个工具只能添加一个",
  7652. // type: "error",
  7653. // });
  7654. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7655. itemTaskIndex
  7656. ].toolChoose[toolIndex].tool = [];
  7657. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7658. itemTaskIndex
  7659. ].toolChoose[toolIndex].tool.push(i);
  7660. }
  7661. } else {
  7662. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7663. itemTaskIndex
  7664. ].toolChoose[toolIndex].tool.push(i);
  7665. }
  7666. this.$forceUpdate();
  7667. },
  7668. addAskList() {
  7669. this.askJson.askJson.push({
  7670. askstitle: "",
  7671. askItem: 1,
  7672. checkList: [],
  7673. });
  7674. this.askJson.askCount++;
  7675. },
  7676. addTestList() {
  7677. this.testJson.testJson.push({
  7678. teststitle: "",
  7679. testItem: 1,
  7680. checkList: [],
  7681. answer: [],
  7682. type: "1",
  7683. });
  7684. this.testJson.testCount++;
  7685. },
  7686. deleteAskList(index) {
  7687. this.askJson.askJson.splice(index, 1);
  7688. this.askJson.askCount--;
  7689. },
  7690. deleteTestList(index) {
  7691. this.testJson.testJson.splice(index, 1);
  7692. this.testJson.testCount--;
  7693. },
  7694. addcheckList(json) {
  7695. json.checkList.length++;
  7696. json.askItem++;
  7697. },
  7698. deletecheckList(json) {
  7699. json.checkList.length--;
  7700. json.askItem--;
  7701. },
  7702. addTcheckList(json) {
  7703. json.checkList.length++;
  7704. json.testItem++;
  7705. },
  7706. deleteTcheckList(json) {
  7707. json.checkList.length--;
  7708. json.testItem--;
  7709. },
  7710. checkTestType(type, json) {
  7711. json.type = type;
  7712. json.answer = [];
  7713. },
  7714. addSelectList(json) {
  7715. json.select.push("");
  7716. json.answer.push("");
  7717. },
  7718. deleteSelectList(json) {
  7719. // json.select.length--;
  7720. // json.answer.length--;
  7721. json.select.splice(json.select.length - 1, 1);
  7722. json.answer.splice(json.answer.length - 1, 1);
  7723. },
  7724. addAsk() {
  7725. if (this.askJson.askTitle === "") {
  7726. this.$message.error("标题不能为空!");
  7727. return;
  7728. }
  7729. var aj = this.askJson.askJson;
  7730. var b = 1;
  7731. for (var i = 0; i < aj.length; i++) {
  7732. if (aj[i].askstitle === "") {
  7733. var a = 1;
  7734. for (let index = 0; index < aj[i].askItem; index++) {
  7735. const element = aj[i].checkList[index]
  7736. ? aj[i].checkList[index]
  7737. : "";
  7738. if (element != "") {
  7739. b++;
  7740. this.$message.error("填写了选项,题目不能为空!");
  7741. return;
  7742. } else {
  7743. a++;
  7744. }
  7745. }
  7746. if (b == 1) {
  7747. this.$message.error("至少填写一个问题");
  7748. return;
  7749. }
  7750. } else if (aj[i].askstitle != "") {
  7751. for (let index = 0; index < aj[i].askItem; index++) {
  7752. const element = aj[i].checkList[index]
  7753. ? aj[i].checkList[index]
  7754. : "";
  7755. var index = 0;
  7756. for (var z = 0; z < aj[i].checkList.length; z++) {
  7757. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7758. if (checkC != "") {
  7759. index++;
  7760. } else {
  7761. this.$message.error("选项不能为空!");
  7762. return;
  7763. }
  7764. }
  7765. b++;
  7766. if (index < 2) {
  7767. this.$message.error("填写了的题目,选项至少要有两项!");
  7768. return;
  7769. }
  7770. }
  7771. }
  7772. }
  7773. this.askJson.askJson = this.askJson.askJson.filter((el) => {
  7774. var elc = el.checkList.filter((element) => {
  7775. return element != "";
  7776. });
  7777. return el.askstitle != "" && elc.length != 0;
  7778. });
  7779. this.dialogVisibleTool = false;
  7780. this.dialogVisibleVote = false;
  7781. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7782. this.taskCount
  7783. ].toolArray.push({
  7784. tool: 56,
  7785. toolDetail: "",
  7786. toolPhoto: "",
  7787. toolEdit: false,
  7788. toolId: this.guid(),
  7789. askJson: JSON.parse(JSON.stringify(this.askJson)),
  7790. });
  7791. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  7792. },
  7793. addTest() {
  7794. // if (this.testJson.testTitle === "") {
  7795. // this.$message.error("标题不能为空!");
  7796. // return;
  7797. // }
  7798. var aj = this.testJson.testJson;
  7799. var b = 1;
  7800. for (var i = 0; i < aj.length; i++) {
  7801. if (aj[i].teststitle === "") {
  7802. var a = 1;
  7803. for (let index = 0; index < aj[i].testItem; index++) {
  7804. const element = aj[i].checkList[index]
  7805. ? aj[i].checkList[index]
  7806. : "";
  7807. if (element != "") {
  7808. b++;
  7809. this.$message.error("填写了选项,题目不能为空!");
  7810. return;
  7811. } else {
  7812. a++;
  7813. }
  7814. }
  7815. if (b == 1) {
  7816. this.$message.error("至少填写一个问题");
  7817. return;
  7818. }
  7819. } else if (aj[i].teststitle != "") {
  7820. for (let index = 0; index < aj[i].testItem; index++) {
  7821. const element = aj[i].checkList[index]
  7822. ? aj[i].checkList[index]
  7823. : "";
  7824. var index = 0;
  7825. for (var z = 0; z < aj[i].checkList.length; z++) {
  7826. var checkC = aj[i].checkList[z] ? aj[i].checkList[z] : "";
  7827. if (checkC != "") {
  7828. index++;
  7829. } else {
  7830. this.$message.error("选项不能为空!");
  7831. return;
  7832. }
  7833. }
  7834. b++;
  7835. if (index < 2) {
  7836. this.$message.error("填写了的题目,选项至少要有两项!");
  7837. return;
  7838. }
  7839. if (
  7840. (aj[i].type == "2" && !aj[i].answer.length) ||
  7841. (aj[i].type == "1" && aj[i].answer !== 0 && !aj[i].answer)
  7842. ) {
  7843. this.$message.error("有题目未选择答案请选择答案");
  7844. return;
  7845. }
  7846. }
  7847. }
  7848. }
  7849. this.testJson.testJson = this.testJson.testJson.filter((el) => {
  7850. var elc = el.checkList.filter((element) => {
  7851. return element != "";
  7852. });
  7853. return el.teststitle != "" && elc.length != 0;
  7854. });
  7855. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7856. this.taskCount
  7857. ].toolChoose[this.toolIndex].testJson = this.testJson;
  7858. this.dialogVisibleChoice = false;
  7859. if (
  7860. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7861. .toolChoose[this.toolIndex].tool != 45
  7862. ) {
  7863. this.addTools(45, this.taskCount, this.toolIndex);
  7864. }
  7865. },
  7866. addAnswer() {
  7867. if (this.answerQ == "") {
  7868. this.$message.error("请输入您想要问的问题");
  7869. return;
  7870. }
  7871. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7872. // this.taskCount
  7873. // ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7874. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7875. this.taskCount
  7876. ].toolArray.push({
  7877. tool: 15,
  7878. toolDetail: "",
  7879. toolPhoto: "",
  7880. toolEdit: false,
  7881. toolId: this.guid(),
  7882. answerQ: this.answerQ,
  7883. });
  7884. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  7885. this.$forceUpdate();
  7886. this.dialogVisibleTool = false;
  7887. this.dialogVisible8 = false;
  7888. // if (
  7889. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7890. // .toolChoose[this.toolIndex].tool != 15
  7891. // ) {
  7892. // this.addTools(15, this.taskCount, this.toolIndex);
  7893. // }
  7894. },
  7895. addText() {
  7896. if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  7897. this.$message.error("请填写信息!");
  7898. return;
  7899. }
  7900. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7901. this.taskCount
  7902. ].toolArray.push({
  7903. tool: 52,
  7904. toolDetail: "",
  7905. toolPhoto: "",
  7906. toolEdit: false,
  7907. toolId: this.guid(),
  7908. text: this.tableJson.text,
  7909. });
  7910. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  7911. this.$forceUpdate();
  7912. this.dialogVisibleTool = false;
  7913. this.dialogVisibleText = false;
  7914. setTimeout(() => {
  7915. // this.openToolFun(52, this.taskCount, this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7916. // this.taskCount
  7917. // ].toolArray.length-1)
  7918. this.toolIndex =
  7919. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7920. .toolArray.length - 1;
  7921. this.addTextJson();
  7922. }, 500);
  7923. // if (
  7924. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7925. // .toolChoose[this.toolIndex].tool != 15
  7926. // ) {
  7927. // this.addTools(15, this.taskCount, this.toolIndex);
  7928. // }
  7929. },
  7930. addTable() {
  7931. if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  7932. this.$message.error("请填写信息!");
  7933. return;
  7934. }
  7935. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7936. this.taskCount
  7937. ].toolArray.push({
  7938. tool: 48,
  7939. toolDetail: "",
  7940. toolPhoto: "",
  7941. toolEdit: false,
  7942. toolId: this.guid(),
  7943. table: this.tableJson.text,
  7944. });
  7945. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  7946. this.$forceUpdate();
  7947. this.dialogVisibleTool = false;
  7948. this.dialogVisibleTable1 = false;
  7949. setTimeout(() => {
  7950. // this.openToolFun(48, this.taskCount, this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7951. // this.taskCount
  7952. // ].toolArray.length-1)
  7953. this.toolIndex =
  7954. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7955. .toolArray.length - 1;
  7956. this.addTableJson();
  7957. }, 500);
  7958. // if (
  7959. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7960. // .toolChoose[this.toolIndex].tool != 15
  7961. // ) {
  7962. // this.addTools(15, this.taskCount, this.toolIndex);
  7963. // }
  7964. },
  7965. addMp3Answer() {
  7966. if (this.answerQ == "") {
  7967. this.$message.error("请输入您想要回答的问题");
  7968. return;
  7969. }
  7970. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7971. this.taskCount
  7972. ].toolChoose[this.toolIndex].answerQ = this.answerQ;
  7973. this.dialogVisibleMp3 = false;
  7974. },
  7975. addRateAnswer() {
  7976. var a = 1;
  7977. for (var i = 0; i < this.rateJson.length; i++) {
  7978. if (this.rateJson[i].value == "") {
  7979. a = 2;
  7980. break;
  7981. }
  7982. }
  7983. if (a == 2) {
  7984. this.$message.error("请把评价信息填写完整");
  7985. return;
  7986. }
  7987. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  7988. this.taskCount
  7989. ].toolChoose[this.toolIndex].rateJson = this.rateJson;
  7990. this.dialogVisibleRate = false;
  7991. if (
  7992. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  7993. .toolChoose[this.toolIndex].tool != 40
  7994. ) {
  7995. this.addTools(40, this.taskCount, this.toolIndex);
  7996. }
  7997. },
  7998. addSelectAnswer() {
  7999. if (this.selectJson.url == "") {
  8000. this.$message.error("请上传题目");
  8001. return;
  8002. }
  8003. if (!this.selectJson.select.length) {
  8004. this.$message.error("请添加选项");
  8005. return;
  8006. }
  8007. if (!this.selectJson.answer.length) {
  8008. this.$message.error("请设置答案");
  8009. return;
  8010. }
  8011. var a = 1;
  8012. for (var i = 0; i < this.selectJson.answer.length; i++) {
  8013. if (!this.selectJson.answer[i] && this.selectJson.answer[i] !== 0) {
  8014. a = 2;
  8015. }
  8016. }
  8017. if (a == 2) {
  8018. this.$message.error("请设置答案");
  8019. return;
  8020. }
  8021. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8022. this.taskCount
  8023. ].toolChoose[this.toolIndex].selectJson = this.selectJson;
  8024. this.dialogVisibleSelect = false;
  8025. if (
  8026. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8027. .toolChoose[this.toolIndex].tool != 41
  8028. ) {
  8029. this.addTools(41, this.taskCount, this.toolIndex);
  8030. }
  8031. },
  8032. nextSelectSteps() {
  8033. if (this.selectJson.url == "") {
  8034. this.$message.error("请上传题目");
  8035. return;
  8036. }
  8037. if (!this.selectJson.select.length) {
  8038. this.$message.error("请添加选项");
  8039. return;
  8040. }
  8041. var a = 1;
  8042. for (var i = 0; i < this.selectJson.select.length; i++) {
  8043. if (!this.selectJson.select[i]) {
  8044. a = 2;
  8045. }
  8046. }
  8047. if (a == 2) {
  8048. this.$message.error("添加的选项不能为空");
  8049. return;
  8050. }
  8051. this.selectSteps++;
  8052. },
  8053. selectCourseDetail() {
  8054. if (this.cid == "" || this.cid == undefined) {
  8055. console.log("这是新增项目");
  8056. this.selectAllType();
  8057. this.cidttt = 0;
  8058. } else {
  8059. this.cidType = 1;
  8060. let params = {
  8061. cid: this.cid,
  8062. };
  8063. this.ajax
  8064. .get(this.$store.state.api + "select_student_course_detail2", params)
  8065. .then((res) => {
  8066. this.loading = true;
  8067. this.unitJson = JSON.parse(res.data[0][0].chapters);
  8068. for (var j in this.unitJson) {
  8069. for (var i in this.unitJson[j].chapterInfo) {
  8070. this.unitJson[j].chapterInfo[i].taskJson[
  8071. this.taskCount
  8072. ].toolChoose = this.unitJson[j].chapterInfo[i].taskJson[
  8073. this.taskCount
  8074. ].toolChoose
  8075. ? this.unitJson[j].chapterInfo[i].taskJson[this.taskCount]
  8076. .toolChoose
  8077. : [];
  8078. for (var k in this.unitJson[j].chapterInfo[i].taskJson) {
  8079. let _chapterData = [];
  8080. for (var c in this.unitJson[j].chapterInfo[i].taskJson[k]
  8081. .chapterData) {
  8082. if (
  8083. this.unitJson[j].chapterInfo[i].taskJson[k].chapterData[c]
  8084. ) {
  8085. _chapterData.push(
  8086. this.unitJson[j].chapterInfo[i].taskJson[k].chapterData[
  8087. c
  8088. ]
  8089. );
  8090. }
  8091. }
  8092. this.unitJson[j].chapterInfo[i].taskJson[k].chapterData =
  8093. _chapterData;
  8094. }
  8095. }
  8096. }
  8097. this.courseName = res.data[0][0].title;
  8098. this.courseText = res.data[0][0].brief;
  8099. this.evalua = res.data[0][0].evaId;
  8100. this.cover = JSON.parse(res.data[0][0].cover);
  8101. this.noneBtnImg = this.cover.length >= 1;
  8102. // this.checkboxList =
  8103. // res.data[0][0].course_student.length > 0
  8104. // ? JSON.parse(res.data[0][0].course_student)
  8105. // : [];
  8106. this.checkboxList2 = res.data[0][0].juri
  8107. ? res.data[0][0].juri.split(",")
  8108. : [];
  8109. this.checkboxList3 = res.data[0][0].course_teacher
  8110. ? res.data[0][0].course_teacher.split(",")
  8111. : [];
  8112. this.checkboxListPeople = res.data[0][0].course_teacher
  8113. ? res.data[0][0].course_teacher.split(",")
  8114. : [];
  8115. // this.isTeacherSee =
  8116. // res.data[0][0].is_teacher_look == 0 ? true : false;
  8117. this.isTeacherSee = res.data[0][0].open == 1 ? true : false;
  8118. this.myWord = res.data[0][0].template;
  8119. this.templateC.id = "123";
  8120. this.courseUserid = res.data[0][0].userid;
  8121. this.nbOrder = res.data[0][0].ordernumber;
  8122. if (res.data[1].length) {
  8123. this.courseTypeId = [];
  8124. for (var i = 0; i < res.data[1].length; i++) {
  8125. this.courseTypeId.push(res.data[1][i].typeid);
  8126. }
  8127. }
  8128. console.log(this.courseTypeId);
  8129. // if (this.timer) clearInterval(this.timer);
  8130. if (this.timer) clearTimeout(this.timer);
  8131. this.timer = null;
  8132. // this.timer = setInterval(() => {
  8133. this.seleteCourseUpdate();
  8134. this.setMan();
  8135. this.selectAllType();
  8136. // }, 5000);
  8137. this.$forceUpdate();
  8138. setTimeout(() => {
  8139. this.checkEva(this.evalua);
  8140. }, 0);
  8141. })
  8142. .catch((err) => {
  8143. console.error(err);
  8144. });
  8145. }
  8146. },
  8147. seleteCourseUpdate() {
  8148. let params = {
  8149. cid: this.cid,
  8150. };
  8151. this.ajax
  8152. .get(this.$store.state.api + "select_student_course_detail", params)
  8153. .then((res) => {
  8154. console.log(res.data[2]);
  8155. let unitJson = this.unitJson;
  8156. let works = res.data[2];
  8157. for (var i = 0; i < unitJson.length; i++) {
  8158. let task = unitJson[i].chapterInfo[0].taskJson;
  8159. for (var j = 0; j < task.length; j++) {
  8160. var tool = task[j].toolArray;
  8161. for (var z = 0; z < tool.length; z++) {
  8162. let _tool = tool[z];
  8163. _tool.toolPhoto = [];
  8164. _tool.people = [];
  8165. this.checkJson[z] = [];
  8166. let checkPeople = 0;
  8167. for (var k = 0; k < works.length; k++) {
  8168. let _work = works[k];
  8169. if (
  8170. _work.stage == i &&
  8171. _work.task == j &&
  8172. _work.tool == z &&
  8173. _work.atool == _tool.tool
  8174. ) {
  8175. if (_tool.tool == 48 || _tool.tool == 52) {
  8176. _tool.toolPhoto[0] = _work;
  8177. if (_tool.people.indexOf(_work.username) == -1) {
  8178. _tool.people.push(_work.username);
  8179. }
  8180. } else {
  8181. _tool.toolPhoto.push(_work);
  8182. }
  8183. if (_tool.tool == 56) {
  8184. checkPeople++;
  8185. var checkL = JSON.parse(_work.content);
  8186. for (var kz = 0; kz < checkL.length; kz++) {
  8187. if (!this.checkJson[z][kz]) {
  8188. this.checkJson[z].push({
  8189. checkCount: [],
  8190. checkPerson: [],
  8191. rightPerson: [],
  8192. });
  8193. }
  8194. if (!this.checkJson[z][kz].checkCount.length) {
  8195. this.checkJson[z][kz].checkCount = [];
  8196. let _askItemCount = _tool.askJson.askJson[kz].askItem;
  8197. for (var aic = 0; aic < _askItemCount; aic++) {
  8198. this.checkJson[z][kz].checkCount.push(0);
  8199. }
  8200. }
  8201. this.checkJson[z][kz].checkPerson[parseInt(checkL[kz])]
  8202. ? this.checkJson[z][kz].checkPerson[
  8203. parseInt(checkL[kz])
  8204. ].push(_work.username)
  8205. : (this.checkJson[z][kz].checkPerson[
  8206. parseInt(checkL[kz])
  8207. ] = [_work.username]);
  8208. this.checkJson[z][kz].checkCount[parseInt(checkL[kz])]
  8209. ? this.checkJson[z][kz].checkCount[
  8210. parseInt(checkL[kz])
  8211. ]++
  8212. : (this.checkJson[z][kz].checkCount[
  8213. parseInt(checkL[kz])
  8214. ] = 1);
  8215. }
  8216. }
  8217. }
  8218. }
  8219. for (var kz = 0; kz < this.checkJson[z].length; kz++) {
  8220. this.checkJson[z][kz].checkPerent = [];
  8221. let aaaa = this.checkJson[z][kz];
  8222. console.log(aaaa);
  8223. for (
  8224. var kc = 0;
  8225. kc < this.checkJson[z][kz].checkCount.length;
  8226. kc++
  8227. ) {
  8228. this.checkJson[z][kz].checkPerent.push(
  8229. Math.round(
  8230. (this.checkJson[z][kz].checkCount[kc] / checkPeople) *
  8231. 100
  8232. )
  8233. );
  8234. }
  8235. }
  8236. }
  8237. }
  8238. }
  8239. this.$forceUpdate();
  8240. if (this.timer) {
  8241. clearTimeout(this.timer);
  8242. this.timer = null;
  8243. }
  8244. this.timer = setTimeout(() => {
  8245. this.seleteCourseUpdate();
  8246. }, 1000);
  8247. })
  8248. .catch((err) => {
  8249. console.error(err);
  8250. });
  8251. },
  8252. restoreWork(chapid, unitJson, chapindex, unitJson2, unitIndex2) {
  8253. let params = [
  8254. {
  8255. cid: this.cid,
  8256. chapters: JSON.stringify(this.unitJson),
  8257. uid: this.userid,
  8258. chapid: chapid,
  8259. },
  8260. ];
  8261. this.ajax
  8262. .post(this.$store.state.api + "restoreStudentWork", params)
  8263. .then((res) => {
  8264. this.$message({
  8265. message: "恢复成功",
  8266. type: "success",
  8267. });
  8268. unitJson.splice(chapindex, 0, unitJson2[chapindex]);
  8269. this.unitJson = unitJson;
  8270. this.$forceUpdate();
  8271. setTimeout(() => {
  8272. if (this.unitIndex != unitIndex2) {
  8273. this.isDelete = 2;
  8274. this.unitIndex = unitIndex2;
  8275. }
  8276. }, 0);
  8277. this.timer = setTimeout(() => {
  8278. this.seleteCourseUpdate();
  8279. }, 1000);
  8280. })
  8281. .catch((err) => {
  8282. this.$message.error("网络不佳");
  8283. console.error(err);
  8284. });
  8285. },
  8286. getTypeName() {
  8287. console.log(this.courseTypeId);
  8288. this.$forceUpdate();
  8289. },
  8290. selectAllType() {
  8291. let params = {
  8292. org: this.org && this.org != "" ? this.org : "",
  8293. oid: this.oid && this.oid != "" ? this.oid : "",
  8294. };
  8295. this.ajax
  8296. .get(this.$store.state.api + "selectAllTypeS", params)
  8297. .then((res) => {
  8298. this.CourseType = res.data;
  8299. let _courseTypeId = [];
  8300. for (var i = 0; i < res.data[0].length; i++) {
  8301. if (!this.cid) {
  8302. this.courseTypeId[res.data[0][i].id] = "";
  8303. }
  8304. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8305. this.CourseTypeJson[res.data[0][i].id] = [];
  8306. }
  8307. if (this.oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5") {
  8308. if (res.data[0][i].name == "赛道") {
  8309. this.CourseType[0][i].name = "项目类型";
  8310. }
  8311. }
  8312. if (res.data[2].length == 0 && res.data[3].length == 0) {
  8313. for (var j = 0; j < res.data[1].length; j++) {
  8314. if (
  8315. this.courseTypeId.indexOf(res.data[1][j].id) != -1 &&
  8316. _courseTypeId.indexOf(res.data[1][j].id) == -1
  8317. ) {
  8318. _courseTypeId.push(res.data[1][j].id);
  8319. }
  8320. if (res.data[0][i].id == res.data[1][j].pid) {
  8321. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8322. }
  8323. }
  8324. } else {
  8325. if (res.data[2].length > 0) {
  8326. for (var j = 0; j < res.data[2].length; j++) {
  8327. if (
  8328. this.courseTypeId.indexOf(res.data[2][j].id) != -1 &&
  8329. _courseTypeId.indexOf(res.data[2][j].id) == -1
  8330. ) {
  8331. _courseTypeId.push(res.data[2][j].id);
  8332. }
  8333. if (res.data[0][i].id == res.data[2][j].pid) {
  8334. this.CourseTypeJson[res.data[0][i].id].push(res.data[2][j]); // 去除公共分类
  8335. }
  8336. }
  8337. }
  8338. if (res.data[3].length > 0) {
  8339. for (var j = 0; j < res.data[3].length; j++) {
  8340. if (
  8341. this.courseTypeId.indexOf(res.data[3][j].id) != -1 &&
  8342. _courseTypeId.indexOf(res.data[3][j].id) == -1
  8343. ) {
  8344. _courseTypeId.push(res.data[3][j].id);
  8345. }
  8346. if (res.data[0][i].id == res.data[3][j].pid) {
  8347. this.CourseTypeJson[res.data[0][i].id].push(res.data[3][j]); // 去除公共分类
  8348. }
  8349. }
  8350. }
  8351. }
  8352. }
  8353. this.courseTypeId = _courseTypeId;
  8354. })
  8355. .catch((err) => {
  8356. console.error(err);
  8357. });
  8358. },
  8359. selectType() {
  8360. this.ajax
  8361. .get(this.$store.state.api + "selectStudentType")
  8362. .then((res) => {
  8363. this.CourseType = res.data;
  8364. for (var i = 0; i < res.data[0].length; i++) {
  8365. if (!this.cid) {
  8366. this.courseTypeId[res.data[0][i].id] = "";
  8367. }
  8368. for (var j = 0; j < res.data[1].length; j++) {
  8369. if (res.data[0][i].id == res.data[1][j].pid) {
  8370. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8371. this.CourseTypeJson[res.data[0][i].id] = [];
  8372. }
  8373. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); // 去除公共分类
  8374. }
  8375. }
  8376. }
  8377. this.selectTypeByOid();
  8378. this.selectTypeByOrg();
  8379. })
  8380. .catch((err) => {
  8381. console.error(err);
  8382. });
  8383. },
  8384. selectTypeByOid() {
  8385. let params = {
  8386. oid: this.oid,
  8387. };
  8388. this.ajax
  8389. .get(this.$store.state.api + "selectStudentTypeByOid", params)
  8390. .then((res) => {
  8391. for (var i = 0; i < res.data[0].length; i++) {
  8392. for (var j = 0; j < res.data[1].length; j++) {
  8393. if (res.data[0][i].id == res.data[1][j].pid) {
  8394. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8395. this.CourseTypeJson[res.data[0][i].id] = [];
  8396. }
  8397. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  8398. }
  8399. }
  8400. }
  8401. })
  8402. .catch((err) => {
  8403. console.error(err);
  8404. });
  8405. },
  8406. selectTypeByOrg() {
  8407. let params = {
  8408. oid: this.org,
  8409. };
  8410. this.ajax
  8411. .get(this.$store.state.api + "selectStudentTypeByOid", params)
  8412. .then((res) => {
  8413. for (var i = 0; i < res.data[0].length; i++) {
  8414. for (var j = 0; j < res.data[1].length; j++) {
  8415. if (res.data[0][i].id == res.data[1][j].pid) {
  8416. if (!this.CourseTypeJson[res.data[0][i].id]) {
  8417. this.CourseTypeJson[res.data[0][i].id] = [];
  8418. }
  8419. this.CourseTypeJson[res.data[0][i].id].unshift(res.data[1][j]);
  8420. }
  8421. }
  8422. }
  8423. this.$forceUpdate();
  8424. })
  8425. .catch((err) => {
  8426. console.error(err);
  8427. });
  8428. },
  8429. OtherMb(type) {
  8430. this.typeMode = type;
  8431. setTimeout(() => {
  8432. this.checkEva(this.checkId);
  8433. }, 0);
  8434. },
  8435. checkEva(id) {
  8436. this.selectEva();
  8437. this.evalua = id;
  8438. this.checkId = id;
  8439. if (this.evalua != "") {
  8440. for (var i = 0; i < this.evaJuri.length; i++) {
  8441. if (this.evalua == this.evaJuri[i].id) {
  8442. this.eTitle = this.evaJuri[i].title;
  8443. this.eJson = JSON.parse(this.evaJuri[i].content);
  8444. }
  8445. }
  8446. this.data.data = [];
  8447. this.$forceUpdate();
  8448. setTimeout(() => {
  8449. this.setMindData();
  8450. }, 500);
  8451. }
  8452. },
  8453. selectEva() {
  8454. let params = {
  8455. oid: this.oid,
  8456. };
  8457. this.ajax
  8458. .get(this.$store.state.api + "selectAllEvaluation", params)
  8459. .then((res) => {
  8460. this.evaJuri = res.data[0];
  8461. })
  8462. .catch((err) => {
  8463. console.error(err);
  8464. });
  8465. },
  8466. setMindData() {
  8467. let targetArray = [];
  8468. this.data.data = [];
  8469. this.data.data.push({
  8470. id: "root",
  8471. isroot: true,
  8472. topic: this.eTitle,
  8473. });
  8474. let _eJson = Object.keys(this.eJson);
  8475. let _e = this.eJson;
  8476. for (let i = 0; i < _eJson.length; i++) {
  8477. let element = _e[_eJson[i]];
  8478. this.data.data.push({
  8479. id: element.id,
  8480. parentid: "root",
  8481. topic: element.name,
  8482. });
  8483. // targetArray.push({
  8484. // id: element.id,
  8485. // parentid: "root",
  8486. // name: element.name,
  8487. // });
  8488. targetArray.push({
  8489. value: element.name,
  8490. label: element.name,
  8491. children: [],
  8492. });
  8493. let _eJsonc = Object.keys(element.child);
  8494. let _e2 = element.child;
  8495. for (let j = 0; j < _eJsonc.length; j++) {
  8496. let _ec = _e2[_eJsonc[j]];
  8497. this.data.data.push({
  8498. id: _ec.id,
  8499. parentid: element.id,
  8500. topic: _ec.name,
  8501. });
  8502. // targetArray.push({
  8503. // id: _ec.id,
  8504. // parentid: element.id,
  8505. // name: _ec.name,
  8506. // });
  8507. targetArray[i].children.push({
  8508. value: _ec.name,
  8509. label: _ec.name,
  8510. children: [],
  8511. });
  8512. let _eJsonz = Object.keys(_ec.child);
  8513. let _e3 = _ec.child;
  8514. for (let z = 0; z < _eJsonz.length; z++) {
  8515. let _ez = _e3[_eJsonz[z]];
  8516. this.data.data.push({
  8517. id: _ez.id,
  8518. parentid: _ec.id,
  8519. topic: _ez.name,
  8520. });
  8521. // targetArray.push({
  8522. // id: _ez.id,
  8523. // parentid: _ec.id,
  8524. // name: _ez.name,
  8525. // });
  8526. targetArray[i].children[j].children.push({
  8527. value: _ez.name,
  8528. label: _ez.name,
  8529. });
  8530. }
  8531. }
  8532. }
  8533. this.targetArray = targetArray;
  8534. this.$forceUpdate();
  8535. },
  8536. /*添加评价 */
  8537. addEList(index, tIndex) {
  8538. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList
  8539. ? this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.push({
  8540. value: "",
  8541. detail: "",
  8542. score: 5,
  8543. })
  8544. : (this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList = [
  8545. {
  8546. value: "",
  8547. detail: "",
  8548. score: 5,
  8549. },
  8550. ]);
  8551. this.$forceUpdate();
  8552. },
  8553. forceUpdate() {
  8554. this.$forceUpdate();
  8555. },
  8556. deletEList(index, tIndex, eIndex) {
  8557. this.unitJson[index].chapterInfo[0].taskJson[tIndex].eList.splice(
  8558. eIndex,
  8559. 1
  8560. );
  8561. this.$forceUpdate();
  8562. },
  8563. getChoosePic(t) {
  8564. this.chooseType = t;
  8565. this.getAllBanner();
  8566. },
  8567. getAllBanner() {
  8568. this.sysPicVisible = true;
  8569. let params = {
  8570. t: this.chooseType,
  8571. };
  8572. this.ajax
  8573. .get(this.$store.state.api + "selectAllBanner", params)
  8574. .then((res) => {
  8575. this.sysPic = res.data[0];
  8576. })
  8577. .catch((err) => {
  8578. console.error(err);
  8579. });
  8580. },
  8581. deleteSysPic() {
  8582. this.cover = [];
  8583. this.isSysPic = false;
  8584. },
  8585. deleteSelectPic() {
  8586. this.selectJson.url = "";
  8587. },
  8588. setEListStar() {
  8589. this.$forceUpdate();
  8590. },
  8591. deletRateList(i) {
  8592. this.rateJson.splice(i, 1);
  8593. },
  8594. addRateList() {
  8595. this.rateJson.push({
  8596. detail: "",
  8597. score: 5,
  8598. value: "",
  8599. });
  8600. },
  8601. addSt() {
  8602. this.sentenceList.push({
  8603. sentenceTitle: "",
  8604. addSentence: [],
  8605. rightAnswer: [],
  8606. });
  8607. },
  8608. addSen(i) {
  8609. this.sentenceList[i].addSentence.push(this.sentenceList[i].sentenceTitle);
  8610. // this.isPushTitleList.push(this.sentenceTitle);
  8611. this.sentenceList[i].sentenceTitle = "";
  8612. },
  8613. setRightAnswer(s, i, j) {
  8614. if (this.sentenceList[i].rightAnswer.indexOf(s) == -1) {
  8615. this.sentenceList[i].rightAnswer.push(s);
  8616. }
  8617. },
  8618. returnCard(r, i, j) {
  8619. this.sentenceList[i].rightAnswer.splice(j, 1);
  8620. },
  8621. addSentenceTool() {
  8622. for (var i = 0; i < this.sentenceList.length; i++) {
  8623. if (this.sentenceList[i].rightAnswer.length == 0) {
  8624. this.$message.error("请将信息填写完整!");
  8625. return;
  8626. }
  8627. if (
  8628. this.sentenceList[i].addSentence.length !=
  8629. this.sentenceList[i].rightAnswer.length
  8630. ) {
  8631. this.$message.error("请将信息填写完整!");
  8632. return;
  8633. }
  8634. }
  8635. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8636. this.taskCount
  8637. ].toolChoose[this.toolIndex].sentenceList = this.sentenceList;
  8638. this.sentenceList = [
  8639. {
  8640. sentenceTitle: "",
  8641. addSentence: [],
  8642. rightAnswer: [],
  8643. },
  8644. ];
  8645. this.dialogVisibleSentence = false;
  8646. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8647. // itemTaskIndex
  8648. // ].toolChoose[toolIndex].tool = [];
  8649. // this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8650. // itemTaskIndex
  8651. // ].toolChoose[toolIndex].tool.push(i);
  8652. if (
  8653. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8654. .toolChoose[this.toolIndex].tool != 47
  8655. ) {
  8656. this.addTools(47, this.taskCount, this.toolIndex);
  8657. }
  8658. },
  8659. addTableJson() {
  8660. if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  8661. this.$message.error("请填写信息!");
  8662. return;
  8663. }
  8664. let params = [
  8665. {
  8666. uid: this.userid,
  8667. cid: this.courseId,
  8668. stage: this.unitIndex,
  8669. task: this.taskCount,
  8670. tool: this.toolIndex,
  8671. content: JSON.stringify(this.tableJson.text).replaceAll(/%/g, "%25"),
  8672. type: 10,
  8673. atool: 48,
  8674. },
  8675. ];
  8676. this.ajax
  8677. .post(this.$store.state.api + "addCourseWorksS", params)
  8678. .then((res) => {
  8679. this.$message({
  8680. message: "提交成功",
  8681. type: "success",
  8682. });
  8683. this.seleteCourseUpdate();
  8684. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  8685. this.dialogVisibleTable = false;
  8686. })
  8687. .catch((err) => {
  8688. this.$message.error("提交失败");
  8689. console.error(err);
  8690. });
  8691. },
  8692. addStudentAsk() {
  8693. if (!this.radio.length) {
  8694. this.$message.error("请选择选项");
  8695. return;
  8696. }
  8697. for (var i = 0; i < this.askJson.askCount; i++) {
  8698. if (this.radio[i] !== 0 && !this.radio[i]) {
  8699. this.$message.error("请选择选项");
  8700. return;
  8701. }
  8702. }
  8703. let params = [
  8704. {
  8705. uid: this.userid,
  8706. cid: this.courseId,
  8707. stage: this.unitIndex,
  8708. task: this.taskCount,
  8709. tool: this.toolIndex,
  8710. content: JSON.stringify(this.radio),
  8711. type: 14,
  8712. atool: 56,
  8713. },
  8714. ];
  8715. this.ajax
  8716. .post(this.$store.state.api + "addCourseWorksS", params)
  8717. .then((res) => {
  8718. this.$message({
  8719. message: "提交成功",
  8720. type: "success",
  8721. });
  8722. this.radio = [];
  8723. this.seleteCourseUpdate();
  8724. this.dialogVisibleVote2 = false;
  8725. })
  8726. .catch((err) => {
  8727. this.$message.error("提交失败");
  8728. console.error(err);
  8729. });
  8730. },
  8731. addTextJson() {
  8732. if (this.tableJson.text == "" || this.tableJson.text == "<p></p>") {
  8733. this.$message.error("请填写信息!");
  8734. return;
  8735. }
  8736. let params = [
  8737. {
  8738. uid: this.userid,
  8739. cid: this.courseId,
  8740. stage: this.unitIndex,
  8741. task: this.taskCount,
  8742. tool: this.toolIndex,
  8743. content: JSON.stringify(this.tableJson.text).replaceAll(/%/g, "%25"),
  8744. type: 12,
  8745. atool: 52,
  8746. },
  8747. ];
  8748. this.ajax
  8749. .post(this.$store.state.api + "addCourseWorksS", params)
  8750. .then((res) => {
  8751. this.$message({
  8752. message: "提交成功",
  8753. type: "success",
  8754. });
  8755. this.tableJson.text = "";
  8756. this.seleteCourseUpdate();
  8757. this.setPeople(this.unitIndex, this.taskCount, this.userid);
  8758. this.dialogVisibleText3 = false;
  8759. })
  8760. .catch((err) => {
  8761. this.$message.error("提交失败");
  8762. console.error(err);
  8763. });
  8764. },
  8765. setPeople(i, task, uid) {
  8766. if (this.checkboxList3.indexOf(uid) == -1 && uid != this.courseUserid) {
  8767. this.checkboxList3.push(uid);
  8768. this.setMan();
  8769. }
  8770. // debugger
  8771. if (
  8772. this.unitJson[i].chapterInfo[0].taskJson[task].people != uid &&
  8773. (!this.unitJson[i].chapterInfo[0].taskJson[task].tcMember ||
  8774. this.unitJson[i].chapterInfo[0].taskJson[task].tcMember.indexOf(
  8775. uid
  8776. ) == -1)
  8777. ) {
  8778. this.unitJson[i].chapterInfo[0].taskJson[task].tcMember
  8779. ? this.unitJson[i].chapterInfo[0].taskJson[task].tcMember.push(uid)
  8780. : (this.unitJson[i].chapterInfo[0].taskJson[task].tcMember = [uid]);
  8781. }
  8782. this.$forceUpdate();
  8783. },
  8784. goToTask(i) {
  8785. document.getElementsByClassName("rightBox")[0].scrollTop =
  8786. document.getElementsByClassName("taskBorder")[i].offsetTop - 100;
  8787. this.isClickColor = i + 1;
  8788. },
  8789. taskMove(type, index) {
  8790. if (type == 1) {
  8791. if (index > 0) {
  8792. let a = JSON.parse(
  8793. JSON.stringify(
  8794. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1]
  8795. )
  8796. );
  8797. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index - 1] =
  8798. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8799. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8800. }
  8801. } else {
  8802. if (
  8803. index <
  8804. this.unitJson[this.unitIndex].chapterInfo[0].taskJson.length - 1
  8805. ) {
  8806. let a = JSON.parse(
  8807. JSON.stringify(
  8808. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1]
  8809. )
  8810. );
  8811. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index + 1] =
  8812. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index];
  8813. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[index] = a;
  8814. }
  8815. }
  8816. this.$forceUpdate();
  8817. },
  8818. addGroup(i) {
  8819. // this.groupJson.group.splice(i + 1, 0, { name: "第"+(i+1)+"组" });
  8820. this.groupJson.group.push({
  8821. name: "第" + (this.groupJson.group.length + 1) + "组",
  8822. });
  8823. },
  8824. deleteGroup(i) {
  8825. this.groupJson.group.splice(i, 1);
  8826. },
  8827. addGroupJson() {
  8828. for (var i = 0; i < this.groupJson.group.length; i++) {
  8829. if (!this.groupJson.group[i].name) {
  8830. this.$message.error("请将信息填写完整!");
  8831. return;
  8832. }
  8833. }
  8834. if (!this.groupJson.number) {
  8835. this.$message.error("请将信息填写完整!");
  8836. return;
  8837. }
  8838. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[
  8839. this.taskCount
  8840. ].toolChoose[this.toolIndex].groupJson = JSON.parse(
  8841. JSON.stringify(this.groupJson)
  8842. );
  8843. this.dialogVisibleGroup = false;
  8844. this.groupJson = {};
  8845. if (
  8846. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[this.taskCount]
  8847. .toolChoose[this.toolIndex].tool != 49
  8848. ) {
  8849. this.addTools(49, this.taskCount, this.toolIndex);
  8850. }
  8851. },
  8852. deleteWorks(id) {
  8853. this.$confirm("确定删除此作业吗?", "提示", {
  8854. confirmButtonText: "确定",
  8855. cancelButtonText: "取消",
  8856. type: "warning",
  8857. })
  8858. .then(() => {
  8859. let params = [
  8860. {
  8861. id: id,
  8862. },
  8863. ];
  8864. this.ajax
  8865. .post(this.$store.state.api + "deleteCourseWorkS", params)
  8866. .then((res) => {
  8867. this.$message({
  8868. message: "删除成功",
  8869. type: "success",
  8870. });
  8871. this.seleteCourseUpdate();
  8872. })
  8873. .catch((err) => {
  8874. this.$message.error("网络异常");
  8875. console.error(err);
  8876. });
  8877. })
  8878. .catch(() => {});
  8879. },
  8880. openLineS(url) {
  8881. window.open(url);
  8882. },
  8883. checkFileFull(type, url) {
  8884. this.fullDialogVisible = true;
  8885. this.fulltype = type;
  8886. this.fullUrl = url;
  8887. },
  8888. downloadFile(url) {
  8889. let _this = this;
  8890. let _url = "";
  8891. if (
  8892. url.indexOf("https://view.officeapps.live.com/op/view.aspx?src=") != -1
  8893. ) {
  8894. _url = url.split(
  8895. "https://view.officeapps.live.com/op/view.aspx?src="
  8896. )[1];
  8897. } else {
  8898. _url = url;
  8899. }
  8900. const x = new XMLHttpRequest();
  8901. x.open("GET", _url, true);
  8902. x.responseType = "blob";
  8903. const loading = _this.$loading.service({
  8904. background: "rgba(255, 255, 255, 0.7)",
  8905. target: document.body,
  8906. text:'文件加载中...'
  8907. });
  8908. // _this.$message.success("文件下载中...");
  8909. x.onload = function (e) {
  8910. loading.close();
  8911. // const url = window.URL.createObjectURL(x.response);
  8912. // const a = document.createElement("a");
  8913. // a.href = url;
  8914. // a.target = "_blank";
  8915. // a.download = url;
  8916. // a.click();
  8917. // a.remove();
  8918. let content = x.response;
  8919. let elink = document.createElement("a");
  8920. elink.download = decodeURI(
  8921. _url.split("https://ccrb.s3.cn-northwest-1.amazonaws.com.cn/")[1]
  8922. );
  8923. elink.style.display = "none";
  8924. let blob = new Blob([content]);
  8925. elink.href = URL.createObjectURL(blob);
  8926. document.body.appendChild(elink);
  8927. elink.click();
  8928. document.body.removeChild(elink);
  8929. };
  8930. x.send();
  8931. },
  8932. editSourceUpadte(taskCount, index) {
  8933. this.taskCount = taskCount;
  8934. this.toolIndex = index;
  8935. this.editSourceType = 2;
  8936. this.sourcesData = JSON.parse(
  8937. JSON.stringify(
  8938. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  8939. .toolArray[index].toolData
  8940. )
  8941. );
  8942. this.dialogVisibleSource = true;
  8943. },
  8944. addQuestion() {
  8945. let params = [
  8946. {
  8947. uid: this.userid,
  8948. cid: this.courseId,
  8949. stage: this.unitIndex,
  8950. task: this.taskCount,
  8951. tool: this.toolIndex,
  8952. content: this.questionAnswer.replaceAll(/%/g, "%25"),
  8953. type: 3,
  8954. atool: 15,
  8955. },
  8956. ];
  8957. this.ajax
  8958. .post(this.$store.state.api + "addCourseWorksS", params)
  8959. .then((res) => {
  8960. this.$message({
  8961. message: "提交成功",
  8962. type: "success",
  8963. });
  8964. this.questionAnswer = "";
  8965. this.answerDialogVisible = false;
  8966. this.seleteCourseUpdate();
  8967. })
  8968. .catch((err) => {
  8969. this.$message.error("提交失败");
  8970. console.error(err);
  8971. });
  8972. },
  8973. addCourseWorksS(tool, type, content, task, toolindex) {
  8974. let params = [
  8975. {
  8976. uid: this.userid,
  8977. cid: this.courseId,
  8978. stage: this.unitIndex,
  8979. task: task,
  8980. tool: toolindex,
  8981. content: content,
  8982. type: type,
  8983. atool: tool,
  8984. },
  8985. ];
  8986. this.ajax
  8987. .post(this.$store.state.api + "addCourseWorksS", params)
  8988. .then((res) => {
  8989. this.$message({
  8990. message: "提交成功",
  8991. type: "success",
  8992. });
  8993. this.setPeople(this.unitIndex, task, this.userid);
  8994. this.seleteCourseUpdate();
  8995. })
  8996. .catch((err) => {
  8997. this.$message.error("提交失败");
  8998. console.error(err);
  8999. });
  9000. },
  9001. openFile(f) {
  9002. this.pptImgUrl = "";
  9003. var a = ["PPT", "PPTX", "XLSX", "XLS", "DOC", "DOCX"];
  9004. if (
  9005. a.indexOf(f.split(".")[f.split(".").length - 1].toLocaleUpperCase()) !=
  9006. -1
  9007. ) {
  9008. this.pptImgUrl =
  9009. "https://view.officeapps.live.com/op/view.aspx?src=" + f;
  9010. this.showPDF = false;
  9011. this.dialogVisibleFile = true;
  9012. } else if (
  9013. f.split(".")[f.split(".").length - 1].toLocaleUpperCase() == "PDF"
  9014. ) {
  9015. this.pptImgUrl = f;
  9016. this.showPDF = true;
  9017. this.dialogVisibleFile = true;
  9018. }
  9019. },
  9020. openText(f) {
  9021. this.tableJson.text = JSON.parse(f);
  9022. this.dialogVisibleText2 = true;
  9023. },
  9024. openAsk(f, taskCount, i) {
  9025. this.askJson = JSON.parse(
  9026. JSON.stringify(
  9027. this.unitJson[this.unitIndex].chapterInfo[0].taskJson[taskCount]
  9028. .toolArray[i].askJson
  9029. )
  9030. );
  9031. this.radio = JSON.parse(f);
  9032. this.dialogVisibleVote3 = true;
  9033. },
  9034. openMember() {
  9035. this.searchTN = "";
  9036. this.getTeacher();
  9037. this.dialogVisibleMember = true;
  9038. },
  9039. updateType(sid) {
  9040. var a = this.courseTypeId;
  9041. var a1 = JSON.parse(JSON.stringify(this.courseTypeId));
  9042. var c = [];
  9043. var b = sid.pid;
  9044. var d = [];
  9045. // for (var i = 0; i < this.CourseType[1].length; i++) {
  9046. // if (this.CourseType[1][i].id == sid) {
  9047. // b = this.CourseType[1][i].pid;
  9048. // }
  9049. // }
  9050. for (var j = 0; j < this.CourseTypeJson[b].length; j++) {
  9051. d.push(this.CourseTypeJson[b][j].id);
  9052. }
  9053. for (var i = 0; i < a.length; i++) {
  9054. if (d.indexOf(a[i]) == -1) {
  9055. c.push(a[i]);
  9056. }
  9057. }
  9058. c.push(sid.id);
  9059. this.courseTypeId = c;
  9060. },
  9061. openVideo(w) {
  9062. this.videoDetail = JSON.parse(JSON.stringify(this.playerOptions));
  9063. this.videoDetail.sources[0].src = w;
  9064. this.videoVisible = true;
  9065. },
  9066. getGMan(people) {
  9067. let _people = "";
  9068. if (this.ManAarray.length) {
  9069. for (var i = 0; i < this.ManAarray.length; i++) {
  9070. if (this.ManAarray[i].userid == people) {
  9071. _people = this.ManAarray[i].name;
  9072. break;
  9073. }
  9074. }
  9075. }
  9076. return _people ? _people : "无";
  9077. },
  9078. },
  9079. beforeDestroy() {
  9080. clearTimeout(this.timer);
  9081. this.timer = null;
  9082. },
  9083. beforeRouteLeave(to, from, next) {
  9084. clearTimeout(this.timer);
  9085. this.timer = null;
  9086. next();
  9087. },
  9088. beforeRouteEnter(to, from, next) {
  9089. next((vm) => {
  9090. vm.fpath = from.path;
  9091. });
  9092. },
  9093. created() {
  9094. this.getStudent();
  9095. this.getTeacher();
  9096. this.getClass();
  9097. this.getTemplate();
  9098. // this.selectEva();
  9099. this.loading = false;
  9100. setTimeout(() => {
  9101. this.selectCourseDetail();
  9102. // this.selectEva();
  9103. }, 500);
  9104. },
  9105. };
  9106. </script>
  9107. <style scoped>
  9108. @media screen and (max-width: 1280px) {
  9109. .mbCss {
  9110. flex-direction: column !important;
  9111. }
  9112. .pjCss {
  9113. width: 100% !important;
  9114. }
  9115. .evaCss {
  9116. width: 100% !important;
  9117. }
  9118. }
  9119. .dialog_diy >>> .el-dialog__header {
  9120. background: #3c3c3c !important;
  9121. padding: 15px 20px;
  9122. }
  9123. .dialog_diy >>> .el-dialog__title {
  9124. color: #fff;
  9125. }
  9126. .dialog_diy >>> .el-dialog__headerbtn {
  9127. top: 19px;
  9128. }
  9129. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  9130. color: #fff;
  9131. }
  9132. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  9133. color: #fff;
  9134. }
  9135. .dialog_diy >>> .el-dialog__body,
  9136. .dialog_diy >>> .el-dialog__footer {
  9137. background: #fafafa;
  9138. }
  9139. .dialog_diy3 >>> .el-dialog__body,
  9140. .dialog_diy3 >>> .el-dialog__footer {
  9141. background: #eee !important;
  9142. }
  9143. .dialog_diy3 >>> .el-dialog__body {
  9144. padding: 20px 20px;
  9145. }
  9146. .left {
  9147. border-right: 1px solid rgb(60, 94, 143);
  9148. display: flex;
  9149. flex-direction: column;
  9150. align-items: center;
  9151. min-height: 600px;
  9152. width: 385px;
  9153. height: 80%;
  9154. }
  9155. .tips {
  9156. color: rgb(128, 128, 128);
  9157. font-size: 12px;
  9158. width: 270px;
  9159. margin: 40px;
  9160. }
  9161. .pb_content {
  9162. height: 100% !important;
  9163. /* margin: 0 20px 0 20px; */
  9164. }
  9165. .pb_content_body {
  9166. width: 100% !important;
  9167. height: 100%;
  9168. }
  9169. .info_solid {
  9170. width: 270px;
  9171. height: 30px;
  9172. border-left: 1px solid #bdbdbd;
  9173. margin: 10px 0px 10px 30px;
  9174. }
  9175. .info_steps {
  9176. width: 270px;
  9177. font-size: 0.875rem;
  9178. display: flex;
  9179. align-items: center;
  9180. }
  9181. .info_steps span:nth-child(1) {
  9182. width: 30px;
  9183. height: 30px;
  9184. background: rgba(0, 0, 0, 0.38);
  9185. display: block;
  9186. color: #fff;
  9187. border-radius: 40px;
  9188. text-align: center;
  9189. line-height: 30px;
  9190. }
  9191. .steps_active {
  9192. background: #3d67bc !important;
  9193. }
  9194. .info_steps span:nth-child(2) {
  9195. margin-left: 5px;
  9196. }
  9197. .right {
  9198. height: 100%;
  9199. width: 100%;
  9200. display: flex;
  9201. overflow: hidden;
  9202. }
  9203. .basic_box {
  9204. margin: 0 auto;
  9205. position: relative;
  9206. padding: 0 20px 0 20px;
  9207. }
  9208. .basic_box_success {
  9209. width: 100%;
  9210. min-height: 455px;
  9211. padding: 50px 0;
  9212. position: relative;
  9213. text-align: center;
  9214. border-bottom: 1px solid #bfbfbf;
  9215. box-sizing: border-box;
  9216. display: flex;
  9217. align-items: center;
  9218. flex-direction: column;
  9219. justify-content: center;
  9220. }
  9221. .info_title {
  9222. font-size: 1.5em;
  9223. margin-right: 25px;
  9224. /* margin: 20px 30px 20px 30px; */
  9225. }
  9226. .bInfo_title {
  9227. text-align: left;
  9228. margin: 10px 0;
  9229. }
  9230. .small_title {
  9231. font-size: 14px;
  9232. line-height: 40px;
  9233. }
  9234. .chapter_beizhu {
  9235. font-size: 12px;
  9236. font-weight: bold;
  9237. float: right;
  9238. color: rgb(128, 128, 128);
  9239. margin-top: 5px;
  9240. }
  9241. .chapter_uploadBox1 {
  9242. text-align: left;
  9243. background-color: rgb(242, 242, 242);
  9244. width: 100%;
  9245. height: 67px;
  9246. padding: 0px 15px;
  9247. border-radius: 8px;
  9248. overflow: hidden;
  9249. font-size: 16px;
  9250. box-sizing: border-box;
  9251. position: relative;
  9252. }
  9253. .chapter_add {
  9254. width: 100%;
  9255. height: 32px;
  9256. margin-top: 15px;
  9257. cursor: pointer;
  9258. }
  9259. .chapter_add_l {
  9260. margin-left: 5px;
  9261. width: 30px;
  9262. height: 30px;
  9263. float: left;
  9264. border: 1px solid #aaa;
  9265. color: #aaa;
  9266. border-radius: 50%;
  9267. font-size: 25px;
  9268. text-align: center;
  9269. }
  9270. .chapter_add_r {
  9271. font-size: 18px;
  9272. height: 40px;
  9273. line-height: 30px;
  9274. text-indent: 10px;
  9275. color: #aaa;
  9276. }
  9277. .chapter_add_r span {
  9278. font-size: 12px;
  9279. color: rgb(204, 204, 204);
  9280. }
  9281. .chapter_add_input {
  9282. display: none;
  9283. }
  9284. .line {
  9285. width: 85%;
  9286. margin: 0 auto;
  9287. border-top: 1px solid #e5e5e5;
  9288. margin-top: 20px;
  9289. }
  9290. .info_btnBox {
  9291. width: 100%;
  9292. display: flex;
  9293. justify-content: space-evenly;
  9294. margin: 10px 0 10px 0;
  9295. }
  9296. .info_btn,
  9297. .teacherWord {
  9298. color: #fff;
  9299. background-color: #0f7eff;
  9300. padding: 8px 24px;
  9301. font-size: 0.9375rem;
  9302. box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%), 0px 2px 2px 0px rgb(0 0 0 / 14%),
  9303. 0px 3px 1px -2px rgb(0 0 0 / 12%);
  9304. min-width: 64px;
  9305. font-weight: 500;
  9306. border-radius: 4px;
  9307. box-sizing: border-box;
  9308. border: none;
  9309. cursor: pointer;
  9310. }
  9311. .teacherWord {
  9312. width: 105px !important;
  9313. text-align: center !important;
  9314. line-height: 36px !important;
  9315. padding: 0 !important;
  9316. font-size: 14px !important;
  9317. margin: 10px 0 !important;
  9318. }
  9319. .wordTeacher {
  9320. display: flex;
  9321. flex-direction: column;
  9322. width: 20%;
  9323. text-align: center;
  9324. font-size: 14px;
  9325. margin: 30px 30px 0 10px;
  9326. background: #fff;
  9327. position: relative;
  9328. border-radius: 5px;
  9329. padding: 25px 0px;
  9330. }
  9331. .wordPic {
  9332. margin: 0 auto;
  9333. width: 60px;
  9334. height: 60px;
  9335. cursor: pointer;
  9336. }
  9337. .deleteWord {
  9338. width: 22px;
  9339. height: 22px;
  9340. position: absolute;
  9341. right: 5px;
  9342. top: -15px;
  9343. cursor: pointer;
  9344. display: none;
  9345. z-index: 999;
  9346. }
  9347. .wordPic > img,
  9348. .deleteWord > img,
  9349. .addToolImg > img {
  9350. width: 100%;
  9351. height: 100%;
  9352. }
  9353. .info_btn:hover {
  9354. background-color: #4f7cd5 !important;
  9355. }
  9356. .cru_selectBox {
  9357. display: flex;
  9358. margin: 24px 0 10px;
  9359. flex-wrap: nowrap;
  9360. white-space: nowrap;
  9361. overflow: auto;
  9362. position: relative;
  9363. height: 47px;
  9364. }
  9365. .cru_selectBox::-webkit-scrollbar {
  9366. /*滚动条整体样式*/
  9367. width: 6px;
  9368. /*高宽分别对应横竖滚动条的尺寸*/
  9369. height: 6px;
  9370. }
  9371. /*定义滚动条轨道 内阴影+圆角*/
  9372. .cru_selectBox::-webkit-scrollbar-track {
  9373. border-radius: 10px;
  9374. background-color: #eee;
  9375. }
  9376. /*定义滑块 内阴影+圆角*/
  9377. .cru_selectBox::-webkit-scrollbar-thumb {
  9378. border-radius: 10px;
  9379. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  9380. background-color: rgba(0, 0, 0, 0.1);
  9381. }
  9382. .cru_line {
  9383. position: absolute;
  9384. bottom: 0px;
  9385. transition: all 0.5s;
  9386. left: 0px;
  9387. width: 125px;
  9388. margin-left: -25px;
  9389. }
  9390. .cru_select {
  9391. font-size: 21px;
  9392. margin-right: 37px;
  9393. margin-left: 5px;
  9394. cursor: pointer;
  9395. color: #a6a6a6;
  9396. }
  9397. .cru_selected {
  9398. color: #0b7fc2 !important;
  9399. }
  9400. .chapter_contentbox {
  9401. display: flex;
  9402. align-items: center;
  9403. margin-top: 15px;
  9404. }
  9405. .chapter_contentbox > div:nth-child(1) {
  9406. /* width: 150px; */
  9407. margin: 0px;
  9408. /* font-size: 2em; */
  9409. color: black;
  9410. display: block;
  9411. white-space: nowrap;
  9412. overflow: hidden;
  9413. text-overflow: ellipsis;
  9414. /* font-weight: 600; */
  9415. margin-right: 20px;
  9416. font-size: 18px;
  9417. }
  9418. .chapter_contentbox > div:nth-child(2) {
  9419. width: 380px;
  9420. }
  9421. .chapter_contentbox > div:nth-child(3),
  9422. .remove {
  9423. background-image: url("../../../assets/remove.png");
  9424. cursor: pointer;
  9425. opacity: 0.5;
  9426. width: 40px !important;
  9427. height: 50px;
  9428. background-repeat: no-repeat;
  9429. background-position: 5px 10px;
  9430. }
  9431. .remove1 {
  9432. background-image: url("../../../assets/remove1.png");
  9433. background-repeat: no-repeat;
  9434. background-position: 5px 10px;
  9435. width: 40px;
  9436. height: 50px;
  9437. cursor: pointer;
  9438. }
  9439. .binfo_input {
  9440. font: inherit;
  9441. color: currentColor;
  9442. width: 100%;
  9443. margin: 0;
  9444. /* padding: 15px 14px; */
  9445. padding: 8px 14px;
  9446. display: block;
  9447. min-width: 0;
  9448. outline: none;
  9449. box-sizing: content-box;
  9450. background: none;
  9451. border: 1px solid rgba(0, 0, 0, 0.23);
  9452. border-radius: 4px;
  9453. box-sizing: border-box;
  9454. background: #fff;
  9455. font-size: 18px;
  9456. }
  9457. .binfo_input:focus-visible {
  9458. border: 1px solid rgba(61, 103, 188);
  9459. }
  9460. .time {
  9461. display: flex;
  9462. margin: 35px 0 80px 0;
  9463. }
  9464. .chapter_btnbox {
  9465. width: 160px;
  9466. border-radius: 5px;
  9467. border: 2px dashed gray;
  9468. display: flex;
  9469. padding: 8px 50px;
  9470. align-items: center;
  9471. justify-content: center;
  9472. margin: 30px auto 0;
  9473. cursor: pointer;
  9474. }
  9475. .icon_add {
  9476. position: relative;
  9477. width: 24px;
  9478. padding-top: 20px;
  9479. border-radius: 100%;
  9480. border-width: 2px;
  9481. border-style: solid;
  9482. border-color: gray;
  9483. }
  9484. .icon_add i:nth-child(1) {
  9485. position: absolute;
  9486. left: 50%;
  9487. top: 50%;
  9488. height: 60%;
  9489. transform: translate(-50%, -50%);
  9490. border-width: 1px;
  9491. border-style: solid;
  9492. border-color: inherit;
  9493. }
  9494. .icon_add i:nth-child(2) {
  9495. position: absolute;
  9496. top: 50%;
  9497. left: 50%;
  9498. width: 60%;
  9499. transform: translate(-50%, -50%);
  9500. border-width: 1px;
  9501. border-style: solid;
  9502. border-color: inherit;
  9503. }
  9504. .chapter_btn_w {
  9505. font-size: 0.9375rem;
  9506. font-weight: bold;
  9507. color: gray;
  9508. margin-left: 20px;
  9509. }
  9510. .disUoloadSty >>> .el-icon-plus {
  9511. display: none !important;
  9512. /* 上传按钮隐藏 */
  9513. }
  9514. .imgLeft {
  9515. margin: 15px 0;
  9516. }
  9517. .add_info_box {
  9518. margin: 20px 0;
  9519. }
  9520. .add_info_box button {
  9521. margin: 0 10px 10px 0;
  9522. }
  9523. .add_chapters_box {
  9524. text-align: left;
  9525. background-color: rgb(232 234 237);
  9526. width: 100%;
  9527. padding: 0px 15px;
  9528. border-radius: 15px;
  9529. font-size: 16px;
  9530. box-sizing: border-box;
  9531. position: relative;
  9532. padding: 0 10px 5px 10px;
  9533. height: 185px;
  9534. overflow-y: auto;
  9535. overflow-x: hidden;
  9536. }
  9537. .homework_box {
  9538. display: flex;
  9539. align-items: flex-start;
  9540. flex-wrap: wrap;
  9541. margin: 15px 0 0 0;
  9542. flex-direction: column;
  9543. align-content: flex-start;
  9544. }
  9545. .course_homework {
  9546. display: flex;
  9547. justify-content: center;
  9548. flex-direction: row;
  9549. align-items: center;
  9550. margin: 0 10px 0 0;
  9551. }
  9552. .course_homework >>> .el-input__inner {
  9553. width: 140px;
  9554. margin-left: 15px;
  9555. }
  9556. .chapter_upload_move {
  9557. position: relative;
  9558. background-color: #fff;
  9559. position: absolute;
  9560. width: 100%;
  9561. top: 0px;
  9562. left: 0px;
  9563. border: 1px solid #eee;
  9564. border-radius: 5px;
  9565. transition: width 2s;
  9566. -moz-transition: width 2s;
  9567. -webkit-transition: width 2s;
  9568. -o-transition: width 2s;
  9569. }
  9570. .chapter_upload_l_i {
  9571. background-image: url("../../../assets/icon.png");
  9572. background-position: 3px -165px;
  9573. width: 30px;
  9574. height: 30px;
  9575. margin: 10px auto 0 auto;
  9576. }
  9577. .left_first {
  9578. display: flex;
  9579. flex-direction: column;
  9580. flex-wrap: nowrap;
  9581. }
  9582. .right_first {
  9583. width: 100%;
  9584. height: 100%;
  9585. margin-top: 15px;
  9586. }
  9587. .right_title {
  9588. height: 30px;
  9589. padding: 15px 0 15px 20px;
  9590. border-bottom: 1px solid #f2f2f2;
  9591. font-size: 1.5em;
  9592. font-weight: bold;
  9593. color: #0f7eff;
  9594. margin: 0 auto;
  9595. }
  9596. .people {
  9597. border: 1px solid rgb(229 229 229);
  9598. height: 495px;
  9599. border-radius: 5px;
  9600. width: 100%;
  9601. overflow: auto;
  9602. }
  9603. .people_top {
  9604. display: flex;
  9605. width: 100%;
  9606. /* justify-content: space-between; */
  9607. /* align-items: center; */
  9608. flex-direction: column;
  9609. padding: 10px 25px 0;
  9610. box-sizing: border-box;
  9611. }
  9612. .people_nav,
  9613. .people_top_right {
  9614. /* padding: 20px 0 0 20px; */
  9615. }
  9616. .people_top_right {
  9617. height: 40px;
  9618. margin-bottom: 10px;
  9619. }
  9620. .people_search {
  9621. display: flex;
  9622. position: relative;
  9623. }
  9624. .people_search >>> .el-input__inner {
  9625. /* height: 25px; */
  9626. width: 95%;
  9627. }
  9628. .search_img {
  9629. width: 20px;
  9630. height: 20px;
  9631. position: absolute;
  9632. right: 30px;
  9633. top: 50%;
  9634. transform: translateY(-50%);
  9635. }
  9636. .search_img > img {
  9637. width: 100%;
  9638. height: 100%;
  9639. }
  9640. .people_name {
  9641. display: flex;
  9642. justify-content: flex-start;
  9643. padding: 10px 0 0 25px;
  9644. flex-direction: column;
  9645. flex-wrap: wrap;
  9646. }
  9647. .people_name >>> .el-checkbox {
  9648. width: 100%;
  9649. display: flex;
  9650. align-items: center;
  9651. margin-bottom: 10px;
  9652. }
  9653. .people_name >>> .el-checkbox__label {
  9654. text-overflow: ellipsis;
  9655. overflow: hidden;
  9656. width: 100%;
  9657. }
  9658. .right_img {
  9659. width: 150px;
  9660. height: 150px;
  9661. margin: 0 auto;
  9662. }
  9663. .right_img > img {
  9664. width: 100%;
  9665. height: 100%;
  9666. }
  9667. .number {
  9668. margin-top: 20px;
  9669. color: #4aa6ff;
  9670. text-decoration: underline;
  9671. }
  9672. .success_button {
  9673. display: flex;
  9674. text-align: center;
  9675. margin: 5% 0 auto;
  9676. flex-direction: row;
  9677. justify-content: center;
  9678. }
  9679. .look_course {
  9680. margin-right: 40px;
  9681. background: #3d67bc;
  9682. width: 200px;
  9683. height: 35px;
  9684. line-height: 35px;
  9685. color: #fff;
  9686. text-align: center;
  9687. font-size: 14px;
  9688. border-radius: 5px;
  9689. cursor: pointer;
  9690. }
  9691. .attend_others {
  9692. width: 250px;
  9693. background: #4fb13c;
  9694. height: 35px;
  9695. line-height: 35px;
  9696. color: #fff;
  9697. text-align: center;
  9698. font-size: 14px;
  9699. border-radius: 5px;
  9700. cursor: pointer;
  9701. }
  9702. .dialog_diy2 >>> .el-dialog__body {
  9703. text-align: center;
  9704. }
  9705. .write_togother {
  9706. position: absolute;
  9707. right: 45px;
  9708. display: flex;
  9709. top: 5%;
  9710. }
  9711. .write_people {
  9712. font-size: 14px;
  9713. line-height: 50px;
  9714. padding-right: 10px;
  9715. }
  9716. .end_write {
  9717. background: #3d67bc;
  9718. color: #fff;
  9719. width: 100px;
  9720. height: 35px;
  9721. line-height: 35px;
  9722. text-align: center;
  9723. font-size: 14px;
  9724. border-radius: 5px;
  9725. cursor: pointer;
  9726. }
  9727. .chapter_upload {
  9728. height: 50px;
  9729. margin-top: 12px;
  9730. position: relative;
  9731. display: flex;
  9732. align-items: center;
  9733. width: 100%;
  9734. min-height: 50px;
  9735. }
  9736. .chapter_upload_t {
  9737. background-color: #fff;
  9738. position: absolute;
  9739. height: 100%;
  9740. top: 0px;
  9741. left: 0px;
  9742. border-radius: 40px;
  9743. box-sizing: border-box;
  9744. box-shadow: 0 0 3px 3px #dfdfdf;
  9745. }
  9746. .chapter_upload_o {
  9747. width: 100%;
  9748. height: 100%;
  9749. position: relative;
  9750. z-index: 1;
  9751. }
  9752. .chapter_upload_ic {
  9753. height: 30px;
  9754. float: right;
  9755. }
  9756. .chapter_upload_ic_l {
  9757. width: 50px;
  9758. height: 50px;
  9759. float: left;
  9760. }
  9761. .chapter_upload_ic_l div {
  9762. width: 30px;
  9763. height: 35px;
  9764. background: url("../../../assets/icon/icon.png");
  9765. }
  9766. .chapter_upload_ic_r {
  9767. width: 50px;
  9768. height: 50px;
  9769. float: left;
  9770. margin-left: 0px;
  9771. display: flex;
  9772. align-items: center;
  9773. }
  9774. .chapter_upload_ic_r div {
  9775. width: 25px;
  9776. height: 25px;
  9777. background-image: url("../../../assets/delete.png");
  9778. background-size: 100% 100%;
  9779. }
  9780. .chapter_upload_n {
  9781. display: flex;
  9782. text-indent: 10px;
  9783. text-decoration: none;
  9784. text-overflow: ellipsis;
  9785. white-space: nowrap;
  9786. overflow: hidden;
  9787. width: 55%;
  9788. margin-left: 10px;
  9789. cursor: pointer;
  9790. margin-top: 2px;
  9791. }
  9792. .chapter_upload_l_i1 {
  9793. background-image: url("../../../assets/icon/video.png");
  9794. width: 28px;
  9795. height: 28px;
  9796. background-size: 100% 100%;
  9797. }
  9798. .chapter_upload_l_i5 {
  9799. background-image: url("../../../assets/icon/word.png");
  9800. width: 24px;
  9801. height: 24px;
  9802. background-size: 100% 100%;
  9803. }
  9804. .chapter_upload_l_i8 {
  9805. background-image: url("../../../assets/icon/line.png");
  9806. width: 24px;
  9807. height: 24px;
  9808. background-size: 100% 100%;
  9809. }
  9810. .chapter_upload_ud {
  9811. display: flex;
  9812. flex-direction: column;
  9813. margin-left: 5px;
  9814. justify-content: center;
  9815. }
  9816. .chapter_upload_up {
  9817. background-image: url("../../../assets/icon/up.png");
  9818. width: 17px;
  9819. height: 15px;
  9820. background-size: 100% 100%;
  9821. cursor: pointer;
  9822. }
  9823. .chapter_upload_down {
  9824. background-image: url("../../../assets/icon/down.png");
  9825. width: 17px;
  9826. height: 15px;
  9827. margin: 2px auto 0 auto;
  9828. background-size: 100% 100%;
  9829. cursor: pointer;
  9830. }
  9831. .addWordStyle {
  9832. display: flex;
  9833. flex-direction: row;
  9834. justify-content: flex-start;
  9835. overflow-x: auto;
  9836. white-space: nowrap;
  9837. flex-wrap: wrap;
  9838. }
  9839. /* table 样式 */
  9840. .cont >>> table {
  9841. border-top: 1px solid #ccc;
  9842. border-left: 1px solid #ccc;
  9843. }
  9844. .cont >>> table td,
  9845. .cont >>> table th {
  9846. border-bottom: 1px solid #ccc;
  9847. border-right: 1px solid #ccc;
  9848. /* padding: 20px 5px; */
  9849. padding: 5px 10px;
  9850. max-width: 0px;
  9851. height: 30px;
  9852. vertical-align: baseline;
  9853. }
  9854. .cont >>> table th {
  9855. border-bottom: 2px solid #ccc;
  9856. text-align: center;
  9857. }
  9858. /* blockquote 样式 */
  9859. .cont >>> blockquote {
  9860. display: block;
  9861. border-left: 8px solid #d0e5f2;
  9862. padding: 5px 10px;
  9863. margin: 10px 0;
  9864. line-height: 1.4;
  9865. font-size: 100%;
  9866. background-color: #f1f1f1;
  9867. }
  9868. /* code 样式 */
  9869. .cont >>> code {
  9870. display: inline-block;
  9871. *display: inline;
  9872. *zoom: 1;
  9873. background-color: #f1f1f1;
  9874. border-radius: 3px;
  9875. padding: 3px 5px;
  9876. margin: 0 3px;
  9877. }
  9878. .cont >>> pre code {
  9879. display: block;
  9880. }
  9881. /* ul ol 样式 */
  9882. .cont >>> ul,
  9883. ol {
  9884. margin: 10px 0 10px 20px;
  9885. }
  9886. .wordbox {
  9887. display: flex;
  9888. flex-wrap: wrap;
  9889. cursor: pointer;
  9890. width: 100%;
  9891. }
  9892. .checkword {
  9893. width: 22px;
  9894. height: 22px;
  9895. margin: 10px auto 0;
  9896. cursor: pointer;
  9897. }
  9898. .checkword img {
  9899. width: 100%;
  9900. }
  9901. .stepBg {
  9902. display: flex;
  9903. flex-direction: column;
  9904. justify-content: space-between;
  9905. align-items: center;
  9906. background: #fff;
  9907. width: 300px;
  9908. margin: 0 25px 0 0;
  9909. }
  9910. .stepTop {
  9911. min-width: 300px;
  9912. width: 300px;
  9913. /* border-radius: 10px; */
  9914. display: flex;
  9915. flex-direction: column;
  9916. justify-content: flex-start;
  9917. align-items: center;
  9918. flex-wrap: nowrap;
  9919. background: #fff;
  9920. /* top: 18%; */
  9921. }
  9922. .stepTop > div {
  9923. height: 80px;
  9924. width: 85%;
  9925. cursor: pointer;
  9926. margin: 10px 0;
  9927. border-radius: 10px;
  9928. }
  9929. .first,
  9930. .second,
  9931. .third,
  9932. .four {
  9933. background: #4a83d0;
  9934. height: 90px;
  9935. color: #fff;
  9936. display: flex;
  9937. flex-direction: row;
  9938. align-items: center;
  9939. justify-content: center;
  9940. }
  9941. .first > div:nth-child(1),
  9942. .second > div:nth-child(1),
  9943. .third > div:nth-child(1),
  9944. .four > div:nth-child(1) {
  9945. margin: 5px 10px 0 0;
  9946. width: 2rem;
  9947. }
  9948. .firstNo,
  9949. .secondNo,
  9950. .thirdNo,
  9951. .fourNo {
  9952. background: #e7e7e7;
  9953. color: #adadad;
  9954. display: flex;
  9955. flex-direction: row;
  9956. align-items: center;
  9957. justify-content: center;
  9958. }
  9959. .firstNo > div:nth-child(1),
  9960. .secondNo > div:nth-child(1),
  9961. .thirdNo > div:nth-child(1),
  9962. .fourNo > div:nth-child(1) {
  9963. margin: 5px 10px 0 0;
  9964. width: 2rem;
  9965. }
  9966. .uploadWidth >>> .el-upload {
  9967. width: 60px;
  9968. height: 60px;
  9969. position: relative;
  9970. }
  9971. .addPeople {
  9972. background: #fa6060;
  9973. width: 150px;
  9974. height: 40px;
  9975. color: #fff;
  9976. border-radius: 5px;
  9977. text-align: center;
  9978. line-height: 40px;
  9979. font-size: 14px;
  9980. cursor: pointer;
  9981. margin-top: 20px;
  9982. }
  9983. .kcImg {
  9984. width: 60px;
  9985. margin-left: 10px;
  9986. }
  9987. .zyImg {
  9988. width: 55px;
  9989. margin: 0 10px;
  9990. }
  9991. .deleteZy {
  9992. width: 20px;
  9993. position: absolute;
  9994. top: 5px;
  9995. right: 5px;
  9996. cursor: pointer;
  9997. }
  9998. .kcImg > img,
  9999. .zyImg > img,
  10000. .deleteZy > img {
  10001. width: 100%;
  10002. height: 100%;
  10003. }
  10004. .zyBox {
  10005. display: flex;
  10006. flex-direction: row;
  10007. align-items: center;
  10008. background: #67d37d;
  10009. color: #fff;
  10010. width: 210px;
  10011. margin: 20px 20px 0 0;
  10012. border-radius: 10px;
  10013. height: 70px;
  10014. position: relative;
  10015. }
  10016. .upCss {
  10017. display: flex;
  10018. flex-direction: row;
  10019. justify-content: flex-start;
  10020. }
  10021. .upCss >>> .el-icon-plus {
  10022. position: none !important;
  10023. width: 200px;
  10024. height: 100px;
  10025. display: flex;
  10026. flex-wrap: nowrap;
  10027. flex-direction: column;
  10028. align-items: center;
  10029. justify-content: center;
  10030. border: 1px dashed #ccc;
  10031. min-width: 78px;
  10032. min-height: 100px;
  10033. z-index: 999;
  10034. }
  10035. .upCss >>> .el-upload-list__item-name {
  10036. width: 100px;
  10037. white-space: nowrap;
  10038. overflow: hidden;
  10039. text-overflow: ellipsis;
  10040. }
  10041. .addStageImg {
  10042. min-width: 25px;
  10043. min-height: 25px;
  10044. width: 25px;
  10045. height: 25px;
  10046. cursor: pointer;
  10047. }
  10048. .addHW {
  10049. width: 28px;
  10050. height: 28px;
  10051. cursor: pointer;
  10052. }
  10053. .addStageImg > img,
  10054. .addHW > img {
  10055. width: 100%;
  10056. height: 100%;
  10057. }
  10058. .addNewPP >>> .el-dialog__body {
  10059. padding: 5px 20px;
  10060. }
  10061. .isHeight {
  10062. height: 680px;
  10063. }
  10064. .toolChoose {
  10065. display: flex;
  10066. /* width: 100%; */
  10067. flex-direction: row;
  10068. flex-wrap: wrap;
  10069. }
  10070. .tool {
  10071. display: flex;
  10072. flex-direction: column;
  10073. flex-wrap: nowrap;
  10074. width: fit-content;
  10075. margin: 10px 0 10px 0;
  10076. align-items: center;
  10077. }
  10078. .tool + .tool {
  10079. margin-right: 45px;
  10080. }
  10081. .whiteBIcon {
  10082. width: 80px;
  10083. cursor: pointer;
  10084. display: flex;
  10085. flex-direction: column;
  10086. flex-wrap: nowrap;
  10087. align-items: center;
  10088. }
  10089. .whiteBIcon > img,
  10090. .toolIcon > img,
  10091. .arrow > img {
  10092. width: 100%;
  10093. height: 100%;
  10094. }
  10095. .check img {
  10096. width: 20px;
  10097. height: 20px;
  10098. }
  10099. .whiteBIcon > img {
  10100. box-shadow: 0px 4px 8px 0px rgb(44 133 255 / 14%);
  10101. border-radius: 15px;
  10102. }
  10103. .check {
  10104. /* width: 20px;
  10105. height: 20px; */
  10106. cursor: pointer;
  10107. margin: 10px 0;
  10108. }
  10109. .checkDiv {
  10110. display: flex;
  10111. align-items: center;
  10112. }
  10113. .checkDiv span {
  10114. margin-left: 5px;
  10115. color: #858585;
  10116. }
  10117. .customWidth >>> .el-dialog {
  10118. min-width: 500px !important;
  10119. }
  10120. .a_addBox {
  10121. margin: 10px 0;
  10122. background: #fff;
  10123. padding: 15px;
  10124. max-height: 600px;
  10125. overflow: auto;
  10126. }
  10127. .a_add_box {
  10128. border-bottom: 2px solid #eee;
  10129. padding-bottom: 10px;
  10130. }
  10131. .a_add_head {
  10132. display: flex;
  10133. align-items: center;
  10134. justify-content: space-between;
  10135. margin: 10px 0;
  10136. font-size: 18px;
  10137. }
  10138. .a_add_checkType {
  10139. margin-top: 10px;
  10140. display: flex;
  10141. font-size: 16px;
  10142. }
  10143. .a_add_checkType span {
  10144. box-sizing: border-box;
  10145. padding: 0 0 5px 0;
  10146. cursor: pointer;
  10147. }
  10148. .a_add_checkType span + span {
  10149. margin-left: 10px;
  10150. }
  10151. .a_add_checkType .active {
  10152. border-bottom: 2px solid #409eff;
  10153. color: #409eff;
  10154. }
  10155. .a_add_head .a_add_head_input {
  10156. width: 300px;
  10157. }
  10158. .a_add_head .a_add_head_div {
  10159. display: flex;
  10160. align-items: center;
  10161. justify-content: space-between;
  10162. }
  10163. .a_add_body {
  10164. display: flex;
  10165. /* align-items: center; */
  10166. align-items: flex-end;
  10167. }
  10168. .a_add_input {
  10169. display: flex;
  10170. align-items: center;
  10171. flex-wrap: wrap;
  10172. }
  10173. .a_add_input_choice {
  10174. flex-direction: column;
  10175. margin-right: 10px;
  10176. }
  10177. .a_add_input_choice >>> .el-radio {
  10178. display: flex;
  10179. align-items: center;
  10180. flex-direction: row-reverse;
  10181. margin: 10px 0 0 0;
  10182. }
  10183. .a_add_input_choice >>> .el-checkbox {
  10184. display: flex;
  10185. align-items: center;
  10186. flex-direction: row-reverse;
  10187. margin: 10px 0 0 0;
  10188. }
  10189. .width100 {
  10190. width: 100%;
  10191. }
  10192. .a_add_input .a_add_persent {
  10193. width: 100%;
  10194. }
  10195. .a_add_persent_div {
  10196. width: 100%;
  10197. display: flex;
  10198. align-items: center;
  10199. }
  10200. .a_add_persent_div span {
  10201. margin: 5px 0;
  10202. }
  10203. .a_add_persent_div span:nth-child(1) {
  10204. width: 30%;
  10205. }
  10206. .a_add_persent_div span:nth-child(2) {
  10207. width: 7%;
  10208. }
  10209. .a_add_persent_div span:nth-child(3) {
  10210. width: 40%;
  10211. }
  10212. .a_add_body_div {
  10213. display: flex;
  10214. align-items: center;
  10215. justify-content: center;
  10216. /* flex-direction: column; */
  10217. }
  10218. .all_choose {
  10219. display: flex;
  10220. flex-direction: row;
  10221. align-items: flex-start;
  10222. width: 100%;
  10223. }
  10224. .all_choose > span {
  10225. min-width: 80px;
  10226. width: 80px;
  10227. display: block;
  10228. white-space: nowrap;
  10229. overflow: hidden;
  10230. text-overflow: ellipsis;
  10231. text-align-last: justify;
  10232. margin-right: 10px;
  10233. }
  10234. .all_choose >>> .el-checkbox-group {
  10235. display: flex;
  10236. flex-direction: row;
  10237. width: 100%;
  10238. flex-wrap: wrap;
  10239. align-content: center;
  10240. justify-content: flex-start;
  10241. align-items: center;
  10242. margin-top: 3px;
  10243. }
  10244. .all_choose > .el-checkbox-group >>> .el-checkbox {
  10245. margin-bottom: 10px;
  10246. display: flex;
  10247. flex-direction: row;
  10248. align-items: center;
  10249. }
  10250. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label {
  10251. min-width: 80px;
  10252. overflow: hidden;
  10253. width: 80px;
  10254. text-overflow: ellipsis;
  10255. white-space: nowrap;
  10256. }
  10257. .all_choose > .el-checkbox-group > .el-checkbox >>> .el-checkbox__label:hover {
  10258. width: auto;
  10259. }
  10260. .choose > div:nth-child(3) > span {
  10261. /* letter-spacing: 0 !important; */
  10262. }
  10263. .choose {
  10264. display: flex;
  10265. flex-direction: column;
  10266. flex-wrap: nowrap;
  10267. height: 100%;
  10268. justify-content: space-evenly;
  10269. align-items: flex-start;
  10270. }
  10271. .both {
  10272. display: flex;
  10273. flex-direction: row;
  10274. flex-wrap: wrap;
  10275. width: 100%;
  10276. align-items: center;
  10277. justify-content: flex-start;
  10278. margin: 30px 0;
  10279. }
  10280. .subjectBox {
  10281. display: flex;
  10282. flex-wrap: wrap;
  10283. width: 100%;
  10284. align-items: center;
  10285. }
  10286. .subjectList {
  10287. }
  10288. .subjectBtn {
  10289. margin-left: 10px;
  10290. border-radius: 5px;
  10291. border: 1px dashed #bfbfbf;
  10292. padding: 2px 5px;
  10293. cursor: pointer;
  10294. font-size: 14px;
  10295. color: #545454;
  10296. }
  10297. .notice >>> .el-dialog {
  10298. width: 500px !important;
  10299. text-align: center;
  10300. }
  10301. .notice >>> .el-button {
  10302. margin-top: 20px;
  10303. }
  10304. .whiteBg {
  10305. background: #fff;
  10306. border-radius: 10px;
  10307. }
  10308. .chooseWho {
  10309. display: flex;
  10310. width: 380px;
  10311. flex-direction: row;
  10312. flex-wrap: nowrap;
  10313. justify-content: space-between;
  10314. padding-bottom: 10px;
  10315. }
  10316. .chooseWho > div {
  10317. cursor: pointer;
  10318. padding-bottom: 10px;
  10319. font-weight: bold;
  10320. }
  10321. .isChooseActive {
  10322. color: #3e88f4;
  10323. border-bottom: 2px solid #2f80f3;
  10324. }
  10325. .toolSort {
  10326. display: flex;
  10327. flex-direction: row;
  10328. flex-wrap: wrap;
  10329. justify-content: flex-start;
  10330. align-items: flex-start;
  10331. }
  10332. .toolSort > div {
  10333. margin-right: 45px;
  10334. }
  10335. .tools {
  10336. width: 100%;
  10337. display: flex;
  10338. flex-direction: column;
  10339. flex-wrap: nowrap;
  10340. align-items: flex-start;
  10341. }
  10342. .leftTools,
  10343. .rightTools {
  10344. width: 50%;
  10345. }
  10346. .rightTools {
  10347. display: flex;
  10348. flex-direction: row;
  10349. flex-wrap: nowrap;
  10350. justify-content: space-around;
  10351. }
  10352. .firstToolList {
  10353. display: flex;
  10354. flex-direction: column;
  10355. flex-wrap: nowrap;
  10356. align-items: center;
  10357. }
  10358. .iconList {
  10359. display: flex;
  10360. flex-direction: row;
  10361. flex-wrap: wrap;
  10362. justify-content: flex-start;
  10363. align-items: center;
  10364. margin: 20px 0 5px 0;
  10365. width: 240px;
  10366. min-width: 240px;
  10367. }
  10368. .iconTool {
  10369. display: flex;
  10370. flex-direction: column;
  10371. flex-wrap: nowrap;
  10372. align-items: center;
  10373. justify-content: flex-start;
  10374. margin: 15px 10px;
  10375. }
  10376. .toolIcon {
  10377. width: 50px;
  10378. }
  10379. .taskBorder {
  10380. border: 1px solid #e1e1e1;
  10381. border-radius: 10px;
  10382. margin-top: 20px;
  10383. min-height: 690px;
  10384. position: relative;
  10385. background: #fbfbfb;
  10386. }
  10387. .smallTaskBorder {
  10388. height: 170px;
  10389. min-height: 170px !important;
  10390. overflow: hidden;
  10391. }
  10392. .taskBorder > div {
  10393. padding: 30px 0 10px 30px;
  10394. }
  10395. .addTaskBorder {
  10396. border: 2px solid #e1e1e1;
  10397. border-radius: 10px;
  10398. margin-top: 25px;
  10399. cursor: pointer;
  10400. }
  10401. .addTaskBorder > div {
  10402. margin: 0 auto;
  10403. display: flex;
  10404. align-items: center;
  10405. justify-content: center;
  10406. }
  10407. .addTaskBorder > div > img {
  10408. width: 100px;
  10409. }
  10410. .addTaskBorder > div > span {
  10411. font-size: 23px;
  10412. color: #dbdbdb;
  10413. }
  10414. .task_add_title {
  10415. margin: 50px 0px 10px;
  10416. font-size: 1.5em;
  10417. font-weight: 700;
  10418. color: #0f7eff;
  10419. }
  10420. .task_add_title::after {
  10421. content: "提示:建议不要多账户同时编辑同一个任务";
  10422. font-size: 14px;
  10423. margin-left: 5px;
  10424. font-weight: 400;
  10425. color: #ff3a3a;
  10426. }
  10427. .funBlock {
  10428. display: flex;
  10429. padding: 15px 0;
  10430. flex-direction: row;
  10431. justify-content: flex-end;
  10432. align-items: center;
  10433. position: absolute;
  10434. right: 15px;
  10435. bottom: 35px;
  10436. }
  10437. .fold {
  10438. display: flex;
  10439. margin: 0 10px;
  10440. flex-direction: row;
  10441. align-items: center;
  10442. cursor: pointer;
  10443. }
  10444. .arrow {
  10445. width: 15px;
  10446. height: 15px;
  10447. margin-left: 10px;
  10448. }
  10449. .addToolFunBox {
  10450. display: flex;
  10451. width: 100%;
  10452. align-items: center;
  10453. justify-content: center;
  10454. margin-bottom: 35px;
  10455. }
  10456. .addToolFun + .addToolFun {
  10457. margin-left: 10px;
  10458. }
  10459. .addToolFun {
  10460. display: flex;
  10461. width: 150px;
  10462. flex-direction: row;
  10463. align-items: center;
  10464. justify-content: center;
  10465. border: 1px dashed;
  10466. border-radius: 5px;
  10467. height: 50px;
  10468. /* margin: 35px auto 0; */
  10469. cursor: pointer;
  10470. }
  10471. .addToolImg {
  10472. width: 30px;
  10473. height: 30px;
  10474. margin-right: 20px;
  10475. }
  10476. .addToolsDia >>> .el-dialog__body {
  10477. padding: 20px;
  10478. }
  10479. .addToolsDia >>> .el-dialog__body > .toolChoose {
  10480. padding: 0;
  10481. }
  10482. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools {
  10483. padding: 0;
  10484. border-bottom: none;
  10485. margin-bottom: 0;
  10486. }
  10487. .addToolsDia >>> .el-dialog__body > .toolChoose > .leftTools > .chooseWho {
  10488. width: 100%;
  10489. }
  10490. .lineCss >>> .el-form-item__label {
  10491. width: auto !important;
  10492. }
  10493. .lineCss >>> .el-form-item__content {
  10494. margin-left: 50px !important;
  10495. }
  10496. .newSteps {
  10497. display: flex;
  10498. width: 100% !important;
  10499. height: 80px;
  10500. cursor: pointer;
  10501. margin: 10px 0;
  10502. border-radius: 10px;
  10503. flex-direction: row;
  10504. align-content: center;
  10505. justify-content: center;
  10506. align-items: center;
  10507. margin: 0 !important;
  10508. }
  10509. /* 评价样式 */
  10510. .elist_css {
  10511. padding-bottom: 60px !important;
  10512. }
  10513. .elist_title {
  10514. margin-bottom: 10px;
  10515. }
  10516. .elist_input {
  10517. }
  10518. .elist_input_box {
  10519. display: flex;
  10520. align-items: center;
  10521. flex-wrap: wrap;
  10522. }
  10523. .elist_input_box + .elist_input_box {
  10524. margin-top: 30px;
  10525. }
  10526. .elist_input .elist_input_box input {
  10527. font: inherit;
  10528. color: currentColor;
  10529. /* width: 200px; */
  10530. max-width: 200px;
  10531. padding: 8px 14px;
  10532. display: block;
  10533. min-width: 0;
  10534. outline: none;
  10535. border: 1px solid rgba(0, 0, 0, 0.23);
  10536. border-radius: 4px;
  10537. box-sizing: border-box;
  10538. background: #fff;
  10539. margin: 0 20px 0 0;
  10540. }
  10541. .elist_input .elist_input_box span {
  10542. height: 36px;
  10543. line-height: 36px;
  10544. color: rgb(82, 82, 82);
  10545. min-width: 80px;
  10546. }
  10547. .elist_input .elist_input_box .remove {
  10548. height: 20px;
  10549. width: 20px;
  10550. background-size: 100% 100%;
  10551. background-position: unset;
  10552. margin-left: 5px;
  10553. }
  10554. .elist_input_box >>> .el-rate {
  10555. display: flex;
  10556. height: 36px;
  10557. align-items: center;
  10558. }
  10559. .elist_input_box .elist_inptu_text {
  10560. width: 100%;
  10561. display: flex;
  10562. align-items: center;
  10563. margin-top: 10px;
  10564. }
  10565. .elist_input_box .elist_inptu_text input {
  10566. /* width: 500px; */
  10567. width: 100%;
  10568. max-width: unset;
  10569. }
  10570. .elist_input_box >>> .el-rate__icon {
  10571. font-size: 24px;
  10572. }
  10573. .elist_btn {
  10574. margin-top: 10px;
  10575. }
  10576. .lineTitle {
  10577. margin-top: 15px;
  10578. width: 110px;
  10579. }
  10580. .courseTop {
  10581. display: flex;
  10582. flex-direction: row;
  10583. justify-content: flex-start;
  10584. align-items: center;
  10585. /* width: 100%; */
  10586. width: calc(100% - 20px);
  10587. /* background: rgb(255, 255, 255); */
  10588. /* border-radius: 10px; */
  10589. padding: 20px 0;
  10590. }
  10591. .stepsNav {
  10592. display: flex;
  10593. flex-direction: row;
  10594. justify-content: flex-start;
  10595. align-items: center;
  10596. }
  10597. .stepsWord {
  10598. font-size: 18px;
  10599. color: #fff;
  10600. font-weight: bold;
  10601. margin-left: auto;
  10602. background: rgb(15, 126, 255);
  10603. border-radius: 5px;
  10604. padding: 3px 25px;
  10605. box-sizing: border-box;
  10606. }
  10607. .rightBox {
  10608. width: calc(100% - 20px);
  10609. background: rgb(255, 255, 255);
  10610. border-radius: 10px;
  10611. overflow: auto;
  10612. height: calc(100% - 130px);
  10613. position: relative;
  10614. }
  10615. .e_add_top {
  10616. display: flex;
  10617. justify-content: space-between;
  10618. padding: 20px 20px 0 20px;
  10619. border-radius: 3px;
  10620. background: #fff;
  10621. }
  10622. .e_add_title2 {
  10623. display: flex;
  10624. align-items: center;
  10625. }
  10626. .e_add_title2 span {
  10627. width: 40px;
  10628. }
  10629. .e_add_title {
  10630. display: flex;
  10631. align-items: center;
  10632. color: #b8b8b8;
  10633. font-size: 18px;
  10634. position: relative;
  10635. height: 40px;
  10636. }
  10637. .e_add_title span {
  10638. margin-right: 10px;
  10639. }
  10640. .e_add_title .el_input {
  10641. width: 300px;
  10642. }
  10643. .e_add_title >>> .el-input__inner {
  10644. width: 400px;
  10645. }
  10646. .e_add_btn {
  10647. }
  10648. .e_add_content {
  10649. display: flex;
  10650. width: 100%;
  10651. }
  10652. .e_add_list {
  10653. background: #fff;
  10654. height: 500px;
  10655. width: 210px;
  10656. position: relative;
  10657. margin: 15px 5px 0 0;
  10658. flex-shrink: 0;
  10659. display: flex;
  10660. flex-direction: column;
  10661. }
  10662. .e_add_list_title {
  10663. font-size: 20px;
  10664. width: 100%;
  10665. box-sizing: border-box;
  10666. padding: 15px 40px;
  10667. text-align: center;
  10668. border-bottom: 1px solid #eaeaea;
  10669. position: relative;
  10670. display: flex;
  10671. align-items: center;
  10672. justify-content: center;
  10673. height: 57px;
  10674. background: #f6f6f6;
  10675. }
  10676. .e_add_list_title span {
  10677. overflow: hidden;
  10678. white-space: nowrap;
  10679. text-overflow: ellipsis;
  10680. }
  10681. .e_add_list_title img {
  10682. position: absolute;
  10683. right: 15px;
  10684. width: 25px;
  10685. cursor: pointer;
  10686. top: 50%;
  10687. transform: translateY(-50%);
  10688. }
  10689. .e_add_list_body {
  10690. height: calc(100% - 187px);
  10691. overflow: auto;
  10692. }
  10693. .e_add_list_child {
  10694. width: 100%;
  10695. display: flex;
  10696. align-items: center;
  10697. justify-content: center;
  10698. position: relative;
  10699. box-sizing: border-box;
  10700. padding: 15px 40px;
  10701. text-align: center;
  10702. }
  10703. .e_add_list_child span {
  10704. overflow: hidden;
  10705. white-space: nowrap;
  10706. text-overflow: ellipsis;
  10707. cursor: pointer;
  10708. }
  10709. .e_add_list_child img {
  10710. position: absolute;
  10711. right: 10px;
  10712. width: 21px;
  10713. cursor: pointer;
  10714. top: 50%;
  10715. transform: translateY(-50%);
  10716. }
  10717. .e_add_list_child + .e_add_list_child {
  10718. border-top: 1px solid #eaeaea;
  10719. }
  10720. .e_add_list_child .active {
  10721. color: #409eff;
  10722. }
  10723. .e_add_list_btn {
  10724. position: absolute;
  10725. bottom: 0;
  10726. height: 50px;
  10727. background: rgb(120, 120, 254);
  10728. width: 100%;
  10729. color: #fff;
  10730. font-size: 16px;
  10731. text-align: center;
  10732. line-height: 50px;
  10733. cursor: pointer;
  10734. }
  10735. .e_add_list_detail {
  10736. position: absolute;
  10737. bottom: 0;
  10738. height: 130px;
  10739. background: rgb(120, 120, 254);
  10740. width: 100%;
  10741. color: #fff;
  10742. font-size: 16px;
  10743. display: flex;
  10744. align-items: center;
  10745. justify-content: center;
  10746. }
  10747. .e_add_list_detail textarea {
  10748. height: 90%;
  10749. width: 95%;
  10750. border: none;
  10751. resize: none;
  10752. outline: none;
  10753. padding: 5px;
  10754. box-sizing: border-box;
  10755. }
  10756. .e_add_list_pbox {
  10757. width: 100%;
  10758. }
  10759. .e_add_list_pbox_title {
  10760. height: 50px;
  10761. background: #fff;
  10762. display: flex;
  10763. align-items: center;
  10764. width: 100%;
  10765. box-sizing: border-box;
  10766. padding: 0 20px;
  10767. flex-direction: row;
  10768. flex-wrap: wrap;
  10769. }
  10770. .type_title {
  10771. font-size: 18px;
  10772. font-weight: 700;
  10773. }
  10774. .type_content {
  10775. font-size: 16px;
  10776. margin-left: 30px;
  10777. }
  10778. .type_content span + span {
  10779. margin-left: 20px;
  10780. }
  10781. .type_content span {
  10782. cursor: pointer;
  10783. padding-bottom: 5px;
  10784. box-sizing: border-box;
  10785. }
  10786. .type_content .active {
  10787. color: #409eff;
  10788. border-bottom: 2px solid #409eff;
  10789. }
  10790. .e_add_list_pbox_content {
  10791. height: calc(100% - 50px);
  10792. display: flex;
  10793. align-items: center;
  10794. width: 100%;
  10795. background: #fff;
  10796. }
  10797. .mbCss {
  10798. width: 100%;
  10799. display: flex;
  10800. flex-direction: row;
  10801. flex-wrap: nowrap;
  10802. align-content: center;
  10803. align-items: flex-start;
  10804. justify-content: flex-start;
  10805. }
  10806. .pjCss {
  10807. /* width: 42%; */
  10808. width: calc(100% - 55%);
  10809. display: flex;
  10810. flex-direction: column;
  10811. flex-wrap: nowrap;
  10812. align-items: flex-start;
  10813. margin-top: 1.5%;
  10814. }
  10815. .e_box {
  10816. display: flex;
  10817. flex-wrap: wrap;
  10818. max-height: 500px;
  10819. align-items: flex-start;
  10820. overflow: auto;
  10821. }
  10822. .e_card {
  10823. border: 1px solid #ccc;
  10824. background: #fff;
  10825. margin-right: 20px;
  10826. width: 270px;
  10827. display: flex;
  10828. flex-direction: column;
  10829. align-items: center;
  10830. border-radius: 5px;
  10831. margin-top: 10px;
  10832. text-align: center;
  10833. }
  10834. .e_card_picture {
  10835. margin: 10px 0;
  10836. }
  10837. .e_card_picture > img {
  10838. width: 50px;
  10839. }
  10840. .e_card_name {
  10841. width: 100%;
  10842. padding: 0 10px;
  10843. box-sizing: border-box;
  10844. margin-bottom: 10px;
  10845. overflow: hidden;
  10846. text-overflow: ellipsis;
  10847. white-space: nowrap;
  10848. }
  10849. .e_card_time {
  10850. width: 100%;
  10851. padding: 0 10px;
  10852. box-sizing: border-box;
  10853. font-size: 15px;
  10854. color: #c3c3c3;
  10855. margin-bottom: 10px;
  10856. }
  10857. .e_card_btn {
  10858. height: 40px;
  10859. display: flex;
  10860. align-items: center;
  10861. width: 100%;
  10862. background: rgb(244, 244, 244);
  10863. }
  10864. .e_card_btn:hover {
  10865. background: rgb(221 221 221);
  10866. }
  10867. .e_card_btn span {
  10868. flex: 1 1 auto;
  10869. text-align: center;
  10870. cursor: pointer;
  10871. }
  10872. .addEva {
  10873. border: 1px solid #ccc;
  10874. background: #fff;
  10875. margin-right: 20px;
  10876. width: 270px;
  10877. height: 149px;
  10878. display: flex;
  10879. flex-direction: column;
  10880. align-items: center;
  10881. border-radius: 5px;
  10882. margin-top: 10px;
  10883. text-align: center;
  10884. cursor: pointer;
  10885. justify-content: center;
  10886. }
  10887. .addEva > img {
  10888. width: 50px;
  10889. object-fit: cover;
  10890. }
  10891. .uploadFm {
  10892. border: 1px dashed #ccc;
  10893. width: 202px;
  10894. height: 102px;
  10895. position: relative;
  10896. cursor: pointer;
  10897. }
  10898. .uploadFm > img {
  10899. position: absolute;
  10900. top: 25px;
  10901. left: 35%;
  10902. width: 50px;
  10903. }
  10904. .fileCss {
  10905. width: 100%;
  10906. display: flex;
  10907. flex-direction: row;
  10908. flex-wrap: nowrap;
  10909. justify-content: space-around;
  10910. align-items: center;
  10911. padding-top: 15px;
  10912. }
  10913. .sysPicBox {
  10914. display: flex;
  10915. flex-direction: row;
  10916. flex-wrap: wrap;
  10917. align-content: flex-start;
  10918. height: 435px;
  10919. overflow: auto;
  10920. }
  10921. .sysPic {
  10922. width: 200px;
  10923. height: 115px;
  10924. margin: 0 20px 20px 0;
  10925. cursor: pointer;
  10926. }
  10927. .sysPic > img,
  10928. .isSysPic > img,
  10929. .deletePic > img {
  10930. width: 100%;
  10931. height: 100%;
  10932. object-fit: cover;
  10933. }
  10934. .isSysPic {
  10935. width: 200px;
  10936. height: 115px;
  10937. position: relative;
  10938. }
  10939. .deletePic {
  10940. width: 20px;
  10941. height: 20px;
  10942. position: absolute;
  10943. top: 0;
  10944. right: 0;
  10945. cursor: pointer;
  10946. }
  10947. .select_box1 {
  10948. }
  10949. .select_box1_img {
  10950. background: #fff;
  10951. border-radius: 5px;
  10952. padding: 15px;
  10953. box-sizing: border-box;
  10954. margin-bottom: 20px;
  10955. }
  10956. .select_box1_title {
  10957. padding: 0 0 15px 0;
  10958. border-bottom: 1px solid #eee;
  10959. margin-bottom: 15px;
  10960. }
  10961. .select_box1_title span:nth-child(1) {
  10962. font-size: 16px;
  10963. margin-right: 20px;
  10964. color: #000;
  10965. }
  10966. .select_box1_title span:nth-child(2) {
  10967. font-size: 14px;
  10968. color: rgb(112, 112, 112);
  10969. }
  10970. .select_box1_add_img {
  10971. }
  10972. .select_box1_select {
  10973. background: #fff;
  10974. border-radius: 5px;
  10975. padding: 15px;
  10976. box-sizing: border-box;
  10977. }
  10978. .select_box2 {
  10979. }
  10980. .select_box2_title {
  10981. background: #fff;
  10982. border-radius: 5px;
  10983. padding: 5px 10px;
  10984. box-sizing: border-box;
  10985. margin-bottom: 10px;
  10986. }
  10987. .select_box2_box {
  10988. display: flex;
  10989. height: 500px;
  10990. }
  10991. .select_box2_img {
  10992. width: calc(100% - 310px);
  10993. height: 100%;
  10994. overflow: auto;
  10995. background: #fff;
  10996. border-radius: 5px;
  10997. }
  10998. .select_box2_img img {
  10999. width: 100%;
  11000. }
  11001. .select_box2_answer {
  11002. background: #fff;
  11003. margin-left: 10px;
  11004. border-radius: 5px;
  11005. width: 300px;
  11006. overflow: auto;
  11007. height: 100%;
  11008. display: flex;
  11009. flex-direction: column;
  11010. align-items: center;
  11011. padding-top: 10px;
  11012. box-sizing: border-box;
  11013. }
  11014. .select_box2_answer_box {
  11015. margin: 0 0 10px 0;
  11016. width: 85%;
  11017. }
  11018. .rate_textarea {
  11019. font: inherit;
  11020. color: currentColor;
  11021. width: 100%;
  11022. padding: 8px 14px;
  11023. display: block;
  11024. min-width: 0;
  11025. outline: none;
  11026. border: 1px solid rgba(0, 0, 0, 0.23);
  11027. border-radius: 4px;
  11028. box-sizing: border-box;
  11029. background: #fff;
  11030. margin: 0 20px 0 0;
  11031. resize: none;
  11032. }
  11033. .select_answer_title {
  11034. text-align: left;
  11035. width: 85%;
  11036. margin-bottom: 10px;
  11037. font-size: 18px;
  11038. color: #8e8e8e;
  11039. }
  11040. .mask {
  11041. background-color: rgb(0 0 0 / 30%);
  11042. /* position: fixed; */
  11043. position: absolute;
  11044. top: 0;
  11045. left: 0;
  11046. width: 100%;
  11047. height: 100%;
  11048. z-index: 90;
  11049. display: flex;
  11050. align-items: center;
  11051. justify-content: center;
  11052. }
  11053. .mask2 {
  11054. position: fixed !important;
  11055. z-index: 999999;
  11056. }
  11057. .progressBox {
  11058. width: 300px;
  11059. height: 150px;
  11060. background: #fff;
  11061. border-radius: 10px;
  11062. box-shadow: 0 0 6px 1px #bfbfbf;
  11063. display: flex;
  11064. align-items: center;
  11065. justify-content: center;
  11066. flex-direction: column;
  11067. position: relative;
  11068. color: #6c6c6c;
  11069. }
  11070. .progressBox .lbox {
  11071. height: 80px;
  11072. font-size: 16px;
  11073. display: flex;
  11074. align-items: center;
  11075. }
  11076. .progressBox .lbox img {
  11077. width: 40px;
  11078. margin-right: 20px;
  11079. }
  11080. .progressBox >>> .el-progress-bar__outer {
  11081. background-color: #d1dfff !important;
  11082. }
  11083. .mask .lbox2 {
  11084. height: 100%;
  11085. width: 100%;
  11086. font-size: 19px;
  11087. display: flex;
  11088. align-items: center;
  11089. justify-content: center;
  11090. }
  11091. .mask .lbox2 img {
  11092. width: 40px;
  11093. }
  11094. .updateTips::after {
  11095. content: "协同编辑课程暂不支持修改基本信息,只支持修改阶段内容。";
  11096. font-size: 14px;
  11097. margin-left: 20px;
  11098. font-weight: 400;
  11099. color: #ff3a3a;
  11100. }
  11101. .updateMask {
  11102. width: 100%;
  11103. z-index: 3;
  11104. top: 0;
  11105. position: absolute;
  11106. }
  11107. .t_j_box {
  11108. display: flex;
  11109. }
  11110. .t_j_box span:nth-child(1) {
  11111. width: 15%;
  11112. overflow: hidden;
  11113. margin-right: 10px;
  11114. text-overflow: ellipsis;
  11115. white-space: nowrap;
  11116. }
  11117. .t_j_box span:nth-child(2) {
  11118. min-width: 30px;
  11119. margin-right: 10px;
  11120. }
  11121. .t_j_box span:nth-child(3) {
  11122. width: 38%;
  11123. overflow: hidden;
  11124. text-overflow: ellipsis;
  11125. margin-right: 10px;
  11126. }
  11127. .t_j_box span:nth-child(4) {
  11128. max-width: calc(45% - 60px);
  11129. overflow: hidden;
  11130. text-overflow: ellipsis;
  11131. }
  11132. .sentenBox {
  11133. background: #fff;
  11134. height: 600px;
  11135. overflow: auto;
  11136. background-image: url("../../../assets/icon/conSentences/csBg.png");
  11137. background-position: 102%;
  11138. background-repeat: no-repeat;
  11139. background-size: 60%;
  11140. }
  11141. .addSen {
  11142. background: #409efe;
  11143. width: 90px;
  11144. color: #fff;
  11145. height: 35px;
  11146. text-align: center;
  11147. line-height: 35px;
  11148. border-radius: 5px;
  11149. float: right;
  11150. margin: 10px 20px 0 0;
  11151. cursor: pointer;
  11152. }
  11153. .sentenTop {
  11154. display: flex;
  11155. flex-direction: row;
  11156. flex-wrap: nowrap;
  11157. align-items: center;
  11158. }
  11159. .sentenTop > div:nth-child(2) {
  11160. width: 300px;
  11161. margin: 0 15px;
  11162. }
  11163. .sentenTop > div:nth-child(3) {
  11164. background: #409efe;
  11165. color: #fff;
  11166. width: 65px;
  11167. height: 35px;
  11168. text-align: center;
  11169. line-height: 35px;
  11170. border-radius: 5px;
  11171. cursor: pointer;
  11172. }
  11173. .cardList {
  11174. padding: 30px 0 20px 0;
  11175. display: flex;
  11176. flex-direction: row;
  11177. flex-wrap: wrap;
  11178. align-items: center;
  11179. box-sizing: border-box;
  11180. border-bottom: 1px solid #f4f4f4;
  11181. width: 98%;
  11182. margin: 0 auto;
  11183. }
  11184. .cardBox {
  11185. display: flex;
  11186. flex-direction: row;
  11187. flex-wrap: wrap;
  11188. align-items: center;
  11189. align-content: center;
  11190. }
  11191. .isCard,
  11192. .isCard1 {
  11193. width: 140px;
  11194. height: 65px;
  11195. text-align: center;
  11196. line-height: 65px;
  11197. font-size: 20px;
  11198. cursor: pointer;
  11199. background-image: url("../../../assets/icon/conSentences/titleBorder.png");
  11200. background-size: cover;
  11201. position: relative;
  11202. z-index: 99;
  11203. }
  11204. .isCard1 {
  11205. background-image: url("../../../assets/icon/conSentences/answerBorder.png");
  11206. }
  11207. .isCard:hover .deleteWord {
  11208. display: block;
  11209. }
  11210. .isCard > div:nth-child(1),
  11211. .isCard1 > div:nth-child(1) {
  11212. white-space: nowrap;
  11213. overflow: hidden;
  11214. text-overflow: ellipsis;
  11215. width: 80%;
  11216. margin: 0 auto;
  11217. }
  11218. .card {
  11219. width: 140px;
  11220. height: 65px;
  11221. }
  11222. .card > img {
  11223. width: 100%;
  11224. height: 100%;
  11225. }
  11226. .rightCardBox {
  11227. margin: 10px 0 0 10px;
  11228. }
  11229. .rightCardBox > div:nth-child(1) {
  11230. margin-bottom: 10px;
  11231. }
  11232. .cardCss {
  11233. display: flex;
  11234. flex-direction: column;
  11235. flex-wrap: nowrap;
  11236. align-items: center;
  11237. border-bottom: 3px solid #b4c3d3;
  11238. padding: 0 0 5px 0;
  11239. margin-right: 10px;
  11240. }
  11241. .cardCss > div:nth-child(2) {
  11242. background: #5b7b9d;
  11243. color: #fff;
  11244. width: 20px;
  11245. height: 20px;
  11246. border-radius: 50%;
  11247. text-align: center;
  11248. line-height: 20px;
  11249. }
  11250. .sentenTopBox {
  11251. display: flex;
  11252. flex-direction: row;
  11253. flex-wrap: nowrap;
  11254. align-items: center;
  11255. justify-content: space-between;
  11256. padding: 55px 0 0 20px;
  11257. box-sizing: border-box;
  11258. width: 85%;
  11259. }
  11260. .stepsBottom {
  11261. width: 85%;
  11262. margin-bottom: 20px;
  11263. box-shadow: 0 0 10px 10px #f7f7f7;
  11264. background: #f7f7f7;
  11265. border-radius: 10px;
  11266. overflow: hidden;
  11267. }
  11268. .navTop {
  11269. background: #53749b;
  11270. color: #fff;
  11271. height: 40px;
  11272. line-height: 40px;
  11273. padding-left: 15px;
  11274. font-size: 18px;
  11275. }
  11276. .navBottom {
  11277. background: #6b91b7;
  11278. height: 180px;
  11279. overflow: auto;
  11280. }
  11281. .navTask {
  11282. display: flex;
  11283. flex-direction: row;
  11284. flex-wrap: nowrap;
  11285. align-items: center;
  11286. padding: 5px 5px 5px 0;
  11287. cursor: pointer;
  11288. background: #ffffff;
  11289. width: 95%;
  11290. margin: 10px auto;
  11291. box-sizing: border-box;
  11292. border-radius: 5px;
  11293. }
  11294. .isNavTask {
  11295. /* background: #7e9ebd; */
  11296. }
  11297. .navTask > div:nth-child(1) {
  11298. background: #468fe4;
  11299. color: #fff;
  11300. width: 65px;
  11301. height: 25px;
  11302. line-height: 25px;
  11303. text-align: center;
  11304. border-radius: 5px;
  11305. margin: 0 10px 0 5px;
  11306. font-size: 14px;
  11307. }
  11308. .navTask > div:nth-child(2) {
  11309. /* color: #fff; */
  11310. /* max-width: 130px; */
  11311. width: 130px;
  11312. white-space: nowrap;
  11313. overflow: hidden;
  11314. text-overflow: ellipsis;
  11315. font-size: 15px;
  11316. }
  11317. .groupBox {
  11318. }
  11319. .groupContent + .groupContent {
  11320. margin-top: 30px;
  11321. }
  11322. .groupTitle {
  11323. font-size: 24px;
  11324. color: rgb(80, 80, 80);
  11325. margin-bottom: 20px;
  11326. }
  11327. .groupName {
  11328. display: flex;
  11329. align-items: center;
  11330. }
  11331. .groupn {
  11332. font-size: 15px;
  11333. margin-right: 10px;
  11334. }
  11335. .groupName + .groupName {
  11336. margin-top: 15px;
  11337. }
  11338. .groupBtn {
  11339. margin-left: 10px;
  11340. }
  11341. .groupContent >>> .el-input-number.is-without-controls .el-input__inner {
  11342. text-align: left;
  11343. }
  11344. .toolimg {
  11345. width: 200px;
  11346. border-radius: 10px;
  11347. box-shadow: rgb(223 218 218) 0px 0px 6px 1px;
  11348. cursor: pointer;
  11349. overflow: hidden;
  11350. position: relative;
  11351. }
  11352. .toolimg > img {
  11353. width: 100%;
  11354. height: 105px;
  11355. object-fit: contain;
  11356. }
  11357. .proMan {
  11358. width: 95%;
  11359. margin: 0 auto;
  11360. padding: 0 0 20px;
  11361. margin-top: 20px;
  11362. }
  11363. .proMan .title {
  11364. margin-bottom: 10px;
  11365. display: flex;
  11366. align-items: center;
  11367. }
  11368. .proMan .title img {
  11369. margin-right: 5px;
  11370. height: 17px;
  11371. width: 17px;
  11372. }
  11373. .ed_s >>> .text {
  11374. height: calc(100% - 42px);
  11375. }
  11376. .toolimg_box {
  11377. display: flex;
  11378. flex-wrap: wrap;
  11379. }
  11380. .toolimg {
  11381. margin: 0 20px 20px 0;
  11382. }
  11383. .comment {
  11384. background: #f5f5f5;
  11385. /* border-radius: 0 0 15px 15px; */
  11386. display: flex;
  11387. flex-direction: row;
  11388. flex-wrap: nowrap;
  11389. align-items: center;
  11390. justify-content: flex-end;
  11391. height: 35px;
  11392. }
  11393. .worksName {
  11394. display: flex;
  11395. width: 92%;
  11396. flex-direction: row;
  11397. flex-wrap: nowrap;
  11398. justify-content: space-between;
  11399. align-items: center;
  11400. margin: 0 10px;
  11401. }
  11402. .worksName > div:nth-child(1) {
  11403. width: 120px;
  11404. white-space: nowrap;
  11405. overflow: hidden;
  11406. text-overflow: ellipsis;
  11407. }
  11408. .deleteImg {
  11409. width: 25px !important;
  11410. height: 25px !important;
  11411. cursor: pointer;
  11412. position: absolute;
  11413. top: 10px;
  11414. right: 10px;
  11415. }
  11416. .texttitle {
  11417. background: #1e5cc9;
  11418. /* width: 98%; */
  11419. height: 45px;
  11420. color: #fff;
  11421. line-height: 45px;
  11422. padding-left: 20px;
  11423. box-sizing: border-box;
  11424. }
  11425. .textBox {
  11426. font-size: 20px;
  11427. width: 90%;
  11428. display: flex;
  11429. flex-direction: column;
  11430. align-items: center;
  11431. margin: 20px auto 0;
  11432. }
  11433. .textContent {
  11434. font-size: 18px;
  11435. height: 450px;
  11436. width: 95%;
  11437. overflow: auto;
  11438. line-height: 30px;
  11439. }
  11440. .vedioTaskBox {
  11441. width: 100%;
  11442. display: flex;
  11443. flex-direction: row;
  11444. flex-wrap: nowrap;
  11445. align-items: center;
  11446. }
  11447. .box_course {
  11448. /* width: 60%; */
  11449. width: 81%;
  11450. }
  11451. .wheel {
  11452. width: 100%;
  11453. height: 100%;
  11454. }
  11455. .vedioList {
  11456. /* background: #f2f2f2; */
  11457. background: #fff;
  11458. border: 1px solid #ececec;
  11459. /* width: 38.8%; */
  11460. width: calc(100% - 83%);
  11461. height: 650px;
  11462. border-radius: 10px;
  11463. overflow: hidden;
  11464. }
  11465. .navTitile {
  11466. padding: 0 0px 0 15px;
  11467. background: #1e5cc9;
  11468. color: #fff;
  11469. height: 40px;
  11470. line-height: 40px;
  11471. border-top-left-radius: 10px;
  11472. border-top-right-radius: 10px;
  11473. }
  11474. .navBox {
  11475. background: rgb(255, 255, 255);
  11476. height: calc(100% - 40px);
  11477. padding: 5px 1px 0 1px;
  11478. overflow: auto;
  11479. }
  11480. .vedioTimeBox {
  11481. display: flex;
  11482. flex-direction: row;
  11483. align-items: center;
  11484. flex-wrap: nowrap;
  11485. position: relative;
  11486. }
  11487. .vedioName {
  11488. cursor: pointer;
  11489. margin: 0px 0px 10px 5px;
  11490. white-space: nowrap;
  11491. overflow: hidden;
  11492. text-overflow: ellipsis;
  11493. width: 100%;
  11494. }
  11495. .isClickNav {
  11496. color: #499eef;
  11497. }
  11498. .full_diy >>> .el-dialog {
  11499. margin: 0 !important;
  11500. height: 100%;
  11501. padding: 4px;
  11502. }
  11503. .full_diy >>> .el-dialog__body {
  11504. height: calc(100% - 100px);
  11505. }
  11506. .full_diy2 >>> .el-dialog__body {
  11507. height: calc(100% - 50px);
  11508. padding: 0;
  11509. }
  11510. .queTop {
  11511. display: flex;
  11512. padding: 20px 0 20px 30px;
  11513. width: 100%;
  11514. flex-direction: row;
  11515. justify-content: flex-start;
  11516. align-items: center;
  11517. border-bottom: 1px solid #eeeeee;
  11518. box-sizing: border-box;
  11519. }
  11520. .question {
  11521. width: 40px;
  11522. margin-right: 10px;
  11523. margin-top: 7px;
  11524. }
  11525. .queTitle {
  11526. margin-left: 5px;
  11527. font-size: 25px;
  11528. display: flex;
  11529. align-items: center;
  11530. }
  11531. .addEditor {
  11532. width: 100px;
  11533. height: 30px;
  11534. background: #42cda6;
  11535. color: #fff;
  11536. border-radius: 5px;
  11537. text-align: center;
  11538. line-height: 30px;
  11539. box-shadow: 1px 3px 6px 1px #bfbfbf;
  11540. cursor: pointer;
  11541. }
  11542. .answerWidth {
  11543. width: 250px !important;
  11544. }
  11545. .answerBg {
  11546. background: url("../../../assets/icon/answerBgNew.png") no-repeat;
  11547. background-size: cover;
  11548. width: 100%;
  11549. height: 120px;
  11550. padding: 0 10px;
  11551. box-sizing: border-box;
  11552. color: #fff;
  11553. text-align: center;
  11554. display: flex;
  11555. flex-direction: column;
  11556. flex-wrap: nowrap;
  11557. align-items: center;
  11558. position: relative;
  11559. justify-content: center;
  11560. }
  11561. .answerContent {
  11562. /* width: 215px; */
  11563. max-height: 60px;
  11564. word-break: break-all;
  11565. text-align: center;
  11566. /* white-space: nowrap; */
  11567. overflow: hidden;
  11568. text-overflow: ellipsis;
  11569. /* padding: 23px 0 0; */
  11570. -webkit-line-clamp: 3;
  11571. -webkit-box-orient: vertical;
  11572. display: -webkit-box;
  11573. font-size: 15px;
  11574. }
  11575. .fullStyle >>> .el-dialog__body {
  11576. height: 100% !important;
  11577. }
  11578. .fullStyle >>> .el-dialog,
  11579. .fullStyle {
  11580. width: 100% !important;
  11581. max-width: 100% !important;
  11582. height: 100% !important;
  11583. margin: 0 !important;
  11584. }
  11585. .tcMember + .tcMember::before {
  11586. content: "、";
  11587. }
  11588. .tcMember_box {
  11589. margin-left: 10px;
  11590. border: 1px solid #c0c4cc;
  11591. padding: 10px 14px;
  11592. border-radius: 4px;
  11593. background: #fff;
  11594. cursor: pointer;
  11595. color: #606266;
  11596. font-size: 14px;
  11597. width: 225px;
  11598. overflow: hidden;
  11599. text-overflow: ellipsis;
  11600. white-space: nowrap;
  11601. }
  11602. .upCss >>> .el-upload-list--picture .el-upload-list__item {
  11603. height: auto;
  11604. }
  11605. .upCss >>> .el-upload-list--picture .el-upload-list__item-thumbnail {
  11606. width: 200px;
  11607. height: 100px;
  11608. object-fit: contain;
  11609. background: unset;
  11610. }
  11611. .upCss
  11612. >>> .el-upload-list--picture
  11613. .el-upload-list__item.is-success
  11614. .el-upload-list__item-name {
  11615. display: none;
  11616. }
  11617. .redioStyle >>> .el-radio__input.is-checked + .el-radio__label {
  11618. color: rgb(0 123 255) !important;
  11619. }
  11620. .redioStyle >>> .el-checkbox__input.is-checked + .el-checkbox__label {
  11621. color: rgb(0 123 255) !important;
  11622. }
  11623. .closeCss {
  11624. position: absolute;
  11625. top: 8px;
  11626. right: 8px;
  11627. cursor: pointer;
  11628. width: 20px;
  11629. height: 20px;
  11630. }
  11631. .closeCss > img {
  11632. width: 100%;
  11633. height: 100%;
  11634. }
  11635. .f_size_box {
  11636. display: flex;
  11637. margin: 5px 0px;
  11638. align-items: center;
  11639. color: #6c6c6c;
  11640. }
  11641. .f_size_box img {
  11642. height: 20px;
  11643. }
  11644. .f_size_box > div {
  11645. margin: 0 8px;
  11646. }
  11647. .moveBtn {
  11648. display: flex;
  11649. flex-direction: column;
  11650. align-items: flex-end;
  11651. width: 40px;
  11652. }
  11653. </style>