ComprehensiveInfor.vue 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. <template>
  2. <div class="content-main-manage">
  3. <div class="search-list">
  4. <div class="search-left">
  5. <Form class="common-form common-form-list" ref="tableParams" :model="tableParams" inline>
  6. <FormItem label="" prop="alertRankId">
  7. <Select v-model="tableParams.alertRankId" placeholder="告警等级">
  8. <Option v-for="item in alarmLevelData" :value="item.id" :key="item.id">{{ item.name }}</Option>
  9. </Select>
  10. </FormItem>
  11. <FormItem label="" prop="applicationId">
  12. <Select v-model="tableParams.applicationId" placeholder="来源应用" @on-change="selectApp">
  13. <Option v-for="item in appData" :value="item.id" :key="item.id">{{ item.appName }}</Option>
  14. </Select>
  15. </FormItem>
  16. <FormItem label="" prop="equipmentTypeId">
  17. <Select v-model="tableParams.equipmentTypeId" placeholder="设备类型">
  18. <Option v-for="item in equipTypeData" :value="item.equipmentTypeId" :key="item.equipmentTypeId">{{ item.equipmentName }}</Option>
  19. </Select>
  20. </FormItem>
  21. <FormItem label="" prop="processingStatus">
  22. <Select v-model="tableParams.processingStatus" placeholder="处理状态">
  23. <Option v-for="item in alarmStatus" :value="item.id" :key="item.id">{{ item.value }}</Option>
  24. </Select>
  25. </FormItem>
  26. <FormItem label="">
  27. <Tooltip :content="alertTimeContent" :max-width="300" transfer placement="top-start">
  28. <DatePicker type="datetimerange" format="yyyy-MM-dd HH:mm:ss" :value="dateRange" :clearable="false" :editable="false" class="common-date-picker date-picker-main" placeholder="告警时间范围" @on-change="changePicker"></DatePicker>
  29. </Tooltip>
  30. </FormItem>
  31. <FormItem label="">
  32. <Tooltip :content="updateTimeContent" :max-width="300" transfer placement="top-start">
  33. <DatePicker type="datetimerange" format="yyyy-MM-dd HH:mm:ss" :value="dateOperateRange" :clearable="false" :editable="false" class="common-date-picker date-picker-main" placeholder="操作时间范围" @on-change="changeOperatePicker"></DatePicker>
  34. </Tooltip>
  35. </FormItem>
  36. <FormItem label="" prop="keywords">
  37. <Input placeholder="输入关键字查询" clearable search v-model="tableParams.keywords" />
  38. </FormItem>
  39. <FormItem label="" >
  40. <Button type="primary" class="common-btn-search" @click="searchClick">
  41. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 筛选
  42. </Button>
  43. <Button type="primary" class="common-btn-search" style="margin-left:10px" @click="resetClick('tableParams')">
  44. <Icon type="ios-search" style="margin-right:4px;font-size: 16px"/> 重置
  45. </Button>
  46. </FormItem>
  47. </Form>
  48. </div>
  49. </div>
  50. <div class="btn-container">
  51. <span class="btn-container-download" style="opacity: 0">
  52. <i class="iconfont icon-xiazai" style="cursor:pointer;color:#0185EA;fontSize:20px;marginRight:6px"></i>下载列表筛选结果
  53. </span>
  54. <div>
  55. <Button class="common-operate-btn common-corrections" @click="correctClick">
  56. <i class="iconfont icon-gengzhenggonggao" style="cursor:pointer;color:#ffffff;fontSize:20px;marginRight:6px"></i>
  57. 批量手动修正
  58. </Button>
  59. <Button class="common-operate-btn common-eliminate" @click="delClick">
  60. <i class="iconfont icon-shanchu" style="cursor:pointer;color:#ffffff;fontSize:20px;marginRight:6px"></i>
  61. 批量清除告警
  62. </Button>
  63. <Button class="common-operate-btn common-confirm" @click="queenClick">
  64. <i class="iconfont icon-queren" style="cursor:pointer;color:#ffffff;fontSize:20px;marginRight:6px"></i>
  65. 批量确认告警
  66. </Button>
  67. <!-- <Button class="common-add-btn common-forward">
  68. <i class="iconfont icon-zhuanfafenxiang" style="cursor:pointer;color:#ffffff;fontSize:20px;marginRight:6px"></i>
  69. 批量转发通知
  70. </Button> -->
  71. </div>
  72. </div>
  73. <div class="manage-main-center">
  74. <Table :columns="columns" :data="tableData" class="common-table app-table" no-data-text="" :row-class-name="rowClassName" :loading="loading" @on-selection-change="selectChange">
  75. <template slot="loading">
  76. <Loading-animation></Loading-animation>
  77. </template>
  78. <template slot-scope="{ row }" slot="alertRankColor">
  79. <i class="iconfont icon-gaojing1" style="vertical-align: middle" :style="'color:' + row.alertRankColor"></i>
  80. </template>
  81. <template slot-scope="{ row }" slot="action">
  82. <Tooltip content="详情" placement="top">
  83. <i class="iconfont icon-xiangqingmingxi" style="cursor:pointer;color:#B8B532;fontSize:20px;marginRight:6px" @click="detailClick(row)"></i>
  84. </Tooltip>
  85. <Tooltip content="修正" placement="top">
  86. <i class="iconfont icon-gengzhenggonggao" style="cursor:pointer;color:#0BB0DE;fontSize:20px;marginRight:6px" @click="correctClick(row)"></i>
  87. </Tooltip>
  88. <Tooltip content="清除" placement="top">
  89. <i class="iconfont icon-shanchu" style="cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" @click="delClick(row)"></i>
  90. </Tooltip>
  91. <Tooltip content="确认" placement="top">
  92. <i class="iconfont icon-queren" style="cursor:pointer;color:#08AF68;fontSize:20px;marginRight:6px" @click="queenClick(row)"></i>
  93. </Tooltip>
  94. <!-- <Tooltip content="转发" placement="top">
  95. <i class="iconfont icon-zhuanfafenxiang" style="cursor:pointer;color:#BCA507;fontSize:20px;marginRight:6px" @click="forwardClick(row)"></i>
  96. </Tooltip> -->
  97. </template>
  98. </Table>
  99. </div>
  100. <div class="common-page">
  101. <div class="common-page-total">
  102. 共<span>{{tablePage}}</span>页 / <span>{{tableTotal}}</span>条数据
  103. </div>
  104. <Page :total="tableTotal" :current="tableParams.pageNum" :page-size="tableParams.pageSize" @on-change="changePage" @on-page-size-change="sizeChange" show-elevator />
  105. </div>
  106. <Modal
  107. v-model="showModal"
  108. :title="title"
  109. width="25"
  110. ref="modalGrag"
  111. draggable
  112. reset-drag-position
  113. @on-visible-change="modalChange"
  114. :mask-closable="false"
  115. class-name="common-modal">
  116. <Form class="common-form" ref="formOption" :model="formOption" :label-width="0">
  117. <div class="common-form-item-text">
  118. 将选中的告警信息等级,修正为
  119. </div>
  120. <FormItem label="" prop="alertRankId" style="width:100%">
  121. <Select v-model="formOption.alertRankId" placeholder="告警等级">
  122. <Option v-for="item in alarmLevelModalData" :value="item.id" :key="item.id">{{ item.name }}</Option>
  123. </Select>
  124. </FormItem>
  125. <FormItem label="" prop="alertRankId" style="width:100%">
  126. <Select v-model="formOption.processingStatus" placeholder="告警状态">
  127. <Option v-for="item in alarmModalStatus" :value="item.id" :key="item.id">{{ item.value }}</Option>
  128. </Select>
  129. </FormItem>
  130. </Form>
  131. <div slot="footer">
  132.     <Button @click="modalCancel">取消</Button>
  133.     <Button type="primary" @click="modalOk">确定</Button>
  134.   </div>
  135. </Modal>
  136. <Modal
  137. v-model="modalStatus"
  138. :title="commonTitle"
  139. width="30"
  140. ref="modalGrag"
  141. draggable
  142. reset-drag-position
  143. :mask-closable="false"
  144. class-name="common-modal">
  145. <div class="common-modal-select" :style="{ color: activeColor}">已选择:{{alertIdNum}}条数据</div>
  146. <i class="iconfont icon-queren" style="vertical-align: middle;cursor:pointer;color:#08AF68;fontSize:20px;marginRight:6px" v-show="commonTitle=='告警确认'"></i>
  147. <i class="iconfont icon-shanchu" style="vertical-align: middle;cursor:pointer;color:#E92E2E;fontSize:20px;marginRight:6px" v-show="commonTitle=='确认清除'"></i>
  148. <span class="modal-text">{{modalTitle}}</span>
  149. <div slot="footer">
  150.     <Button @click="commonCancel">取消</Button>
  151.     <Button type="primary" @click="commonOk">确定</Button>
  152.   </div>
  153. </Modal>
  154. <Modal
  155. v-model="detailStatus"
  156. title="告警详情"
  157. width="45"
  158. ref="modalGrag"
  159. draggable
  160. reset-drag-position
  161. footer-hide
  162. @on-visible-change="modalDetailChange"
  163. :mask-closable="false"
  164. class-name="common-modal common-modal-detail">
  165. <template v-if="detailLabel && detailLabel.length>0">
  166. <div v-for="(item,index) in detailLabel" :key="index" >
  167. <div class="common-modal-top" :class="{'common-modal-top-especial': index==2}">
  168. <span class="common-modal-top-text">{{item.name}}</span>
  169. </div>
  170. <div class="common-modal-content" v-if="index<2">
  171. <div class="modal-content-item" v-for="(val,i) in item.value" :key="i" :class="{'item-especial-bot':(i==item.value.length-1 || i==item.value.length-2) && item.value.length%2==0}" @click="go(val)">
  172. <div class="modal-content-item-name">{{val.name}}</div>
  173. <div class="modal-content-item-value" :class="{'item-especial-value': val.name == '设备今日告警'}">
  174. <Tooltip placement="top-start" transfer max-width="350" v-if="val.value || val.value===0">
  175. <span v-if="val.name == '设备今日告警'">{{val.value+'次'}}</span>
  176. <span v-else-if="val.name == '同比'">
  177. <Icon type="md-arrow-down" style="color: #F32F2F;font-size:20px" v-if="val.value>0"/>
  178. <Icon type="md-arrow-up" style="color: #09CB09;font-size:20px" v-if="val.value<0" />
  179. {{val.value+'%'}}
  180. </span>
  181. <span v-else>{{val.value}}</span>
  182. <div slot="content">
  183. <span v-if="val.name == '设备今日告警'">{{val.value+'次'}}</span>
  184. <span v-else-if="val.name == '同比'">
  185. <Icon type="md-arrow-down" style="color: #F32F2F;font-size:20px" v-if="val.value>0"/>
  186. <Icon type="md-arrow-up" style="color: #09CB09;font-size:20px" v-if="val.value<0" />
  187. {{val.value+'%'}}
  188. </span>
  189. <span v-else>{{val.value}}</span>
  190. </div>
  191. </Tooltip>
  192. </div>
  193. </div>
  194. </div>
  195. </div>
  196. </template>
  197. <rolling-detail-table :columns1="columnsModal" :apiUrl="apiUrl" dataIndex="2" ref="detailTable" class="rolling-detail-table"></rolling-detail-table>
  198. </Modal>
  199. </div>
  200. </template>
  201. <script>
  202. import utils from "@/libs/utils"
  203. const defaultFrom = {alertRankId: null,processingStatus: null}
  204. export default {
  205. name: "ComprehensiveInfor",
  206. components:{
  207. },
  208. data() {
  209. return {
  210. alarmParams: {
  211. keywords: '',
  212. enabled: 1,
  213. beginDate: '',
  214. endDate: '',
  215. pageNum: 1,
  216. pageSize: 10
  217. },
  218. applicationParams: {
  219. level: '',
  220. lineId: '',
  221. stationId: '',
  222. equipmentCheck: '',
  223. instrumentCheck: '',
  224. pageNum: 1,
  225. pageSize: 9999
  226. },
  227. appParams: {
  228. applicationId: '',
  229. equipmentTypeId: '',
  230. keywords: '',
  231. pageNum: 1,
  232. pageSize: 9999
  233. },
  234. loading: true,
  235. dateRange: [],
  236. alertTimeContent: '告警时间范围',
  237. updateTimeContent: '操作时间范围',
  238. dateOperateRange: [],
  239. tableParams: {
  240. processingStatus: '',
  241. keywords: '',
  242. applicationId:'',
  243. equipmentTypeId: '',
  244. oneKeywords: '',
  245. alertRankId: '',
  246. beginAlertTime: '',
  247. endAlertTime: '',
  248. beginUpdateTime: '',
  249. endUpdateTime: '',
  250. alertRankEnabled: 1,
  251. pageNum: 1,
  252. pageSize: 10
  253. },
  254. tableData: [],
  255. tableTotal: 0,
  256. tablePage: 0,
  257. rowObj: {},
  258. lineTypeData: [],
  259. stationTypeData: [],
  260. alarmLevelData: [],
  261. alarmLevelModalData: [],
  262. equipTypeData: [],
  263. appData: [],
  264. alarmStatus: [],
  265. alarmModalStatus: [],
  266. columns: [
  267. {
  268. type: 'selection',
  269. width: 60,
  270. align: 'center'
  271. },
  272. {
  273. title: '告警等级',
  274. key: 'alertRankName',
  275. align: 'center',
  276. ellipsis: true,
  277. tooltip: true
  278. },
  279. {
  280. title: '警示颜色',
  281. slot: 'alertRankColor',
  282. align: 'center',
  283. width: 90,
  284. },
  285. {
  286. title: '设备类型',
  287. key: 'equipmentTypeName',
  288. align: 'center',
  289. ellipsis: true,
  290. tooltip: true
  291. },
  292. {
  293. title: '设备名称',
  294. key: 'equipmentName',
  295. align: 'center',
  296. ellipsis: true,
  297. tooltip: true
  298. },
  299. {
  300. title: '告警内容',
  301. key: 'alertContent',
  302. align: 'center',
  303. ellipsis: true,
  304. tooltip: true
  305. },
  306. {
  307. title: '来源应用',
  308. key: 'appName',
  309. align: 'center',
  310. ellipsis: true,
  311. tooltip: true
  312. },
  313. {
  314. title: '告警时间',
  315. key: 'alertTime',
  316. align: 'center',
  317. ellipsis: true,
  318. tooltip: true
  319. },
  320. {
  321. title: '操作时间',
  322. key: 'updateTime',
  323. align: 'center',
  324. ellipsis: true,
  325. tooltip: true
  326. },
  327. {
  328. title: '处理状态',
  329. key: 'processingStatusDesc',
  330. align: 'center',
  331. width: 114,
  332. render:(h,params)=>{
  333. let color = params.row.processingStatusDesc == '已清除' ? '#E92E2E' : '#ffffff'
  334. return h('span', {style:{color: color}},params.row.processingStatusDesc)
  335. }
  336. },
  337. {
  338. title: '操作',
  339. align: 'center',
  340. slot: 'action',
  341. width: 160,
  342. }
  343. ],
  344. showModal: false,
  345. modalStatus: false,
  346. title: '告警信息修正',
  347. commonTitle: "确认清除",
  348. activeColor: '#E92E2E',
  349. activeClass: '',
  350. modalTitle: '',
  351. dateModalRange: [],
  352. formOption: {alertRankId: null,processingStatus: null},
  353. idArr: [],
  354. alertIds: null,
  355. alertIdNum: 1,
  356. operationContent: '修正',
  357. detailStatus: false,
  358. detailParams: {
  359. alertId: null,
  360. pageNum: 1,
  361. pageSize: 5
  362. },
  363. apiUrl: '',
  364. detailLabel: [],
  365. columnsModal: [
  366. {
  367. title: '操作内容',
  368. key: 'operationContent',
  369. align: 'center',
  370. ellipsis: true,
  371. tooltip: true
  372. },
  373. {
  374. title: '操作人',
  375. key: 'operationUserName',
  376. align: 'center',
  377. ellipsis: true,
  378. tooltip: true
  379. },
  380. {
  381. title: '操作时间',
  382. key: 'operationTime',
  383. align: 'center',
  384. ellipsis: true,
  385. tooltip: true
  386. },
  387. {
  388. title: '备注',
  389. key: 'operationNote',
  390. align: 'center',
  391. ellipsis: true,
  392. tooltip: true
  393. },
  394. ]
  395. };
  396. },
  397. mounted() {
  398. this.getType()
  399. },
  400. methods: {
  401. // 跳转到实时告警列表-设备视图
  402. go (val) {
  403. if (val.name == '设备今日告警') {
  404. let menuNameArr = []
  405. menuNameArr = ['设备分析','告警分析','告警监测']
  406. sessionStorage.setItem('routname', '/MainPage/AlarmMonitor')
  407. sessionStorage.setItem('menuNameArr',JSON.stringify(menuNameArr))
  408. this.$router.push({ name: 'AlarmMonitor', params: { equipmentId:this.rowObj.equipmentId }})
  409. }
  410. },
  411. changePicker (date) {
  412. this.tableParams.beginAlertTime = date[0]
  413. this.tableParams.endAlertTime = date[1]
  414. if (!date[0] && !date[1]) {
  415. this.alertTimeContent = '告警时间范围'
  416. } else {
  417. this.alertTimeContent = date[0] + ' - ' + date[1]
  418. }
  419. },
  420. changeOperatePicker (date) {
  421. this.tableParams.beginUpdateTime = date[0]
  422. this.tableParams.endUpdateTime = date[1]
  423. if (!date[0] && !date[1]) {
  424. this.updateTimeContent = '操作时间范围'
  425. } else {
  426. this.updateTimeContent = date[0] + ' - ' + date[1]
  427. }
  428. },
  429. rowClassName(row, index) {
  430. if (index % 2 == 0) {
  431. return "ivu-table-stripe-even";
  432. } else {
  433. return "ivu-table-stripe-odd";
  434. }
  435. },
  436. // 分页
  437. changePage (val) {
  438. this.tableParams.pageNum = val
  439. this.getTableData()
  440. },
  441. //跳转
  442. sizeChange (val) {
  443. this.tableParams.pageSize = val
  444. this.getTableData()
  445. },
  446. getType () {
  447. // 获取归属应用
  448. this.$get('metroapi/application/info/list', this.applicationParams).then(res=>{
  449. if (res.httpCode == 1 ){
  450. this.appData = res.data.data
  451. this.appData.unshift({ id: '-1', appName: '来源应用' })
  452. } else {
  453. this.appData = []
  454. }
  455. })
  456. // 告警等级
  457. this.$get('metroapi/alert/rank/list', this.alarmParams).then(res=>{
  458. if (res.httpCode == 1 ){
  459. this.alarmLevelModalData = JSON.parse(JSON.stringify(res.data.data))
  460. this.alarmLevelData = res.data.data
  461. this.alarmLevelData.unshift({ id: '-1', name: '告警等级' })
  462. } else {
  463. this.alarmLevelData = []
  464. this.alarmLevelModalData = []
  465. }
  466. })
  467. // 告警状态
  468. this.$get('metroapi/dic/queryDictionary', {name:'告警处理状态'}).then(res=>{
  469. if (res.httpCode == 1 ){
  470. this.alarmModalStatus = JSON.parse(JSON.stringify(res.data))
  471. this.alarmStatus = res.data
  472. this.alarmStatus.unshift({ id: '-1', value: '处理状态' })
  473. } else {
  474. this.alarmModalStatus = []
  475. this.alarmStatus = []
  476. }
  477. })
  478. },
  479. selectChange (selection) {
  480. this.idArr = selection.map(item => item.id)
  481. },
  482. // 获取表格数据
  483. getTableData (keywords,arr,level) {
  484. if (level) {
  485. this.tableParams.keywords = ''
  486. if (level == 2) {
  487. this.tableParams.lineId = arr[arr.length-1]
  488. this.tableParams.stationId = ''
  489. } else if (level == 3) {
  490. this.tableParams.lineId = arr[arr.length-2]
  491. this.tableParams.stationId = arr[arr.length-1]
  492. } else {
  493. this.tableParams.lineId = ''
  494. this.tableParams.stationId = ''
  495. }
  496. } else {
  497. this.tableParams.lineId = ''
  498. this.tableParams.stationId = ''
  499. if (keywords == '合肥轨道交通' || keywords == '' || !keywords) {
  500. this.tableParams.oneKeywords = ''
  501. } else {
  502. this.tableParams.oneKeywords = keywords
  503. }
  504. }
  505. let params = JSON.parse(JSON.stringify(this.tableParams))
  506. params.alertRankId = params.alertRankId == '-1' ? '':params.alertRankId
  507. params.applicationId = params.applicationId == '-1' ? '':params.applicationId
  508. params.equipmentTypeId = params.equipmentTypeId == '-1' ? '':params.equipmentTypeId
  509. params.processingStatus = params.processingStatus == '-1' ? '':params.processingStatus
  510. this.loading = true
  511. this.$get('metroapi/alert/processing/details', params).then(res=>{
  512. this.loading = false
  513. if (res.httpCode == 1 ){
  514. this.tableData = res.data.data
  515. this.tableTotal = res.data.count
  516. if (res.data.data.length==0) {
  517. this.tablePage = 0
  518. } else {
  519. this.tablePage = res.data.count<= 10 ? 1: Math.ceil(res.data.count/this.tableParams.pageSize)
  520. }
  521. if (res.data.data.length==0 && this.tableParams.pageNum>1) {
  522. this.tableParams.pageNum--
  523. return this.getTableData()
  524. }
  525. } else {
  526. this.tableData = []
  527. this.tableTotal = 0
  528. }
  529. })
  530. },
  531. selectApp (val) {
  532. this.appParams.applicationId = val
  533. this.tableParams.equipmentTypeId = ''
  534. if (val) {
  535. this.getAddEquipType( this.appParams)
  536. }
  537. },
  538. // 获取设备类型
  539. getAddEquipType (params) {
  540. if (params.applicationId == '-1') {
  541. this.equipTypeData = [{ equipmentTypeId: '-1', equipmentName: '设备类型' }]
  542. } else {
  543. this.$get('metroapi/application/equipmentTypeInfo', params).then(res=>{
  544. if (res.httpCode == 1 ){
  545. this.equipTypeData = res.data.data
  546. this.equipTypeData.unshift({ equipmentTypeId: '-1', equipmentName: '设备类型' })
  547. } else {
  548. this.equipTypeData = []
  549. }
  550. })
  551. }
  552. },
  553. searchClick () {
  554. this.tableParams.pageNum = 1
  555. this.getTableData()
  556. // this.$router.push({ path: '/MainPage/ApplicationManage', query: {deptName: "2"}})
  557. },
  558. resetClick (name) {
  559. this.dateRange = []
  560. this.tableParams.beginAlertTime = ''
  561. this.tableParams.endAlertTime = ''
  562. this.alertTimeContent = '告警时间范围'
  563. this.dateOperateRange = []
  564. this.tableParams.beginUpdateTime = ''
  565. this.tableParams.endUpdateTime = ''
  566. this.updateTimeContent = '操作时间范围'
  567. this.equipTypeData = [{ equipmentTypeId: '-1', equipmentName: '设备类型' }]
  568. this.$refs[name].resetFields()
  569. this.tableParams.pageNum = 1
  570. this.getTableData()
  571. },
  572. correctClick (row) {
  573. this.rowObj = row
  574. if (row.id || this.idArr.length>0) {
  575. this.formOption = JSON.parse(JSON.stringify(defaultFrom))
  576. this.title = '告警信息修正'
  577. this.operationContent = '修正'
  578. this.alertIds = row.id ? row.id : this.idArr.join()
  579. this.alertIdNum = row.id ? 1 : this.idArr.length
  580. this.showModal = true
  581. } else {
  582. this.$Message.info('请至少选择一条数据')
  583. }
  584. },
  585. changeStateData (params) {
  586. this.$post('metroapi/alert/processing/update/status',params).then(res=>{
  587. if (res.httpCode == 1 ){
  588. if (this.showModal) {
  589. this.showModal = false
  590. } else if(this.modalStatus){
  591. this.modalStatus = false
  592. }
  593. this.$Message.info(res.msg)
  594. this.getTableData()
  595. } else {
  596. this.$Message.info(res.msg)
  597. }
  598. })
  599. },
  600. queenClick (row) {
  601. this.rowObj = row
  602. this.commonTitle = '告警确认'
  603. this.activeColor = '#08AF68'
  604. this.activeClass = ''
  605. this.modalTitle = '告警信息状态将被标注为【已确认】,告警将被确认为有效信息。'
  606. this.operationContent = '确认'
  607. this.formOption.alertRankId = null
  608. this.formOption.processingStatus = 39
  609. this.alertIds = row.id ? row.id : this.idArr.join()
  610. this.alertIdNum = row.id ? 1 : this.idArr.length
  611. this.modalStatus = true
  612. },
  613. forwardClick (row) {
  614. },
  615. delClick (row) {
  616. this.rowObj = row
  617. this.commonTitle = '确认清除'
  618. this.activeColor = '#E92E2E'
  619. this.activeClass = ''
  620. this.modalTitle = '告警信息状态将被标注为【已清除】,从系统有效数据中脱钩。'
  621. this.operationContent = '清除'
  622. this.formOption.alertRankId = null
  623. this.formOption.processingStatus = 40
  624. this.alertIds = row.id ? row.id : this.idArr.join()
  625. this.alertIdNum = row.id ? 1 : this.idArr.length
  626. this.modalStatus = true
  627. },
  628. modalChange (modalStatus) {
  629. if (!modalStatus) {
  630. this.$refs.formOption.resetFields();
  631. }
  632. },
  633. detailClick (row) {
  634. this.rowObj = row
  635. this.detailParams.alertId = this.rowObj.id
  636. this.detailStatus = true
  637. this.$nextTick(() => {
  638. this.$get('metroapi/alert/processing/info', this.detailParams).then(res=>{
  639. if ( res.httpCode == 1 ){
  640. this.detailLabel = res.data
  641. } else {
  642. this.$Message.info(res.msg)
  643. }
  644. })
  645. this.apiUrl = 'metroapi/alert/processing/info'
  646. this.$refs.detailTable.getChartsDetail(this.detailParams,this.apiUrl)
  647. });
  648. },
  649. modalDetailChange (val) {
  650. if (!val) {
  651. this.detailParams.pageNum = 1
  652. document.querySelector(".rolling-detail-table .ivu-table-body").scrollTo(0, 0)
  653. }
  654. },
  655. modalOk () {
  656. let params = {
  657. alertIds: this.alertIds,
  658. processingStatus: this.formOption.processingStatus,
  659. alertRankId: this.formOption.alertRankId,
  660. operationContent: this.operationContent,
  661. userId: utils.storage('sw_user').userId
  662. }
  663. this.changeStateData(params)
  664. },
  665. modalCancel () {
  666. this.showModal = false
  667. },
  668. commonOk () {
  669. let params = {
  670. alertIds: this.alertIds,
  671. processingStatus: this.formOption.processingStatus,
  672. alertRankId: this.formOption.alertRankId,
  673. operationContent: this.operationContent,
  674. userId: utils.storage('sw_user').userId
  675. }
  676. this.changeStateData(params)
  677. },
  678. commonCancel () {
  679. this.modalStatus = false
  680. },
  681. }
  682. };
  683. </script>
  684. <style scoped lang="stylus">
  685. .content-main-manage {
  686. position: relative;
  687. height: 100%;
  688. }
  689. .search-list {
  690. display: flex;
  691. padding: 10px 0 0;
  692. }
  693. .search-left {
  694. display: flex;
  695. align-items: center;
  696. .ivu-select {
  697. width: 125px;
  698. height: 32px;
  699. }
  700. .ivu-select-single .ivu-select-selection {
  701. height: 100%;
  702. }
  703. >>> .ivu-input {
  704. width: 152px;
  705. height: 32px;
  706. }
  707. >>> .common-date-picker .ivu-input {
  708. width: 234px;
  709. }
  710. >>> .ivu-input-prefix, >>> .ivu-input-suffix {
  711. height: 32px;
  712. line-height: 32px;
  713. }
  714. >>> .ivu-input-icon {
  715. height: 32px;
  716. line-height: 32px;
  717. }
  718. >>> .date-picker-main .ivu-date-picker-header {
  719. border-bottom: 0.0052083333rem solid #204384;
  720. }
  721. }
  722. .btn-container {
  723. display: flex;
  724. justify-content: space-between;
  725. padding-bottom: 10px;
  726. color: #0185EA;
  727. font-size: 14px;
  728. .btn-container-download {
  729. cursor: pointer;
  730. }
  731. .common-corrections {
  732. background: #053B4A;
  733. border: 1px solid #0098C2;
  734. color: #FFFFFF;
  735. margin-right: 5px;
  736. }
  737. .common-eliminate {
  738. background: #4C2215;
  739. border: 1px solid #8E1919;
  740. color: #FFFFFF;
  741. margin-right: 5px;
  742. }
  743. .common-confirm {
  744. background: #0C3423;
  745. border: 1px solid #08AF68;
  746. color: #FFFFFF;
  747. margin-right: 5px;
  748. }
  749. .common-forward {
  750. background: #413A09;
  751. border: 1px solid #A69311;
  752. color: #FFFFFF;
  753. }
  754. }
  755. .common-form {
  756. display: flex;
  757. flex-wrap: wrap;
  758. }
  759. >>> .common-form-list .ivu-form-item {
  760. margin-bottom: 10px;
  761. }
  762. .manage-main-center {
  763. width: 100%;
  764. height: calc(100% - 150px);
  765. }
  766. .common-table {
  767. max-height: 100%;
  768. }
  769. // >>> .common-table .table-state-clear .ivu-table-cell-tooltip-content{
  770. // color:#E92E2E;
  771. // }
  772. >>> .common-table .ivu-table th {
  773. height: 50px;
  774. }
  775. >>> .common-table .ivu-table td {
  776. height: 49.5px;
  777. }
  778. >>> .common-table .ivu-spin-fix {
  779. top: 50px;
  780. }
  781. >>> .app-table .ivu-spin-fix {
  782. height: calc(100vh - 375px);
  783. }
  784. >>> .common-table .ivu-table-tip {
  785. background: url('../../../assets/images/noData.png') no-repeat center;
  786. }
  787. >>> .app-table .ivu-table-tip {
  788. height: calc(100vh - 375px);
  789. }
  790. >>> .common-table .ivu-table-tip table {
  791. display: none;
  792. }
  793. >>> .modal-table {
  794. overflow: auto !important;
  795. }
  796. >>> .modal-table .ivu-spin-fix {
  797. height: 200px;
  798. }
  799. >>> .modal-table .ivu-table-tip {
  800. height: 200px;
  801. }
  802. .common-page {
  803. margin-top: 15px;
  804. display: flex;
  805. align-items: center;
  806. justify-content: flex-end;
  807. position: absolute;
  808. bottom: 0;
  809. right: 0;
  810. }
  811. .common-page-total {
  812. color: #fff;
  813. padding-right: 10px;
  814. font-size: 14px;
  815. span {
  816. color #409EFF;
  817. }
  818. }
  819. .common-form-item-text {
  820. font-size: 11px;
  821. color: #85A3D4;
  822. margin: 10px 0;
  823. }
  824. >>> .common-modal-top-text {
  825. font-size: 14px;
  826. font-weight: bold;
  827. color: #29A0FF;
  828. line-height: 42px;
  829. border-left: 3px solid #1590F1;
  830. padding-left: 12px;
  831. }
  832. >>> .common-modal-top-especial {
  833. margin-bottom: -10px;
  834. }
  835. >>> .common-modal-content {
  836. display: flex;
  837. width: 100%;
  838. justify-content: space-between;
  839. flex-wrap: wrap;
  840. margin-bottom: 15px;
  841. border-right: 1px solid #21437B;
  842. }
  843. >>> .modal-content-item {
  844. width: 50%;
  845. display: flex;
  846. }
  847. >>> .item-especial {
  848. width: 100%;
  849. }
  850. >>> .modal-content-item-name {
  851. width: 50%;
  852. height: 45px;
  853. line-height: 45px;
  854. background: #13305F;
  855. border-top: 1px solid #21437B;
  856. border-left: 1px solid #21437B;
  857. font-size: 14px;
  858. color: #F5F5F5;
  859. padding-left: 20px;
  860. }
  861. >>> .modal-content-item-value {
  862. width: 50%;
  863. height: 45px;
  864. line-height: 45px;
  865. background: #06214D;
  866. border-top: 1px solid #21437B;
  867. border-left: 1px solid #21437B;
  868. font-size: 14px;
  869. color: #F5F5F5;
  870. padding-left: 20px;
  871. }
  872. >>> .item-especial-bot .modal-content-item-name {
  873. border-bottom: 1px solid #21437B;
  874. }
  875. >>> .item-especial-bot .modal-content-item-value {
  876. border-bottom: 1px solid #21437B;
  877. }
  878. >>> .item-especial-value .ivu-tooltip-rel{
  879. cursor: pointer;
  880. text-decoration: underline;
  881. }
  882. >>> .modal-content-item-value .ivu-tooltip {
  883. width: 100%;
  884. }
  885. >>> .modal-content-item-value .ivu-tooltip-rel {
  886. overflow: hidden;
  887. text-overflow:ellipsis;
  888. white-space: nowrap;
  889. }
  890. >>> .common-modal-detail .ivu-table-body {
  891. max-height: 238PX;
  892. }
  893. /deep/ .ivu-input::-webkit-input-placeholder{
  894. color: #718EBD;
  895. }
  896. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 19+ */
  897. color: #718EBD;
  898. }
  899. /deep/ .ivu-input::-moz-placeholder{ /* Mozilla Firefox 4 to 18 */
  900. color: #718EBD;
  901. }
  902. /deep/ .ivu-input::-ms-input-placeholder{ /* Internet Explorer 10-11 */
  903. color: #718EBD;
  904. }
  905. .common-modal-select {
  906. color: #fff;
  907. font-size: 14px;
  908. margin-bottom: 10px;
  909. margin-left: 35PX;
  910. }
  911. </style>