alarmMessagePopue.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. <template >
  2. <div>
  3. <i class="el-icon-back" v-show="!drawer" type="primary" @click="hideDrawer(true)"></i>
  4. <transition name="el-zoom-in-center">
  5. <div v-show="drawer" class="popue">
  6. <i
  7. class="el-icon-right"
  8. v-if="getalertMessageMap.length > 0"
  9. v-show="drawer"
  10. type="primary"
  11. @click="hideDrawer(false)"
  12. ></i>
  13. <div
  14. class="warn-massage"
  15. v-for="(v,index) in getalertMessageMap"
  16. :key="index"
  17. :class="{ImgBar:!v.opened}"
  18. >
  19. <div class="titleFlex">
  20. <div>{{ $store.state.bindingsetting.TechnologicalProcess[v.part]}}</div>
  21. <div>{{v.alertTime | timeFilter}}</div>
  22. </div>
  23. <span>{{v.alertText}}</span>
  24. <div class="warn-btn">
  25. <div @click="godevicealarmdetails(v)" class="warn-imgBill"></div>
  26. <div @click="closeOpen(v)" class="warn-imgTrue"></div>
  27. </div>
  28. </div>
  29. </div>
  30. </transition>
  31. <el-dialog
  32. class="deviceClass"
  33. width="1200px"
  34. top="18vh"
  35. :title="clickid"
  36. :visible.sync="devicealarmdetails"
  37. :modal-append-to-body="false"
  38. >
  39. <devicealarmdetails ref="deviceAlarmDet" :objectid="objectid" :faultInfo="faultInfo"></devicealarmdetails>
  40. <span slot="footer" class="dialog-footer">
  41. <el-button size="small" type="primary" @click="generateDefects">生成缺陷单</el-button>
  42. <el-button size="small" type="primary" @click="confirm">确认</el-button>
  43. </span>
  44. </el-dialog>
  45. </div>
  46. </template>
  47. <script type="text">
  48. import devicealarmdetails from "./DeviceAlarmDetails";
  49. import { alert } from "@/network/network";
  50. import { dateFormat } from "@/assets/js/common";
  51. import "element-ui/lib/theme-chalk/base.css";
  52. import { setInterval } from "timers";
  53. export default {
  54. components: {
  55. devicealarmdetails
  56. },
  57. data() {
  58. return {
  59. popueMessageTick: null,
  60. faultInfo: "",
  61. objectid: "",
  62. clickid: "缺陷单",
  63. devicealarmdetails: false,
  64. drawer: false,
  65. searchCondition: {
  66. objectId: "",
  67. stationId: "",
  68. startTime: "",
  69. endTime: "",
  70. rank: "",
  71. cateGory1: "",
  72. cateGory2: "",
  73. keyText: "",
  74. pageIndex: 1,
  75. pageSize: 100,
  76. StationName: "全部",
  77. RankText: "全部",
  78. CateGoryText: "全部"
  79. },
  80. popueWatch: ""
  81. };
  82. },
  83. computed: {
  84. getalertMessageMap() {
  85. const alertMessageMap = this.$store.state.alarm.alertMessageMap;
  86. const alertMessageList = [];
  87. for (let i in alertMessageMap) {
  88. alertMessageList.push(alertMessageMap[i]);
  89. }
  90. this.popueWatch = alertMessageList;
  91. console.log(alertMessageList)
  92. return alertMessageList;
  93. }
  94. },
  95. watch: {
  96. popueWatch(val) {
  97. if (this.drawer == true) return;
  98. this.drawer = true;
  99. }
  100. },
  101. methods: {
  102. hideDrawer(isHide) {
  103. if (isHide == false) {
  104. this.drawer = isHide;
  105. this.drawerOpen();
  106. } else {
  107. this.drawer = isHide;
  108. }
  109. },
  110. drawerOpen() {
  111. if (this.popueMessageTick != null) {
  112. clearTimeout(this.popueMessageTick);
  113. }
  114. this.popueMessageTick = setTimeout(() => {
  115. if (this.drawer == true) return;
  116. this.drawer = true;
  117. this.popueMessageTick = null;
  118. }, 30000);
  119. },
  120. closeOpen(faultInfo) {
  121. console.log(localStorage.getItem('token'))
  122. //console.log(localStorage.getItem('token').length)
  123. console.log(faultInfo)
  124. //console.log(token) //----------------------------------------------------------------------->
  125. if(localStorage.getItem('token') && localStorage.getItem('token') == "")
  126. {
  127. this.$message.success("尚未登录");
  128. this.$router.push("/login");
  129. }
  130. if (faultInfo.opened == false)
  131. {
  132. this.$store.dispatch("RemovePopupAlertMessage", faultInfo.infoId);
  133. }
  134. else
  135. {
  136. alert.confirmAlert(faultInfo);
  137. this.devicealarmdetails = true;
  138. }
  139. },
  140. godevicealarmdetails(faultInfo) {
  141. if (this.$store.state.loginInformation.login != true)
  142. return alert("请先登录!");
  143. this.faultInfo = faultInfo;
  144. this.$store.state.machinmeAlarmDetails = [];
  145. this.clickid = "设备报警详情 -- [" + faultInfo.windturbineName + "]";
  146. this.objectid = faultInfo.objectId;
  147. this.searchCondition.objectId = this.objectid;
  148. this.searchCondition.cateGory1 = faultInfo.category1;
  149. this.searchCondition.cateGory1 =
  150. this.searchCondition.cateGory1 == "FJ"
  151. ? "windturbine"
  152. : this.searchCondition.cateGory1;
  153. alert.calcsubmitGetRealTimeAlarmList(this.searchCondition);
  154. this.devicealarmdetails = true;
  155. },
  156. generateDefects() {
  157. this.$refs.deviceAlarmDet.createOrConfirm(
  158. 3,
  159. this.$store.state.loginInformation.name
  160. );
  161. this.$refs.deviceAlarmDet.test();
  162. this.devicealarmdetails=false;
  163. },
  164. confirm() {
  165. this.$refs.deviceAlarmDet.createOrConfirm(
  166. 1,
  167. this.$store.state.loginInformation.name
  168. );
  169. this.devicealarmdetails=false;
  170. }
  171. },
  172. filters: {
  173. timeFilter(value) {
  174. if (value) return dateFormat("yyyy-MM-dd HH:mm:ss", new Date(value));
  175. else return "";
  176. }
  177. }
  178. };
  179. </script>
  180. <style lang="less" scope>
  181. ::-webkit-scrollbar {
  182. width: 0.25rem;
  183. height: 0.25rem;
  184. background-image: linear-gradient(
  185. 135deg,
  186. #cacaca 0%,
  187. #cacaca 72%,
  188. #cacaca 100%
  189. );
  190. }
  191. ::-webkit-scrollbar-track {
  192. border-radius: 0;
  193. }
  194. ::-webkit-scrollbar-thumb {
  195. border-radius: 0;
  196. background-image: linear-gradient(
  197. 135deg,
  198. #707070 0%,
  199. #707070 72%,
  200. #707070 100%
  201. );
  202. transition: all 0.2s;
  203. border-radius: 0.25rem;
  204. }
  205. ::-webkit-scrollbar-thumb:hover {
  206. background-color: rgba(95, 95, 95, 0.7);
  207. }
  208. .popue {
  209. display: flex;
  210. position: fixed;
  211. bottom: 50px;
  212. right: 5px;
  213. max-height: 86vh;
  214. flex-direction: column-reverse;
  215. overflow: auto;
  216. overflow-x: hidden;
  217. }
  218. .el-icon-back {
  219. position: absolute;
  220. bottom: 7vh;
  221. right: 5px;
  222. cursor: pointer;
  223. }
  224. .el-icon-right {
  225. position: fixed;
  226. bottom: 5vh;
  227. right: 285px;
  228. cursor: pointer;
  229. }
  230. .ImgBar {
  231. background: url("../../assets/img/alert1.png") no-repeat !important;
  232. color: #070707 !important;
  233. }
  234. .warn-massage {
  235. background: url("../../assets/img/alert.png") no-repeat;
  236. height: 116px;
  237. width: 296px;
  238. border: none;
  239. padding: 0;
  240. color: #ffffff;
  241. display: flex;
  242. flex-wrap: wrap;
  243. justify-content: center;
  244. align-items: center;
  245. margin-bottom: 15px;
  246. border-radius: 5px;
  247. .titleFlex {
  248. opacity: 1;
  249. display: flex;
  250. width: 100%;
  251. height: 33px;
  252. justify-content: space-between;
  253. align-items: center;
  254. font-weight: 400;
  255. font-size: 13px;
  256. margin: 0;
  257. margin-left: 34px;
  258. margin-right: 5px;
  259. }
  260. span {
  261. display: flex;
  262. justify-content: center;
  263. align-items: center;
  264. width: 100%;
  265. height: 51px;
  266. font-size: 14px;
  267. overflow: auto;
  268. }
  269. .warn-btn {
  270. width: 100%;
  271. display: flex;
  272. justify-content: space-between;
  273. align-self: baseline;
  274. }
  275. .warn-imgBill {
  276. cursor: pointer;
  277. width: 114px;
  278. height: 25px;
  279. background: url("../../assets/img/fault_sendBill1.png") no-repeat;
  280. }
  281. .warn-imgTrue {
  282. cursor: pointer;
  283. width: 78px;
  284. height: 25px;
  285. background: url("../../assets/img/T_true.png") no-repeat;
  286. }
  287. }
  288. .deviceClass {
  289. .el-dialog {
  290. right: none !important;
  291. bottom: none !important;
  292. position: relative !important;
  293. margin: 18vh auto 50px !important;
  294. border-radius: 2px !important;
  295. .el-dialog__header {
  296. padding: 15px 16px !important;
  297. background-color: #5e5e5e !important;
  298. }
  299. .el-dialog__body {
  300. padding: 0px 10px !important;
  301. background-color: #eee !important;
  302. }
  303. .el-dialog__footer {
  304. padding: 10px 20px 10px !important;
  305. background-color: #eee !important;
  306. }
  307. .dialog-footer {
  308. display: flex !important;
  309. justify-content: space-around !important;
  310. }
  311. }
  312. }
  313. </style>