123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209 |
- <template>
- <el-row class="contentBox">
- <transition name="el-fade-in-linear">
- <el-col class="leftBox" v-show="stroes.$state.leftBtn">
- <div class="leftTop">
- <h4>疏导区基本情况</h4>
- <div class="leftTopContent2">
- <!-- <el-row>
- <div v-for="(item,index) in diversionArea" :key="index">
- <p>{{ item.name }}</p>
- <p><strong><CountTo :startVal='0' :endVal='item.value' :duration='5000'> {{ item.value || 0 }}</CountTo></strong>{{ item.unit }}</p>
- </div>
- </el-row> -->
- <el-row class="sdqBasicInfo sdline1">
- <div
- class="basicItem"
- v-for="(item, index) in diversionArea.slice(0,5)"
- :key="index"
- >
- <div style="padding: 0.03rem 0; text-align: center">
- <span style="display: block">
- <Strong
- style="color: #01E0FF;font-weight: 600;font-size: 0.26rem"
- >
-
- <!-- <CountTo :startVal="0" :endVal="item.value || 0" :duration="3000" v-if="!isNaN(item.value)">{{ item.value || 0 }}</CountTo>-->
- <span v-if="isNaN(item.value)" style="fontSize: 0.2rem !important">{{ item.value || 0 }}</span>
- <span v-if="!isNaN(item.value)">{{ item.value }}</span>
- </Strong>
- {{ item.unit }}
- </span>
- <span class="nameBox" style="">{{ item.name }}</span>
- </div>
- </div>
- </el-row>
- <el-row class="sdqBasicInfo sdline2" >
- <div
- class="basicItem"
- v-for="(item, index) in diversionArea.slice(7,10)"
- :key="index"
- >
- <div style="padding: 0.03rem 0; text-align: center">
- <span style="display: block">
- <Strong
- style="color: #F48354;font-weight: 600;font-size: 0.3rem"
- >
- <CountTo :startVal="0" :endVal="item.value || 0" :duration="3000" v-if="!isNaN(item.value)">{{ item.value || 0 }}</CountTo>
- <span v-if="isNaN(item.value)" style="fontSize: 0.2rem !important">{{ item.value || 0 }}</span>
- </Strong>
- {{ item.unit }}
- </span>
- <span class="nameBox" style="">{{ item.name }}</span>
- </div>
- </div>
- </el-row>
-
- <el-row v-if="basicStatisStatus" class="sdline3" >
- <div
- class="basicItem"
- v-for="(item, index) in line3Array"
- :key="index"
- @click="basicStaticsData(item.value,item.name)"
- >
- <div style="padding: 0.03rem 0; text-align: center">
- <span style="display: block">
- <Strong
- style="color: #4FE261;font-weight: 600;font-size: .225rem"
- >
- <CountTo :startVal="0" :endVal="item.count || 0" :duration="3000" v-if="!isNaN(item.count)">{{ item.count || 0 }}</CountTo>
- <span v-if="isNaN(item.count)" style="fontSize: 0.2rem !important">{{ item.count || 0 }}</span>
- </Strong>
- {{ item.unit }}
- </span>
- <span class="nameBox" style="font-size:12px">{{ item.name }}</span>
- </div>
- </div>
- </el-row>
- <el-row v-else class="sdqBasicInfo sdline3" style="position:relative">
- <div @click="basicGoBack" class="return">
- <div class="returnText">返回</div>
- </div>
-
- 表格展示区域
- <!-- <el-table :data="tableDataBasic" style="width: 100%;height:1.7rem;margin-top:20px;" class="transparentTableRow" @mouseenter="autoScroll1(true)" @mouseleave="autoScroll1()">
- <el-table-column prop="date" label="Date" width="180" />
- <el-table-column prop="name" label="Name" width="180" />
- <el-table-column prop="address" label="Address" />
- </el-table> -->
- </el-row>
- </div>
- </div>
-
- <div class="leftCenter">
- <div style="display: flex;">
- <h4>疏导区社会单位情况</h4>
- <div style="display: flex; border-bottom: 0.0125rem solid rgba(115, 251, 253, 0.5);">
- <el-form class="titleElForm" :inline="true" size="mini" :model="barForm" style="height: 0">
- <el-form-item>
- <!-- <el-select v-model="barForm.fireType" @change="getHouse()" filterable clearable placeholder="场所">
- <el-option v-for="(item, ind) in fireTypeList" :key="ind" :label="item" :value="item"></el-option>
- </el-select> -->
- <!-- <el-select v-model="units" filterable clearable placeholder="场所">
- <el-option v-for="(item, ind) in diversionArea" :key="ind" :label="item.name" :value="item.value"></el-option>
- </el-select> -->
-
- <el-select v-model="value111" @change="getOneUnit" class="m-2" placeholder="请选择" style="width:200px">
- <el-option
- v-for="item in line3Array"
- :key="item.value"
- :label="item.name"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-form>
- </div>
- </div>
- <unit-box :typeValue="value111" :arrayData="arrayData" :staticData="staticData" v-if="staticData.total" :type="value111" @staticsPoint="staticsPoint"></unit-box>
- <div v-else>暂无数据</div>
- <!-- <category
- ref="category"
- v-show="category"
- :dataMap="reportComplaintList.map((val, ind) => val.value)"
- :xData="reportComplaintList.map((val, ind) => val.name)"
- :isSlice="10"
- :width="40"
- color="#73FBFD"
- @echartsClick="categoryClick"
- ></category> -->
-
- </div>
- <div class="rightCenter">
- <h4>执勤战备力量部署</h4>
- <div class="rightTopContent">
- <div style="width:95%;margin:0 auto;border: 1px solid rgba(48, 207, 255, 0.6); box-shadow: inset 0 0 0.07rem 0.04rem rgb(115 251 253 / 40%); box-sizing: border-box;display: flex;
- justify-content: space-between;padding: .15rem .125rem .15rem">
- <span>闵行支队安保分指挥所</span> <span>淮虹路151弄9号</span> <span>电台:闵101</span> <span>值班电话:33281293</span>
- </div>
- <el-row>
- <el-col :span="5" style="border: 1px solid rgba(48, 207, 255, 0.6); margin: .25rem .08rem .125rem .16rem; box-shadow: inset 0 0 0.07rem 0.04rem rgb(115 251 253 / 40%); box-sizing: border-box"
- v-for="(item,index) in staticData.array1" :key="index" @click="goPoints(item.facilityType)">
- <div style="padding: 0.2rem 0; text-align: center;user-select:none !important">
- <span style="display: block">
- <Strong style="color:rgb(1, 224, 255)" :style="{ fontSize: '0.3rem'}" >
- <CountTo :startVal='0' :endVal='item.count || 0' :duration='3000'>{{ item.count || 0 }}</CountTo>
- </Strong>
- 家
- </span>
- <span style="font-size:.1375rem">{{item.streetTown}}</span>
- </div>
- </el-col>
- </el-row>
- <!-- <el-table :data="tableData2" class="transparentTableRow" height="100%" :empty-text="dataNo">
- <el-table-column type="expand">
- <template #default="props">
- <template v-if="props.row.children">
- <template v-for="(item, ind) in props.row.children" :key="ind">
- <el-row class="tableExpendTitle" style="margin-top: 10px">
- 状态:{{ item.carStatus }}({{ item.equipTypeName ? item.equipTypeName + "," : "" }}{{ item.renyuanNum }}人)
- </el-row>
- <el-row class="tableExpendcontent">
- <el-col>
- <div>
- 车牌号:<span style="color: #6ff3f6">{{ item.cphm }}</span>
- </div>
- </el-col>
- <el-col v-if="item.zhy" :span="12">
- <div>
- 指挥员:<span style="color: #6ff3f6">{{ item.zhy }}</span>
- </div>
- </el-col>
- <el-col v-if="item.txy" :span="12">
- <div>
- 通讯员:<span style="color: #6ff3f6">{{ item.txy }}</span>
- </div>
- </el-col>
- <el-col v-if="item.jsy" :span="12">
- <div>
- 驾驶员:<span style="color: #6ff3f6">{{ item.jsy }}</span>
- </div>
- </el-col>
- <el-col v-if="item.zsry" :span="24">
- <div>
- 战士人员:<span style="color: #6ff3f6">{{ item.zsry }}</span>
- </div>
- </el-col>
- </el-row>
- </template>
- </template>
- </template>
- </el-table-column>
- <el-table-column show-overflow-tooltip v-for="item in headerData2" :key="item.prop" :prop="item.prop" align="center" min-width="20" :label="item.name">
- <template v-if="item.prop === 'car'" #default="scope">
- <span style="color: #6ff3f6">{{ scope.row.car }}</span>
- </template>
- <template v-if="item.prop === 'personnel'" #default="scope">
- <span style="color: #6ff3f6">{{ scope.row.personnel }}</span>
- </template>
- </el-table-column>
- </el-table> -->
- </div>
- </div>
-
- <!-- <div class="leftCenter">
- <h4 class="h4Top">接警处置情况</h4>
- <category
- ref="category"
- v-show="category"
- :dataMap="reportComplaintList.map((val, ind) => val.value)"
- :xData="reportComplaintList.map((val, ind) => val.name)"
- :isSlice="10"
- :width="40"
- color="#73FBFD"
- @echartsClick="categoryClick"
- ></category>
- <div @click="goBack" class="return" v-if="!category">
- <div class="returnText">返回</div>
- </div>
- </div> -->
- <div class="leftBotContent2">
- <el-table v-if="!category" :data="tableData" class="transparentTableRow" height="100%" ref="reportTable" @mouseenter="autoScroll(true)" @mouseleave="autoScroll()">
- <el-table-column v-for="item in headerData" show-overflow-tooltip :key="item.prop" :prop="item.prop" align="center" min-width="20" :label="item.name">
- <template #default="scope">
- {{ item.prop === "type" ? "" : item.prop === "status" ? (scope.row[item.prop] == 1 ? "可用" : "不可用") : scope.row[item.prop] }}
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-col>
- </transition>
- <transition name="el-fade-in-linear">
- <el-col class="centerBox" style="width: 100%">
- <div :class="stroes.$state.leftBtn ? 'leftBtn btnW' : 'leftBtn0 btnW'" @click="stroes.leftBtnClick()">
- <img src="@/assets/img/svg/left.svg" alt="" class="img" />
- </div>
- <el-col class="centerContent" id="mapF"></el-col>
- <div :class="stroes.$state.rightBtn ? 'rightBtn btnW' : 'rightBtn0 btnW'" @click="stroes.rightBtnClick()">
- <img src="@/assets/img/svg/left.svg" alt="" class="img" />
- </div>
- <div class="mapTips_type">
- <img src="@/assets/img/svg/danweitop.svg" alt="" class="img" />
- <div class="content">
- <p>类型筛选</p>
- <div class="selectType">
- <!-- <div @click="checkboxChange(0)" :class="checkedArray.checkedData[0] == 0 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.xfc" alt="" />
- <span>车辆</span>
- </div> -->
- <!-- <div @click="checkboxChange(1)" :class="checkedArray.checkedData[0] == 1 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.lsjq" alt="" />
- <span>历史警情</span>
- </div>
- <div @click="checkboxChange(2)" :class="checkedArray.checkedData[0] == 2 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.lshz" alt="" />
- <span>历史火灾</span>
- </div> -->
- <!-- <div @click="checkboxChange(3)" :class="checkedArray.checkedData[0] == 3 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.zddw" alt="" />
- <span>重点单位</span>
- </div> -->
- <!-- <div
- :class="
- checkedArray.checkedData[0] == 4
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 40
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 41
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 42
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 43
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 44
- ? 'checkTypeSelect'
- : checkedArray.checkedData[0] == 45
- ? 'checkTypeSelect'
- : checkedSelectValue == '46'
- ? stores.sadianIcon.yjxfz
- : checkedSelectValue == '47'
- ? stores.sadianIcon.jzzzxfd
- : ' '
- "
- >
- <img
- :src="
- checkedSelectValue == '40'
- ? stores.sadianIcon.xfz
- : checkedSelectValue == '41'
- ? stores.sadianIcon.zzd
- : checkedSelectValue == '42'
- ? stores.sadianIcon.jzwxxfz
- : checkedSelectValue == '43'
- ? stores.sadianIcon.csxfz
- : checkedSelectValue == '44'
- ? stores.sadianIcon.qyxfd
- : checkedSelectValue == '45'
- ? stores.sadianIcon.sqwxxfz
- : checkedSelectValue == '46'
- ? stores.sadianIcon.sqwxxfz
- : checkedSelectValue == '47'
- ? stores.sadianIcon.sqwxxfz
- : stores.sadianIcon.xfz
- "
- alt=""
- />
- <span>{{ checkedSelectLabel }}</span>
- <el-select
- v-model="checkedSelectValue"
- placeholder="消防站"
- class="selectTypeIcon"
- style="display: inline-block; width: 100%; position: absolute; right: 0"
- @change="selectArray"
- >
- <el-option v-for="item in checkedSelectArray" :key="item.value" :label="item.label" :value="item.value"> </el-option>
- </el-select>
- </div> -->
- <div @click="checkboxChange(19)" :class="checkedArray.checkedData[0] == 19 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.d" alt="" />
- <span>大网格</span>
- </div>
- <div @click="checkboxChange(15)" :class="checkedArray.checkedData[0] == 15 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.z" alt="" />
- <span>中网格</span>
- </div>
- <div @click="checkboxChange(16)" :class="checkedArray.checkedData[0] == 16 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.x" alt="" />
- <span>小网格</span>
- </div>
- <!-- <div @click="checkboxChange(17)" :class="checkedArray.checkedData[0] == 17 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.ssjq" alt="" />
- <span>监控视频</span>
- </div>
- <div @click="checkboxChange(18)" :class="checkedArray.checkedData[0] == 18 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.jdjc" alt="" />
- <span>监督检查</span>
- </div> -->
- <div @click="checkboxChange(20)" :class="checkedArray.checkedData[0] == 20 ? 'checkTypeSelect' : ''">
- <img :src="stores.sadianIcon.zfjly" alt="" />
- <span>执法记录仪</span>
- </div>
-
- </div>
- </div>
- </div>
- </el-col>
- </transition>
- <transition name="el-fade-in-linear">
- <el-col class="rightBox" v-show="stroes.$state.rightBtn">
- <!-- 疏导区每日动态 start -->
- <div class="dailyNewSec">
- <h4 style="display: flex">疏导区每日动态</h4>
- <div class="dailyItem ">
-
- <Vue3SeamlessScroll :list="dailyArray" :step=".1" :hover="true">
- <el-row>
- <el-col v-for="(item,index) in dailyArray" :key="index">
- <a target="_blank" @click="openPdf(item.url)">{{ item.title }}</a>
- </el-col>
- </el-row>
- </Vue3SeamlessScroll>
-
- </div>
- </div>
- <!-- 疏导区网格检查情况 start -->
- <div class="girdCheckSec">
- <h4 style="display: flex">疏导区网格检查情况</h4>
- <div class="girdCheckItem">
- <div class="row_g">
- <div style="font-size:.175rem">累计:</div>
- <div @click="basicStaticsData('新消监')">检查家数<br>6279家次</div>
- <div @click="basicStaticsData('新消监')">发现隐患数<br>2418处</div>
- <div @click="basicStaticsData('新消监')">整改隐患<br>1885处</div>
- <div style="font-size:.175rem;margin-left:.125rem" >当日:</div>
- <div @click="basicStaticsData('新消监')">检查家数<br>127家次</div>
- <div @click="basicStaticsData('新消监')">发现隐患数<br>50处</div>
- <div @click="basicStaticsData('新消监')">整改隐患<br>48处</div>
- </div>
- </div>
- <div style="display: flex">
- <h4 style="font-size: 0.2rem;border:none"></h4>
- <div
- style="
- display: flex;
- border-bottom: 0.0125rem solid
- rgba(115, 251, 253, 0.5);
- "
- >
- <el-button
- size="mini"
- @click="btnC('1')"
- :class="{ btnClick: check === '1' }"
- >大网格</el-button
- >
- <el-button
- size="mini"
- @click="btnC('2')"
- :class="{ btnClick: check === '2' }"
- >中网格</el-button
- >
- </div>
- </div>
- <el-table :data="tableDataGrid"
- class="transparentTableRow"
- height="57%"
- :empty-text="dataNo2"
-
- >
- <el-table-column prop="id" label="网格编号" min-width="25" show-overflow-tooltip/>
- <el-table-column prop="count1" label="检查家数" min-width="20" show-overflow-tooltip/>
- <el-table-column prop="count2" label="发现隐患数" min-width="20" show-overflow-tooltip/>
- <el-table-column prop="count3" label="整改隐患" min-width="20" show-overflow-tooltip/>
- </el-table>
-
-
-
-
- </div>
- <!-- 疏导区单位四色分级情况 start -->
- <div class=" ssfjSec">
- <h4 style="display: flex">疏导区单位四色分级情况</h4>
-
- <div class="girdCheckItem">
-
- <el-row class="row_g2">
- <el-col :span="8">消防安全重点单位<br><span @click="openPdf('http://32.0.15.107:8080/mhvi/zddw.pdf')" style="border-bottom:1px solid #fff">评分标准</span></el-col>
- <el-col :span="4" style="color:red" @click="djActiveClick(0)">高风险<br>0(家)</el-col>
- <el-col :span="4" style="color:orange" @click="djActiveClick(1)">较高风险<br>9(家)</el-col>
- <el-col :span="4" style="color:yellow" @click="djActiveClick(2)">一般风险<br>15(家)</el-col>
- <el-col :span="4" style="color:rgb(1, 224, 255)" @click="djActiveClick(3)">低风险<br>152(家)</el-col>
- </el-row>
- <el-row class="row_g2">
- <el-col :span="8">九小场所<br><span @click="openPdf('http://32.0.15.107:8080/mhvi/jxcs.pdf')" style="border-bottom:1px solid #fff">评分标准</span></el-col>
- <el-col :span="4" style="color:red" @click="basicStaticsData(39,'高风险')" >高风险<br>{{jxcstj[0]}}(家)</el-col>
- <el-col :span="4" style="color:orange" @click="basicStaticsData(39,'较高风险')" >较高风险<br>{{jxcstj[1]}}(家)</el-col>
- <el-col :span="4" style="color:yellow" @click="basicStaticsData(39,'一般风险')">一般风险<br>{{jxcstj[2]}}(家)</el-col>
- <el-col :span="4" style="color:rgb(1, 224, 255)" @click="basicStaticsData(39,'低风险')">低风险<br>{{jxcstj[3]}}(家)</el-col>
- </el-row>
- </div>
-
-
- </div>
-
- <!-- <div class="girdCheckSec">
- <h4 style="display: flex">疏导区网格检查情况</h4>
- <div class="girdCheckItem">
- <p>大网格<span> 街镇分营领导:10 城运中心主任:10 安监所所长:10 支队外参谋:10</span></p>
- <el-row>
- <el-col :span="6">检查家数: 100</el-col>
- <el-col :span="6">发现隐患数: 20</el-col>
- <el-col :span="6">督改隐患数: 20</el-col>
- <el-col :span="6">签约承诺数: 20</el-col>
- </el-row>
- </div>
- <div class="girdCheckItem">
- <p>中网格</p>
- <el-row>
- <el-col :span="6">检查家数: 100</el-col>
- <el-col :span="6">发现隐患数: 20</el-col>
- <el-col :span="6">督改隐患数: 20</el-col>
- <el-col :span="6">签约承诺数: 20</el-col>
- </el-row>
- </div>
- <div class="girdCheckItem">
- <p>小网格</p>
- <el-row>
- <el-col :span="6">检查家数: 100</el-col>
- <el-col :span="6">发现隐患数: 20</el-col>
- <el-col :span="6">督改隐患数: 20</el-col>
- <el-col :span="6">签约承诺数: 20</el-col>
- </el-row>
- </div>
- <br>
- </div> -->
- <!-- 疏导区网格检查情况 end -->
- <!-- <div class="rightTop3">
- <h4 style="display: flex">处置网格</h4>
-
- <div class="rightTopContent">
- <el-row v-if="gridStatisticsStatus">
- <el-col :span="12" @click="gridStatistics(1)">
- <div>
- <div class="left">
- <img src="@a/img/sadian/sbs.png" alt="" />
- <div>上报数</div>
- </div>
- <el-row class="right">
- <el-col :span="24" style="color: #ff0000">{{ gridStatisticsNum.total || 0 }}</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12" @click="gridStatistics(3)">
- <div>
- <div class="left">
- <img src="@a/img/sadian/yhs.png" alt="" />
- <div>隐患数</div>
- </div>
- <el-row class="right">
- <el-col :span="24" style="color: #ff5a00">{{ gridStatisticsNum.yinhuan || 0 }}</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12" @click="gridStatistics(2)">
- <div>
- <div class="left">
- <img src="@a/img/sadian/czs.png" alt="" />
- <div>处置数</div>
- </div>
- <el-row class="right">
- <el-col :span="24" style="color: #ffd800">{{ gridStatisticsNum.over || 0 }}</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="left">
- <img src="@a/img/sadian/czl.png" alt="" />
- <div>处置率</div>
- </div>
- <el-row class="right">
- <el-col :span="24" style="color: #0084ff">{{ gridStatisticsNum.rate || 0 }}%</el-col>
- </el-row>
- </div>
- </el-col>
- </el-row>
-
- <el-row v-if="!gridStatisticsStatus">
- <el-table
- :data="gridStatisticsTableType"
- class="transparentTableRow"
- height="100%"
- :empty-text="dataNo3"
- ref="reportTable"
- @mouseenter="autoScroll1(true)"
- @mouseleave="autoScroll1()"
- >
- <el-table-column v-for="item in gridStatisticsHeader" show-overflow-tooltip :key="item.prop" :prop="item.prop" align="left" min-width="20" :label="item.name">
- <template v-if="item.prop =='案件状态' || item.prop =='街镇' || item.prop =='自治网格' || item.prop =='案件子类' || item.prop =='发现时间'" #default="scope">
- <el-tooltip placement="left" >
- <template #content >
- <div class="tableTooltip" ref="ff">
- <div class="tableTitle">
- <div>案件详情</div>
- </div>
- <img src="~@a/img/icon/close.png" alt="" class="close" @click="closeIsTooltip" />
- <el-row class="tableContent">
- <el-col :span="20" v-if="scope.row['案件状态']">案件状态:{{scope.row["案件状态"]}}</el-col>
- <el-col :span="24" v-if="scope.row['任务号'] ">任务号:{{scope.row["任务号"] }}</el-col>
- <el-col :span="24" v-if="scope.row['发现时间']">发现时间:{{scope.row["发现时间"]}}</el-col>
- <el-col :span="24" v-if="scope.row['案件来源']">案件来源:{{scope.row["案件来源"]}}</el-col>
- <el-col :span="24" v-if="scope.row['案件属性']">案件属性:{{scope.row["案件属性"]}}</el-col>
- <el-col :span="24" v-if="scope.row['街镇']">街镇:{{scope.row["街镇"]}}</el-col>
- <el-col :span="12" v-if="scope.row['自治网格类型']">自治网格类型:{{scope.row["自治网格类型"]}}</el-col>
- <el-col :span="24" v-if="scope.row['责任块']">责任块:{{scope.row["责任块"]}}</el-col>
- <el-col :span="24" v-if="scope.row['案件大类']">案件大类:{{scope.row["案件大类"]}}</el-col>
-
-
- <el-col :span="24" v-if="scope.row['案件小类']">案件小类:{{scope.row["案件小类"]}}</el-col>
-
- <el-col :span="24" v-if="scope.row['自治网格']">自治网格:{{scope.row["自治网格"]}}</el-col>
-
-
-
-
- <el-col :span="24" v-if="scope.row['处置网格']">处置网格:{{scope.row["处置网格"]}}</el-col>
-
- <el-col :span="24" v-if="scope.row['发生地址']">发生地址:{{scope.row["发生地址"]}}</el-col>
- <el-col :span="24" v-if="scope.row['诉求联系人']">诉求联系人:{{scope.row["诉求联系人"]}}</el-col>
- <el-col :span="24" v-if="scope.row['流转方向']">流转方向:{{scope.row["流转方向"]}}</el-col>
- <el-col :span="24" v-if="scope.row['派遣时间'] ">派遣时间:{{scope.row["派遣时间"] }}</el-col>
- <el-col :span="24" v-if="scope.row['主责部门']">主责部门:{{scope.row["主责部门"] }}</el-col>
- <el-col :span="24" v-if="scope.row['三级主责部门']">三级主责部门:{{scope.row["三级主责部门"] }}</el-col>
- <el-col :span="24" v-if="scope.row['处理时间']">处理时间:{{scope.row["处理时间"] }}</el-col>
- </el-row>
- </div>
- </template>
- <template>
- <div class="name-wrapper" >{{ scope.row[item.prop] }}</div>
- </template>
- </el-tooltip>
- </template>
- <template v-else #default="scope">
- {{ scope.row[item.prop] }}
- </template>
- </el-table-column>
- </el-table>
- </el-row>
- </div>
- <div class="leftTopContent" v-if="tabsArea == 'jc'">
- <el-row>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>检查单位数(家次)</div>
- </div>
- <div class="content">
- <span>6276</span>
- <span>同比</span>
- <span style="color: #fe0505">+29.48%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>发现隐患数(处)</div>
- </div>
- <div class="content">
- <span>1340</span>
- <span>同比</span>
- <span style="color: #fe0505">+14.18%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>督改隐患数(处)</div>
- </div>
- <div class="content">
- <span>1090</span>
- <span>同比</span>
- <span style="color: #fe0505">+7.34%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div style="width: 80%">
- <div class="title">
- <div>签约承诺书(份)</div>
- </div>
- <div class="content">
- <span>5410</span>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </div> -->
- <!-- <div class="rightTop">
- <h4 style="display: flex">疏导区社会面风险评估情况</h4>
- <div style="display: flex;float:right;margin-top:-36px;">
- <el-button size="mini" @click="tabsArea = 'fx'" :class="{ btnClick: tabsArea == 'fx' }"> 风险情况 </el-button>
- <el-button size="mini" @click="tabsArea = 'jc'" :class="{ btnClick: tabsArea == 'jc' }"> 检查情况 </el-button>
- </div>
- <div class="rightTopContent" v-if="tabsArea == 'fx'">
- <el-row>
- <el-col :span="12">
- <div>
- <div class="left">
- <img src="@a/img/securityPlan/right1.png" alt="" />
- <div>高风险场所</div>
- </div>
- <el-row class="right">
- <el-col :span="24">单位总数(家)</el-col>
- <el-col :span="24" style="color: #ff0000">8</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="left">
- <img src="@a/img/securityPlan/right2.png" alt="" />
- <div>较高风险场所</div>
- </div>
- <el-row class="right">
- <el-col :span="24">单位总数(家)</el-col>
- <el-col :span="24" style="color: #ff5a00">0</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="left">
- <img src="@a/img/securityPlan/right3.png" alt="" />
- <div>一般风险场所</div>
- </div>
- <el-row class="right">
- <el-col :span="24">单位总数(家)</el-col>
- <el-col :span="24" style="color: #ffd800">6</el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="left">
- <img src="@a/img/securityPlan/right4.png" alt="" />
- <div>低风险场所</div>
- </div>
- <el-row class="right">
- <el-col :span="24">单位总数(家)</el-col>
- <el-col :span="24" style="color: #0084ff">18</el-col>
- </el-row>
- </div>
- </el-col>
- </el-row>
- </div>
- <div class="leftTopContent" v-if="tabsArea == 'jc'">
- <el-row>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>检查单位数(家次)</div>
- </div>
- <div class="content">
- <span>6276</span>
- <span>同比</span>
- <span style="color: #fe0505">+29.48%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>发现隐患数(处)</div>
- </div>
- <div class="content">
- <span>1340</span>
- <span>同比</span>
- <span style="color: #fe0505">+14.18%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div>
- <div class="title">
- <div>督改隐患数(处)</div>
- </div>
- <div class="content">
- <span>1090</span>
- <span>同比</span>
- <span style="color: #fe0505">+7.34%</span>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div style="width: 80%">
- <div class="title">
- <div>签约承诺书(份)</div>
- </div>
- <div class="content">
- <span>5410</span>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </div> -->
- <div class="rightTop">
- <!-- <h4>安保推送情况</h4>
- <el-row class="rightTop2">
- <el-col :span="8" v-for="(item, index) in proptionList" :key="index">
- <div>
- <div style="text-align: center; font-size: 0.18rem">
- {{ item.type }}
- </div>
- <div style="height: 1.5rem">
- <gauge ref="gauge1" :data="item"></gauge>
- </div>
- </div>
- </el-col>
- </el-row> -->
- <h4>疏导区执法记录仪画面</h4>
- <el-row class="monitor-list" >
- <div class="list">
- <el-select
- v-model="zfjly1"
- placeholder="请选择执法记录仪"
- class="videoSelect"
- >
- <el-option
- v-for="item in selectVideoData"
- :key="item.url"
- :label="item.name"
- :value="item.url"
- >
- </el-option>
- </el-select>
- <img src="@/assets/img/home/video.jpg" alt="" v-if="!zfjly1">
-
- <iframe
- class="hlsVideo monitor-height"
- :src="zfjly1"
- allowfullscreen="true"
- ></iframe>
- <div @click="videoClose(1)" class="videoCloseBtn" v-if="zfjly1">
- <div class="returnText">关闭</div>
- </div>
- </div>
- <div class="list" :offset="2">
- <el-select
- v-model="zfjly2"
- placeholder="请选择执法记录仪"
- class="videoSelect"
- >
- <el-option
- v-for="item in selectVideoData"
- :key="item.url"
- :label="item.name"
- :value="item.url"
- >
- </el-option>
- </el-select>
- <img src="@/assets/img/home/video.jpg" alt="" v-if="!zfjly2">
- <iframe
- class="hlsVideo monitor-height"
- :src="zfjly2"
- allowfullscreen="true"
- ></iframe>
- <div @click="videoClose(2)" class="videoCloseBtn" v-if="zfjly2">
- <div class="returnText">关闭</div>
- </div>
- </div>
- </el-row>
- </div>
- <!-- <div class="rightBot">
- <h4>网格人员信息</h4>
- <div class="rightBotContent" v-if="erpData.length > 0">
- <el-table
- :data="rightArray.tableData"
- class="transparentTableRow"
- height="100%"
- :empty-text="dataNo2"
- ref="reportTable"
- @mouseenter="autoScroll(true)"
- @mouseleave="autoScroll()"
- >
- <el-table-column v-for="item in rightArray.headerData2" show-overflow-tooltip :key="item.prop" :prop="item.prop" align="left" min-width="20" :label="item.name">
- <template #default="scope">
- {{ item.prop === "type" ? "" : item.prop === "status" ? (scope.row[item.prop] == 1 ? "可用" : "不可用") : scope.row[item.prop] }}
- </template>
- </el-table-column>
- </el-table>
- </div>
- </div> -->
- </el-col>
- </transition>
- <!-- 普通弹框 -->
- <!-- <div class="tableTooltipwt sadianTankang" v-show="stores.$state.arrayList.length > 0 && !jkspStatus">
- <img src="~@a/img/icon/close.png" alt="" class="close" @click="close" />
- <el-row class="tableContent">
- <el-col class="mk" v-for="li in stores.$state.arrayList" :key="li" v-show="li.title[1]">
- <p v-show="li.title[1]">{{ li.title[0] }}</p>
- <el-row>
- <el-col v-for="ch in li.children" :key="ch" :span="ch[2]" v-show="li.title[1] && ch[1]">
- <span class="color1">{{ ch[0] }}</span>
- <span class="color2">{{ ch[1] }}</span>
- </el-col>
- <el-row style="margin-top: 10px" v-if="li.type">
- <iframe :src="li.url" allowfullscreen="true" style="width: 100%"></iframe>
- </el-row>
- </el-row>
- </el-col>
- </el-row>
- </div> -->
- <!-- 普通弹框 -->
- <div class="tableTooltipwt sadianTankang " v-if="jkspStatus">
- <img src="~@a/img/icon/close.png" alt="" class="close" @click="closeJkspStatus" />
- <el-row class="tableContent">
- <el-col class="mk">
- <p style="font-size:0.2rem">监控视频</p>
- <el-row>
- <el-col v-for="ch in stores.$state.jkspData.children" :key="ch" :span="24" >
- <span class="color1">{{ ch[0] }}</span>
- <span class="color2">{{ ch[1] }}</span>
- </el-col>
- </el-row>
- </el-col>
- <div class="video">
- <video :id="Message.videoId" preload="true" autoplay="autoplay"
- class="hlsVideo monitor-height" ref="hlsVideo" style="width: 100%" controls muted></video>
- </div>
-
- </el-row>
- </div>
- <!-- pdf弹框 -->
- <div class="dialogSec">
- <el-dialog v-model="dialogTableVisible" title="" :showClose="false">
- <iframe
- :src="pdfUrl"
- frameborder="0"
- style="width: 100%; height: 87vh"
- ></iframe>
- </el-dialog>
- </div>
- <!-- 消防安全重点单位弹框 -->
- <transition name="el-fade-in-linear">
- <div class="tableTooltipwt2" v-if="tk">
- <img src="~@a/img/icon/close.png" alt="" class="close" @click="closeTk" />
- <el-col class="mk">
- <el-row>
- <el-col>
- <span class="color2">单位名称:</span>
- <span class="color1">{{ tkData.companyName }}</span>
- </el-col>
- <el-col>
- <span class="color2">单位类型:</span>
- <span class="color1">重点单位</span>
- </el-col>
- <!-- <el-col v-if="tkData.linkPhone">
- <span class="color2">联系电话:</span>
- <span class="color1">{{ tkData.linkPhone }}</span>
- </el-col> -->
- <el-col>
- <span class="color2">地址:</span>
- <span class="color1">{{ tkData.address }}</span>
- </el-col>
- <el-col v-if="tkData.person3">
- <span class="color2">单位联系人:</span>
- <span class="color1">{{ tkData.person3 }}</span>
- </el-col>
- <el-col v-if="tkData.phone3" >
- <span class="color2">单位联系人电话:</span>
- <span class="color1">{{ tkData.phone3 }}</span>
- </el-col>
- <el-col v-if="tkData.person1">
- <span class="color2">消防安全责任人:</span>
- <span class="color1">{{ tkData.person1 }}</span>
- </el-col>
- <el-col v-if="tkData.phone1">
- <span class="color2">消防安全责任人电话:</span>
- <span class="color1">{{ tkData.phone1 }}</span>
- </el-col>
- <el-col v-if="tkData.person2">
- <span class="color2">消防安全管理人:</span>
- <span class="color1">{{ tkData.person2 }}</span>
- </el-col>
- <el-col v-if="tkData.phone2" style="border-bottom: 1px solid #fff; padding-bottom: 10px">
- <span class="color2">消防安全管理人电话:</span>
- <span class="color1">{{ tkData.phone2 }}</span>
- </el-col>
-
- <el-col style="margin-top: 6px">
- <span class="color1" style="margin-left: 0">企业消防综合评估</span>
- <span class="color1" style="float: right"
- >综合得分:{{
- tkData.fireRisk + tkData.buildIntegrity + tkData.lawEnforce + tkData.selfManage + tkData.facilityStatus
- ? (tkData.fireRisk + tkData.buildIntegrity + tkData.lawEnforce + tkData.selfManage + tkData.facilityStatus).toFixed(2)
- : 0
- }}
- 分</span
- >
- </el-col>
- <table border="0" cellspacing="0" cellpadding="0">
- <thead>
- <tr>
- <th>指数</th>
- <th>建筑整体指数</th>
- <th>火灾风险指数</th>
- <th>监督执法指数</th>
- <th>自主管理指数</th>
- <th>设施状况指数</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>得分</td>
- <td>{{ tkData.fireRisk }}</td>
- <td>{{ tkData.buildIntegrity }}</td>
- <td>{{ tkData.lawEnforce }}</td>
- <td>{{ tkData.selfManage }}</td>
- <td>{{ tkData.facilityStatus }}</td>
- </tr>
- </tbody>
- </table>
- <el-col style="margin-top: 6px" v-if="tkData.reformPart">
- <span class="color1" style="margin-left: 0">消防整改情况</span>
- </el-col>
- <el-col v-if="tkData.reformPart">
- <span class="color1" style="margin-left: 0">编号:{{ tkData.reformCode }}</span>
- <span class="color1" style="float: right">整改期限:{{ tkData.limitTime ? tkData.limitTime.split("T")[0] + " " + tkData.limitTime.split("T")[1] : "" }}</span>
- </el-col>
- <table border="0" cellspacing="0" cellpadding="0" v-if="tkData.reformPart">
- <thead>
- <tr>
- <th>序号</th>
- <th>整改项</th>
- <th>原因</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item, index) in tkData.reformPart.data" :key="index">
- <td>{{ index + 1 }}</td>
- <td>{{ item.item }}</td>
- <td>{{ item.reason }}</td>
- </tr>
- </tbody>
- </table>
- <div style="margin-top: 40px" v-if="tkData.reformStatus != 0">
- <el-steps
- :active="tkData.reformStatus == 1 ? 1 : tkData.reformStatus == 2 || tkData.reformStatus == 3 ? 1 : tkData.reformStatus == 4 || tkData.reformStatus == 5 ? 2 : 0"
- align-center
- >
- <el-step title="已接收" :description="tkData.receivedTime.replace('T', ' ')"></el-step>
- <el-step
- :title="tkData.reformStatus == 2 ? '整改中' : tkData.reformStatus == 3 || tkData.reformStatus == 4 || tkData.reformStatus == 5 ? '整改完成' : '整改中'"
- :description="tkData.reformTime.replace('T', ' ')"
- ></el-step>
- <el-step
- :title="
- tkData.reformStatus == 1 || tkData.reformStatus == 2 || tkData.reformStatus == 3
- ? '待审核'
- : tkData.reformStatus == 4
- ? '审核不通过'
- : tkData.reformStatus == 5
- ? '审核通过'
- : ''
- "
- :description="tkData.reviewTime.replace('T', ' ')"
- ></el-step>
- </el-steps>
- </div>
- <div style="margin: 10px auto" v-if="tkData.companyName == '上海虹桥国际特商物流港'">
- <el-button type="primary" size="small" style="background: none; border-radius: 4px; border: 1px solid #73fbfd; height: 30px; padding: 0 6px !important; margin: 10px 0 0"
- ><a href="http://file.usky.cn/statics/202303/20232D91E7B3D14C346BC9F009FA0B76FA5BF.pdf" target="_blank" style="color: #fff; text-decoration: none"
- > 查看报告 </a
- ></el-button
- >
- </div>
- </el-row>
- </el-col>
- </div>
- </transition>
-
- </el-row>
- </template>
- <script>
- import axios from "axios";
- import linstener from "@c/mixins/linstener";
- import map from "@c/mixins/map-data1";
- import gauge from "@c/gauge/index6";
- // import map from "@c/mixins/map-gaode-public";
- import { Vue3SeamlessScroll } from "vue3-seamless-scroll";
- import category from "@c/category/index22";
- import unitBox from "@c/unitBox/index";
- import CountTo from "@/components/count-to/index.js";
- import Hls from "hls.js";
- export default {
- mixins: [linstener, map],
- components: { category, gauge, CountTo,unitBox ,Vue3SeamlessScroll },
- data() {
- return {
- tk:false,
- tkData: {},//消防安全重点单位弹框数据
- jxcstj:[0,0,0,0],//九小场所统计
- check: '1',
- dialogTableVisible:false,
- pdfUrl:'',
- dailyArray:[
- {
- title: '第十二期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231105.pdf',
- },
- {
- title: '第十一期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231104.pdf',
- },
- {
- title: '第十期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231103.pdf',
- },
- {
- title: '第九期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231102.pdf',
- },
- {
- title: '第八期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231101.pdf',
- },
- {
- title: '第七期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231031.pdf',
- },
- {
- title: '第六期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231030.pdf',
- },
- {
- title: '第五期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231027.pdf',
- },
- {
- title: '第四期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231026.pdf',
- },
- {
- title: '第三期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231025.pdf',
- },
- {
- title: '第二期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231024.pdf',
- },
- {
- title: '第一期: 第六届中国国际进口博览会每日工作动态',
- url: 'http://32.0.15.107:8080/mhvi/20231023.pdf',
- },
- ],
- // 大中网格数据渲染 start
- tableDataGrid:[],
- tableDataBigGrid:[{
- id: '闵S1(华漕网格)',
- count1: '1361',
- count2: '499',
- count3: '355',
- },
- {
- id: '闵S2(新虹网格)',
- count1: '1674',
- count2: '564',
- count3: '491',
- },
- {
- id: '闵S3(七宝网格)',
- count1: '1585',
- count2: '487',
- count3: '391',
- },{
- id: '闵S4(虹桥网格)',
- count1: '1412',
- count2: '577',
- count3: '402',
- }],
-
- tableDataMiddleGrid:[{
- id: '闵S1-1(华漕网格)',
- count1: '225',
- count2: '90',
- count3: '66',
- },
- {
- id: '闵S1-2(华漕网格)',
- count1: '141',
- count2: '57',
- count3: '44',
- },
- {
- id: '闵S1-3(华漕网格)',
- count1: '164',
- count2: '58',
- count3: '39',
- },{
- id: '闵S1-4(华漕网格)',
- count1: '537',
- count2: '197',
- count3: '130',
- },{
- id: '闵S1-5(华漕网格)',
- count1: '253',
- count2: '83',
- count3: '66',
- },{
- id: '闵S2-1(新虹网格)',
- count1: '627',
- count2: '138',
- count3: '93',
- },{
- id: '闵S2-2(新虹网格)',
- count1: '225',
- count2: '111',
- count3: '104',
- },{
- id: '闵S2-3(新虹网格)',
- count1: '395',
- count2: '78',
- count3: '76',
- },{
- id: '闵S2-4(新虹网格)',
- count1: '425',
- count2: '253',
- count3: '196',
- },{
- id: '闵S3-1(七宝网格)',
- count1: '394',
- count2: '158',
- count3: '105',
- },{
- id: '闵S3-2(七宝网格)',
- count1: '171',
- count2: '48',
- count3: '34',
- },{
- id: '闵S3-3(七宝网格)',
- count1: '344',
- count2: '306',
- count3: '131',
- },{
- id: '闵S4-1(虹桥网格)',
- count1: '893',
- count2: '346',
- count3: '272',
- },{ id: '闵S4-2(虹桥网格)',
- count1: '499',
- count2: '125',
- count3: '115',
- }],
- tableDataBasic:[
- {
- date: '2016-05-03',
- name: 'Tom',
- address: 'No. 189, Grove St, Los Angeles',
- },
- {
- date: '2016-05-02',
- name: 'Tom',
- address: 'No. 189, Grove St, Los Angeles',
- },
- {
- date: '2016-05-04',
- name: 'Tom',
- address: 'No. 189, Grove St, Los Angeles',
- },
- {
- date: '2016-05-01',
- name: 'Tom',
- address: 'No. 189, Grove St, Los Angeles',
- },
- ],
- basicStatisStatus:true,
- gridStatisticsNum:{
- total:0,
- over:0,
- rate:0,
- yinhuan:0,
- },
- hls: "",
- Message: {
- "name": undefined,
- "videoId": undefined,
- "videoUrl": false,
- },
- jkspStatus:false,//监控视频弹框状态
- gridStatisticsStatus:true,//处置网格统计状态
- dataNo3:"加载中...",
- gridStatisticsTable:[
- // {
- // "案件状态": "待申请核查",
- // "任务号": "2310M2253844",
- // "发现时间": "2023-10-13 09:18",
- // "案件来源": "12345上报",
- // "案件属性": "部件",
- // "案件大类": "其他设施",
- // "案件小类": "充电站(桩)",
- // "案件子类": "其他充电桩相关问题",
- // "街镇": "华漕镇",
- // "自治网格": "诸新路居委会",
- // "自治网格类型": "居委",
- // "处置网格": "华漕镇处置网格五(诸翟南片区)",
- // "责任块": "九方家园",
- // "发生地址": "闵行区华漕镇保乐路168弄九方家园",
- // "诉求联系人": "臧婷婷",
- // "流转方向": "平台流转",
- // "派遣时间": "2023-10-13 09:20",
- // "主责部门": "华漕镇",
- // "三级主责部门": "诸新路居委会",
- // "处理时间": null,
- // "处理备注": null,
- // "结案时间": null,
- // "结案评判": null,
- // "结案意见": null,
- // "X坐标": -17369.89850242,
- // "Y坐标": -2808.9159114,
- // "问题描述": "市民来电反映:其是上述地址小区居民,要申请安装充电站,物业不肯给其敲章,市民为此不满,故来来电投诉上述小区物业。"
- // }
- ],//处置网格table数据
- gridStatisticsTableType:[],
- gridStatisticsHeader:[
- { prop: "发现时间", name: "发现时间" },
- { prop: "街镇", name: "街镇" },
- { prop: "自治网格", name: "自治网格" },
- { prop: "案件子类", name: "案件子类" },
- { prop: "案件状态", name: "案件状态" },
-
- ],//处置网格header
- value111:40,
- //24、厂房仓库?? 25、大型商业综合体?? 27、批发市场??
- // 23、宾馆酒店 26、规模租赁公寓 28、三合一场所 29、养老机构 30、医疗机构
- options: [
- {
- value: '23',
- label: '宾馆酒店',
- },
- {
- value: '25', //
- label: '大型商业综合体',
- },
- {
- value: '40', //?
- label: '消防安全重点单位',
- },
- {
- value: '30',
- label: '医疗机构',
- },
- {
- value: '29',
- label: '养老机构',
- },
-
- {
- value: '24',
- label: '厂房仓库',
- },
- {
- value: '27',
- label: '批发市场',
- },
- // {
- // value: '5',
- // label: '居民小区', //??
- // },
-
- {
- value: '26',
- label: '规模租赁公寓',
- },
- {
- value: '28',
- label: '三合一场所',
- },
-
- {
- value: '6',//????
- label: '电动自行车领域',
- },
-
- ],
- arrayData:[],
- line3Array:[
- {
- "name": "消防安全重点单位",
- "count": 176,
- "value":40
- },
- {
- "name": "大型商业综合体",
- "count": 13,
- "value":25
- },
- // {
- // "name": "重点单位",
- // "count": 14,
- // "value":13
- // },
- {
- "name": "酒店/宾馆",
- "count": 85,
- "value":23
- },
- {
- "name": "规模租赁公寓",
- "count": 90,
- "value":26
- },
- // {
- // "name": "高层建筑",
- // "count": 839,
- // "value":0 //?
- // },
- {
- "name": "厂房/仓库",
- "count": 83,
- "value":24
- },
- // {
- // "name": "商市场",
- // "count": 11,
- // "value":0 //?
- // },
- // {
- // "name": "公共娱乐场所",
- // "count": 38,
- // "value":0 //?
- // },
- {
- "name": "医疗机构",
- "count": 18,
- "value":30,
- },{
- "name": "养老机构",
- "count": 10,
- "value":29,
- },
- {
- "name": '批发市场',
- "count": 2,
- "value": '27',
- },
- {
- "name": '儿童福利机构',
- "count": 1,
- "value": '41',
- },
- {
- "name": "沿街门面",
- "count": 3080,
- "value":399 //
- },
- // {
- // "name": "办公楼宇",
- // "count": 52,
- // "value":0 //?
- // },
- // {
- // "name": "在建工地",
- // "count": 6,
- // "value":0 //?
- // },
- {
- "name": "居民小区",
- "count": 194,
- "value":38 //?
- },
-
- // {
- // "name": "宗教场所",
- // "count": 4,
- // "value":0 //?
- // },
- // {
- // "name": "学校",
- // "count": 23,
- // "value":37
- // },
- // {
- // "name": "加油(汽)站",
- // "count": 10,
- // "value":0 //?
- // },
- {
- "name": "地铁站",
- "count": 4,
- "value":43 //?
- }
-
- ],
- staticData:{
- array:[],
- total:0,
- array1:[
- {
- "streetTown": "消防站",
- "count": 4,
- "color": "#FF0709",
- "facilityType":0
- },
- {
- "streetTown": "流动消防站(一级)",
- "count": 5,
- "color": "#F48354",
- "facilityType":33
- },
- {
- "streetTown": "流动消防站(二级)",
- "count": 5,
- "color": "#73FBFD",
- "facilityType":34
- },
- {
- "streetTown": "重点微型消防站",
- "count": 77,
- "color": "#4FE261",
- "facilityType":36
- }
- ]
- },
- zfjly1:undefined,
- zfjly2:undefined,
- selectVideoData: [],
- tabsArea: "fx", //切换
- diversionArea: [
- { name: "疏导区总面积", value: 61.46, unit: "km²", color: "#7DD807" },
- { name: "华漕镇", value: 28.2, unit: "km²", color: "#01C3B4" },
- { name: "新虹街道", value: 19.26, unit: "km²", color: "#01C3B4" },
- { name: "七宝镇", value: 7, unit: "k㎡", color: "#01C3B4" },
- { name: "虹桥镇", value: 7, unit: "km²", color: "#01C3B4" },
-
- { name: "分管领导", value: 20, unit: "人", color: "#058DFE" },
- { name: "增援干部", value: 11, unit: "人", color: "#058DD1" },
- { name: "大网格", value: 4, unit: "个", color: "#FC0609 " },
- { name: "中网格", value: 14, unit: "个", color: "#FD843A" },
- { name: "小网格", value: 103, unit: "个", color: "#7DD807" },
- // {name:"人员力量",value:41,unit:"人",color:"#058DD1"},
- ], //疏导区基本情况
- gridStatus: 19,
- dataNo: "加载中...",
- dataNo2: "加载中...",
- stores: this.$useStore(),
- proptionList: [
- {
- type: "已推送单位",
- number: 306,
- month: null,
- radio: "1",
- sameStatus: 2,
- avg: null,
- color: ["#BF4216 ", "#F68E6A"],
- },
- {
- type: "已接收单位",
- number: 303,
- month: null,
- radio: "1",
- sameStatus: 2,
- avg: null,
- color: ["#06B1B9 ", "#14E1EA"],
- },
- {
- type: "推送接收率",
- number: 99,
- month: null,
- radio: "0.99",
- sameStatus: 2,
- avg: null,
- color: ["#E4951E ", "#F8ED41"],
- },
- ],
- category: true,
- tableData2: [],
- headerData2: [
- { prop: "name", name: "站点名称" },
- { prop: "car", name: "站点车辆" },
- { prop: "personnel", name: "人员" },
- ],
- reportComplaintList: [
- { name: "火灾扑救", value: 100 },
- { name: "社会救助", value: 90 },
- { name: "抢险救援", value: 60 },
- ], //接处警情况
- checkedArray: {
- checkedData: [19],
- checkedList: [
- { value: 0, label: "车辆" },
- { value: 1, label: "历史警情" },
- { value: 2, label: "历史火灾" },
- { value: 3, label: "重点单位" },
- { value: 4, label: "消防站" },
- { value: 19, label: "大网格" },
- { value: 15, label: "中网格" },
- { value: 16, label: "小网格" },
- { value: 17, label: "监控视频" },
- { value: 18, label: "监督检查" },
- { value: 20, label: "执法记录仪" },
- ],
- }, //类型筛选
- checkedSelectValue: "40",
- checkedSelectLabel: "消防站",
- checkedSelectArray: [
- { value: 40, label: "消防站" },
- { value: 41, label: "专职队" },
- // { value: 43, label: "城市消防站" },
- { value: 44, label: "企业消防队" },
- { value: 42, label: "街镇微型消防站" },
- { value: 45, label: "社区微型消防站" },
- { value: 46, label: "一级微型消防站" },
- { value: 47, label: "街镇专职消防队" },
- ],
- tableData: [
- {
- type: "火灾",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "火灾",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "火灾",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "社会救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "社会救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "社会救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "抢险救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "抢险救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "抢险救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "抢险救援",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- {
- type: "火灾",
- policeTime: "23:00:00",
- alertLevel: "二级",
- address: "闵行区",
- car: "2辆",
- policeCause: "电器火灾",
- department: "吴泾支队",
- status: "1",
- callingUp: "1号",
- equipName: "一七",
- carNumber: "沪X5477应急",
- carStatus: "出动",
- disposeTime: "1:00:00",
- correspondent: "张三",
- commander: "李四",
- firemen: "王五",
- driver: "赵六",
- },
- ],
- headerData: [
- { prop: "policeTime", name: "立案时间" },
- { prop: "alertLevel", name: "警情等级" },
- { prop: "address", name: "案发地址" },
- { prop: "car", name: "调动车辆" },
- // { prop: "type", name: "类型" },
- { prop: "policeCause", name: "原因" },
- { prop: "department", name: "所属中队" },
- { prop: "status", name: "状况" },
- ],
- erpData: [
- {
- linkPhone: "13917453877",
- address: "上海市闵行区新虹街道申滨南路1156号龙湖天街A栋112、115室",
- employeeNum: "",
- registrar: "市场监督管理局",
- companyType: "9",
- fireDutyName: "魏良满",
- delegateName: "魏静",
- completedTime: null,
- companyName: "龙湖虹桥天街",
- fireManageName: "魏良满",
- businessStatus: "开业",
- buildArea: "0.0",
- paidCapital: "500",
- companyId: "2DB679350A0F4023B74C4261539AA031",
- foundTime: null,
- buildingStructure: "钢筋混凝土",
- registeredCapital: "500",
- organization: "91310112MA1GEKG30K",
- companyNature: 9,
- buildingHeight: "25",
- fireRating: "一级",
- construction: null,
- id: 1415,
- },
- ],
- rightArray: {
- tableData: [],
- headerData2: [
- { prop: "gridArea", name: "网格区域" },
- { prop: "streetTown", name: "街道" },
- { prop: "gridPeople", name: "网格人员" },
- { prop: "recruiting", name: "增援干部" },
- { prop: "responsibilities", name: "分管领导" },
- ],
- },
- };
- },
- mounted() {
- this.gridStatisticsData()//处置网格数据
- this.grid(15);
- this.tableDataGrid=this.tableDataBigGrid;
- setTimeout(() => {
- this.autoScroll();
- });
- window.addEventListener("resize", () => this.resizeTimeActions([this.$refs.category, this.$refs.gauge1]), true);
- this.initMap("anbao"); //地图初始化
- // this.anbao(null, 3);//大网格
- this.dwgjcmcAndhzzx()//大网格名称及会展中心
- // this.anbaoMap()
- this.getFireSiteDuty(); //各站点执勤实力
- this.selectVideo(); //视频在线
- // this.sadianSelect(this.checkedArray.checkedData[0]); //撒点
- this.getStaticData(this.value111) //疏导区社会单位情况统计
- this.getZQStaticData() //执勤战备力量部署
- this.anbaoSDUWG2()//疏导区网格(大)
- this.basicStaticsData(39)//九小场所统计
- // this.llbutj()//力量部署统计
- // this.staticsSd() // 疏导区基本情况统计
-
- },
- methods: {
-
- async staticsSd(name,grideGrade,mapGridName){
- let res = await this.$axios.get(
- this.$api.security.gridMemderStatistic +
- "?" +
- this.$qs.stringify({
- gridArea: name,
- gridGrade:grideGrade,
- mapGridName:mapGridName
- })
- );
- if (res.data) {
- this.line3Array[0].count=res.data.keyCompanyNum; //重点单位
- this.line3Array[1].count=res.data.largeBuildNum;//大型商业综合体
- this.line3Array[2].count=res.data.hotelNum;//宾馆酒店
- this.line3Array[3].count=res.data.scaleRentNum;//规模租赁
- this.line3Array[4].count=res.data.factoryStoreNum;//厂房仓库
- this.line3Array[5].count=res.data.medicalInstitutionNum;//医疗机构
- this.line3Array[6].count=res.data.elderCareNum;//养老机构
- this.line3Array[7].count=res.data.dealerMarketNum;//批发市场 ???
- this.line3Array[8].count=res.data.schoolNum;//儿童福利机构
- this.line3Array[9].count=res.data.streetFrontNum;//沿街门面
- this.line3Array[10].count=res.data.villageNum;//居民小区
- this.line3Array[11].count=res.data.subwayStationNum;//地铁站
-
- }
-
- },
-
- /**
- * @消防安全重点单位撒点详情
- * @api接口请求
- */
- async zddwSd(val) {
- let res = await this.$axios.get(
- this.$api.selfManagement.scatterData +
- "?" +
- this.$qs.stringify({
- companyId: val.companyId,
- })
- );
- if (res.data) {
- this.tkData = res.data[0];
- this.tkData.person1 = val.person1
- this.tkData.person2 = val.person2
- this.tkData.person3 = val.person3
- this.tkData.phone1 = val.phone1
- this.tkData.phone2 = val.phone2
- this.tkData.phone3 = val.phone3
- this.tk = true;
- }
- },
- /**
- * 消防安全重点单位关闭
- */
- closeTk() {
- this.tk = false;
- },
- /**
- * 每日动态弹框打开pdf
- */
- openPdf(val){
- this.pdfUrl=val;
- this.dialogTableVisible=true
- },
- btnC(val) {
- this.check = val;
- if(val==2){
- this.tableDataGrid=this.tableDataMiddleGrid
- }else{
- this.tableDataGrid=this.tableDataBigGrid
- }
-
- },
- /**
- * 视频关闭
- * @param {} id
- */
- videoClose(id){
- if(id ==1){
- this.zfjly1 = true
- }
- if(id ==2){
- this.zfjly2 = true
- }
- this.destroyHls()
- },
- /**
- * 大网格街镇名称
- */
- dwgjcmcAndhzzx(){
- setTimeout(()=>{
- let data = [
- {
- gisX: 121.271655,
- gisY: 31.227993,
- type: "wgmc_hc",
- type2:"大网格",
- type3:"华漕镇",
- },
- {
- gisX: 121.308632,
- gisY: 31.201660,
- type: "wgmc_xh",
- type2:"大网格",
- type3:"新虹街道",
- },
- {
- gisX: 121.333994,
- gisY: 31.165263,
- type: "wgmc_qb",
- type2:"大网格",
- type3:"七宝镇",
- },
- {
- gisX: 121.37880329777738,
- gisY: 31.185610251208278,
- type: "wgmc_hq",
- type2:"大网格",
- type3:"虹桥镇",
- },
- {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- }
- ];
- this.addMarkerWG(data, "security-plan", "大网格街镇名称&国家会展中心")
- },2000)
- },
- /**
- * 会展中心图标()特殊处理
- */
- hzzxtb(){
- setTimeout(()=>{
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- this.addMarkerSYC([data], "security-plan", "国家会展中心")
- },2000)
- },
- /**
- * 力量部署统计
- */
- llbutj(){
- this.$axios.post(this.$api.water.baseGgpFacilityStatistic,{
- "facilityType": [33,34,35,36] ,
- "statisticType":"facilityType",
- }).then((res) => {
- for(let i =0;i<res.data.length;i++){
- if(res.data[i].facilityType == "33"){
- this.staticData.array1[0].count = res.data[i].count
- }
- if(res.data[i].facilityType == "34"){
- this.staticData.array1[1].count = res.data[i].count
- }
- if(res.data[i].facilityType == "35"){
- this.staticData.array1[2].count = res.data[i].count
- }
- if(res.data[i].facilityType == "36"){
- this.staticData.array1[3].count = res.data[i].count
- }
- }
- })
- },
- staticsPoint(arr,type,val){ //疏导区社会单位情况统计撒点
- this.anbaoSDUWG()//疏导区网格
- this.addMarker(arr, "security-plan", val)
- },
- goPoints(type){
- if(type == 0){
- retuen
- }
- this.anbaoSDUWG()
- this.$axios.post(this.$api.water.baseGgpFacilityList,{
- "facilityType": [type ]
- }).then((res) => {
-
- let arr = []
- if(res.data.length>0){
- arr = res.data;
- this.arrayData= res.data;
-
- if(type=='30'){
- this.addMarker(arr, "security-plan", "消防站")
- }else if(type=='33'){
- this.addMarker(arr, "security-plan", "流动消防站(一级)")
- }else if(type=='34'){
- this.addMarker(arr, "security-plan", "流动消防站(二级)")
- }else if(type=='36'){
- this.addMarker(arr, "security-plan", "重点微型消防站")
- }
-
- }
- });
- },
- /**
- * 消防安全重点单位
- * @param {*} id
- */
- djActiveClick(id) {
-
- let type = "重点单位";
- let arr = [];
- this.$axios
- .get(
- this.$api.selfManagement.riskGradeScatter +
- "?" +
- this.$qs.stringify({
- streetTown: this.stroes.$state.streetTown,
- riskGrade: id + 1,
- })
- )
- .then((res) => {
-
- let data2 = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- if (res.data.length > 0) {
- //点分布
- let data = res.data;
- for (let i = 0; i < data.length; i++) {
- arr[i] = data[i];
- arr[i].gisX = data[i].longitude;
- arr[i].gisY = data[i].latitude;
- arr[i].companyId = data[i].companyId;
- arr[i].type = type;
- }
- arr.unshift(data2)
- this.addMarker(arr.splice(0, 500), "self-management", id == 0 ? "高风险" : id ==1 ? "较高风险" : id == 2 ? "一般风险" : id == 3 ? "低风险" : "");
- } else {
-
- this.addMarker(arr, "self-management", type);
-
- }
- this.anbaoSDUWG()//疏导区网格
-
- });
- },
- basicStaticsData(type,name){ //疏导区基本情况 统计点击事件
- this.$axios.post(this.$api.water.baseGgpFacilityList,{
- "facilityType": type == "新消监" ? [39,42] : type == 399 ? [39] : [type]
- }).then((res) => {
- let arr = []
- if(res.data.length>0){
- arr = res.data;
- this.arrayData= res.data;
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data)
- //新消监
- if(type == "新消监"){
- this.addMarker(arr, "security-plan", type)
- }else{
- let dataOther = [data]
- if(type == 39){ //九小场所
- this.anbaoSDUWG()//疏导区网格
- if(name){
- for(let i=0;i<arr.length;i++){
- if(arr[i].checkComment){
- if(name == arr[i].checkComment){
- dataOther.push(arr[i])
- }
- }
- }
- this.addMarker(dataOther, "security-plan", name)
- }else{
- this.jxcstj = [0,0,0,0]
- for(let i=0;i<arr.length;i++){
- if(arr[i].checkComment){
- if(arr[i].checkComment == "高风险"){
- this.jxcstj[0] ++
- }
- if(arr[i].checkComment == "较高风险"){
- this.jxcstj[1] ++
- }
- if(arr[i].checkComment == "一般风险"){
- this.jxcstj[2] ++
- }
- if(arr[i].checkComment == "低风险"){
- this.jxcstj[3] ++
- }
- }
- }
-
- }
- }else{
- this.addMarker(arr, "security-plan", name)
- }
- }
- if(type == 399){ //沿街门面 左侧顶部
- this.addMarker(dataOther, "security-plan", name)
- }
-
- this.anbaoSDUWG()//疏导区网格
- // if(type=='29'){
- // this.addMarker(arr, "security-plan", "养老机构")
- // }else if(type=='30'){
- // this.addMarker(arr, "security-plan", "医疗机构")
- // }
- }
- });
- },
- basicGoBack(){ //疏导区基本情况 返回
- this.basicStatisStatus=true;
- },
- getZQStaticData(){
- this.$axios.post(this.$api.water.baseGgpFacilityStatistic,{
- "facilityType": [33,34,35,36 ],
- "statisticType":"facilityType",
- }).then((res) => {
- // this.staticData.array=res.data;
- // var colorArr=['#00C8B8','#068DFF','#FF843A','#7DD807'];
- // this.staticData.array.forEach((item, index) => {
- // item.color = colorArr[index]
- // })
- // console.log(this.staticData.array)
- // var totalCount=0
- // res.data.forEach(function(item){
- // totalCount+=Number(item.count)
- // })
- // this.staticData.total=totalCount
- })
- },
- getStaticData(type){
- this.$axios.post(this.$api.water.baseGgpFacilityStatistic,{
- "facilityType": [type ] ,
- "statisticType":"street",
- }).then((res) => {
- //筛选4个街镇的数据
- this.staticData.array = res.data.filter(item=> item.streetTown=='华漕镇'||item.streetTown=='新虹街道'||item.streetTown=='七宝镇'||item.streetTown=='虹桥镇')
- var colorArr=['#00C8B8','#068DFF','#FF843A','#7DD807'];
- this.staticData.array.forEach((item, index) => {
- item.color = colorArr[index]
- })
- // console.log(this.staticData.array)
- var totalCount=0
- res.data.forEach(function(item){
- totalCount+=Number(item.count)
- })
- this.staticData.total=totalCount
- })
- },
- getOneUnit(val){
-
- if(val=='29'||val=='30'){ //表格及撒点
- this.anbaoSDUWG()//疏导区网格
- this.$axios.post(this.$api.water.baseGgpFacilityList,{
- "facilityType": [val ]
- }).then((res) => {
- let arr = []
- if(res.data.length>0){
- arr = res.data;
- this.arrayData = res.data ? JSON.parse(JSON.stringify(res.data)) : []
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data)
- if(val=='29'){
- this.addMarker(arr, "security-plan", "养老机构")
- }else{
- this.addMarker(arr, "security-plan", "医疗机构")
- }
- }
- });
- }else if(val=='6'){
-
- }else{//统计
- this.getStaticData(val)
- }
- },
- beforeDestroy() {
- this.autoScroll(true);
- },
- closeJkspStatus(){
- this.jkspStatus = false
- this.destroyHls()
- },
- //播放按钮
- play() {
- this.destroyHls()
- this.loadVideoFn(this.Message.videoUrl)
- },
- destroyHls: function () {//关闭视频拉取
- if (this.hls) {
- this.$refs.hlsVideo.pause();
- this.hls.destroy();
- this.hls = null;
- }
- },
- loadVideoFn(url) {//视频播放
- setTimeout(() => {
- if (Hls.isSupported()) {
- this.hls = new Hls();
- this.hls.loadSource(url);
- this.hls.attachMedia(this.$refs.hlsVideo);
- this.hls.on(Hls.Events.MANIFEST_PARSED, () => {
- // console.log("加载成功");
- this.$refs.hlsVideo.play();
- });
- this.hls.on(Hls.Events.ERROR, (event, data) => {
- // console.log(event, data);
- // 监听出错事件
- //console.log("加载失败");
- });
- }
- }, 1000)
- },
- /**
- * 监控视频
- */
- surveillance(){
- axios({
- method: "get",
- url: "http://32.1.7.96:8086/fireMajorSecurityProcess/selectSecurityViewUrl",
- params:{
- "pageNum":"1",
- "pageSize":"500",
- }
- }).then((res) => {
- this.sadian(res.data.data, "security-plan", "监控视频");
- })
- },
- /**
- * 网格统计状态切换
- */
- gridStatisticsGoBack(){
- this.gridStatisticsStatus = true
- },
- /**
- * 网格数据统计
- */
- gridStatisticsData(){
- let formData = new FormData()
- formData.append('grant_type', "client_credentials")
- formData.append('client_id', "12016")
- formData.append('client_secret', "956DD43944464DCeB262cED7d351AAA4")
- formData.append('scope', "api.read")
- axios({
- headers: {
- 'Content-Type': 'multipart/form-data'
- },
- method: "post",
- url: "http://32.1.8.124:5001/connect/token",
- data:formData
- }).then((res) => {
- axios({
- headers: {
- 'Content-Type': 'multipart/form-data',
- "AppId": "12016",
- "ResourceId": "1884",
- "Authorization":'Bearer ' + res.access_token
- },
-
- method: "get",
- url: "http://32.1.8.124:5002/api/data-share/1884/json",
- params:{
- "STARTTIME":dayjs().subtract(0, "day").format("YYYY-MM-DD"),
- "ENDTIME":dayjs().subtract(0, "day").format("YYYY-MM-DD"),
- "STREETCODE":"",
- "INFOTYPEID":"",
- "INFOBCCODE":"",
- "INFOSCCODE":"",
- "INFOZCCODE":"",
- // "ENDTIME":"2023-12-01",
- }
- }).then((res2) => {
- this.gridStatisticsTable.total = []
- this.gridStatisticsTable.over = []
- this.gridStatisticsTable.yinhuan = []
- this.gridStatisticsTable.total = res2.values
- this.gridStatisticsTableType = this.gridStatisticsTable.total
- this.gridStatisticsNum.total = res2.values.length
- let num = 0;
- let yinhuan = 0
- for(let i =0;i<res2.values.length;i++){
- if(res2.values[i]["案件状态"] == "已结案"){
- num ++
- this.gridStatisticsTable.over.push(res2.values[i])
- }
- if(res2.values[i]["案件子类"].indexOf("部件") > -1 ||
- res2.values[i]["案件子类"].indexOf("三违") > -1 ||
- res2.values[i]["案件子类"].indexOf("扰乱火灾") > -1 ||
- res2.values[i]["案件子类"].indexOf("焚烧") > -1 ||
- res2.values[i]["案件子类"].indexOf("森林火灾") > -1 ){
-
- }else{
- yinhuan ++
- this.gridStatisticsTable.yinhuan.push(res2.values[i])
- }
- }
- setTimeout(()=>{
- this.gridStatisticsNum.over = num
- this.gridStatisticsNum.yinhuan = yinhuan
- if(num){
- this.gridStatisticsNum.rate = ((num / this.gridStatisticsNum.total) * 100).toFixed(2)
- }else{
- this.gridStatisticsNum.rate = 0
- }
- },50)
- })
- })
- },
- /**
- * 网格统计
- * @param {} id 1上报数,2隐患数,3处置数
- */
- gridStatistics(id){
- this.gridStatisticsStatus = false
- if(id == 1){
- this.gridStatisticsTableType = this.gridStatisticsTable.total
- }
- if(id == 2){
- this.gridStatisticsTableType = this.gridStatisticsTable.over
- }
- if(id == 3){
- this.gridStatisticsTableType = this.gridStatisticsTable.yinhuan
- }
-
- },
- /**
- * 在线视频
- */
- async selectVideo(id) {
- await axios({
- headers: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- method: "get",
- // url: "http://32.0.15.107:8080/video-api/kiop-gateway-core/4G/device/ext?apikey=643e6591-a489-4648-ba35-c15c39c64022",
- url: "http://32.0.15.107:8080/video-api/kiop-gateway-core/tysbs/device/ext?apikey=643e6591-a489-4648-ba35-c15c39c64022&f_in_civilCode=31021019,31020414&pageNo=0&pageSize=10000",
- }).then((res) => {
- let arr = [];
- let zfjly = [];
- if (res.data.length > 0) {
-
- let data = res.data;
- for (let i = 0; i < data.length; i++) {
- if (data[i].otherNames?.status_name == "在线") {
- var num = {
- id: data[i].id,
- name: data[i]?.deviceName,
- groupName: data[i]?.groupName,
- gisX: data[i]?.longitude
- ? data[i]?.longitude
- : 0,
- gisY: data[i]?.latitude ? data[i]?.latitude : 0,
- type: "执法记录仪",
- gbid: data[i].gbid,
- url:
- "http://10.107.31.215:50080/dispatch-ms/#/conference/single_url?ipc_live=1&key=643e6591-a489-4648-ba35-c15c39c64022&gbids=" +
- data[i].gbid,
- };
- arr.push(num);
- }
- }
- for (let i = 0; i < arr.length; i++) {
- if (arr[i].name.indexOf("单兵") > -1 || arr[i].name.indexOf("无人机") > -1 || arr[i].name.indexOf("布控球") > -1 || arr[i].name.indexOf("救援站") > -1) {
-
- }else{
- zfjly.push(arr[i]);
- }
- }
- this.selectVideoData = zfjly;
- let sd = []
- if (arr.length > 0 && id) {
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- sd = JSON.parse(JSON.stringify(zfjly))
- sd.push(data)
- this.addMarker(sd, "enforcement-dynamic","执法记录仪");
- }
- }
- });
- // 测试
- // let arr =
- // [{
- // id: "5708ad6382517cd68ea2d2f8cd01bb58",
- // name: "上海闵行闵行消防站4G布控球",
- // groupName: "009闵行支队",
- // gisX: 121.386128,
- // gisY:31.139253 ,
- // type:"video",
- // gbid:31.01411,
- // type:"执法记录仪",
- // url:"http://10.107.31.215:50080/dispatch-ms/#/conference/single_url?ipc_live=1&key=643e6591-a489-4648-ba35-c15c39c64022&gbids=31000000001320003271&nmediaid=121"
- // }
- // ]
- // if(id){
- // this.addMarker(arr, "enforcement-dynamic");
- // }
- },
- selectArray(id) {
- this.checkedArray.checkedData[0] = 4;
- let data = this.checkedSelectArray.filter((val) => {
- if (val.value == id) {
- return val.label;
- }
- });
- this.checkedSelectLabel = data[0].label;
- this.sadianSelect(data[0].value);
- this.anbaoSDUWG()//疏导区网格
- },
- /**
- *
- */
- goBack() {
- this.category = true;
- },
- /**
- * categoryClick echarts 点击事件
- */
- categoryClick() {
- this.category = false;
- },
- /* 各站点执勤实力分页 */
- async getFireSiteDuty() {
- await this.$axios
- .get(
- this.$api.fireSite.page +
- "?" +
- this.$qs.stringify({
- current: 1,
- size: 100,
- })
- )
- .then((res) => {
- if (res.data.records.length > 0) {
- let arr = res.data.records;
- let data = arr.filter((item) => {
- let data = [];
- if (item.name == "华漕站" || item.name == "新虹站" || item.name == "七宝站" || item.name == "申虹站") {
- data.push(item);
- return data;
- }
- });
- for (let i = 0; i < data.length; i++) {
- data[i].cheliang = {};
- data[i].personnel = undefined;
- data[i].car = undefined;
- this.$axios
- .get(
- this.$api.fireSite.list +
- "?" +
- this.$qs.stringify({
- zdCode: data[i].xfjgId,
- })
- )
- .then((Response) => {
- if (Response.data.length > 0) {
- let children = Response.data;
- data[i].cheliang = children;
- data[i].car = children.length;
- data[i].children = [];
- data[i].personnel = 0;
- for (let a = 0; a < children.length; a++) {
- children[a].renyuan = "";
- children[a].renyuanNum = 0;
- if (children[a].zhy) {
- children[a].renyuan = children[a].zhy + ",";
- }
- if (children[a].jsy) {
- children[a].renyuan += children[a].jsy + ",";
- }
- if (children[a].txy) {
- children[a].renyuan += children[a].txy + ",";
- }
- if (children[a].zsry) {
- children[a].renyuan += children[a].zsry + ",";
- }
- data[i].children.push(children[a]);
- if (children[a].renyuan.indexOf(",") > -1) {
- children[a].renyuanNum += children[a].renyuan.match(/,/g).length;
- }
- data[i].personnel += children[a].renyuanNum;
- }
- for (let i = 0; i < data.length; i++) {
- if (data[i].name == "闵行支队") {
- data[i].name = "支队";
- } else {
- data[i].name = data[i].name.slice(0, 2);
- }
- }
- setTimeout(() => {
- this.cldt = data;
- }, 1500);
- }
- });
- }
- setTimeout(() => {
- this.tableData2 = data;
- }, 1000);
- } else {
- this.dataNo = "暂未数据";
- }
- });
- },
- /**
- * 撒点类型选择
- */
- checkboxChange(id) {
- this.checkedArray.checkedData[0] = id;
- if (id == 15) {
- this.gridStatus = id;
- this.anbao(1, 1);
- // this.anbaoMap()
- this.grid(id);
- this.hzzxtb()
- this.anbaoSDUWG()//疏导区网格
- } else if (id == 16) {
- this.gridStatus = id;
- this.grid(16, null, null, 1);
- setTimeout(()=>{
- this.hzzxtb()
- this.anbaoSDUWG()//疏导区网格
- },2000)
-
- } else if (id == 17) {
- this.surveillance()
- this.hzzxtb()
- this.anbaoSDUWG()//疏导区网格
-
- } else if (id == 18) {
- this.gridStatus = id;
- this.sadianSelect(id);
- this.hzzxtb()
- this.anbaoSDUWG()//疏导区网格
- } else if (id == 19) {
- this.gridStatus = id;
- this.anbao(1, 3);
- this.dwgjcmcAndhzzx()
- this.anbaoSDUWG2()//疏导区网格
- } else if (id == 20) {
- this.gridStatus = id;
- this.selectVideo(1)
- this.anbaoSDUWG()//疏导区网格
- } else {
- this.sadianSelect(id);
- this.hzzxtb()
- this.anbaoSDUWG()//疏导区网格
- }
- },
- /* 历史警情 */
- async historicalWarning() {
- let monthDay = dayjs().subtract(30, "day").format("YYYY-MM-DD HH:mm:ss");
- let today = dayjs().subtract(0, "day").format("YYYY-MM-DD HH:mm:ss");
- return await this.$axios.get(
- this.$api.jqzhcz.page2 +
- "?" +
- this.$qs.stringify({
- // streetTown: this.stroes.$state.streetTown, //街镇
- current: 1,
- size: 150,
- startTime: monthDay,
- endTime: today,
- })
- );
- },
- /**
- * 撒点测绘院、高德
- */
- sadianSelect(id) {
- let type = undefined
- for(let i =0;i<this.checkedArray.checkedList.length;i++){
- if(id ==this.checkedArray.checkedList[i].value ){
- type = this.checkedArray.checkedList[i].label
- // this.checkedSelectLabel = type
- }
- }
- let that = this;
- let arr = [];
- if (this.stroes.$state.mapBool == 1) {
- if (id == 0) {
- this.initMarkers(arr.slice(0, 500), "security-plan", type);
- } else if (id == 1 || id == 2) {
- this.historicalWarning()
- .then((res) => {
- if (res) {
- let data = res.data.records;
- arr = data;
- arr = data.filter((item) => item.zhongdui === "华漕" || item.zhongdui === "新虹" || item.zhongdui === "七宝" || item.zhongdui === "虹桥");
- if (id == 2) {
- arr = arr.filter((item) => {
- return item.ajlxdm == 1;
- });
- }
- }
- })
- .then((res) => {
- this.initMarkers(arr.slice(0, 500), "security-plan", type);
- });
- } else {
- this.initMarkers([], "security-plan", type);
- }
- } else {
- if (id == 0) {
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.sadian(arr, "security-plan", type);
- }
- if (id == 1 || id == 2) {
- this.historicalWarning()
- .then((res) => {
- if (res) {
- let data = res.data.records;
- arr = data;
- arr = data.filter((item) => item.zhongdui === "华漕" || item.zhongdui === "新虹" || item.zhongdui === "七宝" || item.zhongdui === "虹桥");
- if (id == 2) {
- arr = arr.filter((item) => {
- return item.ajlxdm == 1;
- });
- }
- }
- })
- .then((res) => {
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.sadian(arr, "security-plan", type);
- });
- }
- if (this.checkedArray.checkedData[0] == 40) {
- this.$axios
- .post(this.$api.fireSite.demFireStationList, {
- stationType: [1, 2, 3, 4],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].type = "消防站";
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "消防站");
- });
- }
- if (id == 41) {
- this.$axios
- .post(this.$api.fireSite.demFireStationList, {
- stationType: [4],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].type = "专职队";
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "专职队");
- });
- }
- if (id == 42) {
- this.$axios.get(this.$api.fireSite.demStreetMicroStationList + "?" + this.$qs.stringify({})).then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].stationType = 5;
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "微型消防站");
- });
- }
- if (id == 44) {
- this.$axios
- .post(this.$api.water.baseGgpFacilityList, {
- facilityType: [13, 14],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].stationType = 112;
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "企业消防");
- });
- }
- if (id == 45) {
- this.$axios
- .post(this.$api.water.baseGgpFacilityList, {
- facilityType: [15, 16],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].stationType = 112;
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "社区消防");
- });
- }
- if (id == 46) {
- this.$axios
- .post(this.$api.water.baseGgpFacilityList, {
- facilityType: [17],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].stationType = 17;
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "一级微型消防站");
- });
- }
- if (id == 47) {
- this.$axios
- .post(this.$api.water.baseGgpFacilityList, {
- facilityType: [18],
- })
- .then((res) => {
- for (let i = 0; i < res.data.length; i++) {
- if (
- res.data[i].streetTown.indexOf("华漕") > -1 ||
- res.data[i].streetTown.indexOf("新虹") > -1 ||
- res.data[i].streetTown.indexOf("七宝") > -1 ||
- res.data[i].streetTown.indexOf("虹桥") > -1
- ) {
- res.data[i].stationType = 18;
- arr.push(res.data[i]);
- }
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "rescue-station", "街镇专职消防队");
- });
- }
- if (id == 18) {
- this.$axios
- .get(this.$api.fire.fireSafetyInspectionScatter)
- .then((res) => {
- for(let i =0;i<res.data.length;i++){
- res.data[i].type = "监督检查"
- arr.push(res.data[i])
- }
- let data = {
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- };
- arr.push(data);
- this.addMarker(arr, "security-plan", "监督检查");
- });
- }
- }
- },
- /**
- * 撒点
- */
- sadian(data, pageType, type) {
- if (this.stroes.$state.mapBool == 1) {
- if (data.length > 0) {
- this.initMarkers(data.slice(0, 500), pageType, type);
- } else {
- this.initMarkers([], pageType, type);
- }
- } else {
- // this.anbaoMapNew(); //安保区域
- if (data.length > 0) {
- this.addMarker(data.slice(0, 500), pageType, type);
- } else {
- this.addMarker([], pageType, type);
- }
- }
- },
- /**
- * 网格人员
- * id 15中网格
- * area 区域名称
- * position 坐标
- * query 查询居委会名称
- * x 小网格名称映射
- */
- grid(id, area, position, query,x) {
- let querySearch = {};
- let hzzx =[{
- gisX: 121.302183,
- gisY: 31.189991,
- type: "国家会展中心",
- }];
- // this.sadian(hzzx, "security-plan", "国家会展中心");
- if (id == 19) { //大网格
- this.rightArray.headerData2 = [
- { prop: "gridArea", name: "网格区域" },
- { prop: "streetTown", name: "街道" },
- { prop: "type1", name: "分管镇(街道)领导" },
- { prop: "type2", name: "城运中心人员" },
- { prop: "type3", name: "安监所所长" },
- { prop: "type4", name: "支队外勤参谋" },
- ];
- querySearch = {
- gridArea: area,
- gridGrade: 1,
- };
- }
- if (id == 15) {//中网格
- this.rightArray.headerData2 = [
- { prop: "gridArea", name: "网格区域" },
- { prop: "streetTown", name: "街道" },
- { prop: "type1", name: "安监所人员" },
- { prop: "type2", name: "城运中心人员" },
- { prop: "type3", name: "消防助理员" },
- ];
- querySearch = {
- gridArea: area,
- gridGrade: 2,
- };
- }
- if (id == 16) {//小网格
- this.rightArray.headerData2 = [
- { prop: "gridArea", name: "网格区域" },
- { prop: "streetTown", name: "街道" },
- { prop: "type1", name: "小网格人员" },
- { prop: "type2", name: "小网格长" },
- ];
- querySearch = {
- mapGridName: area,
- gridGrade: 3,
- };
- }
- this.$axios.get(this.$api.fireSite.gridMemberScatter + "?" + this.$qs.stringify(querySearch)).then((res) => {
- if(id == 16 && x == 3){
- this.staticsSd(res.data[0].gridArea,3,'')
- }
- let data = res.data;
- let gridData = [];
- if (data.length > 0) {
- for (let i = 0; i < data.length; i++) {
- if (data[i].gridMemderViceList && data[i].gridMemderViceList.length > 0) {
- gridData[i] = {
- gridArea: data[i].gridArea,
- streetTown: data[i].streetTown,
- mapGridName: data[i].mapGridName,
- seniorGrid: data[i].seniorGrid,
- type1: undefined,
- type2: undefined,
- type3: undefined,
- type4: undefined,
- };
- if (data[i].gridMemderViceList) {
- for (let ii = 0; ii < data[i].gridMemderViceList.length; ii++) {
- if (id == 19) {
- if (data[i].gridMemderViceList[ii].personnelType == 3) {
- if (gridData[i].type1) {
- gridData[i].type1 = `${gridData[i].type1}</br>${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type1 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 4) {
- if (gridData[i].type2) {
- gridData[i].type2 = `${gridData[i].type2}</br>${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type2 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 5) {
- if (gridData[i].type3) {
- gridData[i].type3 = `${gridData[i].type3}</br> ${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type3 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 6) {
- if (gridData[i].type4) {
- gridData[i].type4 = `${gridData[i].type4}</br> ${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type4 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- }
- if (id == 15) {
- if (data[i].gridMemderViceList[ii].personnelType == 7) {
- if (gridData[i].type1) {
- gridData[i].type1 = `${gridData[i].type1}</br>${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type1 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 8) {
- if (gridData[i].type2) {
- gridData[i].type2 = `${gridData[i].type2}</br>${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type2 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 9) {
- if (gridData[i].type3) {
- gridData[i].type3 = `${gridData[i].type3}</br> ${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type3 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- }
- if (id == 16) {
- if (data[i].gridMemderViceList[ii].personnelType == 10) {
- if (gridData[i].type1) {
- gridData[i].type1 = `${gridData[i].type1}</br> ${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type1 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- if (data[i].gridMemderViceList[ii].personnelType == 11) {
- if (gridData[i].type2) {
- gridData[i].type2 = `${gridData[i].type2}</br>${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- } else {
- gridData[i].type2 = `${data[i].gridMemderViceList[ii].personnelName} ${data[i].gridMemderViceList[ii].phone}`;
- }
- }
- }
- }
- }
- }
- }
- console.log(gridData)
- // if(id == 19){
- // let arr = {};
- // arr.type = id;
- // arr.name = area;
- // // arr.position = position;
- // arr.content = gridData;
- // this.anbaoPopup(arr);
- // }
- if (position) {
- let arr = {};
- arr.type = id;
- arr.name = area;
- arr.position = position;
- arr.content = gridData;
- this.anbaoPopup(arr);
- if(id !=19){
- this.superiorGrid(gridData[0].seniorGrid, id == 15 ? 1 : id == 16 ? 2 : "");
- }
-
- } else {
- }
- this.rightArray.tableData = gridData;
- } else {
- this.dataNo2 = "暂无数据";
- }
- //用于地图居委会区块查询
- if (query && id == 16) {
- var queryData = [];
- let qw = []
- for (let i = 0; i < gridData.length; i++) {
- if (gridData[i].mapGridName) {
- queryData.push(gridData[i]);
- }else{
- qw.push(gridData[i])
- }
-
- }
- this.anbao(1, 2, queryData);
- }
- });
- },
- /**
- * 上级网格
- * @param {*网格上级id} id
- * @param {*等级} type 1镇级 2片区
- */
- superiorGrid(id, type) {
- this.$axios
- .get(
- this.$api.fireSite.gridMemberScatter +
- "?" +
- this.$qs.stringify({
- seniorGrid: id,
- })
- )
- .then((res) => {
-
- this.diversionArea = [];
- if (res.data.length > 0) {
- let data = res.data[0];
- if (type == 1) {
- //镇级
- this.diversionArea[0] = {
- name: `${data.gridArea}面积`,
- value: data.gridArea == "华漕镇" ? 28.2 : data.gridArea == "新虹街道" ? "19.26" : data.gridArea == "七宝镇" ? "7" : data.gridArea == "虹桥镇" ? "7" : "",
- unit: "km²",
- color: "#7DD807",
- };
- this.diversionArea[1] = {
- name: "街镇分管领导",
- value: 0,
- unit: "人",
- color: "#01C3B4",
- };
- this.diversionArea[2] = {
- name: "城运中心主任",
- value: 0,
- unit: "人",
- color: "#FD843A",
- };
- this.diversionArea[3] = {
- name: "安监所所长",
- value: 0,
- unit: "人",
- color: "#7DD807",
- };
- this.diversionArea[4] = {
- name: "支队外勤参谋",
- value: 0,
- unit: "人",
- color: "#058DFE",
- };
- this.diversionArea[5] = {
- name: "中网格",
- value: data.gridArea == "华漕镇" ? 5 : data.gridArea == "新虹街道" ? "4" : data.gridArea == "七宝镇" ? "3" : data.gridArea == "虹桥镇" ? "2" : "",
- unit: "个",
- color: "#058DFE",
- };
- this.diversionArea[6] = {
- name: "小网格",
- value: data.gridArea == "华漕镇" ? 36 : data.gridArea == "新虹街道" ? "22" : data.gridArea == "七宝镇" ? "34" : data.gridArea == "虹桥镇" ? "11" : "",
- unit: "个",
- color: "#058DFE",
- };
- for (let i = 0; i < data.gridMemderViceList.length; i++) {
- if (data.gridMemderViceList[i].personnelType == 3) {
- //街镇分管领导
- this.diversionArea[1].value++;
- }
- if (data.gridMemderViceList[i].personnelType == 4) {
- //城运中心主任
- this.diversionArea[2].value++;
- }
- if (data.gridMemderViceList[i].personnelType == 5) {
- //安监所所长
- this.diversionArea[3].value++;
- }
- if (data.gridMemderViceList[i].personnelType == 6) {
- //支队外勤参谋
- this.diversionArea[4].value++;
- }
- }
- }
- if (type == 2) {
- //片区
- this.diversionArea[0] = {
- name: "",
- value: data.gridArea,
- unit: "",
- color: "#7DD807",
- };
- this.diversionArea[1] = {
- name: "安监所人员",
- value: 0,
- unit: "人",
- color: "#01C3B4",
- };
- this.diversionArea[2] = {
- name: "城运中心人员",
- value: 0,
- unit: "人",
- color: "#FD843A",
- };
- this.diversionArea[3] = {
- name: "消防助理员",
- value: 0,
- unit: "人",
- color: "#7DD807",
- };
- this.diversionArea[4] = {
- name: "小网格",
- value:
- data.gridArea == "闵S1-1(纪王西网格)"
- ? "4"
- : data.gridArea == "闵S1-2(纪王东网格)"
- ? "6"
- : data.gridArea == "闵S1-3(诸翟北网格)"
- ? "12"
- : data.gridArea == "闵S1-4(诸翟南网格)"
- ? "8"
- : data.gridArea == "闵S1-5(老华漕网格)"
- ? "6"
- : data.gridArea == "闵S2-1(爱博网格)"
- ? "4"
- : data.gridArea == "闵S2-2(华美网格)"
- ? "6"
- : data.gridArea == "闵S2-3(枢纽网格)"
- ? "6"
- : data.gridArea == "闵S2-4(航华网格)"
- ? "6"
- : data.gridArea == "闵S3-1(七宝北片网格)"
- ? "10"
- : data.gridArea == "闵S3-2(七宝吴宝路网格)"
- ? "9"
- : data.gridArea == "闵S3-3(七宝航华网格)"
- ? "15"
- : data.gridArea == "闵S4-1(紫藤红松网格)"
- ? "6"
- : data.gridArea == "闵S4-2(虹梅网格)"
- ? "5"
- : "0",
- unit: "个",
- color: "#7DD807",
- };
- for (let i = 0; i < data.gridMemderViceList.length; i++) {
- if (data.gridMemderViceList[i].personnelType == 7) {
- //安监所人员
- this.diversionArea[1].value++;
- }
- if (data.gridMemderViceList[i].personnelType == 8) {
- //城运中心人员
- this.diversionArea[2].value++;
- }
- if (data.gridMemderViceList[i].personnelType == 9) {
- //消防助理员
- this.diversionArea[3].value++;
- }
- }
- }
- }
- // diversionArea:[
- // {name:"疏导区总面积",value:61.46,unit:"km²",color:"#7DD807"},
- // {name:"华漕镇",value:28.2,unit:"km²",color:"#01C3B4"},
- // {name:"新虹街道",value:19.26,unit:"km²",color:"#01C3B4"},
- // {name:"七宝镇",value:7,unit:"㎡",color:"#01C3B4"},
- // {name:"虹桥镇",value:7,unit:"km²",color:"#01C3B4"},
- // {name:"大网格",value:4,unit:"个",color:"#FC0609 "},
- // {name:"中网格",value:14,unit:"个",color:"#FD843A"},
- // {name:"小网格",value:103,unit:"个",color:"#7DD807"},
- // {name:"分管领导",value:20,unit:"人",color:"#058DFE"},
- // {name:"增援干部",value:11,unit:"人",color:"#058DD1"},
- // ],//疏导区基本情况
- });
- },
- },
- watch: {
- "stores.$state.gridData": function (newValue, oldValue) {
- console.log(this.gridStatus)
- if (this.gridStatus == 19) {
- this.grid(19, newValue.name, newValue.position);
- }
- if (this.gridStatus == 15) {
- this.grid(15, newValue.name, newValue.position);
- this.staticsSd(newValue.name,2,'')
- }
- if (this.gridStatus == 16) {
- this.grid(16, newValue.name, newValue.position,null,3);
- }
- },
- "stores.$state.jkspData": function (newValue, oldValue) {
- this.jkspStatus = true
- this.Message.name = newValue.children[0][1]
- this.Message.videoId = newValue.id
- this.Message.videoUrl = newValue.url
- // "http://videocdn.didano.com/school765class0channelId2761namedingdangm/playlist.m3u8"
- this.play()
- },
- "stores.$state.zddwId": function (newValue, oldValue) {
-
- this.zddwSd(newValue);
- },
-
- },
- // watch: {
- // "stores.$state.jkspData": function (newValue, oldValue) {
- // console.log(123,newValue,this.stores.$state.jkspData)
- // this.jkspStatus = true
- // console.log(this.jkspStatus)
- // this.Message.name = newValue.children[0][1]
- // this.Message.videoId = newValue.id
- // this.Message.videoUrl = "http://videocdn.didano.com/school765class0channelId2761namedingdangm/playlist.m3u8"
- // // this.Message.videoUrl = newValue.url
-
- // this.play()
- // },
- // },
- };
- </script>
- <style lang="scss" scoped>
- @import "@/assets/scss/color.scss";
- .contentBox {
- .return{
- position: absolute;
- top:0px;
- right:0px;
- margin-top:0!important;
- .returnText {
- width: 0.5rem;
- text-align: center;
- height: 0.3rem;
- line-height: 0.3rem;
- box-shadow: inset 0 0 0.05rem 0.05rem #1b4f90;
- background: rgba(19, 42, 90, 0.2) !important;
- color: #fff;
- float: right;
- margin-top: 0;
- }
- }
- .leftBox {
- .leftTop {
- height: 43%;
- max-height: 43%;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- .leftTopContent {
- color: #ffffff;
- height: calc(100% - 0.4375rem);
- display: flex;
- > .el-row {
- width: 100%;
- > .el-col {
- display: flex;
- > div {
- margin: auto;
- > .title {
- width: 1.075rem;
- height: 0.225rem;
- font-size: 0.175rem;
- padding-left: 0.1625rem;
- margin: 0.0625rem 0 0.0625rem 0;
- position: relative;
- background-image: url(~@a/img/securityPlan/fhxcqk.png);
- background-size: 100% 100%;
- > div {
- position: absolute;
- bottom: 0.0625rem;
- width: 150%;
- }
- }
- > .content {
- > span:nth-child(1) {
- font-size: 0.3rem;
- padding: 0 0.5625rem 0 0.1625rem;
- color: #73fbfd;
- }
- > span:nth-child(2) {
- font-size: 0.175rem;
- margin-right: 0.125rem;
- }
- > span:nth-child(3) {
- font-size: 0.175rem;
- }
- }
- }
- }
- }
- }
- .leftTopContent2 {
- color: #fff;
- font-size: 0.175rem;
- .sdqBasicInfo{
- .basicItem{
- width:19%; margin: 4px 0; box-sizing: border-box;
- .nameBox{
- background-image: url(~@a/img/securityPlan/sdTextBg.png);
- background-size: contain;
- width: 100%;
- display: inline-block
- }
- }
- .basicItem:not(:last-child){
- margin-right:.07rem
- }
-
-
- }
- .sdqBasicInfo.sdline2{
- .basicItem{
- margin:0 .4rem;
- }
- }
- .sdline3 {
- margin-top:.25rem;
-
- .basicItem{
- cursor:pointer;
- width:25% !important; margin: 0px 0; box-sizing: border-box;
- position:relative;
- }
- // .basicItem::after {
- // position: absolute; /*绝对定位*/
- // top: 50%; /*Y轴方向偏移自身高度的50%*/
- // transform: translatey(-40%); /*Y轴方向偏移微调*/
- // right: 0; /*紧靠容器左边缘*/
- // content: ''; /*伪元素需要有内容才能显示*/
- // width: 1px; /*伪元素宽度*/
- // height: 40px; /*伪元素高度*/
- // background-color: rgba(168, 164, 164,.4); /*伪元素颜色*/
- // }
-
- }
- .sdline3 .basicItem:last-child{
- width:auto
- }
- .el-row {
- > div {
- width: 20%;
- margin-top: 40px;
- p:nth-child(2) {
- // text-align: center;
- strong {
- font-size: 0.2rem;
- }
- }
- }
- }
- }
- }
- .leftCenter {
- height: 32%;
- max-height: 32%;
- margin-top: 0.125rem;
- width: 100%;
- justify-content: center;
- align-items: center;
- // box-sizing: border-box;
- color: #ffffff;
- .leftCenterContent {
- width: 100%;
- height: calc(100% - 0.4375rem);
- display: flex;
- .content1,
- .content2,
- .content3 {
- width: 33.33%;
- overflow: hidden;
- margin: auto 0;
- > div:nth-child(1) {
- display: flex;
- > img {
- width: 1.17rem; //大屏
- height: 1.08rem; //大屏
- margin: auto;
- }
- }
- > div:nth-child(2) {
- font-size: 0.2rem;
- text-align: center;
- & > span {
- b {
- margin-right: 0.0625rem;
- font-size: 0.3rem;
- line-height: 0.5rem;
- }
- }
- p {
- margin-top: 0.1rem;
- color: #fff;
- }
- }
- }
- }
- }
- .rightCenter {
- color: #ffffff;
- height: calc(35% - 0.125rem);
- max-height: calc(35% - 0.125rem);
- margin-top: 0.125rem;
- .rightTopContent {
- width: 100%;
- padding: 0.25rem 0 10px 0;
- height: calc(100% - 0.8125rem);
- .content {
- height: 100%;
- overflow: scroll;
- position: relative;
- & > .el-row {
- overflow: hidden;
- width: 100%;
- height: auto;
- & > .title {
- width: 100%;
- height: 0.4375rem;
- line-height: 0.4375rem;
- font-size: 0.175rem;
- padding: 0 0.125rem;
- background: rgba(115, 251, 253, 0.3) !important;
- margin-bottom: 0.025rem;
- }
- & > .data {
- width: 100%;
- font-size: 0.175rem;
- padding: 0 0.125rem;
- background: rgba(115, 251, 253, 0.1) !important;
- margin-bottom: 0.025rem;
- white-space: initial;
- .el-col {
- line-height: 0.35rem;
- span {
- color: #73fbfd;
- }
- }
- }
- }
- &::-webkit-scrollbar {
- display: none;
- }
- }
- }
- }
- }
- .rightBox {
- color: #ffffff;
- .rightTop {
- height: 30%;
- max-height: 30%;
- .rightTopContent {
- width: 100%;
- height: calc(100% - 0.4375rem);
- display: flex;
- > .el-row {
- > .el-col {
- display: flex;
- margin: auto 0;
- > div {
- display: flex;
- .left {
- width: 1.375rem;
- margin-right: 0.25rem;
- div {
- text-align: center;
- font-size: 0.175rem;
- overflow: hidden !important;
- white-space: nowrap !important;
- text-overflow: ellipsis !important;
- }
- img {
- width: 0.675rem;
- height: 0.675rem;
- display: flex;
- margin: auto auto 0.0625rem auto;
- }
- }
- .right {
- overflow: hidden !important;
- white-space: nowrap !important;
- text-overflow: ellipsis !important;
- .el-col:nth-child(1) {
- display: flex;
- margin: auto 0 0 0;
- font-size: 0.175rem;
- }
- .el-col:nth-child(2) {
- display: flex;
- margin: auto 0 0 0;
- font-size: 0.3rem;
- font-weight: bold;
- }
- }
- }
- }
- }
- }
- }
- .rightTop3 {
- height: 30%;
- max-height: 30%;
- position:relative;
-
- .rightTopContent {
- width: 100%;
- height: calc(100% - 0.4375rem);
- display: flex;
- > .el-row {
- > .el-col {
- display: flex;
- margin: auto 0;
- > div {
- display: flex;
- .left {
- width: 1.375rem;
- margin-right: 0.25rem;
- div {
- text-align: center;
- font-size: 0.175rem;
- overflow: hidden !important;
- white-space: nowrap !important;
- text-overflow: ellipsis !important;
- }
- img {
- width: 0.675rem;
- height: 0.675rem;
- display: flex;
- margin: auto auto 0.0625rem auto;
- }
- }
- .right {
- overflow: hidden !important;
- white-space: nowrap !important;
- text-overflow: ellipsis !important;
- .el-col:nth-child(1) {
- font-size: 0.3rem;
- margin-top:14px;
- vertical-align: bottom;
- }
- // .el-col:nth-child(2) {
- // display: flex;
- // margin: auto 0 0 0;
- // font-size: 0.3rem;
- // font-weight: bold;
- // }
- }
- }
- }
- }
- }
-
- }
- .leftTopContent {
- color: #ffffff;
- height: calc(100% - 0.4375rem);
- display: flex;
- > .el-row {
- width: 100%;
- > .el-col {
- display: flex;
- > div {
- margin: auto;
- > .title {
- width: 1.075rem;
- height: 0.225rem;
- font-size: 0.175rem;
- padding-left: 0.1625rem;
- margin: 0.0625rem 0 0.0625rem 0;
- position: relative;
- background-image: url(~@a/img/securityPlan/fhxcqk.png);
- background-size: 100% 100%;
- > div {
- position: absolute;
- bottom: 0.0625rem;
- width: 150%;
- }
- }
- > .content {
- > span:nth-child(1) {
- font-size: 0.3rem;
- padding: 0 0.5625rem 0 0.1625rem;
- color: #73fbfd;
- }
- > span:nth-child(2) {
- font-size: 0.175rem;
- margin-right: 0.125rem;
- }
- > span:nth-child(3) {
- font-size: 0.175rem;
- }
- }
- }
- }
- }
- }
- .leftBot {
- height: calc(35% - 0.125rem);
- max-height: calc(35% - 0.125rem);
- margin-top: 0.125rem;
- width: 100%;
- .leftBotContent {
- padding: 0.25rem 0 0 0;
- height: calc(100% - 0.6875rem);
- }
- }
- .rightBot {
- height: calc(39% - 0.125rem);
- max-height: calc(35% - 0.125rem);
- margin-top: 0.125rem;
- .rightBotContent {
- padding: 0.25rem 0 0 0;
- height: 100%;
- }
- }
- .dailyNewSec{
- height:18%;
-
- .dailyItem{
- vertical-align: middle;
- margin-top:.2rem;
- line-height:.375rem;
- font-size:.175rem;
- width:100%;
- height:60%;
- overflow-y:hidden;
- display: inline-block;
-
- a{
- color:#fff;
- border-bottom:1px solid #fff;
- // text-decoration: none;
- text-decoration: none;
- cursor:pointer;
- letter-spacing:4px;
- }
- }
- }
- .girdCheckSec{
- height:38%;
- .girdCheckItem{
- p{
- font-size:0.225rem;
- margin:.1875rem 0 .125rem;
- color:rgb(234, 183, 147);
- font-weight:700;
- span{
- font-size: 0.175rem;
- color:#fff;
-
- }
- }
- .row_g{
- display:flex;
- align-items: center;
- margin-top:10px;
- width:100%;
- div{
- // min-width:18% !important;
- display: inline-block;
- font-size:.155rem;
- margin:.125rem .182rem 0 0;
- text-align: left;
- vertical-align: top;
-
- }
- }
-
-
-
-
-
-
-
- }
- }
- .ssfjSec{
- height:20%;
- .girdCheckItem{
- .row_g2{
- margin-top:10px;
- width:100%;
- div:first-child{
- width:1.5rem;
- cursor:text;
- }
- div{
- cursor: pointer;
- display: inline-block;
- font-size:.155rem;
- margin-top:.125rem;
- text-align: left;
- }
- }
- .row_g3{
- margin-top:-10px;
- width:100%;
- div{
- width:16% !important;
- display: inline-block;
- font-size:.155rem;
- margin:.125rem 0;
- text-align: left;
- vertical-align: top;
- }
- }
-
-
-
-
-
- }
- }
-
- }
- }
- .leftBotContent2 {
- height: 23%;
- margin-top: -35%;
- }
- .rightTop2 {
- > .el-col {
- > div {
- > div:nth-child(1) {
- margin: 0.3rem 0;
- }
- > div:nth-child(3) {
- width: 50%;
- margin: 0.2rem auto;
- padding: 0.075rem;
- border-radius: 0.25rem;
- box-shadow: inset 0 0 0.05rem 0.05rem rgba(27, 79, 144, 1);
- background: rgba(#132a5a, 0.2) !important;
- span {
- margin-left: 0.075rem;
- }
- }
- }
- }
- }
- .monitor-list {
- overflow: hidden;
- margin-top:0.25rem;
- > .list {
- border: 1px solid #3a7e8e;
- position: relative;
- width:48%;
- height:16.5vh;
- box-sizing: border-box;
- .videoSelect {
- position: absolute;
- width: 100%;
- }
- img{
- width:100%;
- height:192px;
- overflow: hidden;
- }
- }
- .list:nth-child(2){
- margin-left:4%;
- }
- }
- iframe {
- border: none;
- width:100%;
- }
- .tableTooltipwt {
- position: fixed;
- top:120px;left:39%;
- max-height:500px;
- overflow-y: scroll;
- background:none;
- width:400px;
- bottom:auto;
- padding:10px 10px 5px 10px !important;
- border-radius: 0.05rem;
- border:1px solid rgba(115, 251, 253, 1);
- box-shadow: inset 0 0 1px 0.0125rem rgba(115, 251, 253, 1);
- background:rgba(0, 0, 0, 0.6);
- z-index: 10000;
- .close {
- width: 20px;
- height: 20px;
- position: absolute;
- right: 10px;
- top: 10px;
- z-index: 10000;
- display: block;
- }
- .tableContent {
- p {
- @include color_primary($color-primary1);
- font-size: 0.2rem;
- }
- .el-col {
- margin-top: 0.05rem;
- line-height: 0.3rem;
- text-overflow: ellipsis !important;
- white-space: normal !important;
- font-size: 0.18rem;
- }
- .mk {
- margin-top: 0px;
- .color1 {
- @include color_primary($color-primary3);
- }
- .color2 {
- @include color_primary($color-primary1);
- }
- }
- .video{
- width:100%;
- margin:10px 0;
- }
- }
- }
- .videoCloseBtn{
- position: absolute;
- z-index: 10;
- bottom:0;
- left:0;
- cursor: pointer;
- .returnText{
- width: 0.5rem;
- text-align: center;
- height: 0.3rem;
- line-height: 0.3rem;
- box-shadow: inset 0 0 0.05rem 0.05rem #1b4f90;
- background: rgba(19, 42, 90, 0.2) !important;
- color: #fff;
- float: right;
- margin-top: 0;
- }
- }
- .dialogSec {
- ::v-deep .el-dialog {
- width:16rem!important;
- // border:1px solid rgba(115, 251, 253, 1);
- // box-shadow: inset 0 0 1px 0.0125rem rgba(115, 251, 253, 1);
- // background: rgba(0, 0, 0, 0.6);
- margin-top:5vh!important;
- height:87vh;
- padding:0;
- // margin: atuo;
- .el-dialog__title {
- color: #74fbfe;
- font-size: 16px;
- }
- .el-dialog__body {
- margin-top: 20px;
- }
-
- }
- }
- .tableTooltipwt2 {
- width: 6rem;
- background: transparent;
- border-radius: 0.05rem;
- box-shadow: inset 0 0 1px 0.0125rem rgba(115, 251, 253, 1);
- background: rgba(0, 29, 49, 0.5);
- font-size: 0.2rem;
- padding: 0.1875rem;
- position: fixed;
- top: 140px;
- right: 600px;
- z-index: 10000;
- .close {
- width: 20px;
- height: 20px;
- position: absolute;
- right: 10px;
- top: 10px;
- z-index: 10000;
- display: block;
- }
- .tableContent {
- p {
- @include color_primary($color-primary1);
- }
- .el-col {
- margin-top: 0.05rem;
- line-height: 0.3rem;
- text-overflow: ellipsis !important;
- white-space: normal !important;
- }
- .mk {
- margin-top: 0px;
- }
- }
- }
- .color1 {
- @include color_primary($color-primary3);
- margin-left: 10px;
- }
- .color2 {
- @include color_primary($color-primary1);
- }
- table {
- width: 100%;
- text-align: center;
- color: #fff;
- border: 1px solid #fff;
- font-size: 12px;
- }
- table thead tr th {
- padding: 5px 0px;
- font-weight: 400;
- border: 1px solid #fff;
- }
- table tbody tr td {
- padding: 5px 0px;
- }
- table tbody tr:nth-child(2n) td {
- // background-color: lightblue;
- }
- td {
- border: 0.5px solid #fff;
- }
- </style>
- <style>
- .el-tooltip__popper {
- width: 200px;
- }
- .table-tooltip {
- max-width: 200px;
- }
- .table-style .cell {
- width: 200px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .el-popper {
- max-width: 30%;
- padding-bottom: 5px !important;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 15;
- -webkit-box-orient: vertical;
- }
- </style>
|