index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. <template>
  2. <div class="warn-dialog">
  3. <div class="warn-wrapper">
  4. <div class="warn-top">
  5. <div class="warn-title">
  6. <div class="warn-icon">
  7. <img src="@assets/imgs/warn-icon.png" />
  8. </div>
  9. <div class="warn-name">实时告警</div>
  10. <div class="warn-num">{{ warnNum ? warnNum : 0 }}</div>
  11. </div>
  12. <div class="warn-close" @click="displayAlarm">
  13. <img src="@assets/imgs/warn-close.png" />
  14. </div>
  15. </div>
  16. <div class="warn-list">
  17. <div class="warn-table">
  18. <el-table
  19. @selection-change="handleSelectionChange"
  20. :data="warnList"
  21. size="mini"
  22. stripe
  23. height="100%"
  24. width="100%"
  25. :row-class-name="tableRowClassName"
  26. >
  27. <el-table-column type="selection" width="40" align="center">
  28. </el-table-column>
  29. <el-table-column
  30. v-for="(header, index) in tableHeader"
  31. :key="index"
  32. :label="header.title"
  33. :align="header.code == '' ? 'left' : 'center'"
  34. :prop="header.code"
  35. show-overflow-tooltip
  36. :width="header.width"
  37. >
  38. <template #default="{ row }">
  39. <div v-if="header.code == ''" @dblclick="handleTo(row)">
  40. {{ row["wpName"] }}{{ row["deviceName"]
  41. }}{{ row.alarmType != "booststation" ? "设备" : ""
  42. }}{{ row["description"] }}
  43. </div>
  44. <div
  45. v-else-if="header.code == 'isCloseName'"
  46. :style="`color:${row.isClose ? '#05bb4c' : '#d35400'}`"
  47. >
  48. {{ row[header.code] }}
  49. </div>
  50. <div v-else>
  51. {{ row[header.code] }}
  52. </div>
  53. </template>
  54. </el-table-column>
  55. </el-table>
  56. </div>
  57. <div class="warn-btns">
  58. <div class="setting svg-icon" @click="setAlarmConfig">
  59. <SvgIcon svgid="svg-setting" />
  60. </div>
  61. <el-button class="confirm-one" @click="confirm">选择确认 </el-button>
  62. <el-button class="confirm-all" @click="confirmAll"
  63. >全部确认
  64. </el-button>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <!-- <div class="setting-dialog" v-if="displaySetting">
  70. <div class="setting-wrapper">
  71. <div class="box-title">
  72. <div class="box-name">报警配置</div>
  73. <div class="box-close" @click="cancle">
  74. <img src="@assets/imgs/warn-close.png" />
  75. </div>
  76. </div>
  77. <div class="box-content">
  78. <el-tabs type="border-card" v-model="activeTab">
  79. <el-tab-pane
  80. v-for="(item, index) in configArray"
  81. :key="index"
  82. :name="item.id"
  83. >
  84. <template #label>
  85. <div class="alartPaneLabel">
  86. <span>{{ getAlartLevelName(item.alarmLevel) }}</span>
  87. <div class="alartBadge" :class="getAlartStatus(item)"></div>
  88. </div>
  89. </template>
  90. <el-form label-width="120px">
  91. <el-form-item label="报警弹窗:">
  92. <el-switch
  93. v-model="item.isAlart"
  94. active-text="弹出"
  95. inactive-text="不弹出"
  96. />
  97. </el-form-item>
  98. <el-form-item label="播放声音:">
  99. <el-switch
  100. v-model="item.isAlarmSound"
  101. active-text="播放"
  102. inactive-text="不播放"
  103. />
  104. </el-form-item>
  105. <el-form-item label="必须确认:">
  106. <el-switch
  107. v-model="item.isContinuousAlarm"
  108. active-text="是"
  109. inactive-text="否"
  110. />
  111. </el-form-item>
  112. </el-form>
  113. </el-tab-pane>
  114. </el-tabs>
  115. <div class="btnBox">
  116. <el-button @click="save">保存配置</el-button>
  117. </div>
  118. </div>
  119. </div>
  120. </div> -->
  121. </template>
  122. <script>
  123. import { confirmAlart } from "@/api/zhbj/index.js";
  124. import SvgIcon from "@com/coms/icon/svg-icon.vue";
  125. import dayjs from "dayjs";
  126. export default {
  127. name: "byPase", //首页标题栏
  128. props: {
  129. alarmConfigArray: {
  130. type: Array,
  131. required: true,
  132. },
  133. dialogList: {
  134. type: Array,
  135. },
  136. },
  137. components: { SvgIcon },
  138. data() {
  139. return {
  140. tableHeader: [
  141. { title: "时间", code: "tsName", width: "120" },
  142. { title: "描述", code: "", width: "" },
  143. { title: "是否解除", code: "isCloseName", width: "80" },
  144. ],
  145. checkedRow: [],
  146. warnList: [],
  147. };
  148. },
  149. created() {
  150. this.warnList = this.dialogList;
  151. },
  152. mounted() {},
  153. computed: {
  154. warnNum() {
  155. return this.$store.state.warnList.length;
  156. },
  157. list() {
  158. return this.$store.state.warnList;
  159. },
  160. },
  161. methods: {
  162. handleTo(row) {
  163. console.log(row);
  164. if (row.alarmType == "booststation") {
  165. this.$router.push({
  166. path: "/stateMonitor/alarmCenter",
  167. query: {
  168. id: row.id,
  169. stationId: row.stationId,
  170. alarmType: row.alarmType,
  171. ts: row.ts,
  172. endts: row.isClose
  173. ? dayjs(row.endts).valueOf() || dayjs(row.closeTime).valueOf()
  174. : "",
  175. },
  176. });
  177. } else {
  178. this.$router.push({
  179. path: "/stateMonitor/alarmCenter",
  180. query: {
  181. id: row.id,
  182. stationId: row.stationId,
  183. deviceId: row.deviceId,
  184. alarmType: row.alarmType,
  185. ts: row.ts,
  186. endts: row.isClose
  187. ? dayjs(row.endts).valueOf() || dayjs(row.closeTime).valueOf()
  188. : "",
  189. },
  190. });
  191. }
  192. },
  193. init(list) {
  194. this.warnList = list;
  195. },
  196. tableRowClassName({ row }) {
  197. if (row.isClose) {
  198. return "isConfirm";
  199. } else {
  200. return "";
  201. }
  202. },
  203. cancle() {
  204. this.configArray = this.alarmConfigArray;
  205. this.displaySetting = false;
  206. },
  207. handleSelectionChange(rows) {
  208. this.checkedRow = rows;
  209. },
  210. displayAlarm() {
  211. this.$emit("close");
  212. },
  213. confirm() {
  214. this.$confirm("您确定要执行此操作吗?", "提示", {
  215. confirmButtonText: "确定",
  216. cancelButtonText: "取消",
  217. type: "warning",
  218. }).then(() => {
  219. let arr = [];
  220. arr = this.checkedRow.map((item) => {
  221. return { alarmType: item.alarmType, id: item.id };
  222. });
  223. confirmAlart(arr).then((res) => {
  224. if (res.code === 200) {
  225. this.BASE.showMsg({
  226. type: "success",
  227. msg: "确认成功",
  228. });
  229. this.checkedRow.forEach((ele) => {
  230. for (let i = 0; i < this.warnList.length; i++) {
  231. if (
  232. `${ele.id}${ele.ts}` ===
  233. `${this.warnList[i].id}${this.warnList[i].ts}`
  234. ) {
  235. setTimeout(() => {
  236. this.warnList.splice(i, 1);
  237. }, 0);
  238. break;
  239. }
  240. }
  241. });
  242. this.$store.commit("setWarning", this.warnList);
  243. this.$emit("confirmed");
  244. }
  245. });
  246. });
  247. },
  248. confirmAll() {
  249. this.$confirm("您确定要执行此操作吗?", "提示", {
  250. confirmButtonText: "确定",
  251. cancelButtonText: "取消",
  252. type: "warning",
  253. }).then(() => {
  254. let arr = [];
  255. let oldList = this.warnList;
  256. arr = oldList.map((item) => {
  257. return { alarmType: item.alarmType, id: item.id };
  258. });
  259. confirmAlart(arr).then((res) => {
  260. if (res.code === 200) {
  261. this.BASE.showMsg({
  262. type: "success",
  263. msg: "确认成功",
  264. });
  265. this.warnList = [];
  266. this.$emit("confirmed", true);
  267. }
  268. });
  269. });
  270. },
  271. setAlarmConfig() {
  272. this.$emit("setConfig");
  273. },
  274. },
  275. };
  276. </script>
  277. <style lang="less" scoped>
  278. .warn-dialog {
  279. position: absolute;
  280. right: -12px;
  281. bottom: -6px;
  282. z-index: 1000;
  283. width: 540px;
  284. height: 510px;
  285. .warn-wrapper {
  286. width: 100%;
  287. height: 100%;
  288. // position: absolute;
  289. // bottom: 25px;
  290. // right: 17px;
  291. border-radius: 6px;
  292. background: url("~@/assets/imgs/warn-border.png") no-repeat;
  293. background-color: #000;
  294. background-size: 100% 100%;
  295. .warn-top {
  296. width: 100%;
  297. height: 60px;
  298. padding: 0 22px;
  299. display: flex;
  300. align-items: center;
  301. justify-content: space-between;
  302. background: url("~@/assets/imgs/warn-top.png") no-repeat;
  303. background-size: 100% 100%;
  304. .warn-close {
  305. cursor: pointer;
  306. }
  307. .warn-title {
  308. display: flex;
  309. align-items: center;
  310. position: relative;
  311. &::after {
  312. position: absolute;
  313. bottom: 5px;
  314. right: -15px;
  315. content: "";
  316. width: 7px;
  317. height: 7px;
  318. border-right: 2px solid #fd7f00;
  319. border-bottom: 2px solid #fd7f00;
  320. }
  321. .warn-name {
  322. padding: 0 15px;
  323. }
  324. .warn-num {
  325. font-size: 20px;
  326. font-family: Bicubik;
  327. font-weight: 400;
  328. color: #ff8300;
  329. }
  330. }
  331. }
  332. .warn-list {
  333. height: calc(100% - 60px);
  334. padding: 10px;
  335. .warn-table {
  336. height: calc(100% - 48px);
  337. width: 100%;
  338. .el-table::v-deep {
  339. background: #000;
  340. }
  341. }
  342. .warn-btns {
  343. position: relative;
  344. .el-button ::v-deep {
  345. // background: url("~@/assets/imgs/warn-btn.png") no-repeat;
  346. background-size: 100% 100%;
  347. height: 37px;
  348. border-radius: 5px;
  349. border-width: 0;
  350. color: #fff;
  351. font-size: 16px;
  352. margin-top: 10px;
  353. &:hover,
  354. &:focus {
  355. color: #fff;
  356. background-color: transparent;
  357. border-width: 0;
  358. }
  359. &.confirm-one {
  360. width: 100px;
  361. background: url("~@/assets/imgs/confirmone.png") no-repeat;
  362. transform: translateX(50%);
  363. }
  364. &.confirm-all {
  365. width: 160px;
  366. background: url("~@/assets/imgs/confirmall.png") no-repeat;
  367. transform: translateX(75%);
  368. }
  369. }
  370. .setting {
  371. position: absolute;
  372. top: 55%;
  373. left: 10px;
  374. transform: translateY(-50%);
  375. cursor: pointer;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. ::v-deep .el-table__header-wrapper .el-checkbox {
  382. // display: none;//设置不成功,页面卡顿
  383. visibility: hidden;
  384. }
  385. </style>