123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972 |
- <template>
- <div class="app-container home index">
- <div>
- <el-row :gutter="20">
- <el-col :span="16">
- <el-col :span="24" style="padding-left: 0;padding-right: 0; border-radius: 10px;" >
- <div class="block_4 flex-col">
- <div class="group_2 flex-row justify-between">
- <img
- class="thumbnail_5"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszcoe3n1ol6darv33oo7yk46dkwxg567200e550-246c-41b3-9049-dfa3474dbd43"
- />
- <span class="text_3">告警内容统计</span>
- </div>
- <div class="group_3 flex-row">
- <div class="text-wrapper_1 flex-col justify-between">
- <span class="text_4">本月告警总数</span>
- <span class="text_5">17</span>
- <div style="display: flex; margin-top:20px;">
- <span class="text_14">较上月</span>
- <img
- class="thumbnail_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
- />
- <span class="text_15">28%</span>
- </div>
- </div>
- <!-- <img
- class="image_2"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/ps7mxkzc5neit681xsy8xznba7hm35r4ttv08926882-7cd0-4694-a312-ebee13b874e7"
- /> -->
- <div class="text-wrapper_2 flex-col justify-between">
- <span class="text_6">越线告警</span>
- <span class="text_7">08</span>
- <div style="display: flex; margin-top:20px;">
- <span class="text_14">较上月</span>
- <img
- class="thumbnail_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
- />
- <span class="text_15">28%</span>
- </div>
- </div>
- <div class="text-wrapper_3 flex-col justify-between">
- <span class="text_8">徘徊告警</span>
- <span class="text_9">06</span>
- <div style="display: flex; margin-top:20px;">
- <span class="text_14">较上月</span>
- <img
- class="thumbnail_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
- />
- <span class="text_15">28%</span>
- </div>
- </div>
- <div class="text-wrapper_4 flex-col justify-between">
- <span class="text_10">陌生人告警</span>
- <span class="text_11">02</span>
- <div style="display: flex; margin-top:20px;">
- <span class="text_14">较上月</span>
- <img
- class="thumbnail_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
- />
- <span class="text_15">28%</span>
- </div>
- </div>
- <div class="text-wrapper_5 flex-col justify-between">
- <span class="text_12">火焰/烟雾告警</span>
- <span class="text_13">01</span>
- <div style="display: flex; margin-top:20px;">
- <span class="text_14">较上月</span>
- <img
- class="thumbnail_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
- />
- <span class="text_15">28%</span>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- <el-col :span="24" style="padding-left: 0;padding-right: 0; border-radius: 10px;" >
- <div class="group_5 flex-col">
- <div class="group_6 flex-row" style="justify-content: space-between;">
- <div class="flex-row">
- <img
- class="thumbnail_19"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psu3p9pm6jypghx3f47jgjfy30ja3ykbq35346262-3398-4814-a521-bc9ac3e30ac7"
- />
- <span class="text_30">年度告警统计</span>
- <div class="section_1 flex-row">
- <span class="text_31">越线告警</span>
- <img
- class="thumbnail_20"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psfm47lo8z2nwf9tptn20pziqjiho31pmd4090dc3-6956-408d-97cc-9432a673c69d"
- />
- </div>
- </div>
- <span class="text_32">查看更多 →</span>
- </div>
- <div class="group_7 flex-row" style="justify-content: space-between;">
- <span class="text_33">2025年</span>
- <div class="flex-row">
- <div class="flex-row">
- <div class="box_5 flex-col"></div>
- <span class="text_34">告警总数</span>
- </div>
- <div class="flex-row">
- <div class="box_6 flex-col"></div>
- <span class="text_35">越线告警</span>
- </div>
- </div>
- <span class="text_36">告警数/件</span>
- </div>
- <div class="group_8 flex-row justify-between">
- <line-chart :chart-data="lineChartData" />
- </div>
- </div>
- </el-col>
- <el-col :span="12" style="padding-left: 0; border-radius: 10px; margin-top: 20px;" >
- <div class="box_7 flex-col">
- <div class="group_10 flex-row justify-between">
- <div class="image-text_1 flex-row justify-between">
- <img
- class="thumbnail_21"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psz7ip3r1lx39ddipa4t9asue3nlgizcr2m69352d25-9d7b-4b5f-a116-a8b1a9c63bad"
- />
- <span class="text-group_1">告警内容分析</span>
- </div>
- <div class="group_11 flex-row">
- <div class="image-text_2 flex-row justify-between">
- <span class="text-group_2">2025</span>
- <img
- class="thumbnail_22"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psddvdglysnl66rxvp2pzsrayivek3mvize28b1d838-4c12-4a87-b210-a41016d39338"
- />
- </div>
- </div>
- </div>
- <span class="text_51">烟雾告警</span>
- <div class="group_12 flex-row justify-between">
- <span class="text_52">越线告警</span>
- <img
- class="image_5"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psl74u17tgk7nsrsy5bqoqo2tyzv1i3ws31f72a3a-f58e-48ac-878f-ee9ce9a87c15"
- />
- <span class="text_53">火焰告警</span>
- </div>
- <div class="text-wrapper_8 flex-row justify-between">
- <span class="text_54">徘徊告警</span>
- <span class="text_55">陌生人告警</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12" style=" border-radius: 10px; padding-right: 0;margin-top: 20px;" >
- <div class="box_8 flex-col">
- <div class="block_7 flex-row justify-between">
- <div class="image-text_3 flex-row justify-between">
- <img
- class="thumbnail_23"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psum99tr1vffjvtyeb4grcmlm3dnnjsksbd421be4-6aa6-46d8-b175-bb40b20e8992"
- />
- <span class="text-group_3">告警严重程度分析</span>
- </div>
- <div class="section_2 flex-row">
- <div class="image-text_4 flex-row justify-between">
- <span class="text-group_4">2025</span>
- <img
- class="thumbnail_24"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psqt7s72rvrjlc6nlybwqk5bmvku09vdcp7090335a-a4a0-4522-953e-fb79361a0e68"
- />
- </div>
- </div>
- </div>
- <div class="block_8 flex-row" style="padding-right: 10px;">
- <div style="width: 50%;" >
- <pie-chart />
- <!-- <div style="position: relative;top:-173px;">
- <span class="text_56">总告警数</span>
- <div class="text-wrapper_9">
- <span class="text_57">146</span>
- <span class="text_58"></span>
- <span class="text_59">/次</span>
- </div>
- </div> -->
- </div>
- <div style="width: 50%;justify-content: flex-end;" class=" flex-row">
- <div class="block_10 flex-col">
- <div class="section_3 flex-col"></div>
- <div class="section_4 flex-col"></div>
- <div class="section_5 flex-col"></div>
- </div>
- <div class="text-wrapper_10 flex-col">
- <span class="text_60">徘徊告警</span>
- <span class="text_61">陌生人告警</span>
- <span class="text_62">越线告警</span>
- <span class="text_63">火焰告警</span>
- <span class="text_64">烟雾告警</span>
- </div>
- <div class="text-wrapper_11 flex-col">
- <span class="text_65">44</span>
- <span class="text_66">42</span>
- <span class="text_67">26</span>
- <span class="text_68">13</span>
- <span class="text_69">21</span>
- </div>
- </div>
- </div>
- <div class="block_11 flex-row">
- <div class="section_6 flex-col"></div>
- <span class="text_70">低等级</span>
- <div class="section_7 flex-col"></div>
- <span class="text_71">中等级</span>
- <div class="section_8 flex-col"></div>
- <span class="text_72">高等级</span>
- </div>
- </div>
- </el-col>
- </el-col>
- <el-col :span="8">
- <div class="block_5 flex-col" style="background-color: #fff;">
- <div class="box_3 flex-row justify-between">
- <img
- class="thumbnail_11"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psrdw890zdgxp85irjoai1mlys955fw0rcqa9b3d048-b776-48a3-a084-07acc200736d"
- />
- <span class="text_24">快捷功能</span>
- </div>
- <div class="image-wrapper_1 flex-row justify-between">
- <div style="text-align: center;">
- <img
- class="label_2"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psn6jwvwy8l2j1h16w1of82ohsn7v4wwn7gk8ab5d7b4-4138-4e15-af1d-4dd41b3f94b6"
- />
- <div style="margin-top: 10px;">
- <span class="text_25">人员管理</span>
- </div>
- </div>
- <div style="text-align: center;">
- <img
- class="label_3"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psdx8guqu2pc7qy9dec86q1p34cx76366gv94657d09-f3df-4daf-a8ab-772805d40279"
- />
- <div style="margin-top: 10px;">
- <span class="text_26">设备管理</span>
- </div>
- </div>
- <div style="text-align: center;">
- <img
- class="label_4"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psbjpsfb3zmw6ts129i4b98d6kilysry37729c90a-1889-4617-9e11-55dfad50bd7b"
- />
- <div style="margin-top: 10px;">
- <span class="text_27">监控回放</span>
- </div>
- </div>
- <div style="text-align: center;">
- <img
- class="label_5"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psp4wnnq3t9dmfg1ee9r3p87z6jj37w2ju668ffd6f-fea0-49b4-b6f5-2fe2807078c1"
- />
- <div style="margin-top: 10px;">
- <span class="text_28">一键布控</span>
- </div>
- </div>
- <div style="text-align: center;">
- <img
- class="label_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/pswcql79skat8m2hadqe0c2hrl664tdlk191dee3e56-41ea-47f3-9118-48384c61cbe0"
- />
- <div style="margin-top: 10px;">
- <span class="text_29">一键撤防</span>
- </div>
- </div>
- </div>
- </div>
- <!-- 日历 -->
- <div style=" height: 431px; background-color: #fff; border-radius: 10px;padding: 20px;margin-top: 20px;">
- <div class="box_11 flex-row">
- <div class="box_12 flex-col justify-between">
- <div class="text-wrapper_12 flex-row justify-between">
- <span class="text_73">2025(年)</span>
- <span class="text_74">Apr</span>
- </div>
- <div class="text-wrapper_13">
- <span class="text_75">0</span>
- <span class="text_76">4/</span>
- <span class="text_77">23</span>
- </div>
- </div>
- <div class="flex-row">
- <div class="text-wrapper_14 flex-col justify-between">
- <span class="text_78">潜山</span>
- <span class="text_79">27℃</span>
- </div>
- <img
- class="label_7"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/ps2dkvgja0bj82ye5za7m6rjholjn017m3w2ea76a7a-9421-4be5-8b86-66181f103334"
- />
- </div>
- </div>
- <!-- 日历-->
- <div class="timeall">
- <i class="el-icon-arrow-left lastbt" @click="lastclick"></i>
- <div class="table_header">
- <div class="weekday" v-for="(item,index) in weekAll" :key="index">
- <span>{{item}}</span>
- </div>
- </div>
- <div class="table_header">
- <div class="weekday test" v-for="(item,index) in weekDayArr" :key="index">
- <span :class="item.adate==todayDate?'finish':''" @click="getAdate(item)">{{item.adate.slice(8,10)}}</span>
- </div>
- </div>
- <i class="el-icon-arrow-right nextbt" @click="nextclick"></i>
- </div>
- <!-- 内容 -->
- <div>
- <div v-for="(item,index) in 2" :key="index" class="box_14 flex-row" style="justify-content: space-between;padding: 0 20px;">
- <div class="text-wrapper_17 flex-col justify-between">
- <span class="text_94">25/04/23 10:31:46</span>
- <span class="text_95">通道001</span>
- </div>
- <div class="text-wrapper_18 ">
- <div class="text_96">越线告警</div>
- <div><img
- class="thumbnail_27"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psdns8niqehwnqonehba3fupf1jks9bkmeba9dfa9d-80e7-483e-9ef6-abb696ae65f0"
- />
- </div></div>
- </div>
- </div>
- </div>
- <!-- 开关 -->
- <div>
- <div class="box_16 flex-col">
- <div class="section_9 flex-row justify-between">
- <div class="image-text_5 flex-row justify-between">
- <img
- class="thumbnail_29"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psa27evgswubenvym1lop1v9fdundzbrw19c1850b51-939b-4d99-b5af-8745a5f6f954"
- />
- <span class="text-group_5">设备运行状态</span>
- </div>
- <span class="text_100">查看更多 →</span>
- </div>
- <div class="section_10 flex-row">
- <div class="image-text_6 flex-col justify-between">
- <img
- class="image_6"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/ps88exyzo1tdikk9srdibcimyfl7toswujt8f98ae4d-a44c-42c8-b411-03a577d649f4"
- />
- <span class="text-group_6">设备01</span>
- </div>
- <div class="image-text_7 flex-col justify-between">
- <img
- class="image_7"
- referrerpolicy="no-referrer"
- src="https://lanhu-oss-2537-2.lanhuapp.com/psj4k7tsxe0dh0sc95kc1lnzf1frpd738z69de4a80a3-dcc1-4bd1-af71-cefbfe3cb6a9"
- />
- <span class="text-group_7">设备02</span>
- </div>
- <div class="box_17 flex-col justify-between">
- <div class="group_13 flex-col">
- <div class="section_11 flex-col"></div>
- </div>
- <span class="text_101">设备03</span>
- </div>
- <div class="box_18 flex-col justify-between">
- <div class="box_19 flex-col">
- <div class="block_12 flex-col"></div>
- </div>
- <span class="text_102">设备04</span>
- </div>
- <div class="box_20 flex-col justify-between">
- <div class="group_14 flex-col">
- <div class="group_15 flex-col"></div>
- </div>
- <span class="text_103">设备05</span>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- <!-- 添加或修改投诉建议对话框 -->
- <el-dialog title="回复建议" :visible.sync="open" width="800px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-row>
- <el-col :span="24">
- <el-form-item label="回复内容" prop="replyContent">
- <!-- <editor v-model="form.replyContent" :min-height="192"/> -->
- <el-input v-model="form.replyContent" type="textarea" placeholder="请输入内容" />
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="上传附件">
- <fileUploadh :limit="20" v-model="form.suggestionFjList" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog title="指派" :visible.sync="openz" width="640px" append-to-body>
- <el-form ref="formz" :model="formz" :rules="rulesz" label-width="80px">
- <el-row>
- <el-col :span="24">
- <el-form-item label="选择人员" prop="staffName">
- <el-select style="width: 100%;" v-model="formz.staffName" placeholder="请选择维修人员">
- <el-option @click.native="xuanse(dict)" v-for="dict in staffManageList" :key="dict.staffId"
- :label="dict.staffName + '('+ (dict.status == null?'' : dict.status == 1?'空闲中' : '指派中') + ')'"
- :value="dict.staffId"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFormz">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog title="完善信息" :visible.sync="openg" width="640px" append-to-body>
- <el-form ref="formg" :model="formg" :rules="rulesg" label-width="80px">
- <el-row>
- <el-col :span="24" class="ngeshimg" >
- <el-form-item label="身份证号" prop="idCard" style="position: relative;">
- <el-input v-model="formg.idCard" placeholder="请输入身份证号码" />
- <!-- <image-upload :limit="1" v-model="form.idCardBack"/> -->
- <image-uploadshib @uploadedSuccessfully="uploadedSuccessfully" :typeg = "1" :limit="1" v-model="formg.idCardBack"/>
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="选择小区" prop="tenantId">
- <el-select
- style="width:100%;"
- v-model="formg.tenantId"
- clearable
- filterable
- reserve-keyword
- placeholder="选择物业"
- >
- <!-- @click.native="chahue(item)" -->
- <el-option v-for="item in tenantList" :key="item.tenantId" :label="item.companyName" :value="item.tenantId" > </el-option>
- <template ><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="人员性别" prop="gender">
- <el-select v-model="formg.gender" placeholder="请选择员工性别">
- <el-option
- v-for="dict in dict.type.gender"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="员工类别" prop="staffCategory">
- <el-select v-model="formg.staffCategory" placeholder="请选择员工类别">
- <el-option
- v-for="dict in dict.type.yaungong"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="维修分类" prop="maintenanceCategory">
- <el-select clearable v-model="formg.maintenanceCategory" placeholder="请选择维修分类">
- <el-option
- v-for="dict in dict.type.weixiutype"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="手机号码" prop="phoneNumber">
- <el-input v-model="formg.phoneNumber" placeholder="请输入手机号码" />
- </el-form-item>
- </el-col>
- <el-col :span="15">
- <el-form-item label="员工姓名" prop="staffName">
- <el-input v-model="formg.staffName" placeholder="请输入员工姓名" />
- </el-form-item>
- </el-col>
- <el-col :span="12" class="shefnze" >
- <el-form-item label="头像" prop="avatarPhoto">
- <image-upload :limit="1" v-model="formg.avatarPhoto"/>
- </el-form-item>
- </el-col>
- <el-col :span="12" class="shefnze">
- <el-form-item label="身份证国徽面" prop="idCardFront">
- <image-upload :limit="1" v-model="formg.idCardFront"/>
- </el-form-item>
- </el-col>
- <el-col :span="24" >
- <el-form-item label="相关证件" prop="certificate">
- <file-upload v-model="formg.certificate"/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFormg">确 定</el-button>
- </div>
- </el-dialog>
- <!-- <el-dialog title="完善信息" :visible.sync="openg" width="640px" append-to-body>
- </el-dialog> -->
- </div>
- </template>
- <script>
- import PanelGroup from './dashboard/PanelGroup'
- import LineChart from './dashboard/LineChart'
- import RaddarChart from './dashboard/RaddarChart'
- import PieChart from './dashboard/PieChart'
- import BarChart from './dashboard/BarChart'
- const lineChartData = {
- newVisitis: {
- expectedData: [100, 120, 161, 134, 105, 160, 165],
- actualData: [120, 82, 91, 154, 162, 140, 145]
- },
- messages: {
- expectedData: [200, 192, 120, 144, 160, 130, 140],
- actualData: [180, 160, 151, 106, 145, 150, 130]
- },
- purchases: {
- expectedData: [80, 100, 121, 104, 105, 90, 100],
- actualData: [120, 90, 100, 138, 142, 130, 130]
- },
- shoppings: {
- expectedData: [130, 140, 141, 142, 145, 150, 160],
- actualData: [120, 82, 91, 154, 162, 140, 130]
- }
- }
- import { getTenantList} from "@/api/login";
- import {listNoPage} from "@/api/system/role";
- export default {
- name: "Index",
- dicts: ['baoxiutype', 'repair_status', 'patrol_type','yaungong', 'gender', 'weixiutype'],
- components: {
- PanelGroup,
- LineChart,
- RaddarChart,
- PieChart,
- BarChart,
- },
- data() {
- return {
- // 版本号
- version: "3.8.9",
- customColor: '#FFCB62',
- lineChartData: lineChartData.newVisitis,
- getyer: '',
- getmor: '',
- getday: '',
- getshifL: '',
- getweek: '',
- open: false,
- openz: false,
- openg:false,
- shouzu:false,
- // 投诉建议表格数据
- suggestionList: [],
- repairList: [],
- // 巡检点记录表格数据
- checkPointRecordList: [],
- // 表单参数
- form: {},
- formz: {},
- formg: {
- name:null,
- card:null,
- phonenumber:null,
- boundary:null,
- unit:null,
- partyAffiliation:null,
- },
- // 表单校验
- rules: {
- replyContent: [{
- required: true,
- message: "不能为空",
- trigger: "blur"
- }],
- },
- rulesz: {
- staffName: [{
- required: true,
- message: "不能为空",
- trigger: "blur"
- }],
- },
- rulesg:{
- tenantId: [
- { required: true, message: "不能为空", trigger: "blur" }
- ],
- staffName: [
- { required: true, message: "姓名不能为空", trigger: "blur" }
- ],
- // staffCategory: [
- // { required: true, message: "员工类别", trigger: "change" }
- // ],
- phoneNumber: [
- { required: true, message: "手机号码不能为空", trigger: "blur" }
- ],
- },
- staffManageList: [],
- xunjiantj: {},
- tatse: 0,
- yifhufe: 0,
- isxug: false,
- bafe: 0,
- timer: null,
- zhexian: {},
- userid: 0,
- chelisngguan: {},
- isacr: 0,
- carNume:{},
- tenantList:[],
- ishsoe:false,
- forewg:{},
- tesrtw:'',
- // 角色表格数据
- roleList: [],
- // 日历
- currentFirstDate:"",
- clen:7,
- todayDate:"",
- weekDayArr:[],
- weekAll: [
- '星期一','星期二','星期三','星期四','星期五','星期六','星期日',
- ]
- };
- },
- created() {
- // 移交 日历
- this.todayDate=this.formatDate(new Date())
- this.setDate(new Date())
- // 旧的
- this.userid = this.$store.getters.userId
- if(this.$store.getters.authenticationUser =='1' || this.$store.getters.authenticationUser =='2'){
- // 认证未通过或者未认证
- this.shouzu = false
- // this.getxinaqren()
- // this.getrou(this.$store.getters.tenantId)
- }else{
- // if(){
- // }
- this.shouzu = true
- // this.getcharnae()
- // this.setTimer()
- // this.gettime()
- // this.getListtion()
- // this.getListpair()
- // this.getstaffManageList()
- // this.getListRecord()
- // this.getListRecordcun()
- // this.baozhe()
- // this.getche()
- }
- clearInterval(this.timer)
- this.timer = null
- this.getnhgwzuhue()
- console.log(this.shouzu)
- },
- methods: {
- // 日历
- // 日期格式处理
- formatDate(date){
- var year = date.getFullYear() + '-'
- var month = (date.getMonth()+1) ;
- if(month<10){
- month = '0' + month
- }
- month = month + '-'
- var day = date.getDate();
- if(day<10){
- day = '0' + day
- }
- console.log(year+month+day)
- return year+month+day;
- },
- //
- addDate(date,n){
- date.setDate(date.getDate()+n);
- console.log(date,5)
- return date;
- },
- //
- setDate(date){
- var week = date.getDay()-1;
- date = this.addDate(date,week*-1);
- this.currentFirstDate = new Date(date);
- for(var i = 0;i<this.clen; i++){
- this.weekDayArr.push({"adate":this.formatDate(i==0 ? date : this.addDate(date,1))})
- }
- console.log(this.weekDayArr)
- },
- //上一周
- lastclick(){
- this.weekDayArr=[]
- this.setDate(this.addDate(this.currentFirstDate,-7));
- },
- //下一周
- nextclick(){
- this.weekDayArr=[]
- this.setDate(this.addDate(this.currentFirstDate,7));
- },
- getAdate (item) {
- this.todayDate = item.adate
- console.log(item)
- },
- // 日历结束
- // 小区切换
- chahue(row){
- this.getrou(row.tenantId)
- },
- // 查询角色信息
- getrou(row){
- let pade={'tenantId':row}
- listNoPage(pade).then(response => {
- this.roleList = response.rows;
- this.roleList.filter(rou=>{
- rou.dictValue=rou.roleKey
- rou.dictLabel=rou.roleName
- })
- if(response.rows.length !=0){
- this.formg.staffCategory = response.rows[0].roleKey
- }
- }
- );
- },
- getxinaqren(){
- staffManagexq(this.$store.getters.userId).then(response => {
- if(response.data == null){
- this.ishsoe = true
- }else{
- this.ishsoe = false
- this.forewg = response.data
- this.tesrtw = response.data.tenantId
- }
- // this.tenantEnabled = response.data.tenantEnabled
- // this.tenantList = response.data.voList;
- // this.loading = false;
- });
- },
- getnhgwzuhue(){
- // this.loading = true;
- getTenantList().then(response => {
- // this.tenantEnabled = response.data.tenantEnabled
- this.tenantList = response.data.voList;
- // this.loading = false;
- });
- },
- zhuhuet(){
- this.reset()
- this.formg.phoneNumber = this.$store.getters.phonenumber
- this.formg.userId = this.userid
- if(this.tenantList.length !=0){
- this.formg.tenantId = this.tenantList[0].tenantId
- // this.getrou(this.$store.getters.tenantId)
- this.openg = true
- }else{
- this.openg = true
- }
- console.log(this.formg)
- // console.log(this.formg.userId)
- // console.log(this.formg.phoneNumber,this.$store.getters.user.phonenumber)
- },
- // 车辆进入\
- getcharnae(){
- car().then(response => {
- this.carNume = response.data;
- });
- },
- // 车辆管控
- getche() {
- vehicleControl().then(response => {
- this.chelisngguan = response.data;
- });
- },
- // 车辆管控点击
- iszhe(val){
- this.isacr = val
- },
- // 报修折线
- baozhe() {
- qx().then(response => {
- this.zhexian = response.data;
- });
- },
- // 巡更记录
- getListRecord() {
- let sgmse = {
- 'pageNum': 1,
- 'pageSize': 2,
- 'params':{
- 'createTime':this.getyer + '-' + this.getmor + '-' + this.getday,
- },
- // params:{'checkTime': this.getyer + '-' + this.getmor + '-' + this.getday},
- // 'createTime': this.getyer + '-' + this.getmor + '-' + this.getday,
- 'checkStatus': 2,
- 'userId': this.userid
- }
- this.isxug = false
- listCheckPointRecord(sgmse).then(response => {
- this.checkPointRecordList = response.rows;
- // this.checkPointRecordList .filter(rou=>{
- // rou.imges = []
- // if(rou.checkResultPhoto != null && rou.checkResultPhoto != ''){
- // rou.imges = rou.checkResultPhoto.split(',')
- // }
- // })
- if (this.checkPointRecordList.length == 0) {
- let gh = {
- 'checkTime': '暂无数据',
- 'checkAddress': '暂无数据',
- 'checkUserName': '暂无数据',
- 'checkResult': '暂无数据',
- 'checkType': '暂无数据'
- }
- this.checkPointRecordList.push(gh)
- this.checkPointRecordList.push(gh)
- }
- if (this.checkPointRecordList.length == 1) {
- let gh = {
- 'checkTime': '暂无数据',
- 'checkAddress': '暂无数据',
- 'checkUserName': '暂无数据',
- 'checkResult': '暂无数据',
- 'checkType': '暂无数据'
- }
- this.checkPointRecordList.push(gh)
- }
- this.isxug = true
- });
- },
- getListRecordcun() {
- count().then(response => {
- this.xunjiantj = response.data
- });
- },
- // 报修列表
- getListpair() {
- let sgmse = {
- 'pageNum': 1,
- 'pageSize': 2,
- 'userId': this.userid
- }
- listRepair(sgmse).then(response => {
- this.repairList = response.rows;
- if (this.repairList.length == 0) {
- let gnsh = {
- 'repairTitle': '暂无数据',
- 'phoneNumber': '暂无数据',
- 'houseAddress': '暂无数据',
- 'repairTime': '暂无数据',
- 'repairStatus': null
- }
- this.repairList.push(gnsh)
- this.repairList.push(gnsh)
- }
- if (this.repairList.length == 1) {
- let gnsh = {
- 'repairTitle': '暂无数据',
- 'phoneNumber': '暂无数据',
- 'houseAddress': '暂无数据',
- 'repairTime': '暂无数据',
- 'repairStatus': null
- }
- this.repairList.push(gnsh)
- }
- });
- },
- // 待分配
- daifeng(row) {
- if (row.repairStatus == 1) {
- // 待分配
- // this.formz.maintenanceCategory = row.maintenanceCategory
- this.openz = true
- this.formz.repairId = row.repairId
- }
- },
- // 待分配提交
- submitFormz() {
- this.$refs["formz"].validate(valid => {
- if (valid) {
- assign(this.formz).then(response => {
- this.$modal.msgSuccess("操作成功");
- this.openz = false;
- this.getList();
- });
- }
- })
- },
- xuanse(val) {
- console.log(val)
- this.formz.staffName = val.staffName
- this.formz.staffId = val.staffId
- this.formz.staffPhone = val.phoneNumber
- },
- getstaffManageList(row) {
- let bsdf = {
- 'staffCategory': 2
- }
- listStaffManageNoPage(bsdf).then(response => {
- this.staffManageList = response.rows;
- // this.staffManageList.filrter(rout=>{
- // rout.lable = rout.staffName + '<p>'
- // })
- });
- },
- /** 查询投诉建议列表 */
- getListtion() {
- let sgmse = {
- 'pageNum': 1,
- 'pageSize': 10,
- 'isPublic':'Y',
- 'userId': this.userid
- }
- listSuggestion(sgmse).then(response => {
- if(response.rows.length !=0){
- if(response.rows.length > 2){
- this.suggestionList = response.rows.slice(0, 2);
- }else{
- this.suggestionList = response.rows;
- }
- }else{
- this.suggestionList = response.rows;
- }
- if (this.suggestionList.length == 0) {
- let gnsh = {
- 'title': '暂无数据',
- 'content': '暂无数据',
- 'createTime': '暂无数据',
- }
- this.suggestionList.push(gnsh)
- this.suggestionList.push(gnsh)
- }
- if (this.suggestionList.length == 1) {
- let gnsh = {
- 'title': '暂无数据',
- 'content': '暂无数据',
- 'createTime': '暂无数据',
- }
- this.suggestionList.push(gnsh)
- }
- this.getListtionesTOTL()
- });
- },
- getListtiones() {
- let sgmse = {
- 'pageNum': 1,
- 'pageSize': 2,
- 'status': 2,
- }
- listSuggestion(sgmse).then(response => {
- this.yifhufe = response.total
- this.bafe = this.percentage() - 0
- });
- },
- getListtionesTOTL() {
- let sgmse = {
- 'pageNum': 1,
- 'pageSize': 10,
- }
- listSuggestion(sgmse).then(response => {
- this.tatse = response.total
- this.getListtiones()
- });
- },
- // 投诉隐藏
- yinange(row,index){
- row.isPublic = 'N'
- updateSuggestion(row).then(response => {
- this.$modal.msgSuccess("操作成功");
- // this.open = false;
- // this.getList();
- });
- },
- percentage() {
- return (this.yifhufe / this.tatse * 100).toFixed(0);
- },
- tousuhuif(row) {
- // this.form.suggestionId = row.suggestionId
- this.form = {
- 'replyContent': null,
- 'suggestionFjList': null,
- 'suggestionId': row.suggestionId,
- 'status': 2
- }
- // this.$set('replyContent',this.form,null)
- // this.form.replyContent = null
- // this.form.suggestionFjList = null
- this.open = true
- },
- cancel() {
- this.open = false
- this.openz = false
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- // console.log(this.form)
- if (this.form.suggestionFjList != null) {
- this.form.suggestionFjList.filter(rou => {
- rou.suggestionId = this.form.suggestionId
- })
- }
- updateSuggestion(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getListtion();
- });
- }
- });
- },
- /** 注册认证提交按钮 */
- submitFormg: function() {
- this.$refs["formg"].validate(valid => {
- if (valid) {
- if(this.ishsoe == false){
- if(this.tesrtw == this.formg.tenantId){
- updateStaffManage(this.formg).then(response => {
- this.$modal.msgSuccess("修改成功,等待管理员审核");
- this.openg = false;
- });
- }else{
- addStaffManage(this.formg).then(response => {
- this.$modal.msgSuccess("操作成功,等待管理员审核");
- this.openg = false;
- // this.getList();
- });
- }
- }else{
- addStaffManage(this.formg).then(response => {
- this.$modal.msgSuccess("操作成功,等待管理员审核");
- this.openg = false;
- // this.getList();
- });
- }
- }
- });
- },
- handleSetLineChartData(type) {
- this.lineChartData = lineChartData[type]
- },
- goTarget(href) {
- window.open(href, "_blank");
- },
- format(percentage) {
- return percentage === 100 ? '${percentage}' : `${percentage}`;
- },
- gettime() {
- var _this = this;
- let wk = new Date().getDay()
- let yy = new Date().getFullYear();
- let mm = new Date().getMonth() + 1;
- if(mm < 10){
- mm = '0'+mm
- }
- let dd = new Date().getDate();
- if(dd < 10){
- dd = '0'+dd
- }
- let hh = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours();
- let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes();
- let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds();
- let weeks = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
- let week = weeks[wk]
- _this.getyer = yy;
- _this.getmor = mm;
- _this.getday = dd;
- _this.getshifL = hh + ':' + mf;
- _this.getweek = week;
- // console.log(this.gettime)
- },
- setTimer() {
- if (this.timer == null) {
- this.timer = setInterval(() => {
- this.gettime()
- }, 30000)
- }
- },
- tiahe(row) {
- if (row == 1) {
- // 房屋管理
- this.$router.push({
- path: '/housesassets/fagnwuguanli',
- })
- } else if (row == 2) {
- // 居住人员管理
- this.$router.push({
- path: '/renyuanxiangguan/renyuan',
- })
- } else if (row == 3) {
- // 车辆管控
- this.$router.push({
- path: '/communityservicesfacilities/cheliangguank',
- })
- } else if (row == 4) {
- // 违停管理
- this.$router.push({
- path: '/communitysecurityorder/weitingchel',
- })
- } else if (row == 5) {
- // 来访管理
- this.$router.push({
- path: '/communicationmanagement/visitorManage',
- })
- } else if (row == 6) {
- // 物业报修
- this.$router.push({
- path: '/communityservicesfacilities/baoxiuguanli/index',
- })
- } else if (row == 7) {
- // 投诉建议
- this.$router.push({
- path: '/communityservicesfacilities/suggestion',
- })
- } else if (row == 8) {
- // 今日巡更
- this.$router.push({
- path: '/communitysecurityorder/xungengxinx',
- })
- }
- },
- uploadedSuccessfully(row){
- // console.log('上传重构员工',row)
- if(row.length !=0){
- row.filter(ru=>{
- this.formg.staffName = ru.realName
- this.formg.idCard = ru.idCard
- let sge = this.getInfo( this.formg.idCard)
- // this.form.yearsOld = sge.age
- this.formg.gender = sge.sex + ''
- // this.form.residentBirthday = sge.birth
- })
- }
- },
- getInfo(idCard) {
- let sex = null;
- let birth = null;
- let myDate = new Date();
- let month = myDate.getMonth() + 1;
- let day = myDate.getDate();
- let age = 0;
- if (idCard.length === 18) {
- age = myDate.getFullYear() - idCard.substring(6, 10) - 1;
- sex = idCard.substring(16, 17);
- birth = idCard.substring(6, 10) + "-" + idCard.substring(10, 12) + "-" + idCard.substring(12, 14);
- if (idCard.substring(10, 12) < month || idCard.substring(10, 12) === month && idCard.substring(12, 14) <= day)
- age++;
- }
- if (idCard.length === 15) {
- age = myDate.getFullYear() - idCard.substring(6, 8) - 1901;
- sex = idCard.substring(13, 14);
- birth = "19" + idCard.substring(6, 8) + "-" + idCard.substring(8, 10) + "-" + idCard.substring(10, 12);
- if (idCard.substring(8, 10) < month || idCard.substring(8, 10) === month && idCard.substring(10, 12) <= day)
- age++;
- }
- if (sex % 2 === 0)
- sex = 2; // 性别代码 1代表男,0代表女,暂时不涉及其他类型性别
- else
- sex = 1;
- return {
- age,
- sex,
- birth
- }
- },
- // 表单重置
- reset() {
- this.formg = {
- staffId: null,
- staffName: null,
- gender: null,
- staffCategory: null,
- maintenanceCategory: null,
- phoneNumber: null,
- avatarPhoto: null,
- idCard: null,
- idCardFront: null,
- idCardBack: null,
- certificate: null,
- status: null,
- createBy: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- remark: null,
- tenantId:null,
- userId:this.userid,
- userType:'pc_user'
- };
- this.resetForm("formg");
- },
- }
- };
- </script>
- <style lang="scss">
- .quce{
- .el-form-item__content{
- margin-left: 0 !important;
- }
- .el-upload--picture-card{
- margin-left:50%;
- transform:translateX(-50%);
- }
- }
- .shefnze{
- .el-upload--picture-card{
- width: 80px;
- height: 80px;
- line-height: 80px;
- }
- .el-upload-list--picture-card .el-upload-list__item{
- width: 80px;
- height: 80px;
- }
- .el-upload__tip{
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- }
- .ngeshimg{
- .el-upload--picture-card{
- width: 36px;
- height: 36px;
- line-height: 36px;
- position: absolute;
- top:0;
- right: 0;
- }
- .component-upload-image{
- position: absolute;
- top:0;
- right: 0;
- }
- .el-upload--picture-card i{
- font-size: 20px;
- }
- .el-upload-list--picture-card .el-upload-list__item{
- width: 58px;
- height: 36px;
- position: absolute;
- top:0;
- right: -10px;
- }
- }
- .unimg{
- .el-upload--picture-card{
- width:102px;
- height: 102px;
- line-height: 102px;
- }
- .el-upload-list--picture-card .el-upload-list__item{
- width:102px;
- height: 102px;
- line-height: 102px;
- }
- }
- </style>
- <style scoped lang="scss">
- .index {
- // padding-right: 10px !important;
- }
- .home {
- blockquote {
- padding: 10px 20px;
- margin: 0 0 20px;
- font-size: 17.5px;
- border-left: 5px solid #eee;
- }
- hr {
- margin-top: 20px;
- margin-bottom: 20px;
- border: 0;
- border-top: 1px solid #eee;
- }
- .col-item {
- margin-bottom: 20px;
- }
- ul {
- padding: 0;
- margin: 0;
- }
- font-family: "open sans",
- "Helvetica Neue",
- Helvetica,
- Arial,
- sans-serif;
- font-size: 13px;
- color: #676a6c;
- overflow-x: hidden;
- ul {
- list-style-type: none;
- }
- h4 {
- margin-top: 0px;
- }
- h2 {
- margin-top: 10px;
- font-size: 26px;
- font-weight: 100;
- }
- p {
- margin-top: 10px;
- b {
- font-weight: 700;
- }
- }
- .update-log {
- ol {
- display: block;
- list-style-type: decimal;
- margin-block-start: 1em;
- margin-block-end: 1em;
- margin-inline-start: 0;
- margin-inline-end: 0;
- padding-inline-start: 40px;
- }
- }
- }
- </style>
- <style lang="scss">
- // 蓝湖样式粘贴
- body {
- font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
- Arial, PingFang SC-Light, Microsoft YaHei;
- }
- input {
- background-color: transparent;
- border: 0;
- }
- button {
- margin: 0;
- padding: 0;
- border: 1px solid transparent;
- outline: none;
- background-color: transparent;
- }
- button:active {
- opacity: 0.6;
- }
- .van-nav-bar__left:active,
- .van-nav-bar__right:active {
- opacity: 1;
- }
- [class*='van-']::after {
- border-bottom: 0;
- }
- .flex-col {
- display: flex;
- flex-direction: column;
- }
- .flex-row {
- display: flex;
- flex-direction: row;
- }
- .justify-start {
- display: flex;
- justify-content: flex-start;
- }
- .justify-center {
- display: flex;
- justify-content: center;
- }
- .justify-end {
- display: flex;
- justify-content: flex-end;
- }
- .justify-evenly {
- display: flex;
- justify-content: space-evenly;
- }
- .justify-around {
- display: flex;
- justify-content: space-around;
- }
- .justify-between {
- display: flex;
- justify-content: space-between;
- }
- .align-start {
- display: flex;
- align-items: flex-start;
- }
- .align-center {
- display: flex;
- align-items: center;
- }
- .align-end {
- display: flex;
- align-items: flex-end;
- }
- .page {
- position: relative;
- width: 1440px;
- height: 934px;
- overflow: hidden;
- }
- .box_1 {
- height: 934px;
- background: url(https://lanhu-oss-2537-2.lanhuapp.com/psupnp53zjsb6uumou8biiluuj3eul374afd762c56-ebbd-4c13-a938-1c346119c9ed)
- 100% no-repeat;
- background-size: 100% 100%;
- width: 1440px;
- position: relative;
- }
- .block_1 {
- width: 1400px;
- height: 30px;
- margin: 25px 0 0 20px;
- }
- .image_1 {
- width: 231px;
- height: 30px;
- }
- .label_1 {
- width: 26px;
- height: 26px;
- margin: 2px 0 0 1003px;
- }
- .text_1 {
- width: 46px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(75, 90, 109, 1);
- font-size: 16px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 8px 0 0 7px;
- }
- .thumbnail_1 {
- width: 8px;
- height: 4px;
- margin: 13px 0 0 11px;
- }
- .thumbnail_2 {
- width: 1px;
- height: 16px;
- margin: 7px 0 0 18px;
- }
- .text_2 {
- width: 31px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(75, 90, 109, 1);
- font-size: 16px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 6px 0 0 18px;
- }
- .block_2 {
- width: 1399px;
- height: 167px;
- margin: 24px 0 0 20px;
- }
- .block_3 {
- width: 180px;
- height: 145px;
- margin-top: 22px;
- }
- .group_1 {
- background-color: rgba(221, 235, 231, 1);
- border-radius: 4px;
- height: 36px;
- width: 180px;
- }
- .box_2 {
- width: 14px;
- height: 16px;
- background: url(https://lanhu-oss-2537-2.lanhuapp.com/pssr9va0oenskc5702erondk4k6soy2sg3fcb86e5-1f9d-40ef-9503-d5785a4bf2be)
- 100% no-repeat;
- background-size: 100% 100%;
- margin: 10px 0 0 22px;
- }
- .thumbnail_3 {
- width: 16px;
- height: 15px;
- margin: 35px 0 0 20px;
- }
- .thumbnail_4 {
- width: 16px;
- height: 16px;
- margin: 43px 0 0 21px;
- }
- .block_4 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- height: 158px;
- width: 100%;
- // margin: 1px 0 0 19px;
- }
- .group_2 {
- width: 118px;
- height: 18px;
- margin: 17px 0 0 13px;
- }
- .thumbnail_5 {
- width: 16px;
- height: 18px;
- }
- .text_3 {
- width: 95px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin-top: 1px;
- }
- .group_3 {
- width: 100%;
- height: 59px;
- margin: 26px 0 0 0;
- justify-content: space-around;
- }
- .text-wrapper_1 {
- width: 84px;
- height: 44px;
- }
- .text_4 {
- width: 84px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- }
- .text_5 {
- width: 23px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-top: 14px;
- }
- .image_2 {
- width: 1px;
- height: 46px;
- margin: 13px 0 0 42px;
- }
- .text-wrapper_2 {
- width: 56px;
- height: 45px;
- // margin-left: 42px;
- }
- .text_6 {
- width: 55px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 1px;
- }
- .text_7 {
- width: 25px;
- height: 17px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-top: 14px;
- }
- .text-wrapper_3 {
- width: 56px;
- height: 45px;
- // margin-left: 73px;
- }
- .text_8 {
- width: 55px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 1px;
- }
- .text_9 {
- width: 25px;
- height: 17px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-top: 14px;
- }
- .text-wrapper_4 {
- width: 70px;
- height: 45px;
- // margin-left: 80px;
- }
- .text_10 {
- width: 68px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 2px;
- }
- .text_11 {
- width: 24px;
- height: 17px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-top: 14px;
- }
- .text-wrapper_5 {
- width: 91px;
- height: 45px;
- // margin-left: 56px;
- }
- .text_12 {
- width: 90px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 1px;
- }
- .text_13 {
- width: 22px;
- height: 17px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-top: 14px;
- }
- .group_4 {
- width: 100%;
- height: 12px;
- margin: 1px 0 25px 0;
- }
- .text_14 {
- width: 34px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- }
- .thumbnail_6 {
- width: 14px;
- height: 10px;
- margin: 1px 0 0 4px;
- }
- .text_15 {
- width: 26px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(254, 167, 27, 1);
- font-size: 12px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- margin: 1px 0 0 5px;
- }
- .text_16 {
- width: 34px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 87px;
- }
- .thumbnail_7 {
- width: 14px;
- height: 10px;
- margin: 1px 0 0 4px;
- }
- .text_17 {
- width: 29px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(254, 167, 27, 1);
- font-size: 12px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 1px 0 0 5px;
- }
- .text_18 {
- width: 34px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 43px;
- }
- .thumbnail_8 {
- width: 14px;
- height: 10px;
- margin: 1px 0 0 5px;
- }
- .text_19 {
- width: 36px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(3, 191, 138, 1);
- font-size: 12px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 1px 0 0 4px;
- }
- .text_20 {
- width: 34px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 43px;
- }
- .thumbnail_9 {
- width: 14px;
- height: 10px;
- margin: 1px 0 0 5px;
- }
- .text_21 {
- width: 26px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(3, 191, 138, 1);
- font-size: 12px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 1px 0 0 4px;
- }
- .text_22 {
- width: 34px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin-left: 43px;
- }
- .thumbnail_10 {
- width: 14px;
- height: 10px;
- margin: 1px 0 0 4px;
- }
- .text_23 {
- width: 32px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(254, 167, 27, 1);
- font-size: 12px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 1px 0 0 6px;
- }
- .block_5 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- height: 159px;
- // margin-left: 12px;
- width: 100%;
- }
- .box_3 {
- width: 86px;
- height: 16px;
- margin: 18px 0 0 13px;
- }
- .thumbnail_11 {
- width: 18px;
- height: 16px;
- }
- .text_24 {
- width: 64px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin-left: 10px;
- }
- .image-wrapper_1 {
- width: 100%;
- // height: 48px;
- margin: 21px 0 0 0;
- justify-content: space-around;
- }
- .label_2 {
- width: 48px;
- height: 48px;
- }
- .label_3 {
- width: 48px;
- height: 48px;
- // margin-left: 34px;
- }
- .label_4 {
- width: 48px;
- height: 48px;
- // margin-left: 34px;
- }
- .label_5 {
- width: 48px;
- height: 48px;
- // margin-left: 35px;
- }
- .label_6 {
- width: 48px;
- height: 48px;
- // margin-left: 34px;
- }
- .text-wrapper_6 {
- width: 392px;
- height: 16px;
- margin: 20px 0 20px 31px;
- }
- .text_25 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 30px;
- }
- .text_26 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 30px;
- // margin-left: 19px;
- }
- .text_27 {
- width: 64px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 30px;
- // margin-left: 19px;
- }
- .text_28 {
- width: 63px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 30px;
- // margin-left: 19px;
- }
- .text_29 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 30px;
- // margin-left: 19px;
- }
- .block_6 {
- width: 1380px;
- height: 668px;
- margin: 4px 0 16px 39px;
- }
- .image-wrapper_2 {
- width: 18px;
- height: 376px;
- margin-top: 41px;
- }
- .thumbnail_12 {
- width: 16px;
- height: 15px;
- margin-left: 1px;
- }
- .thumbnail_13 {
- width: 16px;
- height: 14px;
- margin: 44px 0 0 1px;
- }
- .thumbnail_14 {
- width: 16px;
- height: 16px;
- margin: 45px 0 0 1px;
- }
- .thumbnail_15 {
- width: 15px;
- height: 16px;
- margin: 44px 0 0 2px;
- }
- .thumbnail_16 {
- width: 18px;
- height: 16px;
- margin-top: 45px;
- }
- .thumbnail_17 {
- width: 16px;
- height: 16px;
- margin: 44px 0 0 1px;
- }
- .thumbnail_18 {
- width: 15px;
- height: 15px;
- margin: 46px 0 0 2px;
- }
- .box_4 {
- width: 734px;
- height: 668px;
- margin-left: 162px;
- }
- .group_5 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- position: relative;
- width: 100%;
- height: 372px;
- margin-top: 20px;
- }
- .group_6 {
- width: 100%;
- height: 24px;
- padding: 14px 12px 0 12px;
- }
- .thumbnail_19 {
- width: 17px;
- height: 15px;
- margin-top: 4px;
- }
- .text_30 {
- width: 95px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin: 3px 0 0 6px;
- }
- .section_1 {
- background-color: rgba(238, 248, 245, 1);
- border-radius: 11px;
- width: 102px;
- height: 24px;
- margin-left: 12px;
- }
- .text_31 {
- width: 55px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- margin: 5px 0 0 13px;
- }
- .thumbnail_20 {
- width: 9px;
- height: 6px;
- margin: 9px 14px 0 11px;
- }
- .text_32 {
- width: 75px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- // margin: 3px 0 0 402px;
- }
- .group_7 {
- width: 100%;
- // height: 13px;
- padding: 23px 12px 0 12px;
- }
- .text_33 {
- width: 40px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- }
- .box_5 {
- background-color: rgba(255, 171, 43, 1);
- width: 10px;
- height: 10px;
- margin: 2px 0 0 0;
- }
- .text_34 {
- width: 47px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- margin: 1px 0 0 10px;
- }
- .box_6 {
- background-color: rgba(3, 191, 138, 1);
- width: 10px;
- height: 10px;
- margin: 2px 0 0 21px;
- }
- .text_35 {
- width: 47px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- margin: 1px 0 0 10px;
- }
- .text_36 {
- width: 54px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 0;
- }
- .group_8 {
- width: 100%;
- height: 234px;
- padding: 23px 12px 0 19px;
- }
- .paragraph_1 {
- width: 14px;
- height: 234px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: right;
- line-height: 45px;
- }
- .image_3 {
- width: 671px;
- height: 210px;
- margin-top: 17px;
- }
- .text-wrapper_7 {
- width: 655px;
- height: 10px;
- margin: 10px 0 21px 50px;
- }
- .text_37 {
- width: 24px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- }
- .text_38 {
- width: 17px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .text_39 {
- width: 16px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 27px;
- }
- .text_40 {
- width: 24px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 27px;
- }
- .text_41 {
- width: 24px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .text_42 {
- width: 21px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 27px;
- }
- .text_43 {
- width: 24px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 27px;
- }
- .text_44 {
- width: 17px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 25px;
- }
- .text_45 {
- width: 25px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .text_46 {
- width: 25px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .text_47 {
- width: 25px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .text_48 {
- width: 22px;
- height: 9px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin: 1px 0 0 25px;
- }
- .text_49 {
- width: 25px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 27px;
- }
- .text_50 {
- width: 25px;
- height: 10px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 12px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 18px;
- margin-left: 26px;
- }
- .image_4 {
- position: absolute;
- left: 43px;
- top: 102px;
- width: 669px;
- height: 226px;
- }
- .group_9 {
- width: 734px;
- height: 284px;
- margin-top: 12px;
- }
- .box_7 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- width: 100%;
- height: 284px;
- }
- .group_10 {
- width: 100%;
- height: 24px;
- padding: 12px 12px 0 12px;
- }
- .image-text_1 {
- width: 118px;
- height: 16px;
- margin-top: 4px;
- }
- .thumbnail_21 {
- width: 17px;
- height: 16px;
- }
- .text-group_1 {
- width: 95px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- }
- .group_11 {
- background-color: rgba(238, 248, 245, 1);
- border-radius: 11px;
- width: 84px;
- height: 24px;
- }
- .image-text_2 {
- width: 55px;
- height: 11px;
- margin: 6px 0 0 15px;
- }
- .text-group_2 {
- width: 33px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 11px;
- }
- .thumbnail_22 {
- width: 9px;
- height: 6px;
- margin-top: 3px;
- }
- .text_51 {
- width: 58px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- margin: 23px 0 0 141px;
- }
- .group_12 {
- width: 100%;
- height: 161px;
- padding: 6px 10px 0 10px;
- }
- .text_52 {
- width: 58px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- margin-top: 54px;
- }
- .image_5 {
- width: 177px;
- height: 161px;
- margin-left: 5px;
- }
- .text_53 {
- width: 58px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- margin: 54px 0 0 5px;
- }
- .text-wrapper_8 {
- width: 184px;
- height: 14px;
- margin: 4px 0 27px 82px;
- }
- .text_54 {
- width: 58px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- }
- .text_55 {
- width: 72px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- }
- .box_8 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- height: 284px;
- width: 100%;
- position: relative;
- }
- .block_7 {
- width: 100%;
- height: 24px;
- padding: 12px 11px 0 11px;
- }
- .image-text_3 {
- width: 151px;
- height: 16px;
- margin-top: 4px;
- }
- .thumbnail_23 {
- width: 16px;
- height: 16px;
- }
- .text-group_3 {
- width: 127px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- }
- .section_2 {
- background-color: rgba(238, 248, 245, 1);
- border-radius: 11px;
- width: 84px;
- height: 24px;
- }
- .image-text_4 {
- width: 55px;
- height: 11px;
- margin: 6px 0 0 15px;
- }
- .text-group_4 {
- width: 33px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 11px;
- }
- .thumbnail_24 {
- width: 9px;
- height: 6px;
- margin-top: 3px;
- }
- .block_8 {
- width: 100%;
- // height: 179px;
- padding: 0 10px 0 10px;
- position: relative;
- top:32px;
- }
- .block_9 {
- width: 167px;
- height: 167px;
- background: url(https://lanhu-oss-2537-2.lanhuapp.com/ps7hfzqonyh34q6htsu17cobje5wipuw9706925fc9-9116-494b-a413-4e48b0c75c37) -21px -14px
- no-repeat;
- background-size: 224px 195px;
- }
- .text_56 {
- width: 64px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(102, 102, 102, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 59px 0 0 50px;
- }
- .text-wrapper_9 {
- width: 68px;
- height: 18px;
- overflow-wrap: break-word;
- font-size: 0;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- margin: 13px 0 61px 50px;
- }
- .text_57 {
- width: 68px;
- height: 18px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 22px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- }
- .text_58 {
- width: 68px;
- height: 18px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 24px;
- font-family: Alibaba-PuHuiTi-M;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- }
- .text_59 {
- width: 68px;
- height: 18px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 24px;
- }
- .block_10 {
- width: 10px;
- height: 126px;
- margin: 19px 0 0 26px;
- }
- .section_3 {
- background-color: rgba(89, 212, 171, 1);
- border-radius: 50%;
- width: 10px;
- height: 10px;
- }
- .section_4 {
- background-color: rgba(115, 197, 235, 1);
- border-radius: 50%;
- width: 10px;
- height: 10px;
- margin-top: 33px;
- }
- .section_5 {
- background-color: rgba(252, 166, 96, 1);
- border-radius: 50%;
- width: 10px;
- height: 10px;
- margin-top: 63px;
- }
- .text-wrapper_10 {
- width: 80px;
- height: 163px;
- margin: 16px 0 0 14px;
- }
- .text_60 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin-left: 1px;
- }
- .text_61 {
- width: 79px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin: 27px 0 0 1px;
- }
- .text_62 {
- width: 64px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin-top: 15px;
- }
- .text_63 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin: 26px 0 0 1px;
- }
- .text_64 {
- width: 63px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin: 15px 0 0 1px;
- }
- .text-wrapper_11 {
- width: 19px;
- height: 158px;
- margin: 19px 0 0 20px;
- }
- .text_65 {
- width: 19px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 11px;
- }
- .text_66 {
- width: 19px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- margin-top: 31px;
- }
- .text_67 {
- width: 18px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 13px;
- margin: 19px 0 0 1px;
- }
- .text_68 {
- width: 17px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 13px;
- margin: 29px 0 0 1px;
- }
- .text_69 {
- width: 16px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 12px;
- margin: 18px 0 0 1px;
- }
- .block_11 {
- width: 208px;
- height: 13px;
- margin: 20px 0 27px 14px;
- position: absolute;
- bottom: 0;
- }
- .section_6 {
- background-color: rgba(89, 212, 171, 1);
- width: 10px;
- height: 10px;
- margin-top: 1px;
- }
- .text_70 {
- width: 42px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 13px;
- margin-left: 7px;
- }
- .section_7 {
- background-color: rgba(115, 197, 235, 1);
- width: 10px;
- height: 10px;
- margin: 1px 0 0 15px;
- }
- .text_71 {
- width: 41px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 13px;
- margin-left: 8px;
- }
- .section_8 {
- background-color: rgba(252, 166, 96, 1);
- width: 10px;
- height: 10px;
- margin: 1px 0 0 16px;
- }
- .text_72 {
- width: 42px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 13px;
- margin-left: 7px;
- }
- .box_9 {
- width: 454px;
- height: 668px;
- margin-left: 12px;
- }
- .box_10 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- width: 454px;
- height: 416px;
- }
- .box_11 {
- width: 100%;
- height: 59px;
- justify-content: space-between;
- // margin: 21px 0 0 25px;
- }
- .box_12 {
- width: 123px;
- height: 59px;
- }
- .text-wrapper_12 {
- width: 123px;
- height: 17px;
- }
- .text_73 {
- width: 65px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_74 {
- width: 30px;
- height: 17px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 18px;
- font-family: PingFang-SC-Bold;
- font-weight: 700;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- }
- .text-wrapper_13 {
- width: 122px;
- height: 31px;
- overflow-wrap: break-word;
- font-size: 0;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 11px 0 0 1px;
- }
- .text_75 {
- width: 122px;
- height: 31px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 40px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_76 {
- width: 122px;
- height: 31px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 40px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_77 {
- width: 122px;
- height: 31px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 40px;
- font-family: Alibaba-PuHuiTi-B;
- font-weight: 700;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- }
- .text-wrapper_14 {
- width: 30px;
- height: 38px;
- margin-top: 13px;
- // margin: 13px 0 0 184px;
- }
- .text_78 {
- width: 26px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_79 {
- width: 29px;
- height: 13px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- margin: 12px 0 0 1px;
- }
- .label_7 {
- width: 36px;
- height: 38px;
- margin: 13px 0 0 12px;
- }
- .text-wrapper_15 {
- width: 391px;
- height: 14px;
- margin: 29px 0 0 32px;
- }
- .text_80 {
- width: 41px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_81 {
- width: 41px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 18px;
- }
- .text_82 {
- width: 41px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 18px;
- }
- .text_83 {
- width: 40px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 17px;
- }
- .text_84 {
- width: 41px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 19px;
- }
- .text_85 {
- width: 41px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 17px;
- }
- .text_86 {
- width: 39px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin-left: 18px;
- }
- .box_13 {
- width: 431px;
- height: 31px;
- margin: 20px 0 0 12px;
- }
- .thumbnail_25 {
- width: 8px;
- height: 12px;
- margin-top: 10px;
- }
- .text_87 {
- width: 13px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 23px;
- }
- .text_88 {
- width: 15px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 46px;
- }
- .text-wrapper_16 {
- height: 31px;
- background: url(https://lanhu-oss-2537-2.lanhuapp.com/psj51mwd60ogrxhjjk6nh3da9ncnt0yrycq9e12ee7e-4335-48e6-b7b7-6fe63c92e06b)
- 100% no-repeat;
- background-size: 100% 100%;
- margin-left: 36px;
- width: 31px;
- }
- .text_89 {
- width: 16px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(255, 255, 255, 1);
- font-size: 14px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 8px;
- }
- .text_90 {
- width: 16px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 38px;
- }
- .text_91 {
- width: 16px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 41px;
- }
- .text_92 {
- width: 16px;
- height: 12px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 42px;
- }
- .text_93 {
- width: 15px;
- height: 11px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- margin: 10px 0 0 42px;
- }
- .thumbnail_26 {
- width: 8px;
- height: 12px;
- margin: 10px 0 0 25px;
- }
- .box_14 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 5px 0px 0px 0px;
- width: 100%;
- height: 88px;
- border: 2px solid rgba(238, 238, 238, 1);
- margin: 30px 0 0 0;
- }
- .text-wrapper_17 {
- width: 150px;
- height: 44px;
- margin: 22px 0 0 0;
- }
- .text_94 {
- width: 150px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 15px;
- }
- .text_95 {
- width: 59px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin: 13px 0 0 1px;
- }
- .text-wrapper_18 {
- // width: 84px;
- // margin: 31px 0 0 121px;
- display: flex;
- align-items: center;
- }
- .text_96 {
- // width: 56px;
- // height: 14px;
- background-color: rgba(255, 242, 233, 1);
- border-radius: 4px;
- // height: 26px;
- border: 1px solid rgba(255, 102, 0, 1);
- overflow-wrap: break-word;
- color: rgba(255, 102, 0, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- padding: 5px;
- margin-right: 10px;
- // margin: 6px 0 0 14px;
- }
- .thumbnail_27 {
- width: 18px;
- height: 14px;
- // margin: 37px 20px 0 18px;
- }
- .box_15 {
- box-shadow: 0px 2px 20px 0px rgba(187, 187, 187, 0.1);
- background-color: rgba(255, 255, 255, 1);
- border-radius: 5px 0px 0px 0px;
- width: 430px;
- height: 88px;
- border: 2px solid rgba(238, 238, 238, 1);
- margin: 14px 0 22px 12px;
- }
- .text-wrapper_19 {
- width: 150px;
- height: 44px;
- margin: 22px 0 0 19px;
- }
- .text_97 {
- width: 150px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: center;
- white-space: nowrap;
- line-height: 26px;
- }
- .text_98 {
- width: 59px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- margin: 13px 0 0 1px;
- }
- .text-wrapper_20 {
- background-color: rgba(225, 242, 250, 1);
- border-radius: 4px;
- height: 26px;
- border: 1px solid rgba(0, 159, 232, 1);
- width: 84px;
- margin: 31px 0 0 121px;
- }
- .text_99 {
- width: 55px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(0, 159, 232, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 26px;
- margin: 6px 0 0 15px;
- }
- .thumbnail_28 {
- width: 18px;
- height: 14px;
- margin: 37px 20px 0 18px;
- }
- .box_16 {
- background-color: rgba(255, 255, 255, 1);
- border-radius: 10px;
- height: 232px;
- margin-top: 12px;
- width: 100%;
- }
- .section_9 {
- // width: 429px;
- height: 16px;
- padding: 18px 13px 0 13px;
- }
- .image-text_5 {
- width: 118px;
- height: 16px;
- }
- .thumbnail_29 {
- width: 18px;
- height: 16px;
- }
- .text-group_5 {
- width: 96px;
- height: 16px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- white-space: nowrap;
- line-height: 16px;
- margin-left: 10px;
- }
- .text_100 {
- width: 75px;
- height: 14px;
- overflow-wrap: break-word;
- color: rgba(170, 170, 170, 1);
- font-size: 14px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 14px;
- margin-top: 2px;
- }
- .section_10 {
- width: 100%;
- height: 149px;
- padding: 30px 0 37px 20px;
- }
- .image-text_6 {
- width: 58px;
- height: 149px;
- }
- .image_6 {
- width: 58px;
- height: 127px;
- }
- .text-group_6 {
- width: 48px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 15px;
- margin: 7px 0 0 5px;
- }
- .image-text_7 {
- width: 59px;
- height: 149px;
- margin-left: 28px;
- }
- .image_7 {
- width: 59px;
- height: 127px;
- }
- .text-group_7 {
- width: 50px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 15px;
- margin: 7px 0 0 5px;
- }
- .box_17 {
- width: 51px;
- height: 143px;
- margin: 6px 0 0 35px;
- }
- .group_13 {
- box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.68);
- background-color: rgba(133, 225, 194, 1);
- border-radius: 24px;
- height: 116px;
- margin-left: 2px;
- width: 48px;
- }
- .section_11 {
- box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
- background-color: rgba(255, 255, 255, 1);
- border-radius: 50%;
- width: 36px;
- height: 36px;
- margin: 73px 0 0 6px;
- }
- .text_101 {
- width: 51px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 15px;
- margin-top: 12px;
- }
- .box_18 {
- width: 51px;
- height: 143px;
- margin: 6px 0 0 38px;
- }
- .box_19 {
- box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.21);
- background-color: rgba(238, 248, 245, 1);
- border-radius: 24px;
- height: 116px;
- margin-left: 2px;
- width: 48px;
- }
- .block_12 {
- box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
- background-color: rgba(255, 255, 255, 1);
- border-radius: 50%;
- width: 36px;
- height: 36px;
- margin: 7px 0 0 6px;
- }
- .text_102 {
- width: 51px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 15px;
- margin-top: 12px;
- }
- .box_20 {
- width: 51px;
- height: 143px;
- margin: 6px 0 0 38px;
- }
- .group_14 {
- box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.68);
- background-color: rgba(133, 225, 194, 1);
- border-radius: 24px;
- height: 116px;
- margin-left: 2px;
- width: 48px;
- }
- .group_15 {
- box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
- background-color: rgba(255, 255, 255, 1);
- border-radius: 50%;
- width: 36px;
- height: 36px;
- margin: 73px 0 0 6px;
- }
- .text_103 {
- width: 51px;
- height: 15px;
- overflow-wrap: break-word;
- color: rgba(51, 51, 51, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- white-space: nowrap;
- line-height: 15px;
- margin-top: 12px;
- }
- .text-wrapper_21 {
- position: absolute;
- left: 68px;
- top: 111px;
- width: 63px;
- height: 555px;
- overflow-wrap: break-word;
- font-size: 0;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- line-height: 60px;
- }
- .paragraph_2 {
- width: 63px;
- height: 555px;
- overflow-wrap: break-word;
- color: rgba(3, 191, 138, 1);
- font-size: 16px;
- font-family: PingFang-SC-Heavy;
- font-weight: 900;
- text-align: left;
- line-height: 80px;
- }
- .paragraph_3 {
- width: 63px;
- height: 555px;
- overflow-wrap: break-word;
- color: rgba(75, 90, 109, 1);
- font-size: 16px;
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- text-align: left;
- line-height: 80px;
- }
- .timeall{
- position: relative;
- width: 100%;
- margin-top: 40px;
- }
- .lastbt,.nextbt{
- position: absolute;
- top:18px;
- }
- .lastbt{
- left: -7px;
- }
- .nextbt{
- right: -7px;
- }
- .table_header{ display:flex; justify-content: center; color:#8e8e8e;}
- .week_one{ text-align: center; line-height: 50px; border-bottom:1px solid #f5f4f7; border-left:1px solid #f5f4f7; background: #e9f0fe; width:200px; }
- .weekday{ flex:1; text-align: center; line-height: 25px; }
- .finish {
- // background:#8ACBAD;
- background: linear-gradient(135deg, #04E399, #00A36A);
- padding: 5px;
- border-radius: 50%;
- color:#fff !important;
- }
- </style>
|