firespread.vue 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738
  1. <template>
  2. <div class="visual-con">
  3. <!--主体-->
  4. <div class="visual-body">
  5. <button @click="showEventDialog"
  6. style="position: absolute; left:50%;top: 50vh; transform: translateX(-50%);">
  7. </button>
  8. <!-- 弹层 -->
  9. <el-dialog title="事件详情" :visible.sync="eventDialog" customClass="customWidth" v-if="eventDialog"
  10. @close="cancelEventShow()">
  11. <div class="dia-event-info">
  12. <el-row>
  13. <!-- 左侧 -->
  14. <el-col :span="18" class="dia-left">
  15. <div ref="imageTofile" style="height: 75vh;">
  16. <!-- 应急预案 -->
  17. <div class="dia-left-top">
  18. <div class="dia-left-top-tit">应急预案</div>
  19. <div class="dia-left-top-carousel">
  20. <el-carousel height="30px" direction="vertical" :interval="2000">
  21. <el-carousel-item v-if="visuForestCloudYuAnBo!=null">
  22. <el-tooltip class="item" effect="dark" :content="visuForestCloudYuAnBo.reserveName" placement="top-start">
  23. <a :href="visuForestCloudYuAnBo.fileUrl" ><span><div style=" width: 50px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;word-break: keep-all;">{{ visuForestCloudYuAnBo.reserveName }}</div></span></a>
  24. </el-tooltip>
  25. </el-carousel-item>
  26. <el-carousel-item v-else>
  27. <a href="#">暂未关联预案</a>
  28. </el-carousel-item>
  29. </el-carousel>
  30. </div>
  31. <el-button size="mini" type="primary" class="yatz_button" @click="showUpdateYjYuAn">预案调整
  32. </el-button>
  33. </div>
  34. <!-- 左侧资源 -->
  35. <div class="leftbar" style="width:fit-content !important;bottom:0rem;left: 1rem; top: unset;">
  36. <div class="forthis" style="width:1320px; display: flex;">
  37. <dv-border-box-7 backgroundColor="#040b1f" :color="['#25335d', '#5baffd']">
  38. <div class="i-list-con" style="width: 100%;display: flex; align-items: center;justify-content: space-between">
  39. <div class="d-l-con-icon" style="width: fit-content; flex-direction:row;flex-wrap: nowrap;" ref="thisWidthWH">
  40. <leftRightSwiperScroll v-if="isLoading">
  41. <div class="icon-con" style="width: fit-content !important;"
  42. v-for="(item,index) in resourcesList1" @click="fireControlViewPoint(item.type)" :key="index">
  43. <div class="iconfont icon icon-normal" :class="item.icon" :style="'background:' + item.bg"></div>
  44. <div class="icon-text">
  45. <h5 style="white-space: nowrap;">{{ item.resourceName }}</h5>
  46. </div>
  47. </div>
  48. </leftRightSwiperScroll>
  49. </div>
  50. <el-input type="number" v-model="radius" class="d-input-bottom" placeholder="请输入搜索半径"/>
  51. </div>
  52. </dv-border-box-7>
  53. </div>
  54. </div>
  55. <!-- 左侧资源end -->
  56. <!-- 应急预案end -->
  57. <div class="fire-m" style="bottom:5rem">
  58. <el-button size="small" icon="el-icon-upload" @click="showEventdetailsdialog()">动态标绘</el-button>
  59. <!-- <el-button size="small" icon="el-icon-upload" @click="showheatPlotting()">火灾蔓延</el-button>-->
  60. </div>
  61. <!-- 地图 -->
  62. <supermapDialog1 ref="supermapDialog1"
  63. style="position: absolute; top:0;left: 0;"
  64. :mapDiv="'forestWarmSuperMap1'"
  65. :mapSite="{zoom:16,doubleClickZoom:true,dragging:true,scrollWheelZoom:true}"
  66. :codes="['9fa5']"
  67. :isSideBySide="false"
  68. @preview="preview"/>
  69. <!-- 地图end -->
  70. </div>
  71. </el-col>
  72. <!-- 左侧end -->
  73. <!-- 右侧 -->
  74. <el-col :span="6" class="dia-right">
  75. <div class="e-right">
  76. <div class="forthis1">
  77. <dv-border-box-7 backgroundColor="#040b1f"
  78. style="padding-bottom:1rem ;">
  79. <div class="i-list-con">
  80. <div class="this-con">
  81. <div class="z-info-list" style="margin-top: 0;">
  82. <el-timeline>
  83. <el-timeline-item color="#2bacf7" :timestamp="item.createTime"
  84. placement="top" v-for="(item,index) in eventLogList">
  85. <el-card style="width: 40vh">
  86. <div class="z-info-list-con">
  87. <div class="user-and-time flex-d">
  88. <span>{{ item.createName }}</span>
  89. <span v-if="eventLogList.length - 1 == index&&address!=null&&address!=''"><i
  90. class="el-icon-location"></i> {{ address }}</span>
  91. <span v-else></span>
  92. </div>
  93. <div class="z-info">
  94. <div class="this-con-list-info">
  95. {{ item.logContent }}
  96. </div>
  97. <div>
  98. <router-link to="#"
  99. @click.native="clickFile(itemfile.fileUrl,itemfile.fileName,itemfile.fileType)"
  100. v-for="(itemfile,indexfile) in item.fileVOs">
  101. <el-image :src="itemfile.fileUrl" v-if="itemfile.fileType=='image'"
  102. :preview-src-list="assetTypeAnImage(item.fileVOs)"
  103. style="width:3rem; height:3rem;margin: 2px;"
  104. :title="itemfile.fileName">
  105. </el-image>
  106. <img v-else-if="itemfile.fileType=='video'"
  107. style="width:3rem; height:3rem;margin: 2px;"
  108. :src="require('@/assets/fileTypeImage/mp4.png')"
  109. :title="itemfile.fileName">
  110. </img>
  111. <img v-else-if="itemfile.fileType=='word'"
  112. style="width:3rem; height:3rem;margin: 2px;"
  113. :src="require('@/assets/fileTypeImage/word.png')"
  114. :title="itemfile.fileName">
  115. </img>
  116. <img v-else-if="itemfile.fileType=='excel'"
  117. style="width:3rem; height:3rem;margin: 2px;"
  118. :src="require('@/assets/fileTypeImage/excel.png')"
  119. :title="itemfile.fileName">
  120. </img>
  121. <img v-else
  122. style="width:3rem; height:3rem;margin: 2px;"
  123. :src="require('@/assets/fileTypeImage/file.png')"
  124. :title="itemfile.fileName">
  125. </img>
  126. </router-link>
  127. </div>
  128. </div>
  129. </div>
  130. </el-card>
  131. </el-timeline-item>
  132. </el-timeline>
  133. </div>
  134. </div>
  135. </div>
  136. </dv-border-box-7>
  137. </div>
  138. <div class="forthis2">
  139. <dv-border-box-7 backgroundColor="#040b1f" :color="['#0c4b53', '#18caca']" >
  140. <div class="i-list-con">
  141. <div class="this-con h-25 no-padding">
  142. <div class="z-info-list" style="margin-top: 0;">
  143. <div class="z-info-btm-grp">
  144. <div class="z-info-btm-grp-top">
  145. <div class="z-info-btm-grp-left">
  146. <el-button size="small" icon="el-icon-upload" @click="showEventLogUpload()">上传
  147. </el-button>
  148. <el-button size="small" icon="el-icon-download" @click="toImage()">截图上传
  149. </el-button>
  150. <el-button size="small" icon="el-icon-download" @click="showResponsibility()" v-if="eventStatusValue!='forest_event_status_1'&&eventStatusValue!='forest_event_status_7'">责任制
  151. </el-button>
  152. <el-button v-if="eventStatusValue=='forest_event_status_2' && statusFlag=='1' && dataStatus=='0'"
  153. size="small" icon="el-icon-download" @click="updateCentereventTEventcatalogueStatus('cz',true)">处置
  154. </el-button>
  155. </div>
  156. <div class="z-info-btm-grp-right">
  157. <el-button size="small" icon="el-icon-mic" @click="Meeting()">会议
  158. </el-button>
  159. </div>
  160. </div>
  161. <div class="z-info-btm-input">
  162. <el-input type="textarea" v-model="eventLog"
  163. :autosize="{ minRows: 7, maxRows: 7}" placeholder="请输入反馈信息">
  164. </el-input>
  165. <div class="z-info-btm-input-btn" v-if="eventStatusValue=='forest_event_status_1'">
  166. <div style="text-align:left">
  167. <el-button size="small"
  168. icon="el-icon-s-flag"
  169. @click="updateCentereventTEventcatalogueStatus('qr',true)">
  170. 确认
  171. </el-button>
  172. <el-button size="small"
  173. icon="el-icon-question"
  174. @click="updateCentereventTEventcatalogueStatus('wb',true)">
  175. 误报
  176. </el-button>
  177. <el-button size="small"
  178. icon="el-icon-warning"
  179. @click="updateCentereventTEventcatalogueStatus('cf',true)">
  180. 重复
  181. </el-button>
  182. </div>
  183. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  184. </el-button>
  185. </div>
  186. <div class="z-info-btm-input-btn" v-else-if="eventStatusValue=='forest_event_status_7'">
  187. <div style="text-align:left">
  188. <el-button size="small"
  189. icon="el-icon-s-flag"
  190. @click="updateCentereventTEventcatalogueStatus('qs',false)">
  191. 签收
  192. </el-button>
  193. <el-button size="small"
  194. icon="el-icon-question"
  195. @click="updateCentereventTEventcatalogueStatus('wb',false)">
  196. 误报
  197. </el-button>
  198. <el-button size="small"
  199. icon="el-icon-warning"
  200. @click="updateCentereventTEventcatalogueStatus('cf',false)">
  201. 重复
  202. </el-button>
  203. </div>
  204. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  205. </el-button>
  206. </div>
  207. <div class="z-info-btm-input-btn" v-else-if="eventStatusValue=='forest_event_status_2'">
  208. <div>
  209. <el-button size="small"
  210. icon="el-icon-phone" style="text-align:left"
  211. @click="updateCentereventTEventcatalogueStatus('ld',false)">
  212. 联动
  213. </el-button>
  214. <el-button size="small" v-if="statusFlag=='1'"
  215. icon="el-icon-success" style="text-align:left"
  216. @click="updateCentereventTEventcatalogueStatus('bj',true)">
  217. 办结
  218. </el-button>
  219. </div>
  220. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  221. </el-button>
  222. </div>
  223. <div class="z-info-btm-input-btn"
  224. v-else-if="eventStatusValue=='forest_event_status_5'">
  225. <el-button size="small" v-if="isExamine=='1'"
  226. icon="el-icon-success" style="text-align:left"
  227. @click="updateCentereventTEventcatalogueStatus('shtg',true)">
  228. 审核通过
  229. </el-button>
  230. <el-button size="small" v-if="isExamine=='1'"
  231. icon="el-icon-success" style="text-align:left"
  232. @click="updateCentereventTEventcatalogueStatus('shbtg',true)">
  233. 审核不通过
  234. </el-button>
  235. <el-button size="small" v-else icon="el-icon-loading" style="text-align:left">
  236. 请等待复核,复核通过后方可归档。
  237. </el-button>
  238. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  239. </el-button>
  240. </div>
  241. <div class="z-info-btm-input-btn"
  242. v-else-if="eventStatusValue=='forest_event_status_8'&&statusFlag=='1'">
  243. <el-button size="small"
  244. icon="el-icon-success" style="text-align:left" v-if="eventTypeXl == 101"
  245. @click="updateCentereventTEventcatalogueStatus('gd',false)">
  246. 填报
  247. </el-button>
  248. <el-button size="small"
  249. icon="el-icon-success" style="text-align:left" v-if="eventTypeXl != 101"
  250. @click="updateCentereventTEventcatalogueStatus('gd',true)">
  251. 归档
  252. </el-button>
  253. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  254. </el-button>
  255. </div>
  256. <div class="z-info-btm-input-btn" v-else>
  257. <el-button size="small" icon="el-icon-chat-dot-square" @click="sendEventLog()">发送
  258. </el-button>
  259. </div>
  260. </div>
  261. </div>
  262. </div>
  263. </div>
  264. </div>
  265. </dv-border-box-7>
  266. </div>
  267. </div>
  268. </el-col>
  269. <!-- 左侧end -->
  270. </el-row>
  271. </div>
  272. </el-dialog>
  273. </div>
  274. <vBottomMenu ref="bottomMenu"></vBottomMenu>
  275. <eventLogUpload ref="eventLogUpload"></eventLogUpload>
  276. <el-dialog title="调整预案" :visible.sync="showGuanLianYuAnConfirm" v-if="showGuanLianYuAnConfirm" width="50%"
  277. class="top-dialog tz_tk">
  278. <el-form label-width="80px">
  279. <el-form-item label="关联预案">
  280. <el-select v-model="sendGuanLianYuAn" placeholder="请选择关联预案!" clearable>
  281. <el-option
  282. v-for="item in guanLianYuAnList"
  283. :key="item.id"
  284. :label="item.resTitle"
  285. :value="item.id"
  286. />
  287. </el-select>
  288. </el-form-item>
  289. <el-button size="mini" type="primary" class="fr_button" @click="updateYjYuAn">确定
  290. </el-button>
  291. <div style="clear: both;"></div>
  292. </el-form>
  293. </el-dialog>
  294. <!-- 添加区域标记 -->
  295. <el-dialog title="火灾区域" :visible.sync="regionalFlagOpen" width="1000px">
  296. <areaSupermap ref="fireAreaSupermap" v-if="regionalFlagOpen" style="width: 100%;height:74vh"
  297. :mapDiv="'fireAreaSuperMap'" :mapSite="{doubleClickZoom:false}" :codes="['9fa5']"
  298. :isSideBySide="false" :showAreaLatLng="showAreaLatLng"></areaSupermap>
  299. </el-dialog>
  300. <!-- 图片,视频预览 -->
  301. <el-dialog title="视频预览" :visible.sync="showTcPlayer" width="40%" customClass="customWidthMp4">
  302. <TcPlayer ref="TcPlayer" :playVideo="playVideo" :widthHeigt="[100,100]"></TcPlayer>
  303. </el-dialog>
  304. <el-dialog :title="cameraTitle" :visible.sync="cameraVisible" v-if="cameraVisible" customClass="videoCustomWidth"
  305. @close="cancelEventLocationShow()">
  306. <div style="width:1020px;height:625px;position:relative;">
  307. <!--视频窗口展示---海康-->
  308. <div id="playWnd" class="playWnd" style="left: 0px; top: 0px;"></div>
  309. </div>
  310. </el-dialog>
  311. <el-dialog title="责任制" :visible.sync="showResponsibilityDialog" v-if="showResponsibilityDialog" width="65%"
  312. @close="closeResponsibilityDialog()">
  313. <el-form label-width="1500px">
  314. <div class="bottom">
  315. <!-- 左侧菜单栏 -->
  316. <div class="bottomLeft">
  317. <div class="leftItem d-l-con padding-box nowrap" v-for="(item,index) in depteventList">
  318. <div class="bgt-info">
  319. <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
  320. @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
  321. </div>
  322. </div>
  323. </div>
  324. </div>
  325. <!-- 左侧菜单栏对应的右侧的内容 -->
  326. <div class="bottomRight" ref="wrapper">
  327. <el-button
  328. size="mini"
  329. type="danger"
  330. v-if="depteventId!=null&&depteventId!=''"
  331. @click="addLine">添加
  332. </el-button>
  333. <el-button
  334. size="mini"
  335. type="danger"
  336. v-if="depteventId!=null&&depteventId!=''"
  337. @click="finUserByDept">选择
  338. </el-button>
  339. <el-table
  340. :data="dutysystemTableData"
  341. style="width: 100%"
  342. :rules="rules">
  343. <el-table-column prop="id" label="主键" v-if="false">
  344. <template slot-scope="scope" hidden>
  345. <el-input v-model="scope.row.id" readonly placeholder="主键"></el-input>
  346. </template>
  347. </el-table-column>
  348. <el-table-column prop="name" label="姓名">
  349. <template slot-scope="scope">
  350. <el-input v-model="scope.row.name" placeholder="姓名" οninput="value=value.replace(/^[\u4e00-\u9fa5]{2,4}$/,'')"></el-input>
  351. </template>
  352. </el-table-column>
  353. <el-table-column prop="post" label="岗位">
  354. <template slot-scope="scope">
  355. <el-input v-model="scope.row.post" placeholder="岗位"></el-input>
  356. </template>
  357. </el-table-column>
  358. <el-table-column prop="telphone" label="手机号码">
  359. <template slot-scope="scope">
  360. <el-input v-model="scope.row.telphone" placeholder="手机号码" οninput="value=value.replace(/^((13[0-9])|(14[5-9])|(15([0-3]|[5-9]))|(16[6-7])|(17[1-8])|(18[0-9])|(19[1|3])|(19[5|6])|(19[8|9]))\d{8}$/,'')"></el-input>
  361. </template>
  362. </el-table-column>
  363. <el-table-column prop="bookbuytime" label="操作">
  364. <template slot-scope="scope">
  365. <el-button
  366. size="mini"
  367. type="danger"
  368. icon="el-icon-delete"
  369. @click="handleDelete(scope.$index, scope.row)">删除
  370. </el-button>
  371. <!--<el-button-->
  372. <!--size="mini"-->
  373. <!--type="danger"-->
  374. <!--icon="el-icon-save"-->
  375. <!--@click="handleSave(scope.$index, scope.row)">保存-->
  376. <!--</el-button>-->
  377. </template>
  378. </el-table-column>
  379. </el-table>
  380. </div>
  381. </div>
  382. <el-button size="mini" type="primary" class="fr_button" @click="addResponsibilityDialog">确定
  383. </el-button>
  384. <div style="clear: both;"></div>
  385. </el-form>
  386. </el-dialog>
  387. <!-- 会议弹窗 start -->
  388. <el-dialog title="视频会议" :visible.sync="showMeetingMsgDialog" v-if="showMeetingMsgDialog" width="65%"
  389. @close="closeMeetingMsgDialog()">
  390. <el-form label-width="1500px">
  391. <div class="bottom">
  392. <!-- 左侧菜单栏 -->
  393. <div class="bottomLeft">
  394. <div class="leftItem d-l-con padding-box nowrap" v-for="(item,index) in depteventList">
  395. <div class="bgt-info">
  396. <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
  397. @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
  398. </div>
  399. </div>
  400. </div>
  401. </div>
  402. <!-- 左侧菜单栏对应的右侧的内容 -->
  403. <div class="bottomRight" ref="wrapper">
  404. <el-button
  405. size="mini"
  406. type="danger"
  407. v-if="depteventId!=null&&depteventId!=''"
  408. @click="addLine">添加
  409. </el-button>
  410. <el-button
  411. size="mini"
  412. type="danger"
  413. v-if="depteventId!=null&&depteventId!=''"
  414. @click="finUserByDept">选择
  415. </el-button>
  416. <el-table
  417. :data="dutysystemTableData"
  418. style="width: 100%"
  419. :rules="rules">
  420. <el-table-column prop="id" label="主键" v-if="false">
  421. <template slot-scope="scope" hidden>
  422. <el-input v-model="scope.row.id" readonly placeholder="主键"></el-input>
  423. </template>
  424. </el-table-column>
  425. <el-table-column prop="name" label="姓名">
  426. <template slot-scope="scope">
  427. <el-input v-model="scope.row.name" placeholder="姓名" οninput="value=value.replace(/^[\u4e00-\u9fa5]{2,4}$/,'')"></el-input>
  428. </template>
  429. </el-table-column>
  430. <el-table-column prop="post" label="岗位">
  431. <template slot-scope="scope">
  432. <el-input v-model="scope.row.post" placeholder="岗位"></el-input>
  433. </template>
  434. </el-table-column>
  435. <el-table-column prop="telphone" label="手机号码">
  436. <template slot-scope="scope">
  437. <el-input v-model="scope.row.telphone" placeholder="手机号码" οninput="value=value.replace(/^((13[0-9])|(14[5-9])|(15([0-3]|[5-9]))|(16[6-7])|(17[1-8])|(18[0-9])|(19[1|3])|(19[5|6])|(19[8|9]))\d{8}$/,'')"></el-input>
  438. </template>
  439. </el-table-column>
  440. <el-table-column prop="bookbuytime" label="操作">
  441. <template slot-scope="scope">
  442. <el-button
  443. size="mini"
  444. type="danger"
  445. icon="el-icon-delete"
  446. @click="handleDelete(scope.$index, scope.row)">删除
  447. </el-button>
  448. <!--<el-button-->
  449. <!--size="mini"-->
  450. <!--type="danger"-->
  451. <!--icon="el-icon-save"-->
  452. <!--@click="handleSave(scope.$index, scope.row)">保存-->
  453. <!--</el-button>-->
  454. </template>
  455. </el-table-column>
  456. </el-table>
  457. </div>
  458. </div>
  459. <el-button size="mini" type="primary" class="fr_button" @click="sendMsg">发送短信
  460. </el-button>
  461. <div style="clear: both;"></div>
  462. </el-form>
  463. </el-dialog>
  464. <!-- 会议弹窗 end -->
  465. <el-dialog title="火险报告" :visible.sync="showEventConfirm_gd" v-if="showEventConfirm_gd" width="100%"
  466. class="top-dialog"
  467. @close="cancelEventConfirm_gd()">
  468. <div class="table-container">
  469. <form>
  470. <table id="table1" cellpadding="0" cellspacing="0">
  471. <thead style="width: 100%;padding:.5rem 0;">
  472. <th rowspan="1" colspan="1" class="txt_left" width="100px">填报单位:</th>
  473. <th rowspan="1" colspan="6" align="left"><input type="text" style=" width:100%;margin-left: .5rem;"
  474. v-model="table1.reportUnit"/></th>
  475. <th rowspan="1" colspan="2" class="txt_right">填报时间:</th>
  476. <th rowspan="1" colspan="6" align="left"><input type="text" style="width:3rem;text-align: center;"
  477. v-model="table1.reportTimeY"/>年<input
  478. type="text" style="width:4rem;text-align: center;" v-model="table1.reportTimeM"/>月<input type="text"
  479. style="width:3rem;text-align: center;"
  480. v-model="table1.reportTimeD"/>日
  481. </th>
  482. <th rowspan="1" colspan="8" style="text-align: right;">吉林省人民政府森林防火指挥部办公室制</th>
  483. </thead>
  484. <tbody>
  485. <tr>
  486. <td colspan="22" rowspan="1" class="font1" style="letter-spacing:3rem;padding: .5rem 0">森林火灾损失</td>
  487. <td colspan="1" rowspan="6">
  488. <table class="border0">
  489. <tr>
  490. <td>备注</td>
  491. </tr>
  492. </table>
  493. </td>
  494. </tr>
  495. <tr>
  496. <td rowspan="4" colspan="1">
  497. <table class="border0">
  498. <tr>
  499. <td>森林火灾<br>损失总计</td>
  500. </tr>
  501. </table>
  502. </td>
  503. <td rowspan="1" colspan="12">火灾损失价值</td>
  504. <td rowspan="1" colspan="9">扑火费用支出</td>
  505. </tr>
  506. <tr>
  507. <td rowspan="3" colspan="1">
  508. <table class="border0">
  509. <tr>
  510. <td>合计</td>
  511. </tr>
  512. </table>
  513. </td>
  514. <td rowspan="1" colspan="4">林木资源</td>
  515. <td rowspan="1" colspan="6">人员伤亡</td>
  516. <td rowspan="3" colspan="1">
  517. <table class="border0">
  518. <tr>
  519. <td>其他<br>火灾<br>损失</td>
  520. </tr>
  521. </table>
  522. </td>
  523. <td rowspan="3" colspan="1">
  524. <table class="border0">
  525. <tr>
  526. <td>合计</td>
  527. </tr>
  528. </table>
  529. </td>
  530. <td rowspan="1" colspan="2">
  531. <table class="border0">
  532. <tr>
  533. <td>人工费</td>
  534. </tr>
  535. </table>
  536. </td>
  537. <td rowspan="1" colspan="3">
  538. <table class="border0">
  539. <tr>
  540. <td>车辆费</td>
  541. </tr>
  542. </table>
  543. </td>
  544. <td rowspan="1" colspan="2">
  545. <table class="border0">
  546. <tr>
  547. <td>飞行费</td>
  548. </tr>
  549. </table>
  550. </td>
  551. <td rowspan="3" colspan="1">
  552. <table class="border0">
  553. <tr>
  554. <td>其他<br>扑火<br>费用</td>
  555. </tr>
  556. </table>
  557. </td>
  558. </tr>
  559. <tr>
  560. <td rowspan="1" colspan="2">成林</td>
  561. <td rowspan="1" colspan="2">幼林</td>
  562. <td rowspan="1" colspan="2">轻伤</td>
  563. <td rowspan="1" colspan="2">重伤</td>
  564. <td rowspan="1" colspan="2">死亡</td>
  565. <td rowspan="2" colspan="1">
  566. <table class="border0">
  567. <tr>
  568. <td>出动<br>人工</td>
  569. </tr>
  570. </table>
  571. </td>
  572. <td rowspan="2" colspan="1">
  573. <table class="border0">
  574. <tr>
  575. <td>支出<br>费用</td>
  576. </tr>
  577. </table>
  578. </td>
  579. <td rowspan="2" colspan="1">
  580. <table class="border0">
  581. <tr>
  582. <td>计</td>
  583. </tr>
  584. </table>
  585. </td>
  586. <td rowspan="2" colspan="1">
  587. <table class="border0">
  588. <tr>
  589. <td>其中<br>汽车</td>
  590. </tr>
  591. </table>
  592. </td>
  593. <td rowspan="2" colspan="1">
  594. <table class="border0">
  595. <tr>
  596. <td>支出<br>费用</td>
  597. </tr>
  598. </table>
  599. </td>
  600. <td rowspan="2" colspan="1">
  601. <table class="border0">
  602. <tr>
  603. <td>出动<br>飞机</td>
  604. </tr>
  605. </table>
  606. </td>
  607. <td rowspan="2" colspan="1">
  608. <table class="border0">
  609. <tr>
  610. <td>支出<br>费用</td>
  611. </tr>
  612. </table>
  613. </td>
  614. </tr>
  615. <tr>
  616. <td rowspan="1" colspan="1">蓄积</td>
  617. <td rowspan="1" colspan="1">价值</td>
  618. <td rowspan="1" colspan="1">株数</td>
  619. <td rowspan="1" colspan="1">价值</td>
  620. <td rowspan="1" colspan="1">人数</td>
  621. <td rowspan="1" colspan="1">支出费用</td>
  622. <td rowspan="1" colspan="1">人数</td>
  623. <td rowspan="1" colspan="1">支出费用</td>
  624. <td rowspan="1" colspan="1">人数</td>
  625. <td rowspan="1" colspan="1">支出费用</td>
  626. </tr>
  627. <tr>
  628. <td rowspan="1" colspan="1">万元</td>
  629. <td rowspan="1" colspan="1">万元</td>
  630. <td rowspan="1" colspan="1">米³</td>
  631. <td rowspan="1" colspan="1">万元</td>
  632. <td rowspan="1" colspan="1">万株</td>
  633. <td rowspan="1" colspan="1">万元</td>
  634. <td rowspan="1" colspan="1">人</td>
  635. <td rowspan="1" colspan="1">万元</td>
  636. <td rowspan="1" colspan="1">人</td>
  637. <td rowspan="1" colspan="1">万元</td>
  638. <td rowspan="1" colspan="1">人</td>
  639. <td rowspan="1" colspan="1">万元</td>
  640. <td rowspan="1" colspan="1">万元</td>
  641. <td rowspan="1" colspan="1">万元</td>
  642. <td rowspan="1" colspan="1">工日</td>
  643. <td rowspan="1" colspan="1">万元</td>
  644. <td rowspan="1" colspan="1">台</td>
  645. <td rowspan="1" colspan="1">台</td>
  646. <td rowspan="1" colspan="1">万元</td>
  647. <td rowspan="1" colspan="1">架次</td>
  648. <td rowspan="1" colspan="1">万元</td>
  649. <td rowspan="1" colspan="1">万元</td>
  650. </tr>
  651. <tr>
  652. <td rowspan="1" colspan="1">1</td>
  653. <td rowspan="1" colspan="1">2</td>
  654. <td rowspan="1" colspan="1">3</td>
  655. <td rowspan="1" colspan="1">4</td>
  656. <td rowspan="1" colspan="1">5</td>
  657. <td rowspan="1" colspan="1">6</td>
  658. <td rowspan="1" colspan="1">7</td>
  659. <td rowspan="1" colspan="1">8</td>
  660. <td rowspan="1" colspan="1">9</td>
  661. <td rowspan="1" colspan="1">10</td>
  662. <td rowspan="1" colspan="1">11</td>
  663. <td rowspan="1" colspan="1">12</td>
  664. <td rowspan="1" colspan="1">13</td>
  665. <td rowspan="1" colspan="1">14</td>
  666. <td rowspan="1" colspan="1">15</td>
  667. <td rowspan="1" colspan="1">16</td>
  668. <td rowspan="1" colspan="1">17</td>
  669. <td rowspan="1" colspan="1">18</td>
  670. <td rowspan="1" colspan="1">19</td>
  671. <td rowspan="1" colspan="1">20</td>
  672. <td rowspan="1" colspan="1">21</td>
  673. <td rowspan="1" colspan="1">22</td>
  674. <td rowspan="1" colspan="1">23</td>
  675. </tr>
  676. <tr class="int_tr">
  677. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestFireLossTotal"/></td>
  678. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.fireLossTotal"/></td>
  679. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestArea"/></td>
  680. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestPrice"/></td>
  681. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.treesNumber"/></td>
  682. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.treesPrice"/></td>
  683. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.minorInjuriesNumber"/></td>
  684. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.minorInjuriesPrice"/></td>
  685. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.seriouslyInjuredNumber"/>
  686. </td>
  687. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.seriouslyInjuredPrice"/>
  688. </td>
  689. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.deathNumber"/></td>
  690. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.deathPrice"/></td>
  691. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.elseFireLossPrice"/></td>
  692. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.blazesPriceTotal"/></td>
  693. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.artificialDays"/></td>
  694. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.artificialPrice"/></td>
  695. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.vehicleNumber"/></td>
  696. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.carNumber"/></td>
  697. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.vehiclePrice"/></td>
  698. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.planeNumber"/></td>
  699. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.planePrice"/></td>
  700. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.elseBlazesPrice"/></td>
  701. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.note"/></td>
  702. </tr>
  703. </tbody>
  704. </table>
  705. <table class="table2" cellpadding="0" cellspacing="0" style="white-space: nowrap;">
  706. <tbody>
  707. <tr>
  708. <th rowspan="1" colspan="26" style="letter-spacing:6rem">火场资料</th>
  709. </tr>
  710. <tr>
  711. <td colspan="2" rowspan="1" class="txt_left">&nbsp;1.起火时间</td>
  712. <td colspan="5" rowspan="1"><input type="text" v-model="table2.fireTime"/></td>
  713. <td colspan="2" rowspan="1">发现时间</td>
  714. <td colspan="8" rowspan="1"><input type="text" v-model="table2.foundTime"/></td>
  715. <td colspan="2" rowspan="1">扑灭时间</td>
  716. <td colspan="7" rowspan="1"><input type="text" v-model="table2.blazesTime"/></td>
  717. </tr>
  718. <tr>
  719. <td colspan="2" rowspan="1" class="txt_left">&nbsp;2.地点及发现方式</td>
  720. <td colspan="2" rowspan="1" class="txt_left"><select v-model="table2.address">
  721. <option>吉林市</option>
  722. <option>延边州</option>
  723. <option>白山市</option>
  724. <option>通化市</option>
  725. <option>辽源市</option>
  726. <option>四平市</option>
  727. <option>长春市</option>
  728. <option>白城市</option>
  729. <option>松原市</option>
  730. <option>敦化航站</option>
  731. <option>长白山管委会</option>
  732. </select></td>
  733. <td colspan="13" rowspan="1"><input type="text" v-model="table2.firePlace"/></td>
  734. <td colspan="2" rowspan="1">发现方式</td>
  735. <td colspan="7" rowspan="1"><input type="text" v-model="table2.foundType"/></td>
  736. </tr>
  737. <tr>
  738. <td colspan="2" rowspan="1" class="txt_left">&nbsp;3.火场位置</td>
  739. <td colspan="2" rowspan="1" class="border_l0">东经:</td>
  740. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  741. v-model="table2.longitudeD"/></td>
  742. <td colspan="1" rowspan="1" class="border_l0">度</td>
  743. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  744. v-model="table2.longitudeM"/></td>
  745. <td colspan="1" rowspan="1" class="border_l0">分</td>
  746. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  747. v-model="table2.longitudeS"/></td>
  748. <td colspan="2" rowspan="1" class="border_l0">秒</td>
  749. <td colspan="1" rowspan="1" class="border_l0">;</td>
  750. <td colspan="2" rowspan="1" class="border_l0">北纬:</td>
  751. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  752. v-model="table2.latitudeD"/></td>
  753. <td colspan="1" rowspan="1" class="border_l0">度</td>
  754. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  755. v-model="table2.latitudeM"/></td>
  756. <td colspan="1" rowspan="1" class="border_l0">分</td>
  757. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  758. v-model="table2.latitudeS"/></td>
  759. <td colspan="1" rowspan="1" class="border_l0">秒</td>
  760. <td class="border_l0"></td>
  761. <td class="border_l0"></td>
  762. <td class="border_l0"></td>
  763. <td class="border_l0"></td>
  764. <td class="border_l0"></td>
  765. <td></td>
  766. </tr>
  767. <tr>
  768. <td colspan="2" rowspan="1" class="txt_left">&nbsp;4.起火原因</td>
  769. <td colspan="3" rowspan="1" class="txt_left"><select v-model="table2.fireSource">
  770. <option>未查明火源</option>
  771. <option>烧荒烧炭</option>
  772. <option>炼山造林</option>
  773. <option>烧牧场</option>
  774. <option disabled>烧窑</option>
  775. <option>烧隔离带</option>
  776. <option>火车喷漏</option>
  777. <option>火车甩瓦</option>
  778. <option>机车喷火</option>
  779. <option>其他(生产性火源)</option>
  780. <option>野外吸烟</option>
  781. <option>取暖做饭</option>
  782. <option>上坟烧纸</option>
  783. <option>烧山驱兽</option>
  784. <option>小孩玩火</option>
  785. <option>痴呆弄火</option>
  786. <option>家火上山</option>
  787. <option>电线引起</option>
  788. <option>其他(非生产性用火)</option>
  789. <option>故意放火</option>
  790. <option>外省(区)烧入</option>
  791. <option>外国烧入</option>
  792. <option>雷击火</option>
  793. <option>其他自然火</option>
  794. </select></td>
  795. <td colspan="3" rowspan="1">火灾种类</td>
  796. <td colspan="4" rowspan="1" class="txt_left"><select v-model="table2.fireType">
  797. <option>地表火</option>
  798. <option>树冠火</option>
  799. <option>地下火</option>
  800. </select></td>
  801. <td colspan="3" rowspan="1">火灾等级</td>
  802. <td colspan="11" rowspan="1" class="txt_left"><select v-model="table2.fireLevel">
  803. <option>一般</option>
  804. <option>较大</option>
  805. <option>重大</option>
  806. <option>特大</option>
  807. </select></td>
  808. </tr>
  809. <tr>
  810. <td colspan="2" rowspan="1" class="txt_left">&nbsp;5.火场面积(公顷)</td>
  811. <td colspan="2" rowspan="1">总面积合计</td>
  812. <td colspan="3" rowspan="1"><input type="text" v-model="table2.areaTotal"/></td>
  813. <td colspan="4" rowspan="1">受害森林面积合计</td>
  814. <td colspan="3" rowspan="1"><input type="text" v-model="table2.forestLossAreaTotal"/></td>
  815. <td colspan="1" rowspan="1">其中:</td>
  816. <td colspan="2" rowspan="1">原森林</td>
  817. <td colspan="4" rowspan="1"><input type="text" v-model="table2.originalForestArea"/></td>
  818. <td colspan="2" rowspan="1">人工林</td>
  819. <td colspan="3" rowspan="1"><input type="text" v-model="table2.artificialForestArea"/></td>
  820. </tr>
  821. <tr>
  822. <td colspan="2" rowspan="1" class="txt_left">&nbsp;6.扑火人力物力投入</td>
  823. <td colspan="2" rowspan="1">出动总人数</td>
  824. <td colspan="1" rowspan="1"><input type="text" v-model="table2.peopleTotal"/></td>
  825. <td colspan="2" rowspan="1">其中扑火队</td>
  826. <td colspan="1" rowspan="1"><input type="text" v-model="table2.blazesTeamNumber"/></td>
  827. <td colspan="1" rowspan="1">森警</td>
  828. <td colspan="2" rowspan="1"><input type="text" v-model="table2.policeNumber"/></td>
  829. <td colspan="1" rowspan="1">军队</td>
  830. <td colspan="1" rowspan="1"><input type="text" v-model="table2.armyNumber"/></td>
  831. <td colspan="1" rowspan="1">群众</td>
  832. <td colspan="1" rowspan="1"><input type="text" v-model="table2.crowdNumber"/></td>
  833. <td colspan="2" rowspan="1">风力灭火机</td>
  834. <td colspan="1" rowspan="1"><input type="text" v-model="table2.windExtinguisher"/></td>
  835. <td colspan="2" rowspan="1">二号工具</td>
  836. <td colspan="1" rowspan="1"><input type="text" v-model="table2.secondTool"/></td>
  837. <td colspan="2" rowspan="1">水枪</td>
  838. <td colspan="1" rowspan="1"><input type="text" v-model="table2.waterGun"/></td>
  839. <td colspan="1" rowspan="1">其他</td>
  840. <td colspan="1" rowspan="1"><input type="text" v-model="table2.elseThings"/></td>
  841. </tr>
  842. <tr>
  843. <td colspan="2" rowspan="1" class="txt_left">&nbsp;7.受害森林概况</td>
  844. <td colspan="2" rowspan="1">林木组成</td>
  845. <td colspan="11" rowspan="1"><input type="text" v-model="table2.forestComposition"/></td>
  846. <td colspan="2" rowspan="1">林令</td>
  847. <td colspan="4" rowspan="1"><input type="text" v-model="table2.forestToken"/></td>
  848. <td colspan="2" rowspan="1">疏密度</td>
  849. <td colspan="3" rowspan="1"><input type="text" v-model="table2.porosities"/></td>
  850. </tr>
  851. <tr>
  852. <td colspan="2" rowspan="1" class="txt_left">&nbsp;8.当日天气实况</td>
  853. <td colspan="2" rowspan="1">天气</td>
  854. <td colspan="3" rowspan="1"><input type="text" v-model="table2.weather"/></td>
  855. <td colspan="1" rowspan="1">气温</td>
  856. <td colspan="2" rowspan="1"><input type="text" v-model="table2.temperature"/></td>
  857. <td colspan="1" rowspan="1">C°</td>
  858. <td colspan="3" rowspan="1">火险等级</td>
  859. <td colspan="1" rowspan="1"><input type="text" v-model="table2.fireInsuranceLevel"/></td>
  860. <td colspan="2" rowspan="1">风力</td>
  861. <td colspan="2" rowspan="1" class="border_l0"><input type="text" v-model="table2.windLevel"/></td>
  862. <td colspan="2" rowspan="1" class="txt_left">级</td>
  863. <td colspan="2" rowspan="1">风向</td>
  864. <td colspan="3" rowspan="1"><input type="text" v-model="table2.windDirection"/></td>
  865. </tr>
  866. <tr>
  867. <td colspan="2" rowspan="1" class="txt_left">&nbsp;9.指挥扑火负责人</td>
  868. <td colspan="2" rowspan="1">单位</td>
  869. <td colspan="11" rowspan="1"><input type="text" v-model="table2.commandUnit"/></td>
  870. <td colspan="2" rowspan="1">姓名</td>
  871. <td colspan="4" rowspan="1"><input type="text" v-model="table2.commandName"/></td>
  872. <td colspan="2" rowspan="1">职务</td>
  873. <td colspan="3" rowspan="1"><input type="text" v-model="table2.commandPosition"/></td>
  874. </tr>
  875. <tr>
  876. <td colspan="2" rowspan="1" class="txt_left">&nbsp;10.火场调查负责人</td>
  877. <td colspan="2" rowspan="1">单位</td>
  878. <td colspan="11" rowspan="1"><input type="text" v-model="table2.surveyUnit"/></td>
  879. <td colspan="2" rowspan="1">姓名</td>
  880. <td colspan="4" rowspan="1"><input type="text" v-model="table2.surveyName"/></td>
  881. <td colspan="2" rowspan="1">职务</td>
  882. <td colspan="3" rowspan="1"><input type="text" v-model="table2.surveyPosition"/></td>
  883. </tr>
  884. <tr>
  885. <td colspan="2" rowspan="1" class="txt_left">&nbsp;11.火灾肇事人情况</td>
  886. <td colspan="2" rowspan="1">姓名</td>
  887. <td colspan="2" rowspan="1"><input type="text" v-model="table2.accidentName"/></td>
  888. <td colspan="2" rowspan="1">性别</td>
  889. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentSex"/></td>
  890. <td colspan="3" rowspan="1">年龄</td>
  891. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentAge"/></td>
  892. <td colspan="1" rowspan="1">职业</td>
  893. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentPosition"/></td>
  894. <td colspan="2" rowspan="1">单位或住址</td>
  895. <td colspan="9" rowspan="1"><input type="text" v-model="table2.accidentUnit"/></td>
  896. </tr>
  897. <tr>
  898. <td colspan="2" rowspan="1" class="txt_left">&nbsp;12.火灾处理情况</td>
  899. <td colspan="2" rowspan="1">处理方式</td>
  900. <td colspan="4" rowspan="1"><select v-model="table2.dealType">
  901. <option>立案(刑事处理)</option>
  902. <option>破案(刑事处理)</option>
  903. <option>行政处理</option>
  904. <option>待查</option>
  905. <option>拘留</option>
  906. <option>处理</option>
  907. <option>未处理</option>
  908. </select></td>
  909. <td colspan="3" rowspan="1">已处理人数</td>
  910. <td colspan="4" rowspan="1"><input type="text" v-model="table2.dealNumber"/></td>
  911. <td colspan="4" rowspan="1">刑事处罚人数</td>
  912. <td colspan="7" rowspan="1"><input type="text" v-model="table2.criminalDealNumber"/></td>
  913. </tr>
  914. <tr>
  915. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;13.对火灾肇事人<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;的处理情况
  916. </td>
  917. <td colspan="24" rowspan="1" class="txt_left">
  918. <textarea v-model="table2.accidentDealSituation"></textarea>
  919. </td>
  920. </tr>
  921. <tr>
  922. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;14.对责任人员的<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;责任人追查情况
  923. </td>
  924. <td colspan="24" rowspan="1" class="txt_left">
  925. <textarea v-model="table2.responsibilityDealSituation"></textarea></td>
  926. </tr>
  927. <tr>
  928. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;15.对有关领导的<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;责任追查情况
  929. </td>
  930. <td colspan="24" rowspan="1" class="txt_left">
  931. <textarea v-model="table2.leadershipDealSituation"></textarea></td>
  932. </tr>
  933. <tr class="tr_border">
  934. <td colspan="4" rowspan="1">县(市、区、局、站)填表人:</td>
  935. <td colspan="2" rowspan="1"><input type="text" v-model="table2.townForm"/></td>
  936. <td colspan="4" rowspan="1">县(市、区、局、站)审核人:</td>
  937. <td colspan="3" rowspan="1"><input type="text" v-model="table2.townAudit"/></td>
  938. <td colspan="4" rowspan="1">市(州、管委会)填表人:</td>
  939. <td colspan="2" rowspan="1"><input type="text" v-model="table2.cityForm"/></td>
  940. <td colspan="4" rowspan="1">市(州、管委会)审核人:</td>
  941. <td colspan="3" rowspan="1"><input type="text" v-model="table2.cityAudit"/></td>
  942. </tr>
  943. </tbody>
  944. </table>
  945. <div class="btm-btn-group">
  946. <el-button size="mini" type="primary"
  947. @click="updateCentereventTEventcatalogueStatus('gd',true)">归档
  948. </el-button>
  949. <el-button size="mini" type="primary"
  950. @click="regionalFlagAdd()">火灾区域
  951. </el-button>
  952. </div>
  953. </form>
  954. </div>
  955. </el-dialog>
  956. <!-- 添加区域标记 -->
  957. <el-dialog title="火灾区域" :visible.sync="regionalFlagOpen" width="1000px">
  958. <areaSupermap ref="fireAreaSupermap" v-if="regionalFlagOpen" style="width: 100%;height:74vh"
  959. :mapDiv="'fireAreaSuperMap'" :mapSite="{doubleClickZoom:false}" :codes="['9fa5']"
  960. :isSideBySide="false" :showAreaLatLng="showAreaLatLng"></areaSupermap>
  961. <!-- <areaSupermap ref="fireAreaSupermap" v-if="regionalFlagOpen" :showAreaLatLng="showAreaLatLng"></areaSupermap> -->
  962. </el-dialog>
  963. <!-- 图片,视频预览 -->
  964. <el-dialog title="人员选择" :visible.sync="showFindUserByDept" width="40%">
  965. <findUserByDept v-if="showFindUserByDept" ref="findUserByDept" :deptId="iconCurrentIndex" @addSelection="addSelection"></findUserByDept>
  966. </el-dialog>
  967. <el-dialog :title="eventConfirmTitle" :visible.sync="showEventConfirm" v-if="showEventConfirm" width="50%"
  968. class="top-dialog"
  969. @close="cancelEventConfirm()">
  970. <el-form label-width="80px">
  971. <el-form-item label="火灾半径" v-if="eventStatusButton=='qs'&&eventTypeXl==null">
  972. <el-input type="number" v-model="sendHuoZaiBanJing" placeholder="请输入火灾半径"/>
  973. </el-form-item>
  974. <el-form-item :label="deptNameitem">
  975. <!-- <treeselect v-model="deptId" :options="deptOptions" multiple :show-count="true"-->
  976. <!-- placeholder="请选择签收部门"/>-->
  977. <el-select v-model="sendDeptName" clearable placeholder="请选择部门" class="m-r-1rem" @change="setValue"
  978. v-if="eventStatusButton=='wb'||eventStatusButton=='qs'||eventStatusButton=='cf'||eventStatusButton=='ld'">
  979. <el-option
  980. v-for="item in deptOptions"
  981. :key="item.deptId"
  982. :label="item.deptName"
  983. :value="{value:item.deptId,label:item.deptName}">
  984. </el-option>
  985. </el-select>
  986. </el-form-item>
  987. <el-form-item label="事件类型" v-if="eventStatusButton=='qs'&& eventTypeXl == null">
  988. <el-select v-model="sendEventType" placeholder="请选择事件类型!" clearable>
  989. <el-option
  990. v-for="item in eventTypeList"
  991. :key="item.id"
  992. :label="item.eventTypeName"
  993. :value="item.id"
  994. />
  995. </el-select>
  996. </el-form-item>
  997. <el-form-item label="任务来源" v-if="eventStatusButton=='ld'">
  998. <el-select v-model="sendTaskSource" placeholder="请选择任务来源!" clearable>
  999. <el-option
  1000. v-for="dict in dict.type.task_source"
  1001. :key="dict.value"
  1002. :label="dict.label"
  1003. :value="dict.value"
  1004. />
  1005. </el-select>
  1006. </el-form-item>
  1007. <el-form-item label="联动标题" v-if="eventStatusButton=='ld'">
  1008. <el-input v-model="sendTaskTitle" placeholder="请输入联动标题"/>
  1009. </el-form-item>
  1010. <el-form-item label="联动内容" v-if="eventStatusButton=='ld'">
  1011. <el-input type="textarea" v-model="sendTaskContent"
  1012. :autosize="{ minRows: 7, maxRows: 7}" placeholder="请输入联动内容">
  1013. </el-input>
  1014. </el-form-item>
  1015. <el-form-item label="联动部门" v-if="eventStatusButton=='ld'">
  1016. <el-input
  1017. placeholder="输入关键字进行过滤"
  1018. v-model="filterText">
  1019. </el-input>
  1020. <el-tree
  1021. class="tree-border tree_scroll"
  1022. style="height: 20vh; overflow-y:scroll"
  1023. :data="deptOptionsLiandong"
  1024. show-checkbox
  1025. ref="LiandongDept"
  1026. node-key="id"
  1027. :check-strictly="true"
  1028. :filter-node-method="filterNode"
  1029. :accordion="true"
  1030. empty-text="加载中,请稍候"
  1031. :props="defaultProps"
  1032. ></el-tree>
  1033. <!-- default-expand-all-->
  1034. </el-form-item>
  1035. <el-form-item label="关联预案" v-if="eventStatusButton=='qs'">
  1036. <el-select v-model="sendGuanLianYuAn" placeholder="请选择关联预案!" filterable clearable>
  1037. <el-option
  1038. v-for="item in guanLianYuAnList"
  1039. :key="item.id"
  1040. :label="item.resTitle"
  1041. :value="item.id"
  1042. />
  1043. </el-select>
  1044. </el-form-item>
  1045. <!--<el-form-item label="联系人" v-if="eventStatusButton=='qs'">-->
  1046. <!--<el-select multiple collapse-tags v-model='sendUserFegin' placeholder='请选择联系人!' clearable filterable>-->
  1047. <!--<el-option-->
  1048. <!--v-for="item in userFeginList"-->
  1049. <!--:label="item.nickName"-->
  1050. <!--:value="item.phonenumber"-->
  1051. <!--/>-->
  1052. <!--</el-select>-->
  1053. <!--</el-form-item>-->
  1054. <el-button size="mini" type="primary" v-if="eventStatusButton=='qr'"
  1055. @click="updateCentereventTEventcatalogueStatus('qr',false)">确认
  1056. </el-button>
  1057. <el-button size="mini" type="primary" v-if="eventStatusButton=='qs'"
  1058. @click="updateCentereventTEventcatalogueStatus('qs',true)">签收
  1059. </el-button>
  1060. <el-button size="mini" type="primary" v-if="eventStatusButton=='wb'"
  1061. @click="updateCentereventTEventcatalogueStatus('wb',true)">误报
  1062. </el-button>
  1063. <el-button size="mini" type="primary" v-if="eventStatusButton=='cf'"
  1064. @click="updateCentereventTEventcatalogueStatus('cf',true)">重复
  1065. </el-button>
  1066. <el-button size="mini" type="primary" v-if="eventStatusButton=='ld'"
  1067. @click="updateCentereventTEventcatalogueStatus('ld',true)">发起联动
  1068. </el-button>
  1069. </el-form>
  1070. </el-dialog>
  1071. <el-dialog title="调整预案" :visible.sync="showGuanLianYuAnConfirm" v-if="showGuanLianYuAnConfirm" width="50%"
  1072. class="top-dialog tz_tk">
  1073. <el-form label-width="80px">
  1074. <el-form-item label="关联预案">
  1075. <el-select v-model="sendGuanLianYuAn" placeholder="请选择关联预案!" clearable>
  1076. <el-option
  1077. v-for="item in guanLianYuAnList"
  1078. :key="item.id"
  1079. :label="item.resTitle"
  1080. :value="item.id"
  1081. />
  1082. </el-select>
  1083. </el-form-item>
  1084. <el-button size="mini" type="primary" class="fr_button" @click="updateYjYuAn">确定
  1085. </el-button>
  1086. <div style="clear: both;"></div>
  1087. </el-form>
  1088. </el-dialog>
  1089. <el-dialog title="责任制" :visible.sync="showResponsibilityDialog" v-if="showResponsibilityDialog" width="65%"
  1090. @close="closeResponsibilityDialog()">
  1091. <el-form label-width="1500px">
  1092. <div class="bottom">
  1093. <!-- 左侧菜单栏 -->
  1094. <div class="bottomLeft">
  1095. <div class="leftItem d-l-con padding-box nowrap" v-for="(item,index) in depteventList">
  1096. <div class="bgt-info">
  1097. <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
  1098. @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
  1099. </div>
  1100. </div>
  1101. </div>
  1102. </div>
  1103. <!-- 左侧菜单栏对应的右侧的内容 -->
  1104. <div class="bottomRight" ref="wrapper">
  1105. <el-button
  1106. size="mini"
  1107. type="danger"
  1108. v-if="depteventId!=null&&depteventId!=''"
  1109. @click="addLine">添加
  1110. </el-button>
  1111. <el-button
  1112. size="mini"
  1113. type="danger"
  1114. v-if="depteventId!=null&&depteventId!=''"
  1115. @click="finUserByDept">选择
  1116. </el-button>
  1117. <el-table
  1118. :data="dutysystemTableData"
  1119. style="width: 100%"
  1120. :rules="rules">
  1121. <el-table-column prop="id" label="主键" v-if="false">
  1122. <template slot-scope="scope" hidden>
  1123. <el-input v-model="scope.row.id" readonly placeholder="主键"></el-input>
  1124. </template>
  1125. </el-table-column>
  1126. <el-table-column prop="name" label="姓名">
  1127. <template slot-scope="scope">
  1128. <el-input v-model="scope.row.name" placeholder="姓名" οninput="value=value.replace(/^[\u4e00-\u9fa5]{2,4}$/,'')"></el-input>
  1129. </template>
  1130. </el-table-column>
  1131. <el-table-column prop="post" label="岗位">
  1132. <template slot-scope="scope">
  1133. <el-input v-model="scope.row.post" placeholder="岗位"></el-input>
  1134. </template>
  1135. </el-table-column>
  1136. <el-table-column prop="telphone" label="手机号码">
  1137. <template slot-scope="scope">
  1138. <el-input v-model="scope.row.telphone" placeholder="手机号码" οninput="value=value.replace(/^((13[0-9])|(14[5-9])|(15([0-3]|[5-9]))|(16[6-7])|(17[1-8])|(18[0-9])|(19[1|3])|(19[5|6])|(19[8|9]))\d{8}$/,'')"></el-input>
  1139. </template>
  1140. </el-table-column>
  1141. <el-table-column prop="bookbuytime" label="操作">
  1142. <template slot-scope="scope">
  1143. <el-button
  1144. size="mini"
  1145. type="danger"
  1146. icon="el-icon-delete"
  1147. @click="handleDelete(scope.$index, scope.row)">删除
  1148. </el-button>
  1149. <!--<el-button-->
  1150. <!--size="mini"-->
  1151. <!--type="danger"-->
  1152. <!--icon="el-icon-save"-->
  1153. <!--@click="handleSave(scope.$index, scope.row)">保存-->
  1154. <!--</el-button>-->
  1155. </template>
  1156. </el-table-column>
  1157. </el-table>
  1158. </div>
  1159. </div>
  1160. <el-button size="mini" type="primary" class="fr_button" @click="addResponsibilityDialog">确定
  1161. </el-button>
  1162. <div style="clear: both;"></div>
  1163. </el-form>
  1164. </el-dialog>
  1165. <!-- 会议弹窗 start -->
  1166. <el-dialog title="视频会议" :visible.sync="showMeetingMsgDialog" v-if="showMeetingMsgDialog" width="65%"
  1167. @close="closeMeetingMsgDialog()">
  1168. <el-form label-width="1500px">
  1169. <div class="bottom">
  1170. <!-- 左侧菜单栏 -->
  1171. <div class="bottomLeft">
  1172. <div class="leftItem d-l-con padding-box nowrap" v-for="(item,index) in depteventList">
  1173. <div class="bgt-info">
  1174. <div class="bgt-info-name" :class="{on:iconCurrentIndex==item.deptId}"
  1175. @click="dutysystemSelect(item.deptId,item.deptName,item.id)">{{ item.deptName }}
  1176. </div>
  1177. </div>
  1178. </div>
  1179. </div>
  1180. <!-- 左侧菜单栏对应的右侧的内容 -->
  1181. <div class="bottomRight" ref="wrapper">
  1182. <el-button
  1183. size="mini"
  1184. type="danger"
  1185. v-if="depteventId!=null&&depteventId!=''"
  1186. @click="addLine">添加
  1187. </el-button>
  1188. <el-button
  1189. size="mini"
  1190. type="danger"
  1191. v-if="depteventId!=null&&depteventId!=''"
  1192. @click="finUserByDept">选择
  1193. </el-button>
  1194. <el-table
  1195. :data="dutysystemTableData"
  1196. style="width: 100%"
  1197. :rules="rules">
  1198. <el-table-column prop="id" label="主键" v-if="false">
  1199. <template slot-scope="scope" hidden>
  1200. <el-input v-model="scope.row.id" readonly placeholder="主键"></el-input>
  1201. </template>
  1202. </el-table-column>
  1203. <el-table-column prop="name" label="姓名">
  1204. <template slot-scope="scope">
  1205. <el-input v-model="scope.row.name" placeholder="姓名" οninput="value=value.replace(/^[\u4e00-\u9fa5]{2,4}$/,'')"></el-input>
  1206. </template>
  1207. </el-table-column>
  1208. <el-table-column prop="post" label="岗位">
  1209. <template slot-scope="scope">
  1210. <el-input v-model="scope.row.post" placeholder="岗位"></el-input>
  1211. </template>
  1212. </el-table-column>
  1213. <el-table-column prop="telphone" label="手机号码">
  1214. <template slot-scope="scope">
  1215. <el-input v-model="scope.row.telphone" placeholder="手机号码" οninput="value=value.replace(/^((13[0-9])|(14[5-9])|(15([0-3]|[5-9]))|(16[6-7])|(17[1-8])|(18[0-9])|(19[1|3])|(19[5|6])|(19[8|9]))\d{8}$/,'')"></el-input>
  1216. </template>
  1217. </el-table-column>
  1218. <el-table-column prop="bookbuytime" label="操作">
  1219. <template slot-scope="scope">
  1220. <el-button
  1221. size="mini"
  1222. type="danger"
  1223. icon="el-icon-delete"
  1224. @click="handleDelete(scope.$index, scope.row)">删除
  1225. </el-button>
  1226. <!--<el-button-->
  1227. <!--size="mini"-->
  1228. <!--type="danger"-->
  1229. <!--icon="el-icon-save"-->
  1230. <!--@click="handleSave(scope.$index, scope.row)">保存-->
  1231. <!--</el-button>-->
  1232. </template>
  1233. </el-table-column>
  1234. </el-table>
  1235. </div>
  1236. </div>
  1237. <el-button size="mini" type="primary" class="fr_button" @click="sendMsg">发送短信
  1238. </el-button>
  1239. <div style="clear: both;"></div>
  1240. </el-form>
  1241. </el-dialog>
  1242. <!-- 会议弹窗 end -->
  1243. <el-dialog title="火险报告" :visible.sync="showEventConfirm_gd" v-if="showEventConfirm_gd" width="100%"
  1244. class="top-dialog"
  1245. @close="cancelEventConfirm_gd()">
  1246. <div class="table-container">
  1247. <form>
  1248. <table id="table1" cellpadding="0" cellspacing="0">
  1249. <thead style="width: 100%;padding:.5rem 0;">
  1250. <th rowspan="1" colspan="1" class="txt_left" width="100px">填报单位:</th>
  1251. <th rowspan="1" colspan="6" align="left"><input type="text" style=" width:100%;margin-left: .5rem;"
  1252. v-model="table1.reportUnit"/></th>
  1253. <th rowspan="1" colspan="2" class="txt_right">填报时间:</th>
  1254. <th rowspan="1" colspan="6" align="left"><input type="text" style="width:3rem;text-align: center;"
  1255. v-model="table1.reportTimeY"/>年<input
  1256. type="text" style="width:4rem;text-align: center;" v-model="table1.reportTimeM"/>月<input type="text"
  1257. style="width:3rem;text-align: center;"
  1258. v-model="table1.reportTimeD"/>日
  1259. </th>
  1260. <th rowspan="1" colspan="8" style="text-align: right;">吉林省人民政府森林防火指挥部办公室制</th>
  1261. </thead>
  1262. <tbody>
  1263. <tr>
  1264. <td colspan="22" rowspan="1" class="font1" style="letter-spacing:3rem;padding: .5rem 0">森林火灾损失</td>
  1265. <td colspan="1" rowspan="6">
  1266. <table class="border0">
  1267. <tr>
  1268. <td>备注</td>
  1269. </tr>
  1270. </table>
  1271. </td>
  1272. </tr>
  1273. <tr>
  1274. <td rowspan="4" colspan="1">
  1275. <table class="border0">
  1276. <tr>
  1277. <td>森林火灾<br>损失总计</td>
  1278. </tr>
  1279. </table>
  1280. </td>
  1281. <td rowspan="1" colspan="12">火灾损失价值</td>
  1282. <td rowspan="1" colspan="9">扑火费用支出</td>
  1283. </tr>
  1284. <tr>
  1285. <td rowspan="3" colspan="1">
  1286. <table class="border0">
  1287. <tr>
  1288. <td>合计</td>
  1289. </tr>
  1290. </table>
  1291. </td>
  1292. <td rowspan="1" colspan="4">林木资源</td>
  1293. <td rowspan="1" colspan="6">人员伤亡</td>
  1294. <td rowspan="3" colspan="1">
  1295. <table class="border0">
  1296. <tr>
  1297. <td>其他<br>火灾<br>损失</td>
  1298. </tr>
  1299. </table>
  1300. </td>
  1301. <td rowspan="3" colspan="1">
  1302. <table class="border0">
  1303. <tr>
  1304. <td>合计</td>
  1305. </tr>
  1306. </table>
  1307. </td>
  1308. <td rowspan="1" colspan="2">
  1309. <table class="border0">
  1310. <tr>
  1311. <td>人工费</td>
  1312. </tr>
  1313. </table>
  1314. </td>
  1315. <td rowspan="1" colspan="3">
  1316. <table class="border0">
  1317. <tr>
  1318. <td>车辆费</td>
  1319. </tr>
  1320. </table>
  1321. </td>
  1322. <td rowspan="1" colspan="2">
  1323. <table class="border0">
  1324. <tr>
  1325. <td>飞行费</td>
  1326. </tr>
  1327. </table>
  1328. </td>
  1329. <td rowspan="3" colspan="1">
  1330. <table class="border0">
  1331. <tr>
  1332. <td>其他<br>扑火<br>费用</td>
  1333. </tr>
  1334. </table>
  1335. </td>
  1336. </tr>
  1337. <tr>
  1338. <td rowspan="1" colspan="2">成林</td>
  1339. <td rowspan="1" colspan="2">幼林</td>
  1340. <td rowspan="1" colspan="2">轻伤</td>
  1341. <td rowspan="1" colspan="2">重伤</td>
  1342. <td rowspan="1" colspan="2">死亡</td>
  1343. <td rowspan="2" colspan="1">
  1344. <table class="border0">
  1345. <tr>
  1346. <td>出动<br>人工</td>
  1347. </tr>
  1348. </table>
  1349. </td>
  1350. <td rowspan="2" colspan="1">
  1351. <table class="border0">
  1352. <tr>
  1353. <td>支出<br>费用</td>
  1354. </tr>
  1355. </table>
  1356. </td>
  1357. <td rowspan="2" colspan="1">
  1358. <table class="border0">
  1359. <tr>
  1360. <td>计</td>
  1361. </tr>
  1362. </table>
  1363. </td>
  1364. <td rowspan="2" colspan="1">
  1365. <table class="border0">
  1366. <tr>
  1367. <td>其中<br>汽车</td>
  1368. </tr>
  1369. </table>
  1370. </td>
  1371. <td rowspan="2" colspan="1">
  1372. <table class="border0">
  1373. <tr>
  1374. <td>支出<br>费用</td>
  1375. </tr>
  1376. </table>
  1377. </td>
  1378. <td rowspan="2" colspan="1">
  1379. <table class="border0">
  1380. <tr>
  1381. <td>出动<br>飞机</td>
  1382. </tr>
  1383. </table>
  1384. </td>
  1385. <td rowspan="2" colspan="1">
  1386. <table class="border0">
  1387. <tr>
  1388. <td>支出<br>费用</td>
  1389. </tr>
  1390. </table>
  1391. </td>
  1392. </tr>
  1393. <tr>
  1394. <td rowspan="1" colspan="1">蓄积</td>
  1395. <td rowspan="1" colspan="1">价值</td>
  1396. <td rowspan="1" colspan="1">株数</td>
  1397. <td rowspan="1" colspan="1">价值</td>
  1398. <td rowspan="1" colspan="1">人数</td>
  1399. <td rowspan="1" colspan="1">支出费用</td>
  1400. <td rowspan="1" colspan="1">人数</td>
  1401. <td rowspan="1" colspan="1">支出费用</td>
  1402. <td rowspan="1" colspan="1">人数</td>
  1403. <td rowspan="1" colspan="1">支出费用</td>
  1404. </tr>
  1405. <tr>
  1406. <td rowspan="1" colspan="1">万元</td>
  1407. <td rowspan="1" colspan="1">万元</td>
  1408. <td rowspan="1" colspan="1">米³</td>
  1409. <td rowspan="1" colspan="1">万元</td>
  1410. <td rowspan="1" colspan="1">万株</td>
  1411. <td rowspan="1" colspan="1">万元</td>
  1412. <td rowspan="1" colspan="1">人</td>
  1413. <td rowspan="1" colspan="1">万元</td>
  1414. <td rowspan="1" colspan="1">人</td>
  1415. <td rowspan="1" colspan="1">万元</td>
  1416. <td rowspan="1" colspan="1">人</td>
  1417. <td rowspan="1" colspan="1">万元</td>
  1418. <td rowspan="1" colspan="1">万元</td>
  1419. <td rowspan="1" colspan="1">万元</td>
  1420. <td rowspan="1" colspan="1">工日</td>
  1421. <td rowspan="1" colspan="1">万元</td>
  1422. <td rowspan="1" colspan="1">台</td>
  1423. <td rowspan="1" colspan="1">台</td>
  1424. <td rowspan="1" colspan="1">万元</td>
  1425. <td rowspan="1" colspan="1">架次</td>
  1426. <td rowspan="1" colspan="1">万元</td>
  1427. <td rowspan="1" colspan="1">万元</td>
  1428. </tr>
  1429. <tr>
  1430. <td rowspan="1" colspan="1">1</td>
  1431. <td rowspan="1" colspan="1">2</td>
  1432. <td rowspan="1" colspan="1">3</td>
  1433. <td rowspan="1" colspan="1">4</td>
  1434. <td rowspan="1" colspan="1">5</td>
  1435. <td rowspan="1" colspan="1">6</td>
  1436. <td rowspan="1" colspan="1">7</td>
  1437. <td rowspan="1" colspan="1">8</td>
  1438. <td rowspan="1" colspan="1">9</td>
  1439. <td rowspan="1" colspan="1">10</td>
  1440. <td rowspan="1" colspan="1">11</td>
  1441. <td rowspan="1" colspan="1">12</td>
  1442. <td rowspan="1" colspan="1">13</td>
  1443. <td rowspan="1" colspan="1">14</td>
  1444. <td rowspan="1" colspan="1">15</td>
  1445. <td rowspan="1" colspan="1">16</td>
  1446. <td rowspan="1" colspan="1">17</td>
  1447. <td rowspan="1" colspan="1">18</td>
  1448. <td rowspan="1" colspan="1">19</td>
  1449. <td rowspan="1" colspan="1">20</td>
  1450. <td rowspan="1" colspan="1">21</td>
  1451. <td rowspan="1" colspan="1">22</td>
  1452. <td rowspan="1" colspan="1">23</td>
  1453. </tr>
  1454. <tr class="int_tr">
  1455. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestFireLossTotal"/></td>
  1456. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.fireLossTotal"/></td>
  1457. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestArea"/></td>
  1458. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.forestPrice"/></td>
  1459. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.treesNumber"/></td>
  1460. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.treesPrice"/></td>
  1461. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.minorInjuriesNumber"/></td>
  1462. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.minorInjuriesPrice"/></td>
  1463. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.seriouslyInjuredNumber"/>
  1464. </td>
  1465. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.seriouslyInjuredPrice"/>
  1466. </td>
  1467. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.deathNumber"/></td>
  1468. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.deathPrice"/></td>
  1469. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.elseFireLossPrice"/></td>
  1470. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.blazesPriceTotal"/></td>
  1471. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.artificialDays"/></td>
  1472. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.artificialPrice"/></td>
  1473. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.vehicleNumber"/></td>
  1474. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.carNumber"/></td>
  1475. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.vehiclePrice"/></td>
  1476. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.planeNumber"/></td>
  1477. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.planePrice"/></td>
  1478. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.elseBlazesPrice"/></td>
  1479. <td rowspan="1" colspan="1"><input type="text" class="border0" v-model="table1.note"/></td>
  1480. </tr>
  1481. </tbody>
  1482. </table>
  1483. <table class="table2" cellpadding="0" cellspacing="0" style="white-space: nowrap;">
  1484. <tbody>
  1485. <tr>
  1486. <th rowspan="1" colspan="26" style="letter-spacing:6rem">火场资料</th>
  1487. </tr>
  1488. <tr>
  1489. <td colspan="2" rowspan="1" class="txt_left">&nbsp;1.起火时间</td>
  1490. <td colspan="5" rowspan="1"><input type="text" v-model="table2.fireTime"/></td>
  1491. <td colspan="2" rowspan="1">发现时间</td>
  1492. <td colspan="8" rowspan="1"><input type="text" v-model="table2.foundTime"/></td>
  1493. <td colspan="2" rowspan="1">扑灭时间</td>
  1494. <td colspan="7" rowspan="1"><input type="text" v-model="table2.blazesTime"/></td>
  1495. </tr>
  1496. <tr>
  1497. <td colspan="2" rowspan="1" class="txt_left">&nbsp;2.地点及发现方式</td>
  1498. <td colspan="2" rowspan="1" class="txt_left"><select v-model="table2.address">
  1499. <option>吉林市</option>
  1500. <option>延边州</option>
  1501. <option>白山市</option>
  1502. <option>通化市</option>
  1503. <option>辽源市</option>
  1504. <option>四平市</option>
  1505. <option>长春市</option>
  1506. <option>白城市</option>
  1507. <option>松原市</option>
  1508. <option>敦化航站</option>
  1509. <option>长白山管委会</option>
  1510. </select></td>
  1511. <td colspan="13" rowspan="1"><input type="text" v-model="table2.firePlace"/></td>
  1512. <td colspan="2" rowspan="1">发现方式</td>
  1513. <td colspan="7" rowspan="1"><input type="text" v-model="table2.foundType"/></td>
  1514. </tr>
  1515. <tr>
  1516. <td colspan="2" rowspan="1" class="txt_left">&nbsp;3.火场位置</td>
  1517. <td colspan="2" rowspan="1" class="border_l0">东经:</td>
  1518. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1519. v-model="table2.longitudeD"/></td>
  1520. <td colspan="1" rowspan="1" class="border_l0">度</td>
  1521. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1522. v-model="table2.longitudeM"/></td>
  1523. <td colspan="1" rowspan="1" class="border_l0">分</td>
  1524. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1525. v-model="table2.longitudeS"/></td>
  1526. <td colspan="2" rowspan="1" class="border_l0">秒</td>
  1527. <td colspan="1" rowspan="1" class="border_l0">;</td>
  1528. <td colspan="2" rowspan="1" class="border_l0">北纬:</td>
  1529. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1530. v-model="table2.latitudeD"/></td>
  1531. <td colspan="1" rowspan="1" class="border_l0">度</td>
  1532. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1533. v-model="table2.latitudeM"/></td>
  1534. <td colspan="1" rowspan="1" class="border_l0">分</td>
  1535. <td colspan="1" rowspan="1" class="border_l0"><input type="text" style="width:50px;"
  1536. v-model="table2.latitudeS"/></td>
  1537. <td colspan="1" rowspan="1" class="border_l0">秒</td>
  1538. <td class="border_l0"></td>
  1539. <td class="border_l0"></td>
  1540. <td class="border_l0"></td>
  1541. <td class="border_l0"></td>
  1542. <td class="border_l0"></td>
  1543. <td></td>
  1544. </tr>
  1545. <tr>
  1546. <td colspan="2" rowspan="1" class="txt_left">&nbsp;4.起火原因</td>
  1547. <td colspan="3" rowspan="1" class="txt_left"><select v-model="table2.fireSource">
  1548. <option>未查明火源</option>
  1549. <option>烧荒烧炭</option>
  1550. <option>炼山造林</option>
  1551. <option>烧牧场</option>
  1552. <option disabled>烧窑</option>
  1553. <option>烧隔离带</option>
  1554. <option>火车喷漏</option>
  1555. <option>火车甩瓦</option>
  1556. <option>机车喷火</option>
  1557. <option>其他(生产性火源)</option>
  1558. <option>野外吸烟</option>
  1559. <option>取暖做饭</option>
  1560. <option>上坟烧纸</option>
  1561. <option>烧山驱兽</option>
  1562. <option>小孩玩火</option>
  1563. <option>痴呆弄火</option>
  1564. <option>家火上山</option>
  1565. <option>电线引起</option>
  1566. <option>其他(非生产性用火)</option>
  1567. <option>故意放火</option>
  1568. <option>外省(区)烧入</option>
  1569. <option>外国烧入</option>
  1570. <option>雷击火</option>
  1571. <option>其他自然火</option>
  1572. </select></td>
  1573. <td colspan="3" rowspan="1">火灾种类</td>
  1574. <td colspan="4" rowspan="1" class="txt_left"><select v-model="table2.fireType">
  1575. <option>地表火</option>
  1576. <option>树冠火</option>
  1577. <option>地下火</option>
  1578. </select></td>
  1579. <td colspan="3" rowspan="1">火灾等级</td>
  1580. <td colspan="11" rowspan="1" class="txt_left"><select v-model="table2.fireLevel">
  1581. <option>一般</option>
  1582. <option>较大</option>
  1583. <option>重大</option>
  1584. <option>特大</option>
  1585. </select></td>
  1586. </tr>
  1587. <tr>
  1588. <td colspan="2" rowspan="1" class="txt_left">&nbsp;5.火场面积(公顷)</td>
  1589. <td colspan="2" rowspan="1">总面积合计</td>
  1590. <td colspan="3" rowspan="1"><input type="text" v-model="table2.areaTotal"/></td>
  1591. <td colspan="4" rowspan="1">受害森林面积合计</td>
  1592. <td colspan="3" rowspan="1"><input type="text" v-model="table2.forestLossAreaTotal"/></td>
  1593. <td colspan="1" rowspan="1">其中:</td>
  1594. <td colspan="2" rowspan="1">原森林</td>
  1595. <td colspan="4" rowspan="1"><input type="text" v-model="table2.originalForestArea"/></td>
  1596. <td colspan="2" rowspan="1">人工林</td>
  1597. <td colspan="3" rowspan="1"><input type="text" v-model="table2.artificialForestArea"/></td>
  1598. </tr>
  1599. <tr>
  1600. <td colspan="2" rowspan="1" class="txt_left">&nbsp;6.扑火人力物力投入</td>
  1601. <td colspan="2" rowspan="1">出动总人数</td>
  1602. <td colspan="1" rowspan="1"><input type="text" v-model="table2.peopleTotal"/></td>
  1603. <td colspan="2" rowspan="1">其中扑火队</td>
  1604. <td colspan="1" rowspan="1"><input type="text" v-model="table2.blazesTeamNumber"/></td>
  1605. <td colspan="1" rowspan="1">森警</td>
  1606. <td colspan="2" rowspan="1"><input type="text" v-model="table2.policeNumber"/></td>
  1607. <td colspan="1" rowspan="1">军队</td>
  1608. <td colspan="1" rowspan="1"><input type="text" v-model="table2.armyNumber"/></td>
  1609. <td colspan="1" rowspan="1">群众</td>
  1610. <td colspan="1" rowspan="1"><input type="text" v-model="table2.crowdNumber"/></td>
  1611. <td colspan="2" rowspan="1">风力灭火机</td>
  1612. <td colspan="1" rowspan="1"><input type="text" v-model="table2.windExtinguisher"/></td>
  1613. <td colspan="2" rowspan="1">二号工具</td>
  1614. <td colspan="1" rowspan="1"><input type="text" v-model="table2.secondTool"/></td>
  1615. <td colspan="2" rowspan="1">水枪</td>
  1616. <td colspan="1" rowspan="1"><input type="text" v-model="table2.waterGun"/></td>
  1617. <td colspan="1" rowspan="1">其他</td>
  1618. <td colspan="1" rowspan="1"><input type="text" v-model="table2.elseThings"/></td>
  1619. </tr>
  1620. <tr>
  1621. <td colspan="2" rowspan="1" class="txt_left">&nbsp;7.受害森林概况</td>
  1622. <td colspan="2" rowspan="1">林木组成</td>
  1623. <td colspan="11" rowspan="1"><input type="text" v-model="table2.forestComposition"/></td>
  1624. <td colspan="2" rowspan="1">林令</td>
  1625. <td colspan="4" rowspan="1"><input type="text" v-model="table2.forestToken"/></td>
  1626. <td colspan="2" rowspan="1">疏密度</td>
  1627. <td colspan="3" rowspan="1"><input type="text" v-model="table2.porosities"/></td>
  1628. </tr>
  1629. <tr>
  1630. <td colspan="2" rowspan="1" class="txt_left">&nbsp;8.当日天气实况</td>
  1631. <td colspan="2" rowspan="1">天气</td>
  1632. <td colspan="3" rowspan="1"><input type="text" v-model="table2.weather"/></td>
  1633. <td colspan="1" rowspan="1">气温</td>
  1634. <td colspan="2" rowspan="1"><input type="text" v-model="table2.temperature"/></td>
  1635. <td colspan="1" rowspan="1">C°</td>
  1636. <td colspan="3" rowspan="1">火险等级</td>
  1637. <td colspan="1" rowspan="1"><input type="text" v-model="table2.fireInsuranceLevel"/></td>
  1638. <td colspan="2" rowspan="1">风力</td>
  1639. <td colspan="2" rowspan="1" class="border_l0"><input type="text" v-model="table2.windLevel"/></td>
  1640. <td colspan="2" rowspan="1" class="txt_left">级</td>
  1641. <td colspan="2" rowspan="1">风向</td>
  1642. <td colspan="3" rowspan="1"><input type="text" v-model="table2.windDirection"/></td>
  1643. </tr>
  1644. <tr>
  1645. <td colspan="2" rowspan="1" class="txt_left">&nbsp;9.指挥扑火负责人</td>
  1646. <td colspan="2" rowspan="1">单位</td>
  1647. <td colspan="11" rowspan="1"><input type="text" v-model="table2.commandUnit"/></td>
  1648. <td colspan="2" rowspan="1">姓名</td>
  1649. <td colspan="4" rowspan="1"><input type="text" v-model="table2.commandName"/></td>
  1650. <td colspan="2" rowspan="1">职务</td>
  1651. <td colspan="3" rowspan="1"><input type="text" v-model="table2.commandPosition"/></td>
  1652. </tr>
  1653. <tr>
  1654. <td colspan="2" rowspan="1" class="txt_left">&nbsp;10.火场调查负责人</td>
  1655. <td colspan="2" rowspan="1">单位</td>
  1656. <td colspan="11" rowspan="1"><input type="text" v-model="table2.surveyUnit"/></td>
  1657. <td colspan="2" rowspan="1">姓名</td>
  1658. <td colspan="4" rowspan="1"><input type="text" v-model="table2.surveyName"/></td>
  1659. <td colspan="2" rowspan="1">职务</td>
  1660. <td colspan="3" rowspan="1"><input type="text" v-model="table2.surveyPosition"/></td>
  1661. </tr>
  1662. <tr>
  1663. <td colspan="2" rowspan="1" class="txt_left">&nbsp;11.火灾肇事人情况</td>
  1664. <td colspan="2" rowspan="1">姓名</td>
  1665. <td colspan="2" rowspan="1"><input type="text" v-model="table2.accidentName"/></td>
  1666. <td colspan="2" rowspan="1">性别</td>
  1667. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentSex"/></td>
  1668. <td colspan="3" rowspan="1">年龄</td>
  1669. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentAge"/></td>
  1670. <td colspan="1" rowspan="1">职业</td>
  1671. <td colspan="1" rowspan="1"><input type="text" v-model="table2.accidentPosition"/></td>
  1672. <td colspan="2" rowspan="1">单位或住址</td>
  1673. <td colspan="9" rowspan="1"><input type="text" v-model="table2.accidentUnit"/></td>
  1674. </tr>
  1675. <tr>
  1676. <td colspan="2" rowspan="1" class="txt_left">&nbsp;12.火灾处理情况</td>
  1677. <td colspan="2" rowspan="1">处理方式</td>
  1678. <td colspan="4" rowspan="1"><select v-model="table2.dealType">
  1679. <option>立案(刑事处理)</option>
  1680. <option>破案(刑事处理)</option>
  1681. <option>行政处理</option>
  1682. <option>待查</option>
  1683. <option>拘留</option>
  1684. <option>处理</option>
  1685. <option>未处理</option>
  1686. </select></td>
  1687. <td colspan="3" rowspan="1">已处理人数</td>
  1688. <td colspan="4" rowspan="1"><input type="text" v-model="table2.dealNumber"/></td>
  1689. <td colspan="4" rowspan="1">刑事处罚人数</td>
  1690. <td colspan="7" rowspan="1"><input type="text" v-model="table2.criminalDealNumber"/></td>
  1691. </tr>
  1692. <tr>
  1693. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;13.对火灾肇事人<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;的处理情况
  1694. </td>
  1695. <td colspan="24" rowspan="1" class="txt_left">
  1696. <textarea v-model="table2.accidentDealSituation"></textarea>
  1697. </td>
  1698. </tr>
  1699. <tr>
  1700. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;14.对责任人员的<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;责任人追查情况
  1701. </td>
  1702. <td colspan="24" rowspan="1" class="txt_left">
  1703. <textarea v-model="table2.responsibilityDealSituation"></textarea></td>
  1704. </tr>
  1705. <tr>
  1706. <td colspan="2" rowspan="1" class="txt_left" style="height: 60px;">&nbsp;15.对有关领导的<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;责任追查情况
  1707. </td>
  1708. <td colspan="24" rowspan="1" class="txt_left">
  1709. <textarea v-model="table2.leadershipDealSituation"></textarea></td>
  1710. </tr>
  1711. <tr class="tr_border">
  1712. <td colspan="4" rowspan="1">县(市、区、局、站)填表人:</td>
  1713. <td colspan="2" rowspan="1"><input type="text" v-model="table2.townForm"/></td>
  1714. <td colspan="4" rowspan="1">县(市、区、局、站)审核人:</td>
  1715. <td colspan="3" rowspan="1"><input type="text" v-model="table2.townAudit"/></td>
  1716. <td colspan="4" rowspan="1">市(州、管委会)填表人:</td>
  1717. <td colspan="2" rowspan="1"><input type="text" v-model="table2.cityForm"/></td>
  1718. <td colspan="4" rowspan="1">市(州、管委会)审核人:</td>
  1719. <td colspan="3" rowspan="1"><input type="text" v-model="table2.cityAudit"/></td>
  1720. </tr>
  1721. </tbody>
  1722. </table>
  1723. <div class="btm-btn-group">
  1724. <el-button size="mini" type="primary"
  1725. @click="updateCentereventTEventcatalogueStatus('gd',true)">归档
  1726. </el-button>
  1727. <el-button size="mini" type="primary"
  1728. @click="regionalFlagAdd()">火灾区域
  1729. </el-button>
  1730. </div>
  1731. </form>
  1732. </div>
  1733. </el-dialog>
  1734. <!-- 添加区域标记 -->
  1735. <!-- 图片,视频预览 -->
  1736. <el-dialog title="视频预览" :visible.sync="showTcPlayer" width="40%" customClass="customWidthMp4">
  1737. <TcPlayer ref="TcPlayer" :playVideo="playVideo" :widthHeigt="[100,100]"></TcPlayer>
  1738. </el-dialog>
  1739. <el-dialog :title="cameraTitle" :visible.sync="cameraVisible" v-if="cameraVisible" customClass="videoCustomWidth"
  1740. @close="cancelEventLocationShow()">
  1741. <div style="width:1020px;height:625px;position:relative;">
  1742. <!--视频窗口展示---海康-->
  1743. <div id="playWnd" class="playWnd" style="left: 0px; top: 0px;"></div>
  1744. </div>
  1745. </el-dialog>
  1746. <TVWall ref="TVWall"></TVWall>
  1747. </div>
  1748. </template>
  1749. <script>
  1750. import html2canvas from 'html2canvas'//截图组件
  1751. import supermapDialog1 from '@/components/supermap' //超图
  1752. import vBottomMenu from '@/components/vBottomMenu.vue' //一体化公共底部菜单
  1753. import eventLogUpload from '@/views/eventLogUpload.vue' //日志上传文件
  1754. import areaSupermap from '@/components/supermap'//区域标记地图
  1755. import TcPlayer from '@/components/TcPlayer' //视频预览
  1756. import leftRightSwiperScroll from '@/components/leftRightSwiperScroll.vue';//事件中心底部资源内容溢出组件
  1757. import {getIconBg} from '@/api/components/sookaMapIcon';//资源底色控制文件
  1758. import TVWall from '@/components/TVWall.vue' //电视墙弹窗
  1759. import findUserByDept from '@/views/findUserByDept' //责任人选择弹框
  1760. import {
  1761. getEventDetail,
  1762. sendEventLog,
  1763. listSJfl,
  1764. listYuAn,
  1765. selectByeventCode,
  1766. updateCentereventTEventcatalogueStatus,
  1767. sendTask,
  1768. listResourceByWz,
  1769. updateYjYuAn,
  1770. uploadBase64,
  1771. centereventtdepteventList,
  1772. dutysystemList,
  1773. dutysystemAdd,
  1774. dutysystemRemove,
  1775. getNewDataByDate,
  1776. userFeginlist,
  1777. fireControlViewList,
  1778. fireControlViewPoint, eventHandling
  1779. } from '@/api/forest'
  1780. import {
  1781. treeselectAll as deptTreeselect
  1782. } from '@/api/system/dept'
  1783. import {
  1784. getHaiKangVideoServer
  1785. } from '@/api/haikang/haikang'
  1786. import {
  1787. hasConferences,
  1788. createConferences, getUserInfo
  1789. } from "@/api/meeting"
  1790. import {
  1791. getDahuaVideoServer
  1792. } from '@/api/dahua/dahua'
  1793. import DHWs from '@/dahua/lib/DHWs'
  1794. import {joinConferences} from "@/api/meeting";
  1795. export default {
  1796. dicts: ['task_source'],
  1797. watch: {
  1798. filterText(val) {
  1799. this.$refs.LiandongDept.filter(val)
  1800. }
  1801. },
  1802. components: {
  1803. leftRightSwiperScroll,
  1804. vBottomMenu,
  1805. supermapDialog1,
  1806. eventLogUpload,
  1807. areaSupermap,
  1808. TcPlayer,
  1809. TVWall,
  1810. findUserByDept
  1811. },
  1812. data() {
  1813. return {
  1814. eventTypeXl:null,
  1815. isExamine:'0',
  1816. isLoading:false,
  1817. //海康
  1818. cameraTitle: '',
  1819. version:0,
  1820. cameraCode:'',
  1821. cameraVisible: false,
  1822. initCount: 0,
  1823. pubKey: '',
  1824. oWebControl: null,
  1825. showMeetingMsgDialog: false,//发送会议短信弹窗
  1826. playVideo: '',//视频预览地址
  1827. showTcPlayer: false,//视频预览弹窗
  1828. regionalFlagOpen: false,//区域标记
  1829. //区域标记
  1830. regionalFlagObj: {
  1831. array: []
  1832. },
  1833. resourcesList1: [
  1834. {
  1835. resourceName: '取水口',
  1836. type: 'qsk',
  1837. count: '1',
  1838. icon: 'sj-icon-waterintake'
  1839. },
  1840. {
  1841. resourceName: '水鹤',
  1842. type: 'sh',
  1843. icon: 'sj-icon-watercrane'
  1844. },
  1845. {
  1846. resourceName: '消防栓',
  1847. type: 'xfs',
  1848. count: '1',
  1849. icon: 'sj-icon-firehydrant'
  1850. },
  1851. {
  1852. resourceName: '起降点',
  1853. type: 'qjd',
  1854. count: '1',
  1855. icon: 'sj-icon-landing'
  1856. },
  1857. {
  1858. resourceName: '检查站',
  1859. type: 'jcz',
  1860. count: '1',
  1861. icon: 'sj-icon-checkpoint'
  1862. },
  1863. {
  1864. resourceName: '防火队',
  1865. type: 'fhd',
  1866. count: '1',
  1867. icon: 'sj-icon-fireteam'
  1868. },
  1869. {
  1870. resourceName: '重点区域',
  1871. type: 'zdqy',
  1872. count: '1',
  1873. icon: 'sj-icon-keyAreas'
  1874. },
  1875. {
  1876. resourceName: '摄像头',
  1877. type: 'sxt',
  1878. count: '1',
  1879. icon: 'sj-icon-jkzx'
  1880. }
  1881. ],
  1882. filterText: '',//树搜索
  1883. /** *****************事件流程***************************/
  1884. deptNameitem: '签收部门',
  1885. sendDeptId: null,//签收部门/发起部门
  1886. sendDeptName: null,//签收部门/发起部门
  1887. sendEventType: null,//事件类型
  1888. sendHuoZaiBanJing: 0,//火灾报告
  1889. sendGuanLianYuAn: null,//关联预案
  1890. sendUserFegin: [],//联系人
  1891. sendTaskSource: null,//任务来源
  1892. sendTaskTitle: null,//联动标题
  1893. sendTaskContent: null,//联动内容
  1894. sendLianDongDept: [],//联动部门
  1895. eventTypeList: [],//事件类型列表
  1896. guanLianYuAnList: [],//关联预案列表
  1897. userFeginList: [],//联系人列表
  1898. deptOptions: [],//签收部门
  1899. deptOptionsLiandong: [],//联动部门
  1900. eventStatusButton: null,//流程按钮标识
  1901. eventConfirmTitle: null,//弹窗标题 ---签收 误报 重复
  1902. defaultProps: {
  1903. children: 'children',
  1904. label: 'label'
  1905. },
  1906. table1: {
  1907. reportUnit: null,
  1908. reportTimeY: null,
  1909. reportTimeM: null,
  1910. reportTimeD: null,
  1911. forestFireLossTotal: null,
  1912. fireLossTotal: null,
  1913. forestArea: null,
  1914. forestPrice: null,
  1915. treesNumber: null,
  1916. treesPrice: null,
  1917. minorInjuriesNumber: null,
  1918. minorInjuriesPrice: null,
  1919. seriouslyInjuredNumber: null,
  1920. seriouslyInjuredPrice: null,
  1921. deathNumber: null,
  1922. deathPrice: null,
  1923. elseFireLossPrice: null,
  1924. blazesPriceTotal: null,
  1925. artificialDays: null,
  1926. artificialPrice: null,
  1927. vehicleNumber: null,
  1928. carNumber: null,
  1929. vehiclePrice: null,
  1930. planeNumber: null,
  1931. planePrice: null,
  1932. elseBlazesPrice: null,
  1933. note: null
  1934. },
  1935. table2: {
  1936. fireTime: null,
  1937. foundTime: null,
  1938. blazesTime: null,
  1939. address: null,
  1940. firePlace: null,
  1941. foundType: null,
  1942. longitudeD: null,
  1943. longitudeM: null,
  1944. longitudeS: null,
  1945. latitudeD: null,
  1946. latitudeM: null,
  1947. latitudeS: null,
  1948. fireSource: null,
  1949. fireType: null,
  1950. fireLevel: null,
  1951. areaTotal: null,
  1952. forestLossAreaTotal: null,
  1953. originalForestArea: null,
  1954. artificialForestArea: null,
  1955. peopleTotal: null,
  1956. blazesTeamNumber: null,
  1957. policeNumber: null,
  1958. armyNumber: null,
  1959. crowdNumber: null,
  1960. windExtinguisher: null,
  1961. secondTool: null,
  1962. waterGun: null,
  1963. elseThings: null,
  1964. forestComposition: null,
  1965. forestToken: null,
  1966. porosities: null,
  1967. weather: null,
  1968. temperature: null,
  1969. fireInsuranceLevel: null,
  1970. windLevel: null,
  1971. windDirection: null,
  1972. commandUnit: null,
  1973. commandName: null,
  1974. commandPosition: null,
  1975. surveyUnit: null,
  1976. surveyName: null,
  1977. surveyPosition: null,
  1978. accidentName: null,
  1979. accidentSex: null,
  1980. accidentAge: null,
  1981. accidentPosition: null,
  1982. accidentUnit: null,
  1983. dealType: null,
  1984. dealNumber: null,
  1985. criminalDealNumber: null,
  1986. accidentDealSituation: null,
  1987. responsibilityDealSituation: null,
  1988. leadershipDealSituation: null,
  1989. townForm: null,
  1990. townAudit: null,
  1991. cityForm: null,
  1992. cityAudit: null
  1993. },
  1994. /** *****************事件流程***************************/
  1995. showEventConfirm: false,//事件签收弹窗
  1996. showGuanLianYuAnConfirm: false,//调整关联预案弹窗
  1997. showEventConfirm_gd: false,//事件火险报告弹窗
  1998. address: null,//事件上报地址
  1999. eventStatusValue: null,//事件状态
  2000. eventId: null,//事件ID
  2001. eventType: null,//事件类型-大类
  2002. dataStatus: null,//事件流程按钮
  2003. deptId: null,//事件流程部门
  2004. eventCode: null,
  2005. eventName: null,
  2006. longitude: null,
  2007. latitude: null,
  2008. eventLog: null,
  2009. showFindUserByDept:false,
  2010. eventLogList: [],
  2011. visuForestCloudYuAnBo: null,
  2012. eventDialog: false,
  2013. showResponsibilityDialog: false,//责任制弹窗
  2014. depteventList: [],//责任制部门列表
  2015. iconCurrentIndex: '',
  2016. dutysystemDeptName: '',
  2017. depteventId: '',
  2018. dutysystemTableData: [],
  2019. radius: 5000,//资源搜索半径
  2020. // resourcesList: [
  2021. // {
  2022. // resourceName: '取水口',
  2023. // type: 'qsk',
  2024. // count: '1',
  2025. // icon: 'sj-icon-waterintake'
  2026. // },
  2027. // {
  2028. // resourceName: '水鹤',
  2029. // type: 'sh',
  2030. // icon: 'sj-icon-watercrane'
  2031. // },
  2032. // {
  2033. // resourceName: '消防栓',
  2034. // type: 'xfs',
  2035. // count: '1',
  2036. // icon: 'sj-icon-firehydrant'
  2037. // },
  2038. // {
  2039. // resourceName: '起降点',
  2040. // type: 'qjd',
  2041. // count: '1',
  2042. // icon: 'sj-icon-landing'
  2043. // },
  2044. // {
  2045. // resourceName: '检查站',
  2046. // type: 'jcz',
  2047. // count: '1',
  2048. // icon: 'sj-icon-checkpoint'
  2049. // },
  2050. // {
  2051. // resourceName: '防火队',
  2052. // type: 'fhd',
  2053. // count: '1',
  2054. // icon: 'sj-icon-fireteam'
  2055. // },
  2056. // {
  2057. // resourceName: '重点区域',
  2058. // type: 'zdqy',
  2059. // count: '1',
  2060. // icon: 'sj-icon-keyAreas'
  2061. // },
  2062. // {
  2063. // resourceName: '摄像头',
  2064. // type: 'sxt',
  2065. // count: '1',
  2066. // icon: 'sj-icon-jkzx'
  2067. // }
  2068. // ],
  2069. resourcesListCheck: [],
  2070. //文本域
  2071. feedback: '',
  2072. statusFlag: null,//事件流程按钮
  2073. }
  2074. },
  2075. props: {
  2076. calendarDay: null//首页日历选择
  2077. },
  2078. created() {
  2079. this.isLoading = true;
  2080. /** ----------------------------------摄像头预览开始------------------------------------- */
  2081. const DHWsInstance = DHWs.getInstance()
  2082. this.ws = DHWsInstance
  2083. /** ----------------------------------摄像头预览结束------------------------------------- */
  2084. },
  2085. mounted() {
  2086. this.fireControlViewList();
  2087. },
  2088. methods: {
  2089. /************************************责任制-开始****************************************/
  2090. addLine: function() {//添加负责人行数
  2091. var newValue = {
  2092. id: '',//主键
  2093. userId: '',//用户主键
  2094. dept: '',//部门名称
  2095. depteventId: '',//事件部门关联责任人
  2096. name: '',//姓名
  2097. post: '',//岗位
  2098. telphone: ''//手机号
  2099. }
  2100. //添加新的行数
  2101. this.dutysystemTableData.push(newValue)
  2102. },
  2103. getNewDataByDate(eventCode)
  2104. {
  2105. const that=this
  2106. console.log(eventCode)
  2107. getNewDataByDate(eventCode).then(function(res){
  2108. that.windDirection=res.data.windDirection
  2109. that.windSpeed=res.data.windSpeed
  2110. setTimeout(() => {
  2111. that.showheatPlotting()
  2112. }, 2000)
  2113. })
  2114. },
  2115. // 获取消防左侧菜单列表
  2116. fireControlViewList() {
  2117. this.resourcesList1 = [];
  2118. let _this = this;
  2119. // {
  2120. // resourceName: '取水口',
  2121. // type: 'qsk',
  2122. // count: '1',
  2123. // icon: 'sj-icon-waterintake'
  2124. // },
  2125. fireControlViewList().then(function (res) {
  2126. // _this.resourcesList = res.data
  2127. //截取data.resourceTable字段中“_”分隔符最后一个作为关键字,重新拼接成前端需要的图标:class,格式sj-icon-xxxx,将其set回原数组
  2128. res.data.forEach(function (data, index) {
  2129. let obj = {};
  2130. let icon ='sj' + '-' + 'icon' + '-' + data.type.replaceAll("_", "-").replaceAll("@", "-");
  2131. obj.resourceName = data.name.replaceAll("(个)", "");
  2132. obj.type = data.type;
  2133. obj.count = data.num;
  2134. obj.icon = icon;
  2135. _this.resourcesList1.push(obj);
  2136. console.log("icon_" + (index + 1) + "=", icon);
  2137. //每个图标对应固定颜色
  2138. _this.$set(_this.resourcesList1[index], "bg", getIconBg(icon));
  2139. })
  2140. _this.resourcesList1.push({
  2141. resourceName: '摄像头',
  2142. type: 'sxt',
  2143. count: '1',
  2144. icon: 'sj-icon-jkzx',
  2145. bg:'#f5ad1b'
  2146. })
  2147. })
  2148. },
  2149. fireControlViewPoint(type) {
  2150. // alert(type)
  2151. if (this.resourcesListCheck.indexOf(type) > -1) {
  2152. this.resourcesListCheck.splice(this.resourcesListCheck.indexOf(type), 1)
  2153. setTimeout(() => {
  2154. this.$refs.supermapDialog1.clearMByType(type)
  2155. }, 1000)
  2156. } else {
  2157. // 消防资源落点
  2158. let param = { longitude: this.longitude, latitude: this.latitude, type: type, radius: this.radius }
  2159. if (type != 'sxt') {
  2160. fireControlViewPoint(param).then(res => {
  2161. if (res.data != null && res.data.pointList.length > 0) {
  2162. this.resourcesListCheck.push(type)
  2163. var markersList = []
  2164. for (let i = 0; i < res.data.pointList.length; i++) {
  2165. let markersMap = {
  2166. lng: 124.59,
  2167. lat: 43.02,
  2168. icon: 'marker',
  2169. bindPopupHtml: '',
  2170. click: '',
  2171. parameter: '',
  2172. keepBindPopup: false,
  2173. isAggregation: true
  2174. }
  2175. markersMap.icon = 'sj-icon-map-' + type.replaceAll("_", "-");
  2176. markersMap.lng = res.data.pointList[i].longitude;
  2177. markersMap.lat = res.data.pointList[i].latitude;
  2178. markersMap.bindPopupHtml = '<div class="map-tip">' +
  2179. '<span>' +
  2180. ' <div class="d-l-con">' +
  2181. ' <div class="d-l-l-text">' +
  2182. ' <h4>资源名称:' + res.data.pointList[i].name + '</h4>' +
  2183. ' </div>' +
  2184. ' </div>' +
  2185. ' </span>' +
  2186. '<span>' +
  2187. ' <div class="d-l-con">' +
  2188. ' <div class="d-l-l-text">' +
  2189. ' <h4>经纬度:' + res.data.pointList[i].longitude +','+ res.data.pointList[i].latitude + '</h4>' +
  2190. ' </div>' +
  2191. ' </div>' +
  2192. ' </span>' +
  2193. '<span>' +
  2194. ' <div class="d-l-con">' +
  2195. ' <div class="d-l-l-text">' +
  2196. ' <h4>联系人:' + res.data.pointList[i].contacts + '</h4>' +
  2197. ' </div>' +
  2198. ' </div>' +
  2199. ' </span>' +
  2200. '<span>' +
  2201. ' <div class="d-l-con">' +
  2202. ' <div class="d-l-l-text">' +
  2203. ' <h4>电话:' + res.data.pointList[i].phone + '</h4>' +
  2204. ' </div>' +
  2205. ' </div>' +
  2206. ' </span>' +
  2207. '</div>'
  2208. markersList.push(markersMap)
  2209. }
  2210. setTimeout(() => {
  2211. this.$refs.supermapDialog1.setMarkersByType(markersList, type)
  2212. }, 1000)
  2213. }
  2214. })
  2215. }else {
  2216. this.listResourceByWz(type);
  2217. }
  2218. }
  2219. },
  2220. showTVWall(channelCode, channelName) {
  2221. let tvListJson = [{
  2222. "switchTab": "2",
  2223. "treeLabels": [{
  2224. "id": null,
  2225. "labelCode": "999",
  2226. "labelName": "电视墙",
  2227. "cameraType": null,
  2228. "parentLabelCode": ""
  2229. },
  2230. {
  2231. "id": "spcamera00010",
  2232. "labelCode": channelCode,
  2233. "labelName": channelName,
  2234. "cameraType": "1",
  2235. "parentLabelCode": "999"
  2236. }
  2237. ],
  2238. "labelChannels": [{
  2239. "labelCode": channelCode,
  2240. "channelDates": [{
  2241. "channelCode": channelCode,
  2242. "channelName": channelName,
  2243. "channelSn": null,
  2244. "cameraType": "1",
  2245. "online": "1",
  2246. "cameraCode": "1"
  2247. }]
  2248. }]
  2249. }]
  2250. this.$refs.TVWall.showTVWall(tvListJson, [{
  2251. "channelId": channelCode
  2252. }]);
  2253. this.$refs.bottomMenu.showMeasure = false;
  2254. this.$refs.bottomMenu.showChild = false;
  2255. this.$refs.bottomMenu.showBanChild = false;
  2256. this.$refs.bottomMenu.showChangChild = false;
  2257. },
  2258. addSelection: function(userList){
  2259. for (let i in this.dutysystemTableData) {
  2260. for (let j in userList) {
  2261. if(this.dutysystemTableData[i].name == userList[j].name && this.dutysystemTableData[i].telphone == userList[j].telphone){
  2262. userList.splice(j, 1);
  2263. }
  2264. }
  2265. }
  2266. this.dutysystemTableData = this.dutysystemTableData.concat(userList);
  2267. this.showFindUserByDept=false;
  2268. },
  2269. handleDelete: function(index, row) {//删除负责人行数
  2270. if (row.id != null && row.id != '') {
  2271. let param = { ids: row.id }
  2272. dutysystemRemove(param).then(res => {
  2273. this.$message.success(`删除成功!`)
  2274. this.dutysystemSelect(this.iconCurrentIndex, this.dutysystemDeptName, this.depteventId)
  2275. })
  2276. } else {
  2277. this.dutysystemTableData.splice(index, 1)
  2278. }
  2279. },
  2280. handleSave: function(index, rowData) {//保存负责人行数
  2281. rowData.dept = this.dutysystemDeptName
  2282. rowData.depteventId = this.depteventId
  2283. dutysystemAdd(rowData).then(res => {
  2284. this.$message.success(`保存成功!`)
  2285. this.dutysystemSelect(this.iconCurrentIndex, this.dutysystemDeptName, this.depteventId)
  2286. })
  2287. },
  2288. finUserByDept: function(){ //根据部门选择责任人
  2289. this.showFindUserByDept=true;
  2290. },
  2291. dutysystemSelect: function(deptId, dutysystemDeptName, depteventId) {//通过部门查询负责人信息
  2292. this.dutysystemDeptName = dutysystemDeptName
  2293. this.depteventId = depteventId
  2294. this.iconCurrentIndex = deptId
  2295. let param = { depteventId: depteventId }
  2296. dutysystemList(param).then(res => {
  2297. if (res.data != null && res.data.length > 0) {
  2298. this.dutysystemTableData = res.data
  2299. }else {
  2300. this.dutysystemTableData = []
  2301. }
  2302. })
  2303. },
  2304. showResponsibility() {//弹出责任制弹窗
  2305. let param = { eventCode: this.eventCode }
  2306. centereventtdepteventList(param).then(res => {
  2307. this.depteventList = res.data
  2308. this.showResponsibilityDialog = true
  2309. })
  2310. },
  2311. closeResponsibilityDialog() {//责任制关闭
  2312. this.dutysystemTableData = []
  2313. this.dutysystemDeptName = ''
  2314. this.depteventId = ''
  2315. this.iconCurrentIndex = ''
  2316. this.showResponsibilityDialog = false
  2317. },
  2318. addResponsibilityDialog() {//责任制保存
  2319. let reg_user = /^[\u4e00-\u9fa5]{2,4}$/; //2-4个中文字符正则
  2320. let reg_tel = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/; //11位手机号码正则
  2321. for(let i in this.dutysystemTableData){
  2322. if(!reg_user.test(this.dutysystemTableData[i].name)){
  2323. this.$message.error(`请输入正确姓名!`)
  2324. return;
  2325. }
  2326. if(!reg_tel.test(this.dutysystemTableData[i].telphone)){
  2327. this.$message.error(`请输入正确手机号码!`)
  2328. return;
  2329. }
  2330. if(this.dutysystemTableData[i].id==null || this.dutysystemTableData[i].id==''){
  2331. this.dutysystemTableData[i].dept = this.dutysystemDeptName;
  2332. this.dutysystemTableData[i].depteventId = this.depteventId;
  2333. }
  2334. }
  2335. const param = {centereventTDutySystemList:this.dutysystemTableData,eventCode:this.eventCode,eventName:this.eventName}
  2336. dutysystemAdd(param).then(res => {
  2337. this.$message.success(`保存成功!`)
  2338. this.dutysystemSelect(this.iconCurrentIndex, this.dutysystemDeptName, this.depteventId);
  2339. this.closeResponsibilityDialog();
  2340. })
  2341. },
  2342. /************************************责任制-结束****************************************/
  2343. showEventdetailsdialog() {
  2344. this.eventDialog = false;
  2345. this.$emit('showEventDialog', this.eventCode);
  2346. },
  2347. showheatPlotting() {
  2348. this.$refs.supermapDialog1.showheatPlotting(this.latitude, this.longitude,this.windSpeed,this.windDirection)
  2349. },
  2350. showUpdateYjYuAn() {
  2351. listYuAn().then(res => {
  2352. //关联预案列表
  2353. if (res.code == 200) {
  2354. this.guanLianYuAnList = res.data
  2355. this.showGuanLianYuAnConfirm = true
  2356. }
  2357. })
  2358. },
  2359. updateYjYuAn() {
  2360. if(this.eventStatusValue=='forest_event_status_1'||this.eventStatusValue=='forest_event_status_7') {
  2361. this.$message.error(`修改预案信息在签收后方可修改!`)
  2362. return
  2363. }else if(this.eventStatusValue=='forest_event_status_3'){
  2364. this.$message.error(`误报事件无法修改预案信息!`)
  2365. return
  2366. }else{
  2367. let param = { eventCode: this.eventCode, reserve: this.sendGuanLianYuAn }
  2368. if(this.sendGuanLianYuAn==''||this.sendGuanLianYuAn==null){
  2369. this.$message.error(`请选择预案信息!`)
  2370. return
  2371. }
  2372. updateYjYuAn(param).then(res => {
  2373. //事件调整关联预案
  2374. if (res.code == 200) {
  2375. this.$message.success(`预案调整成功!`)
  2376. this.refreshEventDialog(this.eventCode)
  2377. this.sendGuanLianYuAn = null
  2378. this.showGuanLianYuAnConfirm = false
  2379. }
  2380. })
  2381. }
  2382. },
  2383. listResourceByWz(type) {
  2384. if (this.resourcesListCheck.indexOf(type) > -1) {
  2385. this.resourcesListCheck.splice(this.resourcesListCheck.indexOf(type), 1)
  2386. setTimeout(() => {
  2387. this.$refs.supermapDialog1.clearMByType(type)
  2388. }, 1000)
  2389. } else {
  2390. //搜索物资
  2391. let param = { longitude: this.longitude, latitude: this.latitude, type: type, radius: this.radius }
  2392. listResourceByWz(param).then(res => {
  2393. if (res.data != null && res.data.length > 0) {
  2394. this.resourcesListCheck.push(type)
  2395. var markersList = []
  2396. for (let i = 0; i < res.data.length; i++) {
  2397. let markersMap = {
  2398. lng: 124.59,
  2399. lat: 43.02,
  2400. icon: 'marker',
  2401. bindPopupHtml: '',
  2402. click: '',
  2403. parameter: '',
  2404. keepBindPopup: false,
  2405. isAggregation: true
  2406. }
  2407. if (type == 'qsk') {
  2408. markersMap.icon = 'sj-icon-waterintake'
  2409. } else if (type == 'sh') {
  2410. markersMap.icon = 'sj-icon-watercrane'
  2411. } else if (type == 'xfs') {
  2412. markersMap.icon = 'sj-icon-firehydrant'
  2413. } else if (type == 'qjd') {
  2414. markersMap.icon = 'sj-icon-landing'
  2415. } else if (type == 'jcz') {
  2416. markersMap.icon = 'sj-icon-checkpoint'
  2417. } else if (type == 'fhd') {
  2418. markersMap.icon = 'sj-icon-fireteam'
  2419. } else if (type == 'zdqy') {
  2420. markersMap.icon = 'sj-icon-keyAreas'
  2421. } else if (type == 'sxt') {
  2422. markersMap.icon = 'camera'
  2423. if (res.data[i].cameraCode != null) {
  2424. markersMap.click = 'preview'
  2425. // markersMap.parameter = res.data[i].cameraCode
  2426. markersMap.parameter = {code:res.data.data[i].cameraCode,
  2427. type:res.data.data[i].cameraFactory,name:res.data[i].name}
  2428. }
  2429. }
  2430. markersMap.lng = res.data[i].longitude
  2431. markersMap.lat = res.data[i].latitude
  2432. markersMap.bindPopupHtml = '<div class="map-tip">' +
  2433. '<span>' +
  2434. ' <div class="d-l-con">' +
  2435. ' <div class="d-l-l-text">' +
  2436. ' <h4>资源名称:' + res.data[i].name + '</h4>' +
  2437. ' </div>' +
  2438. ' </div>' +
  2439. ' </span>' +
  2440. '</div>'
  2441. markersList.push(markersMap)
  2442. }
  2443. setTimeout(() => {
  2444. this.$refs.supermapDialog1.setMarkersByType(markersList, type)
  2445. }, 1000)
  2446. }
  2447. })
  2448. }
  2449. },
  2450. // 返回图片列表
  2451. assetTypeAnImage(filePath) {
  2452. let imageList = []
  2453. if (filePath != null && filePath.length > 0) {
  2454. for (let i = 0; i < filePath.length; i++) {
  2455. if (filePath[i].fileType == 'image') {
  2456. imageList.push(filePath[i].fileUrl)
  2457. }
  2458. }
  2459. }
  2460. return imageList
  2461. },
  2462. clickFile(fileUrl, fileName, fileType) {
  2463. if (fileType == 'image') {
  2464. return
  2465. } else if (fileType == 'video') {
  2466. this.showTcPlayer = true
  2467. setTimeout(() => {
  2468. this.playVideo = fileUrl
  2469. }, 500)
  2470. } else {
  2471. let a = document.createElement('a')
  2472. a.download = fileName
  2473. a.href = fileUrl
  2474. a.target = '_blank'
  2475. a.click()
  2476. }
  2477. },
  2478. setValue(event) {
  2479. //签收选择部门
  2480. this.sendDeptName = event.label
  2481. this.sendDeptId = event.value
  2482. },
  2483. cancelEventConfirm() {
  2484. //关闭事件签收弹窗
  2485. this.sendDeptId = null
  2486. this.sendDeptName = null
  2487. this.sendUserFegin = []
  2488. this.sendEventType = null
  2489. this.sendHuoZaiBanJing = 0
  2490. this.sendGuanLianYuAn = null
  2491. this.longitude = null
  2492. this.latitude = null
  2493. this.sendTaskTitle = null
  2494. this.sendTaskSource = null
  2495. this.sendTaskContent = null
  2496. this.sendLianDongDept = []
  2497. this.eventTypeList = []//事件类型列表
  2498. this.guanLianYuAnList = []//关联预案列表
  2499. this.deptOptions = []//签收部门
  2500. this.deptOptionsLiandong = []//联动部门
  2501. this.eventStatusButton = null//流程按钮标识
  2502. this.eventConfirmTitle = null//流程按钮标识
  2503. this.resourcesListCheck = []
  2504. this.userFeginList = [] //联系人列表
  2505. },
  2506. cancelEventConfirm_send() {
  2507. //清空表单数据
  2508. this.sendDeptId = null
  2509. this.sendDeptName = null
  2510. this.sendUserFegin = []
  2511. this.sendEventType = null
  2512. this.sendHuoZaiBanJing = 0
  2513. this.sendGuanLianYuAn = null
  2514. this.sendTaskTitle = null
  2515. this.sendTaskSource = null
  2516. this.sendTaskContent = null
  2517. this.sendLianDongDept = []
  2518. this.eventTypeList = []//事件类型列表
  2519. this.guanLianYuAnList = []//关联预案列表
  2520. this.deptOptions = []//签收部门
  2521. this.deptOptionsLiandong = []//联动部门
  2522. this.userFeginList = [] //联系人列表
  2523. },
  2524. cancelEventConfirm_gd() {
  2525. //关闭事件火险报告窗口
  2526. this.resetTable1()
  2527. this.resetTable2()
  2528. },
  2529. cancelEventConfirm_mp4() {
  2530. //关闭视频窗口
  2531. this.playVideo = ''
  2532. this.$refs.TcPlayer.destroyed()
  2533. },
  2534. resetTable1() {
  2535. this.table1 = {
  2536. reportUnit: null,
  2537. reportTimeY: null,
  2538. reportTimeM: null,
  2539. reportTimeD: null,
  2540. forestFireLossTotal: null,
  2541. fireLossTotal: null,
  2542. forestArea: null,
  2543. forestPrice: null,
  2544. treesNumber: null,
  2545. treesPrice: null,
  2546. minorInjuriesNumber: null,
  2547. minorInjuriesPrice: null,
  2548. seriouslyInjuredNumber: null,
  2549. seriouslyInjuredPrice: null,
  2550. deathNumber: null,
  2551. deathPrice: null,
  2552. elseFireLossPrice: null,
  2553. blazesPriceTotal: null,
  2554. artificialDays: null,
  2555. artificialPrice: null,
  2556. vehicleNumber: null,
  2557. carNumber: null,
  2558. vehiclePrice: null,
  2559. planeNumber: null,
  2560. planePrice: null,
  2561. elseBlazesPrice: null,
  2562. note: null
  2563. }
  2564. },
  2565. resetTable2() {
  2566. this.table2 = {
  2567. fireTime: null,
  2568. foundTime: null,
  2569. blazesTime: null,
  2570. address: null,
  2571. firePlace: null,
  2572. foundType: null,
  2573. longitudeD: null,
  2574. longitudeM: null,
  2575. longitudeS: null,
  2576. latitudeD: null,
  2577. latitudeM: null,
  2578. latitudeS: null,
  2579. fireSource: null,
  2580. fireType: null,
  2581. fireLevel: null,
  2582. areaTotal: null,
  2583. forestLossAreaTotal: null,
  2584. originalForestArea: null,
  2585. artificialForestArea: null,
  2586. peopleTotal: null,
  2587. blazesTeamNumber: null,
  2588. policeNumber: null,
  2589. armyNumber: null,
  2590. crowdNumber: null,
  2591. windExtinguisher: null,
  2592. secondTool: null,
  2593. waterGun: null,
  2594. elseThings: null,
  2595. forestComposition: null,
  2596. forestToken: null,
  2597. porosities: null,
  2598. weather: null,
  2599. temperature: null,
  2600. fireInsuranceLevel: null,
  2601. windLevel: null,
  2602. windDirection: null,
  2603. commandUnit: null,
  2604. commandName: null,
  2605. commandPosition: null,
  2606. surveyUnit: null,
  2607. surveyName: null,
  2608. surveyPosition: null,
  2609. accidentName: null,
  2610. accidentSex: null,
  2611. accidentAge: null,
  2612. accidentPosition: null,
  2613. accidentUnit: null,
  2614. dealType: null,
  2615. dealNumber: null,
  2616. criminalDealNumber: null,
  2617. accidentDealSituation: null,
  2618. responsibilityDealSituation: null,
  2619. leadershipDealSituation: null,
  2620. townForm: null,
  2621. townAudit: null,
  2622. cityForm: null,
  2623. cityAudit: null
  2624. }
  2625. },
  2626. /**
  2627. * eventStatusValue 事件状态
  2628. * isSend 是否办理
  2629. * */
  2630. async updateCentereventTEventcatalogueStatus(eventStatus, isSend) {
  2631. this.eventStatusButton = eventStatus
  2632. let that=this
  2633. if (!isSend) {//事件弹窗
  2634. if (eventStatus == 'qs') {//签收
  2635. that.eventConfirmTitle = '事件签收'
  2636. let param = { parentId: that.eventType }
  2637. if(that.eventTypeXl != null){
  2638. that.sendEventType = that.eventTypeXl;
  2639. }else{
  2640. await listSJfl(param).then(res => {
  2641. //事件类型
  2642. if (res.code == 200) {
  2643. that.eventTypeList = res.data
  2644. }
  2645. })
  2646. }
  2647. await listYuAn().then(res => {
  2648. //关联预案
  2649. if (res.code == 200) {
  2650. that.guanLianYuAnList = res.data
  2651. }
  2652. })
  2653. await selectByeventCode(that.eventCode).then(res => {
  2654. //签收部门
  2655. if (res.code == 200) {
  2656. that.deptOptions = res.data
  2657. that.deptNameitem = '签收部门'
  2658. }
  2659. })
  2660. that.showEventConfirm = true
  2661. } else if (eventStatus == 'qr') {//确认
  2662. that.eventConfirmTitle = '事件确认'
  2663. } else if (eventStatus == 'wb') {//误报
  2664. that.eventConfirmTitle = '事件误报'
  2665. await selectByeventCode(that.eventCode).then(res => {
  2666. //签收部门
  2667. if (res.code == 200) {
  2668. that.deptOptions = res.data
  2669. that.deptNameitem = '签收部门'
  2670. }
  2671. })
  2672. that.showEventConfirm = true
  2673. } else if (eventStatus == 'cf') {//重复
  2674. that.eventConfirmTitle = '事件重复'
  2675. await selectByeventCode(that.eventCode).then(res => {
  2676. //签收部门
  2677. if (res.code == 200) {
  2678. that.deptOptions = res.data
  2679. that.deptNameitem = '签收部门'
  2680. }
  2681. })
  2682. that.showEventConfirm = true
  2683. } else if (eventStatus == 'ld') {//联动
  2684. await selectByeventCode(that.eventCode).then(res => {
  2685. //签收部门
  2686. if (res.code == 200) {
  2687. that.deptOptions = res.data
  2688. that.deptNameitem = '发起部门'
  2689. }
  2690. })
  2691. that.eventConfirmTitle = '事件联动'
  2692. /** 查询部门树结构 */
  2693. await deptTreeselect().then(response => {
  2694. that.deptOptionsLiandong = response.data
  2695. })
  2696. that.showEventConfirm = true
  2697. } else if (eventStatus == 'gd') {//归档填报
  2698. that.showEventConfirm_gd = true
  2699. }
  2700. } else {//事件提交后台
  2701. if (eventStatus == 'ld') {
  2702. //事件处理流程--联动1
  2703. let array = that.$refs.LiandongDept.getCheckedNodes()
  2704. if (array != null && array.length > 0) {
  2705. for (let i = 0; i < array.length; i++) {
  2706. that.sendLianDongDept.push({ 'taskDeptId': array[i].id, 'taskDeptName': array[i].label })
  2707. }
  2708. }
  2709. if (that.sendTaskSource == '' || that.sendTaskSource == null) {
  2710. that.$message.error(`请选择任务来源!`)
  2711. return
  2712. }
  2713. if (that.sendTaskContent == '' || that.sendTaskContent == null) {
  2714. that.$message.error(`请输入任务内容!`)
  2715. return
  2716. }
  2717. if (that.sendTaskTitle == '' || that.sendTaskTitle == null) {
  2718. that.$message.error(`请输入任务标题!`)
  2719. return
  2720. }
  2721. if (that.sendLianDongDept == '' || that.sendLianDongDept == null) {
  2722. that.$message.error(`请选择任务联动部门!`)
  2723. return
  2724. }
  2725. if (that.sendDeptId == '' || that.sendDeptId == null || that.sendDeptName == '' || that.sendDeptName == null) {
  2726. that.$message.error(`请选择任务发起部门!`)
  2727. return
  2728. }
  2729. let eventState = "";
  2730. listSJfl({ parentId: that.eventType }).then(res => {
  2731. if (res.code == 200) {
  2732. for(let i in res.data){
  2733. if(res.data[i].id = that.eventTypeXl){
  2734. eventState = res.data[i].eventTypeName;
  2735. }
  2736. }
  2737. let param = {
  2738. sendDeptId: that.sendDeptId,
  2739. sendDept: that.sendDeptName,
  2740. eventCode: that.eventCode,
  2741. longitude: that.longitude,
  2742. latitude: that.latitude,
  2743. taskTitle: that.sendTaskTitle,
  2744. taskSource: that.sendTaskSource,
  2745. taskContent: that.sendTaskContent,
  2746. taskDept: that.sendLianDongDept,
  2747. eventAddress:that.address,
  2748. eventState:eventState,
  2749. eventName:that.eventName
  2750. }
  2751. sendTask(param).then(res => {
  2752. if (res.code == 200) {
  2753. that.$message.success(`联动发起成功!`)
  2754. that.refreshEventDialog(that.eventCode)
  2755. that.cancelEventConfirm_send()
  2756. that.showEventConfirm = false
  2757. }
  2758. })
  2759. }
  2760. })
  2761. } else if (eventStatus == 'gd') {
  2762. if(that.eventTypeXl == 101){
  2763. let double = /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/; //数字和两位小数
  2764. let number = /^[+]{0,1}(\d+)$/g; //正整数
  2765. if(!double.test(that.table2.areaTotal)){
  2766. that.$message.error(`面积只能填写到小数后两位!`)
  2767. return
  2768. }
  2769. if(!number.test(that.table2.peopleTotal)){
  2770. that.$message.error(`人员请填写正整数!`)
  2771. return
  2772. }
  2773. if(that.table2.forestComposition == '' || that.table2.forestComposition==null){
  2774. that.$message.error(`林木组成不能为空!`)
  2775. return
  2776. }
  2777. if(that.table2.forestToken == '' || that.table2.forestToken==null){
  2778. that.$message.error(`林令不能为空!`)
  2779. return
  2780. }
  2781. if(that.table2.porosities == '' || that.table2.porosities==null){
  2782. that.$message.error(`疏密度不能为空!`)
  2783. return
  2784. }
  2785. }
  2786. //事件处理流程--归档
  2787. let param = {
  2788. deptId: that.deptId,
  2789. eventCode: that.eventCode,
  2790. eventStatus: eventStatus,
  2791. id: that.eventId,
  2792. version:that.version,
  2793. czlx: '',
  2794. forestFireLoss: { eventId: that.eventCode, table1: that.table1 },
  2795. fireInformation: { eventId: that.eventCode, table2: that.table2 },
  2796. array: that.regionalFlagObj.array
  2797. }
  2798. updateCentereventTEventcatalogueStatus(param).then(res => {
  2799. if (res.code == 200) {
  2800. that.$message.success(`处理成功!`)
  2801. that.refreshEvent(that.eventCode)
  2802. that.cancelEventConfirm_send()
  2803. that.showEventConfirm_gd = false
  2804. that.$emit('getEventList', that.calendarDay,10,1)
  2805. that.$emit('getSupermap', that.calendarDay)
  2806. }else if(res.code == 304){
  2807. console.log(that.eventCode)
  2808. this.$message.warning(res.msg)
  2809. this.showEventDialog(that.eventCode)
  2810. //获取事件详情
  2811. }
  2812. })
  2813. } else if(eventStatus == 'cz'){
  2814. eventHandling(that.eventId,that.eventCode).then(res => {
  2815. if (res.code == 200) {
  2816. that.$message.success(`处理成功!`)
  2817. that.refreshEvent(that.eventCode)
  2818. that.cancelEventConfirm_send()
  2819. that.showEventConfirm = false
  2820. }
  2821. })
  2822. } else {
  2823. if (eventStatus == 'qs' ) {
  2824. if (that.sendDeptId == '' || that.sendDeptId == null || that.sendDeptName == '' || that.sendDeptName == null) {
  2825. that.$message.error(`请选择部门!`)
  2826. return
  2827. }
  2828. if (eventStatus == 'qs') {
  2829. if (that.sendEventType == '' || that.sendEventType == null) {
  2830. that.$message.error(`请选择事件类型!`)
  2831. return
  2832. }
  2833. }
  2834. } else {
  2835. that.sendDeptId = that.deptId
  2836. }
  2837. //事件处理流程
  2838. let param = {
  2839. phones:that.sendUserFegin,
  2840. eventCode: that.eventCode,
  2841. deptId: that.sendDeptId,
  2842. deptName: that.sendDeptName,
  2843. eventStatus: eventStatus,
  2844. eventType: that.sendEventType,
  2845. id: that.eventId,
  2846. version:that.version,
  2847. czlx: '',
  2848. cameraCode: that.cameraCode,
  2849. fireRadius: that.sendHuoZaiBanJing,
  2850. reserve: that.sendGuanLianYuAn,
  2851. address:that.address,
  2852. }
  2853. updateCentereventTEventcatalogueStatus(param).then(res => {
  2854. if (res.code == 200) {
  2855. that.$message.success(`处理成功!`)
  2856. that.cancelEventConfirm_send()
  2857. that.showEventConfirm = false
  2858. that.$emit('getEventList', that.calendarDay,10,1)
  2859. that.$emit('getSupermap', that.calendarDay)
  2860. if (eventStatus == "cf" || eventStatus == "wb") {
  2861. this.eventDialog = false;
  2862. return;
  2863. }
  2864. that.refreshEvent(that.eventCode)
  2865. }else if(res.code == 304){
  2866. console.log(that.eventCode)
  2867. this.$message.warning(res.msg)
  2868. this.showEventDialog(that.eventCode)
  2869. //获取事件详情
  2870. }
  2871. })
  2872. }
  2873. }
  2874. },
  2875. filterNode(value, data) {
  2876. //树搜索
  2877. if (!value) return true
  2878. return data.label.indexOf(value) !== -1
  2879. },
  2880. sendEventLog() {
  2881. if( this.eventLog == '' || this.eventLog == null ){
  2882. return;
  2883. }
  2884. //日志发送
  2885. let param = { eventCode: this.eventCode, logContent: this.eventLog,operation:"bus_oper_type_2",operationType:"log_oper_type_1"}
  2886. sendEventLog(param).then(res => {
  2887. if (res.code == 200) {
  2888. this.$message.success(`发送成功!`)
  2889. this.eventLog = null
  2890. this.refreshEventDialog(this.eventCode)
  2891. }
  2892. })
  2893. },
  2894. showEventLogUpload() {
  2895. this.$refs.eventLogUpload.eventLogUpload(this.eventCode)
  2896. },
  2897. cancelEventShow() {
  2898. this.dataStatus = null
  2899. this.deptId = null
  2900. console.log('关闭事件弹窗')
  2901. this.eventLogList = []
  2902. },
  2903. showEventDialog(eventCode) {
  2904. this.getNewDataByDate(this.calendarDay)
  2905. this.eventCode = eventCode
  2906. let that = this
  2907. //获取事件详情
  2908. getEventDetail({ eventCode: eventCode }).then(res => {
  2909. let markersMapList=[];
  2910. that.eventDialog = true
  2911. that.isExamine=1
  2912. that.eventLogList = res.data.eventlog//日志列表
  2913. that.visuForestCloudYuAnBo = res.data.visuForestCloudYuAnBo//应急预案
  2914. that.address = res.data.catalogue.address
  2915. that.eventStatusValue = res.data.catalogue.eventStatusValue
  2916. that.eventType = res.data.catalogue.eventType
  2917. that.statusFlag = res.data.catalogue.statusFlag
  2918. that.dataStatus = res.data.catalogue.dataStatus
  2919. that.deptId = res.data.catalogue.deptId
  2920. that.eventId = res.data.catalogue.id
  2921. that.longitude = res.data.catalogue.longitude
  2922. that.latitude = res.data.catalogue.latitude
  2923. that.eventName = res.data.catalogue.eventName
  2924. that.eventTypeXl = res.data.catalogue.eventTypeXl
  2925. that.version=res.data.catalogue.version
  2926. let markersMap = {
  2927. lng: 124.59,
  2928. lat: 43.02,
  2929. icon: 'marker',
  2930. bindPopupHtml: '',
  2931. click: '',
  2932. parameter: '',
  2933. keepBindPopup: false,
  2934. isAggregation: true,
  2935. radius: 0
  2936. }
  2937. if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount == 0) {
  2938. markersMap.icon = 'sj-icon-map-xinshangbao'
  2939. }
  2940. if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount > 0) {
  2941. markersMap.icon = 'sj-icon-map-cuiban'
  2942. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_2') {
  2943. markersMap.icon = 'sj-icon-map-qianshou'
  2944. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_5') {
  2945. markersMap.icon = 'sj-icon-map-banjie'
  2946. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_6') {
  2947. markersMap.icon = 'sj-icon-map-guidang'
  2948. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_7') {
  2949. markersMap.icon = 'sj-icon-map-queren'
  2950. }
  2951. markersMap.lng = res.data.catalogue.longitude
  2952. markersMap.lat = res.data.catalogue.latitude
  2953. if (res.data.eventdetail != null && res.data.eventdetail.length > 0 && res.data.eventdetail[0].fireRadius != null && res.data.eventdetail[0].fireRadius != '' && res.data.eventdetail[0].fireRadius > 0) {
  2954. markersMap.radius = res.data.eventdetail[0].fireRadius
  2955. }
  2956. markersMapList.push(markersMap);
  2957. if (res.data.centermonitorTCamera != null) {
  2958. that.cameraCode = res.data.centermonitorTCamera.id;
  2959. let markersMap = {
  2960. lng: 124.59,
  2961. lat: 43.02,
  2962. icon: 'camera',
  2963. bindPopupHtml: '',
  2964. click: 'preview',
  2965. parameter: {code:res.data.centermonitorTCamera.cameraCode,type:res.data.centermonitorTCamera.cameraFactory,name:res.data.centermonitorTCamera.cameraName},
  2966. keepBindPopup: false,
  2967. isAggregation: true,
  2968. radius: 0
  2969. }
  2970. markersMap.bindPopupHtml = '<div class="map-tip">' +
  2971. '<span>' +
  2972. ' <div class="d-l-con">' +
  2973. ' <div class="d-l-l-text">' +
  2974. ' <h4>摄像头名称:' + res.data.centermonitorTCamera.cameraName + '</h4>' +
  2975. ' </div>' +
  2976. ' </div>' +
  2977. ' </span>' +
  2978. '<span>' +
  2979. '</div>'
  2980. markersMap.lng = res.data.centermonitorTCamera.longitude
  2981. markersMap.lat = res.data.centermonitorTCamera.latitude
  2982. markersMapList.push(markersMap)
  2983. }
  2984. setTimeout(() => {
  2985. that.$refs.supermapDialog1.dropLocation10(res.data.catalogue.latitude, res.data.catalogue.longitude)
  2986. that.$refs.supermapDialog1.clearM(false)
  2987. that.$refs.supermapDialog1.clearM(true)
  2988. that.$refs.supermapDialog1.setMarkersRadius(markersMapList)
  2989. }, 2000)
  2990. })
  2991. },
  2992. refreshEvent(eventCode) {
  2993. this.eventCode = eventCode
  2994. let that = this
  2995. //刷新--事件详情
  2996. getEventDetail({ eventCode: eventCode }).then(res => {
  2997. let markersMapList=[];
  2998. that.eventDialog = true
  2999. that.isExamine=1
  3000. that.eventLogList = res.data.eventlog
  3001. that.visuForestCloudYuAnBo = res.data.visuForestCloudYuAnBo//应急预案
  3002. that.address = res.data.catalogue.address
  3003. that.eventStatusValue = res.data.catalogue.eventStatusValue
  3004. that.eventType = res.data.catalogue.eventType
  3005. that.statusFlag = res.data.catalogue.statusFlag
  3006. that.dataStatus = res.data.catalogue.dataStatus
  3007. that.deptId = res.data.catalogue.deptId
  3008. that.eventId = res.data.catalogue.id
  3009. that.latitude = res.data.catalogue.latitude
  3010. that.longitude = res.data.catalogue.longitude
  3011. that.eventName = res.data.catalogue.eventName
  3012. that.eventTypeXl = res.data.catalogue.eventTypeXl
  3013. that.version=res.data.catalogue.version
  3014. let markersMap = {
  3015. lng: 124.59,
  3016. lat: 43.02,
  3017. icon: 'marker',
  3018. bindPopupHtml: '',
  3019. click: '',
  3020. parameter: '',
  3021. keepBindPopup: false,
  3022. isAggregation: true,
  3023. radius: 0
  3024. }
  3025. if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount == 0) {
  3026. markersMap.icon = 'sj-icon-map-xinshangbao'
  3027. }
  3028. if (res.data.catalogue.eventStatusValue == 'forest_event_status_1' && res.data.catalogue.urgeCount > 0) {
  3029. markersMap.icon = 'sj-icon-map-cuiban'
  3030. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_2') {
  3031. markersMap.icon = 'sj-icon-map-qianshou'
  3032. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_5') {
  3033. markersMap.icon = 'sj-icon-map-banjie'
  3034. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_6') {
  3035. markersMap.icon = 'sj-icon-map-guidang'
  3036. } else if (res.data.catalogue.eventStatusValue == 'forest_event_status_7') {
  3037. markersMap.icon = 'sj-icon-map-queren'
  3038. }
  3039. markersMap.lng = res.data.catalogue.longitude
  3040. markersMap.lat = res.data.catalogue.latitude
  3041. if (res.data.eventdetail != null && res.data.eventdetail.length > 0 && res.data.eventdetail[0].fireRadius != null && res.data.eventdetail[0].fireRadius != '' && res.data.eventdetail[0].fireRadius > 0) {
  3042. markersMap.radius = res.data.eventdetail[0].fireRadius
  3043. }
  3044. markersMapList.push(markersMap)
  3045. if (res.data.centermonitorTCamera != null) {
  3046. let markersMap = {
  3047. lng: 124.59,
  3048. lat: 43.02,
  3049. icon: 'camera',
  3050. bindPopupHtml: '',
  3051. click: 'preview',
  3052. parameter: {code:res.data.centermonitorTCamera.cameraCode,type:res.data.centermonitorTCamera.cameraFactory,name:res.data.centermonitorTCamera.cameraName},
  3053. keepBindPopup: false,
  3054. isAggregation: true,
  3055. radius: 0
  3056. }
  3057. markersMap.bindPopupHtml = '<div class="map-tip">' +
  3058. '<span>' +
  3059. ' <div class="d-l-con">' +
  3060. ' <div class="d-l-l-text">' +
  3061. ' <h4>摄像头名称:' + res.data.centermonitorTCamera.cameraName + '</h4>' +
  3062. ' </div>' +
  3063. ' </div>' +
  3064. ' </span>' +
  3065. '<span>' +
  3066. '</div>'
  3067. markersMap.lng = res.data.centermonitorTCamera.longitude
  3068. markersMap.lat = res.data.centermonitorTCamera.latitude
  3069. markersMapList.push(markersMap)
  3070. }
  3071. setTimeout(() => {
  3072. that.$refs.supermapDialog1.clearM(false)
  3073. that.$refs.supermapDialog1.clearM(true)
  3074. that.$refs.supermapDialog1.setMarkersRadius(markersMapList)
  3075. that.$refs.supermapDialog1.dropLocation10(res.data.catalogue.latitude, res.data.catalogue.longitude)
  3076. }, 2000)
  3077. })
  3078. },
  3079. refreshEventDialog(eventCode) {
  3080. //刷新--事件日志12
  3081. getEventDetail({ eventCode: eventCode }).then(res => {
  3082. this.eventLogList = res.data.eventlog
  3083. this.visuForestCloudYuAnBo = res.data.visuForestCloudYuAnBo//应急预案
  3084. })
  3085. },
  3086. // 页面元素转图片
  3087. toImage() {
  3088. this.$message.success(`正在上传!请稍后...`)
  3089. // 手动创建一个 canvas 标签
  3090. const canvas = document.createElement('canvas')
  3091. // 获取父标签,意思是这个标签内的 DOM 元素生成图片
  3092. // imageTofile是给截图范围内的父级元素自定义的ref名称
  3093. // let canvasBox = this.$refs.imageTofile
  3094. let canvasBox = document.getElementById('forestWarmSuperMap1')
  3095. let toolbar = document.getElementById('toolbar')
  3096. if(toolbar!=null)
  3097. {
  3098. canvasBox.removeChild(toolbar)
  3099. }
  3100. // 获取父级的宽高
  3101. const width = parseInt(window.getComputedStyle(canvasBox).width)
  3102. const height = parseInt(window.getComputedStyle(canvasBox).height)
  3103. // 宽高 * 2 并放大 2 倍 是为了防止图片模糊
  3104. canvas.width = width * 2
  3105. canvas.height = height * 2
  3106. canvas.style.width = width + 'px'
  3107. canvas.style.height = height + 'px'
  3108. const context = canvas.getContext('2d')
  3109. context.scale(2, 2)
  3110. const options = {
  3111. backgroundColor: null,
  3112. canvas: canvas,
  3113. useCORS: true
  3114. }
  3115. html2canvas(canvasBox, options).then((canvas) => {
  3116. // toDataURL 图片格式转成 base64
  3117. let dataBase64 = canvas.toDataURL('image/png')
  3118. this.uploadBase64(dataBase64)
  3119. })
  3120. canvasBox.appendChild(toolbar)
  3121. },
  3122. uploadBase64(dataBase64) {
  3123. //事件详情截图直接上传日志
  3124. uploadBase64({ eventCode: this.eventCode, base64: dataBase64 }).then(res => {
  3125. if (res.code == 200) {
  3126. this.$message.success(`截图上传成功!`)
  3127. this.refreshEventDialog(this.eventCode)
  3128. }
  3129. })
  3130. },
  3131. regionalFlagAdd: function() {//火灾区域
  3132. this.regionalFlagObj.array = []
  3133. this.regionalFlagOpen = true
  3134. },
  3135. showAreaLatLng: function(latlng) {//获取火灾区域经纬度
  3136. this.regionalFlagObj.array = latlng
  3137. this.$modal.msgSuccess('获取坐标成功!')
  3138. },
  3139. /** ----------------------------------摄像头预览开始------------------------------------- */
  3140. alertLogin: function() {
  3141. this.$modal.msg('登录中....')
  3142. },
  3143. alertLoginSuccess: function() {
  3144. this.$modal.msgSuccess('登录成功!')
  3145. },
  3146. alertLoginFailed: function() {
  3147. this.$modal.msgError('登陆失败!')
  3148. },
  3149. alertReinstall: function() {
  3150. this.$modal.msgWarning('请重新安装客户端')
  3151. },
  3152. cancelEventLocationShow() {
  3153. if (this.oWebControl != null) {
  3154. this.oWebControl.JS_HideWnd() // 先让窗口隐藏,规避可能的插件窗口滞后于浏览器消失问题
  3155. this.oWebControl.JS_Disconnect().then(function() { // 断开与插件服务连接成功
  3156. },
  3157. function() { // 断开与插件服务连接失败
  3158. })
  3159. }
  3160. },
  3161. /** 预览按钮操作 */
  3162. preview(cameraParam) {
  3163. if(cameraParam.type=='1'){
  3164. this.showTVWall(cameraParam.code,cameraParam.name)
  3165. // getDahuaVideoServer().then(newResponse => {
  3166. // console.log(newResponse)
  3167. // this.ws.detectConnectQt().then(res => {
  3168. // if (res) { // 连接客户端成功
  3169. // this.alertLogin()
  3170. // this.ws.login({
  3171. // loginIp: newResponse.loginIp,
  3172. // loginPort: newResponse.loginPort,
  3173. // userName: newResponse.userName,
  3174. // userPwd: newResponse.userPwd,
  3175. // token: '',
  3176. // https: 0
  3177. // })
  3178. // this.ws.on('loginState', (res) => {
  3179. // this.isLogin = res
  3180. // console.log('---res-----', res)
  3181. // if (res) {
  3182. // this.alertLoginSuccess()
  3183. // this.activePanel = 'key2'
  3184. // this.realTimeVideoDialog(cameraParam.code)
  3185. // } else {
  3186. // this.alertLoginFailed()
  3187. // }
  3188. // })
  3189. // } else { // 连接客户端失败
  3190. // this.alertReinstall()
  3191. // }
  3192. // })
  3193. // })
  3194. }else if(cameraParam.type=='0'){
  3195. let that = this
  3196. that.cameraVisible = true
  3197. getHaiKangVideoServer({cameraCode:cameraParam.code}).then(newResponse => {
  3198. that.cameraTitle = '摄像头-'+newResponse.data.cameraName
  3199. that.initPlugin(newResponse.data.appkey,newResponse.data.loginIp,newResponse.data.secret,newResponse.data.loginPort)
  3200. setTimeout(function() {
  3201. that.playhk(newResponse.data.channelCode)
  3202. }, 5000)
  3203. })
  3204. }
  3205. },
  3206. realTimeVideoDialog(cameraParams) { // 调用弹窗实时播放接口
  3207. if (!this.isLogin) {
  3208. this.$Message.info('正在登陆客户端,请稍等......')
  3209. return false
  3210. }
  3211. this.ws.openVideo(cameraParams)
  3212. },
  3213. /** ----------------------------------摄像头预览结束------------------------------------- */
  3214. /** ----------------------------------海康摄像头预览开始------------------------------------- */
  3215. // 创建播放实例
  3216. initPlugin(newappkey, newloginIp, newsecret, newloginPort) {
  3217. let that = this
  3218. that.oWebControl = new WebControl({
  3219. szPluginContainer: 'playWnd', // 指定容器id
  3220. iServicePortStart: 15900, // 指定起止端口号,建议使用该值
  3221. iServicePortEnd: 15909,
  3222. szClassId: '23BF3B0A-2C56-4D97-9C03-0CB103AA8F11', // 用于IE10使用ActiveX的clsid
  3223. cbConnectSuccess: function() { // 创建WebControl实例成功
  3224. that.oWebControl.JS_StartService('window', { // WebControl实例创建成功后需要启动服务
  3225. dllPath: './VideoPluginConnect.dll' // 值"./VideoPluginConnect.dll"写死
  3226. }).then(function() { // 启动插件服务成功
  3227. that.oWebControl.JS_SetWindowControlCallback({ // 设置消息回调
  3228. cbIntegrationCallBack: cbIntegrationCallBack
  3229. })
  3230. that.oWebControl.JS_CreateWnd('playWnd', 1020, 600).then(function() { //JS_CreateWnd创建视频播放窗口,宽高可设定
  3231. that.init(newappkey, newloginIp, newsecret, newloginPort) // 创建播放实例成功后初始化
  3232. })
  3233. }, function() { // 启动插件服务失败
  3234. })
  3235. },
  3236. cbConnectError: function() { // 创建WebControl实例失败
  3237. that.oWebControl = null
  3238. $('#playWnd').html('插件未启动,正在尝试启动,请稍候...<a href="./hk/VideoWebPlugin.exe">点击下载插件</a>')
  3239. WebControl.JS_WakeUp('VideoWebPlugin://') // 程序未启动时执行error函数,采用wakeup来启动程序
  3240. that.initCount++
  3241. if (that.initCount < 3) {
  3242. setTimeout(function() {
  3243. that.initPlugin(newappkey, newloginIp, newsecret, newloginPort)
  3244. }, 3000)
  3245. } else {
  3246. $('#playWnd').html('插件启动失败,请检查插件是否安装!<a href="./hk/VideoWebPlugin.exe">点击下载插件</a>')
  3247. }
  3248. },
  3249. cbConnectClose: function(bNormalClose) {
  3250. // 异常断开:bNormalClose = false
  3251. // JS_Disconnect正常断开:bNormalClose = true
  3252. that.oWebControl = null
  3253. }
  3254. })
  3255. },
  3256. //播放海康摄像头
  3257. playhk(channelCode) {
  3258. var cameraIndexCode = channelCode //获取输入的监控点编号值,必填
  3259. var streamMode = 0 //主子码流标识:0-主码流,1-子码流
  3260. var transMode = 1 //传输协议:0-UDP,1-TCP
  3261. var gpuMode = 0 //是否启用GPU硬解,0-不启用,1-启用
  3262. var wndId = -1 //播放窗口序号(在2x2以上布局下可指定播放窗口)
  3263. cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, '')
  3264. cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, '')
  3265. this.oWebControl.JS_RequestInterface({
  3266. funcName: 'startPreview',
  3267. argument: JSON.stringify({
  3268. cameraIndexCode: cameraIndexCode, //监控点编号
  3269. streamMode: streamMode, //主子码流标识
  3270. transMode: transMode, //传输协议
  3271. gpuMode: gpuMode, //是否开启GPU硬解
  3272. wndId: wndId //可指定播放窗口
  3273. })
  3274. })
  3275. },
  3276. //初始化
  3277. init(newappkey, newloginIp, newsecret, newloginPort) {
  3278. let that = this
  3279. that.getPubKey(function() {
  3280. ////////////////////////////////// 请自行修改以下变量值 ////////////////////////////////////
  3281. var appkey = newappkey //综合安防管理平台提供的appkey,必填
  3282. var secret = that.setEncrypt(newsecret) //综合安防管理平台提供的secret,必填
  3283. var ip = newloginIp //综合安防管理平台IP地址,必填
  3284. var playMode = 0 //初始播放模式:0-预览,1-回放
  3285. var port = Number(newloginPort) //综合安防管理平台端口,若启用HTTPS协议,默认443
  3286. var snapDir = 'D:\\SnapDir' //抓图存储路径
  3287. var videoDir = 'D:\\VideoDir' //紧急录像或录像剪辑存储路径
  3288. var layout = '1x1' //playMode指定模式的布局
  3289. var enableHTTPS = 1 //是否启用HTTPS协议与综合安防管理平台交互,这里总是填1
  3290. var encryptedFields = 'secret' //加密字段,默认加密领域为secret
  3291. var showToolbar = 1 //是否显示工具栏,0-不显示,非0-显示
  3292. var showSmart = 1 //是否显示智能信息(如配置移动侦测后画面上的线框),0-不显示,非0-显示
  3293. var buttonIDs = '0,16,256,257,258,259,260,512,513,514,515,516,517,768,769' //自定义工具条按钮
  3294. ////////////////////////////////// 请自行修改以上变量值 ////////////////////////////////////
  3295. that.oWebControl.JS_RequestInterface({
  3296. funcName: 'init',
  3297. argument: JSON.stringify({
  3298. appkey: appkey, //API网关提供的appkey
  3299. secret: secret, //API网关提供的secret
  3300. ip: ip, //API网关IP地址
  3301. playMode: playMode, //播放模式(决定显示预览还是回放界面)
  3302. port: port, //端口
  3303. snapDir: snapDir, //抓图存储路径
  3304. videoDir: videoDir, //紧急录像或录像剪辑存储路径
  3305. layout: layout, //布局
  3306. enableHTTPS: enableHTTPS, //是否启用HTTPS协议
  3307. encryptedFields: encryptedFields, //加密字段
  3308. showToolbar: showToolbar, //是否显示工具栏
  3309. showSmart: showSmart, //是否显示智能信息
  3310. buttonIDs: buttonIDs //自定义工具条按钮
  3311. })
  3312. }).then(function(oData) {
  3313. that.oWebControl.JS_Resize(1020, 600) // 初始化后resize一次,规避firefox下首次显示窗口后插件窗口未与DIV窗口重合问题
  3314. })
  3315. })
  3316. },
  3317. //获取公钥
  3318. getPubKey(callback) {
  3319. let that = this
  3320. that.oWebControl.JS_RequestInterface({
  3321. funcName: 'getRSAPubKey',
  3322. argument: JSON.stringify({
  3323. keyLength: 1024
  3324. })
  3325. }).then(function(oData) {
  3326. console.log(oData)
  3327. if (oData.responseMsg.data) {
  3328. that.pubKey = oData.responseMsg.data
  3329. callback()
  3330. }
  3331. })
  3332. },
  3333. //RSA加密
  3334. setEncrypt(value) {
  3335. var encrypt = new JSEncrypt()
  3336. encrypt.setPublicKey(this.pubKey)
  3337. return encrypt.encrypt(value)
  3338. },
  3339. /** ----------------------------------视频会议开始------------------------------------- */
  3340. sendMsg() {// 视频会议发送短信
  3341. let reg_user = /^[\u4e00-\u9fa5]{2,4}$/; //2-4个中文字符正则
  3342. let reg_tel = /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/; //11位手机号码正则
  3343. for(let i in this.dutysystemTableData){
  3344. if(!reg_user.test(this.dutysystemTableData[i].name)){
  3345. this.$message.error(`请输入正确姓名!`)
  3346. return;
  3347. }
  3348. if(!reg_tel.test(this.dutysystemTableData[i].telphone)){
  3349. this.$message.error(`请输入正确手机号码!`)
  3350. return;
  3351. }
  3352. if(this.dutysystemTableData[i].id==null || this.dutysystemTableData[i].id==''){
  3353. this.dutysystemTableData[i].dept = this.dutysystemDeptName;
  3354. this.dutysystemTableData[i].depteventId = this.depteventId;
  3355. }
  3356. }
  3357. const param = {centereventTDutySystemList:this.dutysystemTableData,eventCode:this.eventCode,eventName:this.eventName,eventId:this.eventId}
  3358. sendMessage(param).then(res => {
  3359. //this.$message.success(res.msg);
  3360. this.dutysystemSelect(this.iconCurrentIndex, this.dutysystemDeptName, this.depteventId);
  3361. this.showMeetingMsgDialog = false;
  3362. this.joinMeeting();
  3363. })
  3364. },
  3365. joinMeeting() {
  3366. this.$message({
  3367. message: '正在启动云会议客户端,请稍候...',
  3368. type: 'success',
  3369. });
  3370. joinConferences(this.eventId, this.eventName + "的会议", Cookies.get("nickName")).then(res => {
  3371. if (res.code == 200) {
  3372. let conferenceID = res.data.info.conferenceID;
  3373. let password = res.data.info.password;
  3374. let nickName = res.data.nickName;
  3375. let nonce = res.data.nonce;
  3376. window.open("cloudlink://welinksoftclient/h5page?page=LoginAndJoinConf&server_url=meeting.huaweicloud.com&port=8443&conf_id=" + conferenceID + "&enter_code=" + password + "&name=" + nickName + "&open_mic=true&open_camera=false&nonce=" + nonce);
  3377. }
  3378. })
  3379. },
  3380. Meeting() {//弹出发送会议短信弹窗
  3381. let that = this;
  3382. that.$alert("如您已经安装请点击【确定】,如未安装可<a style='text-decoration:underline;color:blue;' href='http://172.18.1.37:15001/CLOUDMeeting_Win.exe'>点击此处</a>进行下载", '该功能需要使用云会议客户端', {
  3383. confirmButtonText: '确定',
  3384. dangerouslyUseHTMLString: true,
  3385. callback: action => {
  3386. let param = { eventCode: that.eventCode }
  3387. centereventtdepteventList(param).then(res => {
  3388. that.depteventList = res.data
  3389. that.showMeetingMsgDialog = true
  3390. that.initDutysystemTableData();
  3391. })
  3392. }
  3393. });
  3394. },
  3395. /** ----------------------------------视频会议结束------------------------------------- */
  3396. /** ----------------------------------海康摄像头预览结束------------------------------------- */
  3397. }
  3398. }
  3399. // 推送消息
  3400. function cbIntegrationCallBack(oData) {
  3401. console.log(JSON.stringify(oData.responseMsg))
  3402. }
  3403. </script>
  3404. <style lang="scss" scoped>
  3405. @import '@/assets/styles/base.scss';
  3406. //弹层样式
  3407. //.customWidthMp4 {
  3408. // width: 70px !important;
  3409. // height: 70px !important;
  3410. //}
  3411. .tree-border {
  3412. border: 1px $barBorder;
  3413. }
  3414. button {
  3415. padding: .5rem;
  3416. }
  3417. /** 火灾报告**/
  3418. //@font-face {
  3419. // font-family: 'fontnameRegular';
  3420. // src: url('../../../../assets/styles/FZYTJW_0.TTF');
  3421. //}
  3422. body,
  3423. html,
  3424. * {
  3425. padding: 0px;
  3426. margin: 0px;
  3427. font-family: "fontnameRegular";
  3428. }
  3429. .table-container {
  3430. width: 100%;
  3431. }
  3432. .txt_right {
  3433. text-align: right !important;
  3434. }
  3435. .txt_left {
  3436. text-align: left !important;
  3437. }
  3438. table {
  3439. border-spacing: 0;
  3440. border-collapse: collapse;
  3441. width: 99%;
  3442. margin: 0 auto;
  3443. color: $inBlue;
  3444. }
  3445. table input {
  3446. font-size: 1rem;
  3447. border: 0px;
  3448. outline: 0px;
  3449. font-family: "微软雅黑";
  3450. background: none;
  3451. color: $inBlue;
  3452. }
  3453. table th input:hover {
  3454. background: $eventBG;
  3455. }
  3456. table thead th {
  3457. font-size: 1rem;
  3458. font-family: "宋体";
  3459. height: 2rem;
  3460. border-top: 0px;
  3461. border-left: 0px;
  3462. border-right: 0px;
  3463. outline: 0px;
  3464. }
  3465. table tr td {
  3466. font-size: 1rem;
  3467. font-family: "fontnameRegular";
  3468. height: 2rem;
  3469. border: 1px $searchBorder;
  3470. text-align: center;
  3471. }
  3472. .font1 {
  3473. font-size: 1.7rem;
  3474. font-weight: bolder;
  3475. }
  3476. .border0 {
  3477. width: 100% !important;
  3478. }
  3479. .border0 tr td {
  3480. border: 0px !important;
  3481. }
  3482. table tr td input {
  3483. width: 100%;
  3484. /* display: inline-block;*/
  3485. outline: 0px;
  3486. text-align: left;
  3487. height: 94%;
  3488. color: $inBlue;
  3489. background: none;
  3490. float: left;
  3491. padding: 0 .5rem;
  3492. }
  3493. table tr td input:hover {
  3494. background: $eventBG;
  3495. }
  3496. .int_tr td input {
  3497. text-align: center !important;
  3498. }
  3499. .table2 tr th {
  3500. font-size: 1.7rem;
  3501. padding: .5rem 0;
  3502. font-family: 'fontnameRegular';
  3503. }
  3504. .table2 tr td {
  3505. font-size: 1rem;
  3506. }
  3507. .table2 tr td select {
  3508. border: 0px !important;
  3509. outline: 0px;
  3510. width: 100%;
  3511. font-family: "微软雅黑";
  3512. font-size: 1rem;
  3513. padding-left: 1%;
  3514. color: $inBlue;
  3515. background: none;
  3516. }
  3517. .table2 tr td select:hover {
  3518. background: $eventBG;
  3519. }
  3520. .table2 tr td select option {
  3521. font-size: 1rem;
  3522. font-family: "微软雅黑";
  3523. }
  3524. .border_l0 {
  3525. // border-right: 1px solid #ececec !important;
  3526. }
  3527. .table2 tr td textarea {
  3528. border: 0px !important;
  3529. outline: 0px;
  3530. width: 98%;
  3531. padding: .5rem;
  3532. font-size: 1rem;
  3533. resize: none;
  3534. background: none;
  3535. color: $inBlue;
  3536. }
  3537. .table2 tr td textarea:hover {
  3538. background: $eventBG;
  3539. }
  3540. .tr_border td {
  3541. border-right: 0px !important;
  3542. border-left: 0px !important;
  3543. border-bottom: 0px !important;
  3544. font-size: 15px;
  3545. }
  3546. .btm-btn-group {
  3547. padding: 1rem 0;
  3548. width: 100%;
  3549. display: flex;
  3550. button {
  3551. padding: .5rem 2rem;
  3552. }
  3553. }
  3554. // 20220928
  3555. .yatz_button {
  3556. padding: 0.5rem 0.5rem;
  3557. color: #409EFF;
  3558. background: none;
  3559. border-color: #409EFF;
  3560. }
  3561. .yatz_button:hover {
  3562. color: #fff;
  3563. background: #409EFF;
  3564. border-color: #409EFF;
  3565. }
  3566. .fr_button {
  3567. float: right;
  3568. padding: 0.5rem 1.5rem;
  3569. }
  3570. .bottom {
  3571. width: 100%;
  3572. height: calc(100% - 80px);
  3573. display: flex;
  3574. .bottomLeft {
  3575. width: 288px;
  3576. height: 500px;
  3577. overflow-y: auto;
  3578. .leftItem {
  3579. width: 100%;
  3580. height: 50px;
  3581. line-height: 50px;
  3582. text-align: center;
  3583. cursor: pointer;
  3584. }
  3585. }
  3586. .bottomRight {
  3587. width: calc(100% - 288px);
  3588. height: 500px;
  3589. box-sizing: border-box;
  3590. padding: 36px 36px 0 36px;
  3591. overflow-y: auto;
  3592. .bottomRightContent {
  3593. width: 100%;
  3594. box-sizing: border-box;
  3595. padding-bottom: 36px;
  3596. .bottomRightContentHead {
  3597. height: 25px;
  3598. font-family: PingFang SC;
  3599. font-style: normal;
  3600. font-weight: 600;
  3601. font-size: 24px;
  3602. line-height: 25px;
  3603. text-transform: capitalize;
  3604. color: rgba(0, 0, 0, 0.85);
  3605. margin-bottom: 32px;
  3606. }
  3607. .bottomRightContentBody {
  3608. .el-col {
  3609. position: relative;
  3610. margin-bottom: 18px;
  3611. .circle {
  3612. display: inline-block;
  3613. width: 6px;
  3614. height: 6px;
  3615. background: #4677f6;
  3616. border-radius: 50%;
  3617. position: absolute;
  3618. top: 8px;
  3619. left: 0;
  3620. }
  3621. .word {
  3622. margin-left: 12px;
  3623. font-family: PingFang SC;
  3624. font-style: normal;
  3625. font-weight: normal;
  3626. font-size: 14px;
  3627. color: #4677f6;
  3628. cursor: pointer;
  3629. }
  3630. .word:hover {
  3631. text-decoration: underline;
  3632. }
  3633. .topPlace {
  3634. position: absolute;
  3635. top: 1px;
  3636. margin-left: 8px;
  3637. }
  3638. }
  3639. }
  3640. .bottomRightContentFooter {
  3641. height: 1px;
  3642. width: 100%;
  3643. margin-top: 14px;
  3644. }
  3645. }
  3646. }
  3647. }
  3648. </style>