index.vue 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094
  1. <template>
  2. <div class="scene-box">
  3. <!-- <div class="top-header">智能通风管理系统</div> -->
  4. <div class="select-node" :class="{ 'node-select-show': !treeShow, 'node-select-hide': treeShow }" @click="showTree('treeShow', true)">
  5. <SvgIcon class="is-expansion-icon put-away-icon" size="38" name="expansion" />
  6. <span class="title">{{ treeNodeTitle }}</span>
  7. </div>
  8. <div class="device-select" :class="{ 'device-select-show': treeShow, 'device-select-hide': !treeShow }">
  9. <SvgIcon class="is-expansion-icon expansion-icon" size="28" name="put-away" @click="showTree('treeShow', false)" />
  10. <div class="device-select-box">
  11. <a-tree
  12. :show-line="true"
  13. :tree-data="treeData"
  14. v-model:selectedKeys="selectedKeys"
  15. :autoExpandParent="true"
  16. v-model:expandedKeys="expandedKeys"
  17. @select="onSelect"
  18. >
  19. </a-tree>
  20. </div>
  21. </div>
  22. <!-- 瓦斯巡检弹窗信息 -->
  23. <div v-if="deviceType.startsWith('gasDay_normal') && activeKey == '1'" class="inspect-info-xj">
  24. <gasInspectDialog :gasSearch="gasSearch"></gasInspectDialog>
  25. </div>
  26. <div
  27. class="location-icon"
  28. :class="{ 'location-btn-show': !locationSettingShow, 'location-btn-hide': locationSettingShow }"
  29. @click="showTree('location', true)"
  30. >
  31. <SvgIcon size="18" name="put-away" />
  32. <span class="location-text">定位图标显示</span>
  33. </div>
  34. <div class="location-select" :class="{ 'location-select-show': locationSettingShow, 'location-select-hide': !locationSettingShow }">
  35. <div class="location-select-box">
  36. <div class="location-top-title" @click="showTree('location', false)">
  37. <SvgIcon class="is-expansion-icon location-expansion-icon" size="28" name="expansion" />
  38. <div class="title">定位图标显示</div>
  39. </div>
  40. <div class="location-container">
  41. <template v-for="location in locationList" :key="location.deviceType">
  42. <div class="location-item">
  43. <div class="item-title">{{ location.title }}&nbsp;:</div>
  44. <div>
  45. <a-radio-group v-model:value="location.Visible" :name="location.deviceType">
  46. <a-radio :value="1">是</a-radio>
  47. <a-radio :value="0">否</a-radio>
  48. </a-radio-group>
  49. </div>
  50. </div>
  51. </template>
  52. <div class="location-bottom-btn">
  53. <span @click="setLocation">提交</span>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. <div
  59. class="tabs-box bottom-tabs-box"
  60. :class="{ 'table-hide': !tableShow, 'table-show': tableShow }"
  61. style="height: 290px"
  62. @mousedown="setDivHeight($event, 230, scroll, 0)"
  63. id="monitorBox"
  64. >
  65. <div :style="`padding: 5px; height: ${scroll.y + 100}px`">
  66. <div class="to-small">
  67. <div class="to-home" @click="toHome"></div>
  68. <FullscreenOutlined v-if="!tableShow" class="table-show-icon" @click="toHide" />
  69. </div>
  70. <div class="device-button-group" v-if="deviceList.length > 0">
  71. <!-- 关联设备 -->
  72. <div
  73. class="device-button"
  74. :class="{ 'device-active': deviceActive == device.deviceType }"
  75. v-for="(device, index) in deviceList"
  76. :key="index"
  77. @click="monitorChange(index)"
  78. >{{ device.deviceName }}
  79. </div>
  80. <!-- 场景详情进入 -->
  81. <div v-if="haveSysDetailArr.find((item) => deviceType.startsWith(item))" class="enter-detail" @click.stop="goDetail()">
  82. <send-outlined />
  83. {{ treeNodeTitle }}详情
  84. </div>
  85. </div>
  86. <!-- 进入瓦斯人工巡检历史详情 -->
  87. <div v-if="deviceType == 'gasDay_normal'">
  88. <div class="device-button-group">
  89. <div v-if="deviceType.startsWith('gasDay_normal')" class="enter-detail" @click.stop="goDetail()">
  90. <send-outlined />
  91. 瓦斯人工巡检历史详情
  92. </div>
  93. </div>
  94. </div>
  95. <!-- 进入瓦斯日报历史详情 -->
  96. <div v-if="deviceType == 'gasDayReport'">
  97. <div class="device-button-group">
  98. <div v-if="deviceType.startsWith('gasDayReport')" class="enter-detail" @click.stop="goDetail()">
  99. <send-outlined />
  100. 瓦斯日报历史详情
  101. </div>
  102. </div>
  103. </div>
  104. <!-- 进入粉尘报表分析详情 -->
  105. <div v-if="deviceType == 'dustDayReport'">
  106. <div class="device-button-group">
  107. <div v-if="deviceType.startsWith('dustDayReport')" class="enter-detail" @click.stop="goDetail()">
  108. <send-outlined />
  109. 粉尘报表分析
  110. </div>
  111. </div>
  112. </div>
  113. <div v-if="deviceType == 'bundleDayReport'">
  114. <div class="device-button-group">
  115. <div v-if="deviceType.startsWith('bundleDayReport')" class="enter-detail" @click.stop="goDetail()">
  116. <send-outlined />
  117. 束管日报分析
  118. </div>
  119. </div>
  120. </div>
  121. <div v-if="deviceType == 'bundleSpyDayReport'">
  122. <div class="device-button-group">
  123. <div v-if="deviceType.startsWith('bundleSpyDayReport')" class="enter-detail" @click.stop="goDetail()">
  124. <send-outlined />
  125. 色谱仪报表分析
  126. </div>
  127. </div>
  128. </div>
  129. <div v-if="deviceType == 'gaspatrol'">
  130. <div class="device-button-group">
  131. <div class="enter-detail" @click="exportXls()">
  132. <send-outlined />
  133. 导出
  134. </div>
  135. </div>
  136. </div>
  137. <div class="table-hide-icon" @click="toHide">
  138. <FullscreenExitOutlined style="font-size: 18px" />
  139. </div>
  140. <!-- 是人员定位表单代码,由于放在tab中,表格对已知刷新,导致表单数据也在刷寻,造成输入一半的中文时会清空输入框的内容,导致的输入不上数据 -->
  141. <div v-if="(deviceType.startsWith('location') || deviceType.startsWith('vehicle')) && activeKey == '1'" class="location-form" style="position: absolute; z-index: 9999; top: 50px">
  142. <div class="location-form-item">
  143. <span class="location-form-label">{{ deviceType.startsWith('location') ? '人员名称:' : '车辆名称' }}</span>
  144. <Input style="width: 200px" v-model:value="locationForm.strname" />
  145. </div>
  146. <!-- <div class="location-form-item">
  147. <span class="location-form-label">所属部门:</span>
  148. <MTreeSelect
  149. style="width: 200px"
  150. v-model:value="locationForm.department"
  151. placeholder="请选择所属部门"
  152. api="/monitor/getDepartmentInfo"
  153. :virtual="false"
  154. :isGetPopupContainer="false"
  155. />
  156. </div> -->
  157. <div class="location-form-item">
  158. <span class="location-form-label">分站名称:</span>
  159. <Input style="width: 200px" v-model:value="locationForm.stationname" />
  160. </div>
  161. </div>
  162. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange" id="tabsBox">
  163. <a-tab-pane
  164. key="1"
  165. :tab="
  166. deviceType.startsWith('gasDay_normal')
  167. ? '当日巡检监测'
  168. : deviceType.startsWith('dustDayReport') ||
  169. deviceType.startsWith('dustDayReport') ||
  170. deviceType.startsWith('bundleDayReport') ||
  171. deviceType.startsWith('bundleSpyDayReport')
  172. ? '最新监测报表'
  173. : '实时监测'
  174. "
  175. >
  176. <template v-if="(deviceType.startsWith('fanlocal') || deviceType.startsWith('fanmain')) && activeKey == '1'">
  177. <GroupMonitorTable
  178. ref="MonitorDataTable"
  179. :dataSource="dataSource"
  180. :columnsType="`${deviceType}_monitor`"
  181. :scroll="scroll"
  182. :isAction="true"
  183. :isShowSelect="false"
  184. >
  185. <template #action="{ record }">
  186. <TableAction
  187. :actions="
  188. haveDetailArr.find((item) => deviceType.startsWith(item))
  189. ? [
  190. {
  191. label: '详情',
  192. onClick: goDetail.bind(null, record),
  193. },
  194. {
  195. label: '定位',
  196. onClick: goLocation.bind(null, record),
  197. },
  198. ]
  199. : [
  200. {
  201. label: '定位',
  202. onClick: goLocation.bind(null, record),
  203. },
  204. ]
  205. "
  206. />
  207. </template>
  208. </GroupMonitorTable>
  209. </template>
  210. <template v-else-if="deviceType == 'majorpath' && activeKey == '1'">
  211. <a-table :columns="majorColumns" :data-source="dataSource" bordered :scroll="{ y: scroll.y - 30 }" :pagination="false"></a-table>
  212. </template>
  213. <template v-else-if="deviceType.startsWith('safetymonitor') && activeKey == '1'">
  214. <MonitorTable
  215. ref="monitorTable"
  216. :columnsType="`${deviceType}_monitor`"
  217. :deviceType="deviceType"
  218. :dataSource="dataSource"
  219. design-scope="device_monitor"
  220. :isShowActionColumn="true"
  221. :isShowSelect="false"
  222. title="设备监测"
  223. :form-config="formConfig"
  224. :scroll="{ y: scroll.y - 110 }"
  225. >
  226. <template #action="{ record }">
  227. <TableAction
  228. :actions="
  229. haveDetailArr.find((item) => deviceType.startsWith(item))
  230. ? [
  231. {
  232. label: '详情',
  233. onClick: goDetail.bind(null, record),
  234. },
  235. {
  236. label: '定位',
  237. onClick: goLocation.bind(null, record),
  238. },
  239. ]
  240. : [
  241. {
  242. label: '定位',
  243. onClick: goLocation.bind(null, record),
  244. },
  245. ]
  246. "
  247. />
  248. </template>
  249. <template #filterCell="{ column, record }">
  250. <div v-if="!record.devicename && column.dataIndex === 'devicename'">-</div>
  251. <div v-if="!record.V && column.dataIndex === 'V'">-</div>
  252. <div v-if="!record.PointUnit && column.dataIndex === 'PointUnit'">-</div>
  253. <div v-if="!record.highRange && column.dataIndex === 'highRange'">-</div>
  254. <div v-if="!record.lowRange && column.dataIndex === 'lowRange'">-</div>
  255. <div v-if="!record.dataTypeName && column.dataIndex === 'dataTypeName'">-</div>
  256. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  257. record.netStatus == '0' ? '断开' : '连接'
  258. }}</a-tag>
  259. </template>
  260. </MonitorTable>
  261. </template>
  262. <template v-else-if="deviceType.startsWith('location') && activeKey == '1'">
  263. <MonitorTable
  264. ref="monitorTable"
  265. :columnsType="`${deviceType}_monitor`"
  266. :deviceType="deviceType"
  267. :dataSource="dataSource"
  268. design-scope="device_monitor"
  269. :isShowActionColumn="true"
  270. :isShowSelect="false"
  271. title="设备监测"
  272. :scroll="{ y: scroll.y - 110 }"
  273. style="margin-top: 60px"
  274. >
  275. <template v-if="!noLocationList.includes('location')" #action="{ record }">
  276. <TableAction
  277. :actions="[
  278. {
  279. label: '定位',
  280. onClick: goLocation.bind(null, record),
  281. },
  282. ]"
  283. />
  284. </template>
  285. </MonitorTable>
  286. </template>
  287. <template v-else-if="deviceType.startsWith('vehicle') && activeKey == '1'">
  288. <MonitorTable
  289. ref="monitorTable"
  290. :columnsType="`${deviceType}_monitor`"
  291. :deviceType="deviceType"
  292. :dataSource="dataSource"
  293. design-scope="device_monitor"
  294. :isShowActionColumn="true"
  295. :isShowSelect="false"
  296. title="设备监测"
  297. :scroll="{ y: scroll.y - 110 }"
  298. style="margin-top: 60px"
  299. >
  300. <template v-if="!noLocationList.includes('location')" #action="{ record }">
  301. <TableAction
  302. :actions="[
  303. {
  304. label: '定位',
  305. onClick: goLocation.bind(null, record),
  306. },
  307. ]"
  308. />
  309. </template>
  310. </MonitorTable>
  311. </template>
  312. <!-- <template v-else-if="deviceType.startsWith('gasmonitor') && activeKey == '1'">
  313. <MonitorTable
  314. ref="monitorTable"
  315. :columnsType="`${deviceType}_monitor`"
  316. :dataSource="dataSource"
  317. design-scope="device_monitor"
  318. :isShowActionColumn="true"
  319. :isShowSelect="false"
  320. title="设备监测"
  321. :scroll="{ y: scroll.y - 30 }"
  322. >
  323. <template #action="{ record }">
  324. <TableAction
  325. :actions="[
  326. {
  327. label: '故障诊断分析',
  328. onClick: goDetail.bind(null, record),
  329. },
  330. {
  331. label: '定位',
  332. onClick: goLocation.bind(null, record),
  333. },
  334. ]"
  335. />
  336. </template>
  337. <template #filterCell="{ column, record }">
  338. <template v-if="column.dataIndex === 'isLeakage'">
  339. {{ record.isLeakage === '1' ? '是' : '否' }}
  340. </template>
  341. <template v-if="column.dataIndex === 'leakagePoint' && record.pipFaultDiag && record.pipFaultDiag.isLeakage">
  342. {{ record.pipFaultDiag.ld_x }}
  343. </template>
  344. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : record.warnFlag == 1 ? '#FF5812' : 'gray'">
  345. {{ record.warnFlag == 0 ? '正常' : record.warnFlag == 1 ? '报警' : record.warnFlag == 2 ? '断开' : '未监测' }}
  346. </a-tag>
  347. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">
  348. {{ record.netStatus == '0' ? '断开' : '连接' }}
  349. </a-tag>
  350. </template>
  351. </MonitorTable>
  352. </template> -->
  353. <!-- 瓦斯人工巡检 -->
  354. <template v-else-if="deviceType.startsWith('gasDay_normal') && activeKey == '1'">
  355. <gaspatrolTable ref="gaspatrol" @getSearch="getSearch" @locate="goLocation"> </gaspatrolTable>
  356. </template>
  357. <!-- 瓦斯日报 -->
  358. <template v-else-if="deviceType.startsWith('gasDayReport') && activeKey == '1' && glob.sysOrgCode != 'sdmtjtbetmk'">
  359. <gasReport ref="gasreport" @locate="goLocation"> </gasReport>
  360. </template>
  361. <template v-else-if="deviceType.startsWith('gasDayReport') && activeKey == '1' && glob.sysOrgCode == 'sdmtjtbetmk'">
  362. <gasReportCount ref="gasreportcount" @locate="goLocation"> </gasReportCount>
  363. </template>
  364. <!-- 粉尘监测报表-->
  365. <template v-else-if="deviceType.startsWith('dustDayReport') && activeKey == '1'">
  366. <dustMonitorTable @locate="goLocation" :isShowAction="true"></dustMonitorTable>
  367. </template>
  368. <template v-else-if="deviceType.startsWith('bundleDayReport') && activeKey == '1'">
  369. <bundleMonitorTable @locate="goLocation" :isShowAction="true"></bundleMonitorTable>
  370. </template>
  371. <template v-else-if="deviceType.startsWith('bundleSpyDayReport') && activeKey == '1'">
  372. <bundleSpyMonitorTable @locate="goLocation" :isShowAction="true"></bundleSpyMonitorTable>
  373. </template>
  374. <template v-else-if="deviceType.startsWith('dusting') && activeKey == '1'">
  375. <DustingTable :dataSource="dataSource" :deviceType="deviceType" :scroll="scroll" @locate="goLocation" />
  376. </template>
  377. <!-- 设备分站 -->
  378. <template v-else-if="deviceType.startsWith('substation_normal') && activeKey == '1'">
  379. <stationTable ref="station" @locate="goLocation" @stationDetail="stationDetail"> </stationTable>
  380. </template>
  381. <template v-else>
  382. <!-- 工作面echarts图标 -->
  383. <BarAndLine
  384. v-if="activeKey == '1' && deviceType == 'surface_history'"
  385. class="echarts-line"
  386. xAxisPropType="time"
  387. :dataSource="surfaceEchartsData"
  388. height="300px"
  389. :chartsColumns="surfaceChartsColumns"
  390. :option="echatsOption"
  391. />
  392. <MonitorTable
  393. v-else-if="activeKey == '1'"
  394. ref="monitorTable"
  395. :columnsType="`${deviceType}_monitor`"
  396. :dataSource="dataSource"
  397. design-scope="device_monitor"
  398. :isShowActionColumn="true"
  399. :isShowSelect="false"
  400. title="设备监测"
  401. :scroll="{ y: scroll.y - 30 }"
  402. >
  403. <template #action="{ record }">
  404. <TableAction
  405. :actions="
  406. haveDetailArr.find((item) => deviceType.startsWith(item))
  407. ? [
  408. {
  409. label: '详情',
  410. onClick: goDetail.bind(null, record),
  411. },
  412. {
  413. label: '定位',
  414. onClick: goLocation.bind(null, record),
  415. },
  416. ]
  417. : [
  418. {
  419. label: '定位',
  420. onClick: goLocation.bind(null, record),
  421. },
  422. ]
  423. "
  424. />
  425. </template>
  426. <template #filterCell="{ column, record }">
  427. <template v-if="deviceType.startsWith('gate') || deviceType.startsWith('door')">
  428. <a-tag v-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == '0'" color="red"
  429. >正在运行</a-tag
  430. >
  431. <a-tag
  432. v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '0' && record.frontGateClose == 1"
  433. color="default"
  434. >关闭</a-tag
  435. >
  436. <a-tag
  437. v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '0'"
  438. color="#46C66F"
  439. >打开</a-tag
  440. >
  441. <a-tag
  442. v-else-if="column.dataIndex === 'frontGateOpen' && record.frontGateOpen == '1' && record.frontGateClose == '1'"
  443. color="#FF0000"
  444. >点位异常</a-tag
  445. >
  446. <a-tag v-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '0'" color="red"
  447. >正在运行</a-tag
  448. >
  449. <a-tag
  450. v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '0' && record.rearGateClose == '1'"
  451. color="default"
  452. >关闭</a-tag
  453. >
  454. <a-tag
  455. v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '0'"
  456. color="#46C66F"
  457. >打开</a-tag
  458. >
  459. <a-tag
  460. v-else-if="column.dataIndex === 'rearGateOpen' && record.rearGateOpen == '1' && record.rearGateClose == '1'"
  461. color="#FF0000"
  462. >点位异常</a-tag
  463. >
  464. <a-tag v-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == '0'" color="red"
  465. >正在运行</a-tag
  466. >
  467. <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '0' && record.midGateClose == 1" color="default"
  468. >关闭</a-tag
  469. >
  470. <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '0'" color="#46C66F"
  471. >打开</a-tag
  472. >
  473. <a-tag v-else-if="column.dataIndex === 'midGateOpen' && record.midGateOpen == '1' && record.midGateClose == '1'" color="#FF0000"
  474. >点位异常</a-tag
  475. >
  476. <template v-if="column.dataIndex === 'ndoortype'">
  477. <span>{{ render.renderDictText(record.ndoortype, 'ndoortype') }}</span>
  478. </template>
  479. <template v-if="column.dataIndex === 'doorUse'">
  480. <span>{{ render.renderDictText(record.doorUse, 'doorUse') }}</span>
  481. </template>
  482. </template>
  483. <template v-else-if="deviceType.startsWith('windrect')">
  484. <a-tag v-if="column.dataIndex === 'sign'" :color="record.sign == 0 ? '#95CF65' : record.sign == 1 ? '#4590EA' : '#9876AA'">
  485. {{ record.sign == 0 ? '高位' : record.sign == 1 ? '中位' : '低位' }}</a-tag
  486. >
  487. <template v-if="record && column && column.dataIndex === 'isRun' && record.isRun">
  488. <a-tag v-if="record.isRun == -2 || record.isRun == -1" :color="record.isRun == -2 ? '#95CF65' : '#ED5700'">{{
  489. record.isRun == -2 ? '空闲' : '等待'
  490. }}</a-tag>
  491. <a-tag v-else-if="record.isRun == 100" color="#4693FF">完成</a-tag>
  492. <Progress v-else :percent="Number(record.isRun)" size="small" status="active" />
  493. </template>
  494. </template>
  495. <template v-else-if="deviceType.startsWith('safetymonitor')">
  496. <div v-if="!record.devicename && column.dataIndex === 'devicename'">-</div>
  497. <div v-if="!record.V && column.dataIndex === 'V'">-</div>
  498. <div v-if="!record.PointUnit && column.dataIndex === 'PointUnit'">-</div>
  499. <div v-if="!record.highRange && column.dataIndex === 'highRange'">-</div>
  500. <div v-if="!record.lowRange && column.dataIndex === 'lowRange'">-</div>
  501. <div v-if="!record.dataTypeName && column.dataIndex === 'dataTypeName'">-</div>
  502. </template>
  503. <template v-else-if="deviceType.startsWith('atomizing')">
  504. <a-tag v-if="column.dataIndex === 'stateConn' && record.stateConn == '1'" color="green">连接</a-tag>
  505. <a-tag v-if="column.dataIndex === 'stateConn' && record.stateConn == '0'" color="red">断开</a-tag>
  506. </template>
  507. <template v-else-if="deviceType.startsWith('gaspatrol')">
  508. <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('正常')" color="green">{{
  509. record.deviceConnect_str
  510. }}</a-tag>
  511. <a-tag v-if="column.dataIndex === 'deviceConnect_str' && record.deviceConnect_str.endsWith('断开')" color="red">{{
  512. record.deviceConnect_str
  513. }}</a-tag>
  514. </template>
  515. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : record.warnFlag == 1 ? '#FF5812' : 'gray'">
  516. {{ record.warnFlag == 0 ? '正常' : record.warnFlag == 1 ? '报警' : record.warnFlag == 2 ? '断开' : '未监测' }}</a-tag
  517. >
  518. <template v-else-if="column.dataIndex === 'warnLevel'">
  519. <a-tag v-if="record.warnLevel == '101'" color="green">低风险</a-tag>
  520. <a-tag v-else-if="record.warnLevel == '102'" color="#FF5812">一般风险</a-tag>
  521. <a-tag v-else-if="record.warnLevel == '103'" color="#FF5812">较大风险</a-tag>
  522. <a-tag v-else-if="record.warnLevel == '104'" color="#FF5812">重大风险</a-tag>
  523. <a-tag v-else-if="record.warnLevel == '201'" color="#FF0000">报警</a-tag>
  524. <a-tag v-else-if="record.warnLevel == '10000'" color="#FF5812">数据超限</a-tag>
  525. <a-tag v-else-if="record.warnLevel == '1001'" color="default">网络中断</a-tag>
  526. <a-tag v-else color="green">正常</a-tag>
  527. </template>
  528. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
  529. record.netStatus == '0' ? '断开' : '连接'
  530. }}</a-tag>
  531. </template>
  532. </MonitorTable>
  533. </template>
  534. </a-tab-pane>
  535. <a-tab-pane key="2" tab="历史数据" v-if="!noHistoryArr().find((item) => deviceType.startsWith(item))">
  536. <div class="tab-item" v-if="activeKey == '2'">
  537. <template v-if="deviceType.startsWith('firemon_normal')">
  538. <HistoryBall :dataSource="dataSource"></HistoryBall>
  539. </template>
  540. <template v-else-if="deviceType.startsWith('fanmain')">
  541. <HistoryTableNew class="w-100% h-100%" :device-code="`${deviceType}`" :scroll="scroll" dict-code="fan_dict" />
  542. </template>
  543. <template v-else-if="deviceType.startsWith('fanlocal')">
  544. <HistoryTableNew class="w-100% hM-100%" :device-code="`${deviceType}`" :scroll="scroll" dict-code="fanlocal_dict" />
  545. </template>
  546. <template v-else-if="deviceType.startsWith('majorpath')">
  547. <HistoryTableMajorPath class="w-100% h-100%" :sysId="`${systemID}`" :scroll="scroll" columnsType="sys_majorpath" type="table" />
  548. </template>
  549. <template v-else>
  550. <HistoryTable
  551. ref="historyTable"
  552. :sysId="systemID"
  553. :columns-type="`${deviceType}`"
  554. :device-type="deviceType"
  555. designScope="device-history"
  556. :scroll="scroll"
  557. />
  558. </template>
  559. </div>
  560. </a-tab-pane>
  561. <!-- <a-tab-pane key="5" tab="历史曲线" v-if="deviceType.startsWith('majorpath')">
  562. <div class="tab-item">
  563. <HistoryTableMajorPath class="w-100% h-100%" :sysId="`${systemID}`" :scroll="scroll" columnsType="sys_majorpath" type="chart" />
  564. </div>
  565. </a-tab-pane> -->
  566. <a-tab-pane key="3" tab="报警历史" v-if="!noWarningArr.find((item) => deviceType.startsWith(item))">
  567. <div class="tab-item">
  568. <AlarmHistoryTable
  569. ref="alarmHistoryTable"
  570. v-if="activeKey == '3'"
  571. :sysId="systemID"
  572. columns-type="alarm"
  573. :device-type="deviceType"
  574. :device-list-api="getDeviceList.bind(null, { devicekind: deviceType, sysId: systemID, pageSize: 10000 })"
  575. :scroll="scroll"
  576. designScope="alarm-history"
  577. />
  578. </div>
  579. </a-tab-pane>
  580. <a-tab-pane key="4" tab="操作历史" v-if="haveHandlerArr.find((item) => deviceType.startsWith(item))">
  581. <div class="tab-item">
  582. <HandlerHistoryTable
  583. ref="handlerHistoryTable"
  584. v-if="activeKey == '4'"
  585. :sysId="systemID"
  586. columns-type="operator_history"
  587. :device-type="deviceType"
  588. :device-list-api="getDeviceList.bind(null, { devicekind: deviceType, sysId: systemID })"
  589. :scroll="scroll"
  590. designScope="operator-history"
  591. />
  592. </div>
  593. </a-tab-pane>
  594. </a-tabs>
  595. </div>
  596. </div>
  597. <mainPath
  598. v-if="deviceType == 'majorpath'"
  599. :dataSource="majorPathEchartsData"
  600. style="width: 300px; height: 300px; position: absolute; left: 250px; top: 40px"
  601. />
  602. <component v-if="modalVisible" :is="currentModal" v-model:visible="modalVisible" :dataSource="dataSource" :activeID="activeID" />
  603. </div>
  604. </template>
  605. <script setup lang="ts">
  606. import { ref, onMounted, onUnmounted, ComponentOptions, shallowRef, reactive, defineProps, watch } from 'vue';
  607. import { SendOutlined, FullscreenExitOutlined, FullscreenOutlined } from '@ant-design/icons-vue';
  608. import { list, getDeviceList, getDeviceTypeList, devPosition, getDepartmentInfo, getExportUrl } from './device.api';
  609. import AlarmHistoryTable from '../../../comment/AlarmHistoryTable.vue';
  610. import HistoryTable from '../../../comment/HistoryTable.vue';
  611. import HistoryTableNew from '/@/views/vent/comment/history/HistoryTable.vue';
  612. import HandlerHistoryTable from '../../../comment/HandlerHistoryTable.vue';
  613. import MonitorTable from '../../../comment/MonitorTable.vue';
  614. import GroupMonitorTable from '../../../comment/GroupMonitorTable.vue';
  615. import stationTable from '../../../comment/stationTable.vue';
  616. import gaspatrolTable from '../../../comment/gaspatrolTable.vue';
  617. import gasReport from '../../../comment/gasReport.vue';
  618. import gasReportCount from '../../../comment/gasReportCount.vue';
  619. import dustMonitorTable from '../../../comment/dustMonitorTable.vue';
  620. import bundleMonitorTable from '../../../comment/bundleMonitorTable.vue';
  621. import gasInspectDialog from '../../../comment/gasInspectDialog.vue';
  622. import DustingTable from '../../../comment/DustingTable.vue';
  623. import bundleSpyMonitorTable from '../../../comment/bundleSpyMonitorTable.vue';
  624. import HistoryTableMajorPath from './modal/HistoryTableMajorPath.vue';
  625. import HistoryBall from './modal/history-ball.vue';
  626. import { TreeProps, message, Progress, Input, Select } from 'ant-design-vue';
  627. import { TableAction } from '/@/components/Table';
  628. import { SvgIcon } from '/@/components/Icon';
  629. import { getActions } from '/@/qiankun/state';
  630. import { useRouter } from 'vue-router';
  631. import { setDivHeight } from '/@/utils/event';
  632. import { render } from '/@/utils/common/renderUtils';
  633. import {
  634. majorColumns,
  635. haveSysDetailArr,
  636. haveDetailArr,
  637. haveHandlerArr,
  638. noWarningArr,
  639. surfaceChartsColumns,
  640. noHistoryArr,
  641. getMonitorComponent,
  642. vehicleFormConfig,
  643. noLocationArr,
  644. } from './device.data';
  645. import mainPath from './modal/mainPath.vue';
  646. import { formConfig } from '../../../safetyMonitor/safety.data';
  647. import { getDictItemsByCode } from '/@/utils/dict';
  648. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  649. import MTreeSelect from '/@/components/Form/src/jeecg/components/MTreeSelect.vue';
  650. // import ApiSelect from '/@/components/Form/src/components/ApiSelect.vue';
  651. import { nextTick } from 'vue';
  652. import { useMethods } from '/@/hooks/system/useMethods';
  653. import { useGo } from '/@/hooks/web/usePage';
  654. import { useGlobSetting } from '/@/hooks/setting';
  655. type DeviceType = { deviceType: string; deviceName: string; datalist: any[] };
  656. const glob = useGlobSetting();
  657. // import { BorderBox8 as DvBorderBox8 } from '@kjgl77/datav-vue3';
  658. const { FiberModal, BundleModal, DustModal, BallvalveModal, AtomizingModal, GaspatrolModal, WisdomBallModal } = getMonitorComponent();
  659. const props = defineProps({
  660. pageData: {
  661. type: Object,
  662. default: () => {},
  663. },
  664. });
  665. const { handleExportXls } = useMethods();
  666. const go = useGo();
  667. const echatsOption = {
  668. grid: {
  669. top: '35',
  670. left: '30',
  671. right: '45',
  672. bottom: '25',
  673. containLabel: true,
  674. },
  675. toolbox: {
  676. feature: {},
  677. },
  678. };
  679. const router = useRouter();
  680. const actions = getActions();
  681. const locationForm = reactive({
  682. strname: '',
  683. department: '',
  684. stationname: '',
  685. });
  686. const noLocationList = noLocationArr();
  687. const monitorTable = ref();
  688. const historyTable = ref();
  689. const alarmHistoryTable = ref();
  690. const handlerHistoryTable = ref();
  691. // const routerParam = ref('home') // 默认进来时首页
  692. const isRefresh = ref(true);
  693. // 模态框
  694. const currentModal = shallowRef<Nullable<ComponentOptions>>(null); //模态框
  695. const modalVisible = ref<Boolean>(false); // 模态框是否可见
  696. // const drawerHeight = ref(240) // 监测框最小高度
  697. const treeShow = ref(true); //是否显示树形菜单
  698. const tableShow = ref(true); //是否显示树形菜单
  699. const locationSettingShow = ref(false); //是否显示树形菜单
  700. const treeNodeTitle = ref(''); // 选中的树形标题
  701. const locationList = ref([]); //巷道定位图标显示列表
  702. const deviceList = ref<DeviceType[]>([]); //关联设备列表
  703. const deviceActive = ref('');
  704. const activeKey = ref('1'); // tab key
  705. const dataSource = shallowRef([]); // 实时监测数据
  706. const majorPathEchartsData = ref({}); // 关键路线echarts数据
  707. const surfaceEchartsData = ref<any[]>(); // 工作面历史记录,echarts数据
  708. const activeID = ref(''); // 打开详情modal时监测的设备id
  709. const deviceType = ref(''); // 监测设备类型
  710. const systemType = ref('');
  711. const systemID = ref(''); // 系统监测时,系统id
  712. const selectedKeys = ref<string[]>([]);
  713. const expandedKeys = ref<string[]>([]);
  714. const scroll = reactive({
  715. y: 180,
  716. });
  717. const treeData = ref<TreeProps['treeData']>([]);
  718. let departmentInfo: Null | Object = null;
  719. let startMonitorTimer = 0;
  720. let gasSearch = reactive({});
  721. let gaspatrol = ref(null);
  722. let gasreport = ref(null);
  723. let gasreportcount = ref(null);
  724. let station = ref(null);
  725. //树形菜单选择事件
  726. const onSelect: TreeProps['onSelect'] = (keys, e) => {
  727. deviceType.value = '';
  728. systemID.value = '';
  729. deviceList.value = [];
  730. const title = e.node.title; // 在
  731. if (e.node.parent && e.node.parent.node.type.toString().startsWith('sys')) {
  732. systemType.value = e.node.parent.node.type;
  733. if (deviceType.value != e.node.parent.node.type) deviceType.value = e.node.parent.node.type;
  734. systemID.value = e.node.type;
  735. // 传递工作面id信息,用于定位
  736. go(`/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=${deviceType.value}&deviceid=${systemID.value}`);
  737. } else {
  738. systemType.value = e.node.type;
  739. if (deviceType.value != e.node.type) deviceType.value = e.node.type;
  740. go(`/micro-vent-3dModal/dashboard/analysis?type=tunMonitor&deviceType=${deviceType.value}&deviceid=`);
  741. }
  742. clearTimeout(timer);
  743. timer = undefined;
  744. if (startMonitorTimer) {
  745. clearTimeout(startMonitorTimer);
  746. }
  747. dataSource.value = [];
  748. monitorTable.value.resetPagination();
  749. if (!startMonitorTimer) {
  750. startMonitorTimer = setTimeout(() => {
  751. expandedKeys.value = keys;
  752. selectedKeys.value = keys;
  753. treeNodeTitle.value = e.node.title;
  754. if (e.node.children?.length < 1 && timer) {
  755. getMonitor(true);
  756. }
  757. }, 1000);
  758. }
  759. // activeKey.value = '1';
  760. };
  761. function tabChange(activeKeyVal) {
  762. activeKey.value = activeKeyVal;
  763. }
  764. function showTree(flag, value) {
  765. if (flag == 'treeShow') treeShow.value = value;
  766. if (flag == 'location') locationSettingShow.value = value;
  767. }
  768. async function getDeviceType(sysType?) {
  769. if (treeData.value?.length > 0) return;
  770. const result = await getDeviceTypeList({});
  771. if (result.length > 0) {
  772. const dataSource = <TreeProps['treeData']>[];
  773. let key = '0';
  774. const getData = (resultList, dataSourceList, keyVal) => {
  775. resultList.forEach((item, index) => {
  776. if (item.deviceType != 'sys' && item.children && item.children.length > 0) {
  777. const children = getData(item.children, [], `${keyVal}-${index}`);
  778. // 判断关键阻力路线
  779. if (item.itemValue.startsWith(sysType) && children[0]) {
  780. systemID.value = item.children[0]['itemValue'];
  781. }
  782. dataSourceList.push({
  783. children: children,
  784. title: item.itemText,
  785. key: `${keyVal}-${index}`,
  786. type: item.itemValue,
  787. parentKey: `${keyVal}`,
  788. });
  789. } else {
  790. dataSourceList.push({
  791. children: [],
  792. title: item.itemText,
  793. key: `${keyVal}-${index}`,
  794. type: item.itemValue,
  795. parentKey: `${keyVal}`,
  796. });
  797. }
  798. });
  799. return dataSourceList;
  800. };
  801. treeData.value = getData(result, dataSource, key);
  802. }
  803. }
  804. // https获取监测数据
  805. let timer: null | NodeJS.Timeout = undefined;
  806. function getMonitor(flag?) {
  807. if (deviceType.value) {
  808. if (timer) timer = null;
  809. if (Object.prototype.toString.call(timer) === '[object Null]') {
  810. timer = setTimeout(
  811. async () => {
  812. if (deviceType.value.startsWith('gasDay_normal') && gaspatrol.value) {
  813. gaspatrol.value.queryNowGasInsInfoList(); //人工瓦斯巡检
  814. } else if (deviceType.value.startsWith('gasDayReport')) {
  815. if (glob.sysOrgCode == 'sdmtjtbetmk') {
  816. gasreportcount.value.getSearchReport();
  817. } else {
  818. gasreport.value.getSearchReport(); //瓦斯日报
  819. }
  820. } else if (deviceType.value.startsWith('substation') && station.value) {
  821. //分站
  822. station.value.getStationList();
  823. } else {
  824. await getDataSource();
  825. }
  826. if (timer) {
  827. getMonitor();
  828. }
  829. },
  830. flag ? 0 : 1000
  831. );
  832. }
  833. }
  834. }
  835. async function getDataSource() {
  836. if (deviceType.value && deviceType.value.startsWith('sys') && systemID.value) {
  837. const res = await list({ devicetype: 'sys', systemID: systemID.value });
  838. const result = res.msgTxt;
  839. const deviceArr = <DeviceType[]>[];
  840. result.forEach((item) => {
  841. const data = item['datalist'].filter((data: any) => {
  842. const readData = data.readData;
  843. return Object.assign(data, readData);
  844. });
  845. if (item.type != 'sys') {
  846. if (item.type === 'majorpath') {
  847. deviceArr.unshift({ deviceType: item.type, deviceName: item['typeName'], datalist: item['datalist'][0]['paths'] });
  848. majorPathEchartsData.value = item['datalist'][0];
  849. } else if (item.type.startsWith('surface_history')) {
  850. surfaceEchartsData.value = item['datalist'][0];
  851. deviceArr.unshift({
  852. deviceType: item.type,
  853. deviceName: item['typeName'] ? item['typeName'] : item['datalist'][0]['typeName'],
  854. datalist: data,
  855. });
  856. } else {
  857. deviceArr.unshift({
  858. deviceType: item.type,
  859. deviceName: item['typeName'] ? item['typeName'] : item['datalist'][0]['typeName'],
  860. datalist: data,
  861. });
  862. }
  863. }
  864. });
  865. deviceList.value = deviceArr;
  866. if (deviceArr.length > 0) {
  867. // if (deviceArr[1]) {
  868. // deviceActive.value = deviceArr[1].deviceType
  869. // monitorChange(1)
  870. // } else {
  871. // deviceActive.value = deviceArr[0].deviceType
  872. // monitorChange(0)
  873. // }
  874. deviceActive.value = deviceArr[0].deviceType;
  875. monitorChange(0);
  876. }
  877. } else {
  878. let res = null;
  879. if (systemID.value) {
  880. res = await list({ devicetype: 'sys', types: deviceType.value, systemID: systemID.value });
  881. if (res && res.msgTxt) {
  882. const result = res.msgTxt;
  883. result.forEach((item) => {
  884. const data = item['datalist'].filter((data: any) => {
  885. const readData = data.readData;
  886. return Object.assign(data, readData);
  887. });
  888. if (item.type != 'sys') {
  889. if (item.type.startsWith('majorpath') && item.type == deviceType.value) {
  890. dataSource.value = item['datalist'][0]['paths'];
  891. majorPathEchartsData.value = item['datalist'][0];
  892. return;
  893. } else if (item.type == deviceType.value) {
  894. if (item.type == 'surface_history') {
  895. // 工作面图标数据
  896. surfaceEchartsData.value = item['datalist'][0];
  897. } else {
  898. dataSource.value = data;
  899. console.log('关联设备数据--------------->', data);
  900. }
  901. return;
  902. }
  903. }
  904. });
  905. }
  906. } else {
  907. let resultData, searchForm;
  908. if (monitorTable.value) {
  909. const formData = monitorTable.value.getForm();
  910. searchForm = formData.getFieldsValue();
  911. }
  912. if (monitorTable.value) {
  913. if (deviceType.value.startsWith('safetymonitor')) {
  914. resultData = await list({ devicetype: deviceType.value, pagetype: 'normal', filterParams: { ...searchForm } });
  915. } else if (deviceType.value.startsWith('location')) {
  916. if (!departmentInfo) {
  917. departmentInfo = await getDepartmentInfo({});
  918. }
  919. let department = null;
  920. if (departmentInfo && locationForm && locationForm['department']) {
  921. for (const key in departmentInfo) {
  922. const item = departmentInfo[key];
  923. if (item['id'] === locationForm['department']) {
  924. department = item;
  925. break;
  926. }
  927. }
  928. }
  929. resultData = await list({
  930. devicetype: deviceType.value,
  931. pagetype: 'normal',
  932. filterParams: {
  933. strinstallpos: locationForm['stationname'] ? locationForm['stationname'] : '',
  934. userName: locationForm['strname'] ? locationForm['strname'] : '',
  935. userJson: department && department['name'] ? department['name'] : '',
  936. },
  937. });
  938. } else if (deviceType.value.startsWith('vehicle')) {
  939. resultData = await list({
  940. devicetype: deviceType.value,
  941. pagetype: 'normal',
  942. filterParams: {
  943. strinstallpos: locationForm['stationname'] ? locationForm['stationname'] : '',
  944. vehicleName: locationForm['strname'] ? locationForm['strname'] : '',
  945. },
  946. });
  947. } else {
  948. resultData = await list({ devicetype: deviceType.value, pagetype: 'normal' });
  949. }
  950. } else {
  951. // 非安全监控
  952. resultData = await list({ devicetype: deviceType.value, pagetype: 'normal' });
  953. }
  954. if (resultData && resultData.msgTxt) {
  955. const result = resultData.msgTxt[0];
  956. if (result) {
  957. const data = result['datalist'].filter((data: any) => {
  958. const readData = data.readData;
  959. return Object.assign(data, readData);
  960. });
  961. if (deviceType.value.startsWith('safetymonitor')) {
  962. const resultData = <any[]>[];
  963. // 如果是安全监控的数据时需要过滤常见设备数据,根据设定的常用安全监控字典去匹配
  964. const dictCodes = getDictItemsByCode('safetynormal');
  965. if (searchForm && !searchForm['dataTypeName'] && dictCodes && dictCodes.length) {
  966. for (let i = 0; i < dictCodes.length; i++) {
  967. const dict = dictCodes[i];
  968. data.forEach((item) => {
  969. if (dict['value'] == item['dataTypeName']) {
  970. resultData.push(item);
  971. }
  972. });
  973. }
  974. dataSource.value = resultData;
  975. } else {
  976. dataSource.value = data;
  977. }
  978. } else {
  979. let tableData: any[] = [];
  980. let noNetData: any[] = [];
  981. data.filter((el) => {
  982. if (el.netStatus == 1) {
  983. tableData.push(el);
  984. } else {
  985. noNetData.push(el);
  986. }
  987. });
  988. dataSource.value = [...tableData, ...noNetData];
  989. }
  990. } else {
  991. dataSource.value = [];
  992. }
  993. } else {
  994. dataSource.value = [];
  995. }
  996. }
  997. }
  998. }
  999. //设备分站详情跳转
  1000. function stationDetail() {
  1001. const newPage = router.resolve({ path: '/safety/list/detail/home' });
  1002. window.open(newPage.href, '_blank');
  1003. }
  1004. function goLocation(record) {
  1005. // debugger;
  1006. if (record['deviceType'] == 'person_bd' || record['deviceType'] == 'car_bd') {
  1007. actions.setGlobalState({ locationId: record.devNum, locationObj: null, pageObj: null, type: record['deviceType'].split('_')[0] });
  1008. } else if (deviceType.value == 'bundleSpyDayReport' || deviceType.value == 'dustDayReport' || deviceType.value == 'bundleDayReport') {
  1009. actions.setGlobalState({ locationName: record.jcdd, locationObj: null, pageObj: null, type: record['deviceType'] });
  1010. } else if (deviceType.value.startsWith('gasDay')) {
  1011. actions.setGlobalState({ locationName: record.strInstallPos, locationObj: null, pageObj: null, type: record['deviceType'] });
  1012. } else if (deviceType.value == 'gasDayReport') {
  1013. actions.setGlobalState({ locationName: record.jcdd, locationObj: null, pageObj: null, type: record['deviceType'] });
  1014. } else if (deviceType.value.startsWith('substation')) {
  1015. actions.setGlobalState({ locationId: record.id, locationObj: null, pageObj: null, type: record['deviceType'] });
  1016. } else {
  1017. if (deviceType.value.startsWith('location')) {
  1018. actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null, type: 'person' });
  1019. } else if (deviceType.value.startsWith('vehicle')) {
  1020. actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null, type: 'car' });
  1021. } else {
  1022. actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null });
  1023. }
  1024. }
  1025. }
  1026. function getSearch(param) {
  1027. gasSearch = param;
  1028. console.log(gasSearch);
  1029. }
  1030. // 详情跳转
  1031. function goDetail(record?) {
  1032. if (record) {
  1033. activeID.value = record.deviceID;
  1034. if (deviceType.value.startsWith('fiber')) {
  1035. currentModal.value = FiberModal;
  1036. modalVisible.value = true;
  1037. } else if (deviceType.value.startsWith('dusting')) {
  1038. currentModal.value = DustModal;
  1039. modalVisible.value = true;
  1040. } else if (deviceType.value.startsWith('bundletube')) {
  1041. currentModal.value = BundleModal;
  1042. modalVisible.value = true;
  1043. } else if (deviceType.value.startsWith('firemon_normal')) {
  1044. // currentModal.value = BundleModal;
  1045. currentModal.value = WisdomBallModal;
  1046. modalVisible.value = true;
  1047. } else if (deviceType.value.startsWith('ballvalve')) {
  1048. currentModal.value = BallvalveModal;
  1049. modalVisible.value = true;
  1050. } else if (deviceType.value.startsWith('atomizing')) {
  1051. currentModal.value = AtomizingModal;
  1052. modalVisible.value = true;
  1053. } else if (deviceType.value.startsWith('gaspatrol')) {
  1054. currentModal.value = GaspatrolModal;
  1055. modalVisible.value = true;
  1056. } else if (deviceType.value.startsWith('door')) {
  1057. const newPage = router.resolve({ path: '/monitorChannel/monitor-firedoor', query: { id: activeID.value, deviceType: deviceType.value } });
  1058. window.open(newPage.href, '_blank');
  1059. } else if (deviceType.value.indexOf('gate') != -1) {
  1060. const newPage = router.resolve({ path: '/monitorChannel/monitor-gate', query: { id: activeID.value, deviceType: deviceType.value } });
  1061. window.open(newPage.href, '_blank');
  1062. } else if (deviceType.value.indexOf('window') != -1) {
  1063. const newPage = router.resolve({ path: '/monitorChannel/monitor-window', query: { id: activeID.value, deviceType: deviceType.value } });
  1064. window.open(newPage.href, '_blank');
  1065. } else if (deviceType.value.indexOf('windrect') != -1) {
  1066. const newPage = router.resolve({ path: '/monitorChannel/monitor-windrect', query: { id: activeID.value, deviceType: deviceType.value } });
  1067. window.open(newPage.href, '_blank');
  1068. } else if (deviceType.value.indexOf('fanmain') != -1) {
  1069. const newPage = router.resolve({ path: '/monitorChannel/monitor-fanmain', query: { id: activeID.value, deviceType: deviceType.value } });
  1070. window.open(newPage.href, '_blank');
  1071. } else if (deviceType.value.indexOf('fanlocal') != -1 && glob.sysOrgCode !== 'ymdnymdn') {
  1072. const newPage = router.resolve({ path: '/monitorChannel/monitor-fanlocal', query: { id: activeID.value, deviceType: deviceType.value } });
  1073. window.open(newPage.href, '_blank');
  1074. } else if (deviceType.value.indexOf('fanlocal') != -1 && glob.sysOrgCode == 'ymdnymdn') {
  1075. const newPage = router.resolve({ path: '/monitorChannel/monitor-fanlocal1', query: { id: activeID.value, deviceType: record.deviceType } });
  1076. window.open(newPage.href, '_blank');
  1077. } else if (deviceType.value.indexOf('pulping') != -1) {
  1078. const newPage = router.resolve({ path: '/grout-home', query: { id: activeID.value } });
  1079. window.open(newPage.href, '_blank');
  1080. } else if (deviceType.value.indexOf('pressurefan') != -1) {
  1081. const newPage = router.resolve({ path: '/nitrogen/home', query: { id: activeID.value } });
  1082. window.open(newPage.href, '_blank');
  1083. } else if (deviceType.value.indexOf('chamber') != -1) {
  1084. const newPage = router.resolve({ path: '/chamber-home', query: { id: activeID.value } });
  1085. window.open(newPage.href, '_blank');
  1086. } else if (deviceType.value.indexOf('safetymonitor') != -1) {
  1087. const newPage = router.resolve({ path: '/monitorChannel/device-monitor/safetymonitor', query: { id: activeID.value } });
  1088. window.open(newPage.href, '_blank');
  1089. } else if (deviceType.value.indexOf('pump') != -1) {
  1090. const newPage = router.resolve({ path: '/monitorChannel/gasPump-home', query: { id: activeID.value } });
  1091. window.open(newPage.href, '_blank');
  1092. } else if (systemType.value.indexOf('nitrogen') != -1) {
  1093. const newPage = router.resolve({ path: '/nitrogen-home', query: { id: systemID.value } });
  1094. window.open(newPage.href, '_blank');
  1095. } else if (deviceType.value.indexOf('forcFan') != -1) {
  1096. const newPage = router.resolve({ path: '/forcFan/home', query: { id: activeID.value } });
  1097. window.open(newPage.href, '_blank');
  1098. } else if (deviceType.value.indexOf('pulping') != -1) {
  1099. const newPage = router.resolve({ path: '/grout-home', query: { id: activeID.value } });
  1100. window.open(newPage.href, '_blank');
  1101. } else if (deviceType.value.indexOf('gasmonitor') != -1) {
  1102. const newPage = router.resolve({ path: '/gas/warn/home' });
  1103. window.open(newPage.href, '_blank');
  1104. } else {
  1105. message.info('待开发。。。');
  1106. }
  1107. } else {
  1108. if (systemType.value.indexOf('sys_dongshi') != -1) {
  1109. const newPage = router.resolve({ path: '/chamber-home', query: { id: systemID.value } });
  1110. window.open(newPage.href, '_blank');
  1111. } else if (systemType.value.indexOf('sys_obfurage') != -1) {
  1112. const newPage = router.resolve({ path: '/monitorChannel/obfurage-home', query: { id: systemID.value } });
  1113. window.open(newPage.href, '_blank');
  1114. } else if (systemType.value.indexOf('sys_surface_caimei') != -1) {
  1115. const newPage = router.resolve({ path: '/monitorChannel/wokerFace-home', query: { id: systemID.value } });
  1116. window.open(newPage.href, '_blank');
  1117. } else if (systemType.value.indexOf('sys_surface_juejin') != -1) {
  1118. const newPage = router.resolve({ path: '/monitorChannel/tunFace-home', query: { id: systemID.value } });
  1119. window.open(newPage.href, '_blank');
  1120. } else if (systemType.value.indexOf('sys_maintunnel_leather') != -1) {
  1121. const newPage = router.resolve({ path: '/monitorChannel/beltTun-home', query: { id: systemID.value } });
  1122. window.open(newPage.href, '_blank');
  1123. } else if (systemType.value.indexOf('sys_surface_junya') != -1) {
  1124. const newPage = router.resolve({ path: '/monitorChannel/balancePress-home', query: { id: systemID.value } });
  1125. window.open(newPage.href, '_blank');
  1126. } else if (systemType.value.indexOf('sys_nitrogen') != -1) {
  1127. const newPage = router.resolve({ path: '/nitrogen-home', query: { id: systemID.value } });
  1128. window.open(newPage.href, '_blank');
  1129. } else if (deviceType.value.indexOf('forcFan') != -1) {
  1130. const newPage = router.resolve({ path: '/forcFan/home', query: { id: activeID.value } });
  1131. window.open(newPage.href, '_blank');
  1132. } else if (deviceType.value.indexOf('pulping') != -1) {
  1133. const newPage = router.resolve({ path: '/grout-home', query: { id: systemID.value } });
  1134. window.open(newPage.href, '_blank');
  1135. } else if (deviceType.value.indexOf('gasDay_normal') != -1) {
  1136. const newPage = router.resolve({ path: '/gas/gas-report-inspect/home' });
  1137. window.open(newPage.href, '_blank');
  1138. } else if (deviceType.value.indexOf('gasDayReport') != -1) {
  1139. const newPage = router.resolve({ path: '/gas/gasDayReport/home' });
  1140. window.open(newPage.href, '_blank');
  1141. } else if (deviceType.value.indexOf('dustDayReport') != -1) {
  1142. const newPage = router.resolve({ path: '/dustDayReport/home' });
  1143. window.open(newPage.href, '_blank');
  1144. } else if (deviceType.value.indexOf('bundleDayReport') != -1) {
  1145. const newPage = router.resolve({ path: '/bundleDayReport/home' });
  1146. window.open(newPage.href, '_blank');
  1147. } else if (deviceType.value.indexOf('bundleSpyDayReport') != -1) {
  1148. const newPage = router.resolve({ path: '/bundleSpyDayReport/home' });
  1149. window.open(newPage.href, '_blank');
  1150. } else {
  1151. message.info('待开发。。。');
  1152. }
  1153. }
  1154. }
  1155. function exportXls() {
  1156. handleExportXls('瓦斯巡检记录', getExportUrl, { devicetype: deviceType.value });
  1157. }
  1158. function toHome() {
  1159. deviceList.value = [];
  1160. if (timer) clearTimeout(timer);
  1161. timer = undefined;
  1162. deviceType.value = '';
  1163. go(glob.homePath);
  1164. }
  1165. function toHide() {
  1166. tableShow.value = !tableShow.value;
  1167. document.getElementById('monitorBox').addEventListener('animationend', () => {
  1168. if (!tableShow.value) {
  1169. document.getElementById('monitorBox').style.height = '0px';
  1170. } else {
  1171. document.getElementById('monitorBox').style.height = '290';
  1172. }
  1173. });
  1174. }
  1175. async function findTreeDataValue(obj) {
  1176. const findDeviceType = (data: any[], obj, flag = true) => {
  1177. return data.find((item: any) => {
  1178. if (item.children.length > 0) {
  1179. findDeviceType(item.children, obj);
  1180. }
  1181. // debugger;
  1182. if (obj.deviceType && obj.deviceType.startsWith('sys_')) {
  1183. // debugger;
  1184. if (item.type == obj.deviceid) {
  1185. deviceType.value = 'sys';
  1186. systemID.value = obj.deviceid;
  1187. selectedKeys.value = [item.key];
  1188. expandedKeys.value = [item.key];
  1189. treeNodeTitle.value = item.title;
  1190. }
  1191. } else {
  1192. if (!flag) {
  1193. if (obj.deviceType && item.type.startsWith(obj.deviceType)) {
  1194. deviceType.value = item.type;
  1195. selectedKeys.value = [item.key];
  1196. expandedKeys.value = [item.key];
  1197. treeNodeTitle.value = item.title;
  1198. return true;
  1199. }
  1200. return false;
  1201. } else {
  1202. if (obj.deviceType && item.type == obj.deviceType) {
  1203. deviceType.value = item.type;
  1204. selectedKeys.value = [item.key];
  1205. expandedKeys.value = [item.key];
  1206. treeNodeTitle.value = item.title;
  1207. return true;
  1208. }
  1209. return false;
  1210. }
  1211. }
  1212. return false;
  1213. });
  1214. };
  1215. const flag = findDeviceType(treeData.value, obj);
  1216. if (!flag) {
  1217. findDeviceType(treeData.value, obj, false);
  1218. }
  1219. // 无类型时
  1220. if (!treeNodeTitle.value && treeData.value && treeData.value[0] && treeData.value[0]['children']) {
  1221. const defaultData = treeData.value[0]['children'][0];
  1222. if (deviceType.value !== defaultData.type) deviceType.value = defaultData.type;
  1223. selectedKeys.value = [defaultData.key as string];
  1224. expandedKeys.value = [defaultData.key as string];
  1225. treeNodeTitle.value = defaultData.title;
  1226. }
  1227. if (timer === undefined) {
  1228. timer = null;
  1229. await getDataSource();
  1230. getMonitor(true);
  1231. }
  1232. }
  1233. function monitorChange(index) {
  1234. dataSource.value = [];
  1235. deviceActive.value = deviceList.value[index].deviceType;
  1236. if (deviceType.value != deviceActive.value) deviceType.value = deviceActive.value;
  1237. if (activeKey.value == '1' && monitorTable.value) {
  1238. monitorTable.value.setLoading(true);
  1239. dataSource.value = deviceList.value[index].datalist;
  1240. }
  1241. if (activeKey.value == '2' && historyTable.value) {
  1242. historyTable.value.setLoading(true);
  1243. }
  1244. if (activeKey.value == '3' && alarmHistoryTable.value) {
  1245. alarmHistoryTable.value.setLoading(true);
  1246. }
  1247. if (activeKey.value == '4' && handlerHistoryTable.value) {
  1248. handlerHistoryTable.value.setLoading(true);
  1249. }
  1250. }
  1251. /**
  1252. * 设置巷道设备定位图标的显示与隐藏
  1253. */
  1254. function setLocation() {
  1255. let locationStr = '';
  1256. locationList.value.forEach((item: any) => {
  1257. if (item.Visible) {
  1258. locationStr = locationStr ? locationStr + ',' + item.value : item.value;
  1259. }
  1260. });
  1261. actions.setGlobalState({ locationId: null, locationObj: null, pageObj: null, locationPlane: locationStr });
  1262. setTimeout(() => {
  1263. message.success('设置成功');
  1264. }, 600);
  1265. }
  1266. watch(
  1267. () => props.pageData,
  1268. async (pageObj) => {
  1269. isRefresh.value = false;
  1270. if (!treeData.value || treeData.value?.length < 1) {
  1271. await getDeviceType();
  1272. }
  1273. nextTick(() => {
  1274. isRefresh.value = true;
  1275. // if (pageObj && pageObj.pageType && pageObj.pageType.startsWith('sys_')) {
  1276. // findTreeDataValue({ deviceid: systemID.value });
  1277. // } else {
  1278. // findTreeDataValue({ deviceType: pageObj.pageType });
  1279. // }
  1280. findTreeDataValue(pageObj);
  1281. });
  1282. },
  1283. { immediate: true }
  1284. );
  1285. onMounted(async () => {
  1286. const pageObj = props.pageData;
  1287. if (!pageObj) return;
  1288. if (pageObj && pageObj.pageType) {
  1289. if (pageObj.pageType.startsWith('sys_')) {
  1290. await getDeviceType(pageObj.pageType);
  1291. findTreeDataValue({ deviceType: pageObj.pageType, deviceid: pageObj.deviceid });
  1292. } else {
  1293. await getDeviceType();
  1294. findTreeDataValue({ deviceType: pageObj.pageType });
  1295. }
  1296. } else {
  1297. await getDeviceType();
  1298. findTreeDataValue({ deviceid: pageObj.deviceid });
  1299. }
  1300. // 定位
  1301. const posShowData = pageObj.locationPlane;
  1302. if (posShowData) {
  1303. locationList.value = posShowData;
  1304. } else {
  1305. locationList.value = await devPosition({});
  1306. }
  1307. // safetyOption.value = await safetyDeviceList(null, { devicetype: 'safetymonitor', code: 'dataTypeName' })
  1308. });
  1309. onUnmounted(() => {
  1310. if (timer) {
  1311. clearTimeout(timer);
  1312. }
  1313. timer = undefined;
  1314. });
  1315. </script>
  1316. <style lang="less" scoped>
  1317. @import '/@/design/theme.less';
  1318. @import '/@/design/vent/modal.less';
  1319. @ventSpace: zxm;
  1320. @{theme-deepblue} {
  1321. .scene-box {
  1322. // --image-modal-top: url('/@/assets/images/themify/deepblue/vent/home/modal-top.png');
  1323. // --image-tree-icon-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-icon-bg.png');
  1324. // --image-tree-icon-hover-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-icon-hover-bg.png');
  1325. // --image-tree-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-bg.png');
  1326. // --image-tree-expansion-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-expansion-bg.png');
  1327. // --image-tree-expansion-hover-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-expansion-hover-bg.png');
  1328. // --image-location-bg: url('/@/assets/images/themify/deepblue/vent/home/location-bg.png');
  1329. // --image-location-hover-bg: url('/@/assets/images/themify/deepblue/vent/home/location-hover-bg.png');
  1330. // --image-tree-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-bg.png');
  1331. // --image-turn-location-top-bg: url('/@/assets/images/themify/deepblue/vent/home/turn-location-top-bg.png');
  1332. // --image-tree-icon-cover-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-icon-cover-bg.png');
  1333. // --image-tree-icon-cover-hover-bg: url('/@/assets/images/themify/deepblue/vent/home/tree-icon-cover-hover-bg.png');
  1334. // --image-tohome: url('/@/assets/images/themify/deepblue/vent/home/tohome.png');
  1335. // --tree-node-select: #0963c1;
  1336. // --tree-node-hover: #0f376ccc;
  1337. // --location-bottom-bg: #21324855;
  1338. // --location-bottom-border: #aed1ff4d;
  1339. }
  1340. }
  1341. .scene-box {
  1342. --image-modal-top: url('/@/assets/images/vent/home/modal-top.png');
  1343. --image-tree-icon-bg: url('/@/assets/images/vent/home/tree-icon-bg.png');
  1344. --image-tree-icon-hover-bg: url('/@/assets/images/vent/home/tree-icon-hover-bg.png');
  1345. --image-tree-bg: url('/@/assets/images/vent/home/tree-bg.png');
  1346. --image-tree-expansion-bg: url('/@/assets/images/vent/home/tree-expansion-bg.png');
  1347. --image-tree-expansion-hover-bg: url('/@/assets/images/vent/home/tree-expansion-hover-bg.png');
  1348. --image-location-bg: url('/@/assets/images/vent/home/location-bg.png');
  1349. --image-location-hover-bg: url('/@/assets/images/vent/home/location-hover-bg.png');
  1350. --image-turn-location-top-bg: url('/@/assets/images/vent/home/turn-location-top-bg.png');
  1351. --image-tree-icon-cover-bg: url('/@/assets/images/vent/home/tree-icon-cover-bg.png');
  1352. --image-tree-icon-cover-hover-bg: url('/@/assets/images/vent/home/tree-icon-cover-hover-bg.png');
  1353. --image-tohome: url('/@/assets/images/vent/home/tohome.png');
  1354. --tree-node-select: #00b1c8;
  1355. --tree-node-hover: #00b1c855;
  1356. --location-bottom-bg: #00709955;
  1357. --location-bottom-border: #aef3ff4d;
  1358. }
  1359. .top-header {
  1360. position: fixed;
  1361. width: 100%;
  1362. height: 56px;
  1363. background: var(--image-modal-top);
  1364. text-align: center;
  1365. line-height: 56px;
  1366. font-size: 28px;
  1367. color: #ffffffdd;
  1368. font-weight: 600;
  1369. z-index: 1;
  1370. letter-spacing: 2px;
  1371. font-size: 30px;
  1372. }
  1373. .select-node {
  1374. position: fixed;
  1375. top: 100px;
  1376. left: 10px;
  1377. color: var(--vent-font-color);
  1378. display: flex;
  1379. justify-content: center;
  1380. font-size: 22px;
  1381. .title {
  1382. margin-left: 10px;
  1383. }
  1384. }
  1385. .expansion-icon {
  1386. background: var(--image-tree-icon-bg) no-repeat;
  1387. background-size: contain;
  1388. position: absolute;
  1389. left: 190px;
  1390. top: 25px;
  1391. &:hover {
  1392. background: var(--image-tree-icon-hover-bg) no-repeat;
  1393. background-size: contain;
  1394. }
  1395. }
  1396. .device-select {
  1397. width: 250px;
  1398. height: 500px;
  1399. background: var(--image-tree-bg) no-repeat;
  1400. position: fixed;
  1401. top: 100px;
  1402. left: 10px;
  1403. background-size: contain;
  1404. pointer-events: auto;
  1405. padding: 20px 10px 30px 10px;
  1406. }
  1407. .inspect-info-xj {
  1408. position: fixed;
  1409. top: 100px;
  1410. left: 250px;
  1411. width: 320px;
  1412. height: 272px;
  1413. padding: 20px;
  1414. background: url('@/assets/images/inspect-bg.png') no-repeat center;
  1415. background-size: 100% 100%;
  1416. box-sizing: border-box;
  1417. }
  1418. .is-expansion-icon {
  1419. padding: 5px;
  1420. pointer-events: auto;
  1421. z-index: 999;
  1422. }
  1423. .device-select-show {
  1424. left: 10px;
  1425. animation-name: treeShow;
  1426. /* 持续时间 */
  1427. animation-duration: 1s;
  1428. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1429. }
  1430. .device-select-hide {
  1431. left: -250px;
  1432. animation-name: treeHide;
  1433. /* 持续时间 */
  1434. animation-duration: 1s;
  1435. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1436. }
  1437. .node-select-show {
  1438. width: 276px;
  1439. height: 44px;
  1440. background: var(--image-tree-expansion-bg) no-repeat;
  1441. left: 10px;
  1442. animation-name: treeShow;
  1443. /* 持续时间 */
  1444. animation-duration: 1s;
  1445. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1446. display: flex;
  1447. align-items: center;
  1448. margin-left: 0;
  1449. justify-content: flex-start;
  1450. pointer-events: auto;
  1451. &:hover {
  1452. background: var(--image-tree-expansion-hover-bg) no-repeat;
  1453. }
  1454. .put-away-icon {
  1455. position: relative;
  1456. display: inline-block;
  1457. left: 4px;
  1458. }
  1459. }
  1460. .node-select-hide {
  1461. left: -400px;
  1462. animation-name: treeHide;
  1463. /* 持续时间 */
  1464. animation-duration: 1s;
  1465. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1466. }
  1467. .device-select-box {
  1468. width: 208px;
  1469. height: 450px;
  1470. overflow-y: auto;
  1471. color: var(--vent-font-color);
  1472. :deep(.zxm-tree) {
  1473. background: transparent !important;
  1474. color: var(--vent-font-color) !important;
  1475. .zxm-tree-switcher {
  1476. background: transparent !important;
  1477. }
  1478. .zxm-tree-node-content-wrapper.zxm-tree-node-selected {
  1479. background-color: var(--tree-node-select);
  1480. }
  1481. .zxm-tree-node-content-wrapper:hover {
  1482. background-color: var(--tree-node-hover);
  1483. }
  1484. input {
  1485. height: 0px !important;
  1486. }
  1487. }
  1488. &::-webkit-scrollbar-track {
  1489. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  1490. border-radius: 10px;
  1491. background: #ededed22;
  1492. height: 100px;
  1493. }
  1494. &::-webkit-scrollbar-thumb {
  1495. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  1496. background: #4288a444;
  1497. }
  1498. }
  1499. .location-icon {
  1500. width: 46px;
  1501. height: 178px;
  1502. position: absolute;
  1503. top: 100px;
  1504. background: var(--image-location-bg) no-repeat;
  1505. background-size: contain;
  1506. writing-mode: vertical-lr;
  1507. line-height: 46px;
  1508. color: var(--vent-font-color);
  1509. padding-top: 10px;
  1510. pointer-events: auto;
  1511. cursor: pointer;
  1512. &:hover {
  1513. background: var(--image-location-hover-bg) no-repeat;
  1514. }
  1515. .location-text {
  1516. padding-top: 20px;
  1517. letter-spacing: 3px;
  1518. font-size: 16px;
  1519. }
  1520. }
  1521. .location-select {
  1522. position: fixed;
  1523. top: 100px;
  1524. pointer-events: auto;
  1525. .location-select-box {
  1526. width: 100%;
  1527. height: 100%;
  1528. position: relative;
  1529. &::before {
  1530. content: '';
  1531. position: absolute;
  1532. width: 230px;
  1533. height: 500px;
  1534. top: 0;
  1535. left: 0;
  1536. background: var(--image-tree-bg) no-repeat;
  1537. background-size: contain;
  1538. transform: rotateY(180deg);
  1539. z-index: -1;
  1540. }
  1541. .location-top-title {
  1542. color: var(--vent-font-color);
  1543. position: absolute;
  1544. width: 225px;
  1545. height: 68px;
  1546. background: var(--image-turn-location-top-bg) no-repeat;
  1547. background-size: contain;
  1548. top: 5px;
  1549. left: 5px;
  1550. display: flex;
  1551. flex-direction: row;
  1552. justify-content: space-between;
  1553. align-items: flex-end;
  1554. .title {
  1555. font-size: 18px;
  1556. position: relative;
  1557. top: -14px;
  1558. right: 15px;
  1559. }
  1560. }
  1561. .location-expansion-icon {
  1562. background: var(--image-tree-icon-cover-bg) no-repeat;
  1563. background-size: contain;
  1564. position: relative;
  1565. left: 10px;
  1566. top: -15px;
  1567. padding: 5px;
  1568. &:hover {
  1569. background: var(--image-tree-icon-cover-hover-bg) no-repeat;
  1570. background-size: contain;
  1571. }
  1572. }
  1573. }
  1574. .location-container {
  1575. width: 200px;
  1576. height: 390px;
  1577. position: absolute;
  1578. display: flex;
  1579. flex-direction: column;
  1580. top: 80px;
  1581. left: 18px;
  1582. overflow-y: auto;
  1583. .location-item {
  1584. color: var(--vent-font-color);
  1585. line-height: 30px;
  1586. display: flex;
  1587. justify-content: space-between;
  1588. // background-image: var(--vent-gas-list-item-bg-img);
  1589. background-image: linear-gradient(to left, #39f5ff05, #39f5ff10);
  1590. margin: 3px 0;
  1591. .item-title {
  1592. width: 80px;
  1593. text-align: right;
  1594. color: var(--vent-table-action-link);
  1595. }
  1596. }
  1597. .location-bottom-btn {
  1598. width: 100%;
  1599. color: var(--vent-font-color);
  1600. display: flex;
  1601. justify-content: flex-end;
  1602. margin-top: 20px;
  1603. span {
  1604. display: inline-block;
  1605. width: 100%;
  1606. background: var(--location-bottom-bg);
  1607. border-radius: 3px;
  1608. border: 1px solid var(--location-bottom-border);
  1609. text-align: center;
  1610. padding: 2px 0;
  1611. cursor: pointer;
  1612. &:hover {
  1613. background: #00557422;
  1614. }
  1615. }
  1616. }
  1617. }
  1618. }
  1619. .location-select-show {
  1620. right: 240px;
  1621. animation-name: locationShow;
  1622. /* 持续时间 */
  1623. animation-duration: 1s;
  1624. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1625. }
  1626. .location-select-hide {
  1627. right: -2px;
  1628. animation-name: locationHide;
  1629. /* 持续时间 */
  1630. animation-duration: 1s;
  1631. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1632. }
  1633. .location-btn-show {
  1634. right: -0px;
  1635. animation-name: locationBtnShow;
  1636. /* 持续时间 */
  1637. animation-duration: 1s;
  1638. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1639. }
  1640. .location-btn-hide {
  1641. right: -240px;
  1642. animation-name: locationBtnHide;
  1643. /* 持续时间 */
  1644. animation-duration: 1s;
  1645. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  1646. }
  1647. .tabs-box {
  1648. height: 290px;
  1649. }
  1650. .bottom-tabs-box {
  1651. position: relative;
  1652. .tabs-box {
  1653. width: calc(100% - 12px) !important;
  1654. bottom: 3px !important;
  1655. background-color: red;
  1656. }
  1657. .to-small {
  1658. position: absolute;
  1659. top: -65px;
  1660. right: 36px;
  1661. display: flex;
  1662. align-items: center;
  1663. justify-content: center;
  1664. .to-home {
  1665. width: 60px;
  1666. height: 60px;
  1667. background: var(--image-tohome) no-repeat center;
  1668. background-size: auto;
  1669. padding: 8px;
  1670. &:hover {
  1671. background-color: rgba(79, 104, 134, 0.418);
  1672. }
  1673. }
  1674. .table-show-icon {
  1675. width: 30px;
  1676. height: 30px;
  1677. font-size: 30px;
  1678. color: var(--vent-font-color);
  1679. margin-left: 10px;
  1680. }
  1681. }
  1682. .device-button-group {
  1683. position: absolute;
  1684. top: -30px;
  1685. display: flex;
  1686. width: 100%;
  1687. .device-active {
  1688. background: linear-gradient(45deg, #04e6fb, #0c5cab);
  1689. &::before {
  1690. border-color: #0efcff;
  1691. box-shadow: 1px 1px 3px 1px #0efcff inset;
  1692. }
  1693. }
  1694. }
  1695. .table-hide-icon {
  1696. color: var(--vent-font-color);
  1697. cursor: pointer;
  1698. position: absolute;
  1699. right: 20px;
  1700. top: 10px;
  1701. z-index: 9999;
  1702. }
  1703. .enter-detail {
  1704. color: var(--vent-font-color);
  1705. cursor: pointer;
  1706. position: absolute;
  1707. right: 35px;
  1708. top: 35px;
  1709. padding: 5px;
  1710. border-radius: 5px;
  1711. margin-left: 8px;
  1712. margin-right: 8px;
  1713. width: auto;
  1714. height: 33px !important;
  1715. display: flex;
  1716. align-items: center;
  1717. justify-content: center;
  1718. color: var(--vent-font-color);
  1719. padding: 5px 15px 5px 15px;
  1720. z-index: 999;
  1721. cursor: pointer;
  1722. &:hover {
  1723. background: var(--vent-device-manager-control-btn-hover);
  1724. }
  1725. &::before {
  1726. width: calc(100% - 6px);
  1727. height: 27px;
  1728. content: '';
  1729. position: absolute;
  1730. top: 3px;
  1731. right: 0;
  1732. left: 3px;
  1733. bottom: 0;
  1734. z-index: -1;
  1735. border-radius: inherit;
  1736. /*important*/
  1737. background: var(--vent-device-manager-control-btn);
  1738. }
  1739. }
  1740. }
  1741. .table-hide {
  1742. height: 0px;
  1743. animation-name: tableHide;
  1744. /* 持续时间 */
  1745. animation-duration: 1s;
  1746. transition: all 1s;
  1747. }
  1748. .table-show {
  1749. height: 290px;
  1750. animation-name: tableShow;
  1751. /* 持续时间 */
  1752. animation-duration: 1s;
  1753. transition: all 1s;
  1754. }
  1755. .location-form {
  1756. display: flex;
  1757. margin: 8px;
  1758. .location-form-item {
  1759. width: 400px;
  1760. .location-form-label {
  1761. width: 100px;
  1762. display: inline-block;
  1763. color: var(--vent-font-color);
  1764. }
  1765. input {
  1766. background: transparent !important;
  1767. color: var(--vent-font-color);
  1768. border: 1px solid var(--vent-form-item-border) !important;
  1769. }
  1770. }
  1771. .zxm-select-selector {
  1772. width: 200px !important;
  1773. }
  1774. }
  1775. @keyframes tableShow {
  1776. 0% {
  1777. height: 0px;
  1778. opacity: 0;
  1779. }
  1780. 100% {
  1781. height: 290px;
  1782. opacity: 1;
  1783. }
  1784. }
  1785. @keyframes tableHide {
  1786. 0% {
  1787. opacity: 1;
  1788. }
  1789. 100% {
  1790. height: 0px;
  1791. opacity: 0;
  1792. }
  1793. }
  1794. @keyframes treeShow {
  1795. 0% {
  1796. left: -400px;
  1797. opacity: 0;
  1798. }
  1799. 100% {
  1800. left: 10px;
  1801. opacity: 1;
  1802. }
  1803. }
  1804. @keyframes treeHide {
  1805. 0% {
  1806. left: 10px;
  1807. opacity: 1;
  1808. }
  1809. 100% {
  1810. left: -400px;
  1811. opacity: 0;
  1812. }
  1813. }
  1814. @keyframes locationShow {
  1815. 0% {
  1816. right: 0px;
  1817. opacity: 0;
  1818. }
  1819. 100% {
  1820. right: 240px;
  1821. opacity: 1;
  1822. }
  1823. }
  1824. @keyframes locationHide {
  1825. 0% {
  1826. right: 240px;
  1827. opacity: 1;
  1828. }
  1829. 100% {
  1830. right: 0;
  1831. opacity: 0;
  1832. }
  1833. }
  1834. @keyframes locationBtnShow {
  1835. 0% {
  1836. right: -240px;
  1837. opacity: 0;
  1838. }
  1839. 100% {
  1840. right: -2px;
  1841. opacity: 1;
  1842. }
  1843. }
  1844. @keyframes locationBtnHide {
  1845. 0% {
  1846. right: -2px;
  1847. opacity: 1;
  1848. }
  1849. 100% {
  1850. right: -240px;
  1851. opacity: 0;
  1852. }
  1853. }
  1854. :deep(.@{ventSpace}-picker-datetime-panel) {
  1855. height: 200px !important;
  1856. overflow-y: auto !important;
  1857. }
  1858. :deep(.@{ventSpace}-tabs-tabpane-active) {
  1859. // overflow: auto;
  1860. height: 100%;
  1861. }
  1862. :deep(.zxm-select-dropdown) {
  1863. left: 0 !important;
  1864. color: #000000 !important;
  1865. }
  1866. :deep(.zxm-select-selector) {
  1867. height: 34px !important;
  1868. line-height: 34px !important;
  1869. }
  1870. :deep(.zxm-input) {
  1871. height: 32px !important;
  1872. line-height: 32px !important;
  1873. .zxm-select-selection-item {
  1874. line-height: 32px !important;
  1875. }
  1876. }
  1877. .device-button {
  1878. height: 26px;
  1879. display: flex;
  1880. justify-content: center;
  1881. align-items: center;
  1882. color: var(--vent-font-color);
  1883. position: relative;
  1884. cursor: pointer;
  1885. padding: 0 20px;
  1886. background: linear-gradient(45deg, #04e6fb55, #0c5cab55);
  1887. clip-path: polygon(10px 0, 0 50%, 10px 100%, 100% 100%, calc(100% - 10px) 50%, 100% 0);
  1888. &:nth-child(1) {
  1889. left: calc(-6px * 1);
  1890. }
  1891. &:nth-child(2) {
  1892. left: calc(-6px * 2);
  1893. }
  1894. &:nth-child(3) {
  1895. left: calc(-6px * 3);
  1896. }
  1897. &:nth-child(4) {
  1898. left: calc(-6px * 4);
  1899. }
  1900. &:nth-child(5) {
  1901. left: calc(-6px * 5);
  1902. }
  1903. &:nth-child(6) {
  1904. left: calc(-6px * 6);
  1905. }
  1906. &:nth-child(7) {
  1907. left: calc(-6px * 7);
  1908. }
  1909. &:nth-child(8) {
  1910. left: calc(-6px * 8);
  1911. }
  1912. &:nth-child(9) {
  1913. left: calc(-6px * 9);
  1914. }
  1915. &:nth-child(10) {
  1916. left: calc(-6px * 10);
  1917. }
  1918. &:nth-child(11) {
  1919. left: calc(-6px * 11);
  1920. }
  1921. &:nth-child(12) {
  1922. left: calc(-6px * 12);
  1923. }
  1924. &:nth-child(13) {
  1925. left: calc(-6px * 13);
  1926. }
  1927. &:nth-child(14) {
  1928. left: calc(-6px * 14);
  1929. }
  1930. &:nth-child(15) {
  1931. left: calc(-6px * 15);
  1932. }
  1933. &:nth-child(16) {
  1934. left: calc(-6px * 16);
  1935. }
  1936. &:nth-child(17) {
  1937. left: calc(-6px * 17);
  1938. }
  1939. &:nth-child(18) {
  1940. left: calc(-6px * 18);
  1941. }
  1942. &:nth-child(19) {
  1943. left: calc(-6px * 19);
  1944. }
  1945. // &:first-child {
  1946. // clip-path: polygon(0 0, 10px 50%, 0 100%, 100% 100%, calc(100% - 10px) 50%, 100% 0);
  1947. // }
  1948. }
  1949. // :deep(.@{ventSpace}-pagination){
  1950. // margin-right: 20px !important;
  1951. // margin-top: 5px !important;
  1952. // display: flex;
  1953. // align-items: center;
  1954. // }
  1955. </style>