grid.plugins.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. // 本地模拟json数据
  2. // 首页九宫格
  3. let cuIconList = [
  4. {
  5. imgUrl: "/static/icons/index/APP-xunjian.svg",
  6. badge: 0,
  7. name: "巡检",
  8. redirectUrl: "/pages/business/zhaf/xunJian/xunJian",
  9. },
  10. {
  11. imgUrl: "/static/icons/index/APP-xxcx.svg",
  12. badge: 0,
  13. name: "信息查询",
  14. redirectUrl: "/pages/business/mhxf/informationSelect/index",
  15. },
  16. {
  17. imgUrl: "/static/icons/index/APP-sbgl.svg",
  18. badge: 0,
  19. name: "设备管理",
  20. redirectUrl: "/pages/business/mhxf/deviceManage/index",
  21. },
  22. {
  23. imgUrl: "/static/icons/index/APP-zzdt.svg",
  24. badge: 0,
  25. name: "协同作战",
  26. redirectUrl: "/pages/business/mhxf/coordination/index",
  27. },
  28. {
  29. imgUrl: "/static/icons/index/APP-dwxxcj.svg",
  30. badge: 0,
  31. name: "单位采集",
  32. redirectUrl: "/pages/business/mhxf/unitInfoCollection/index",
  33. },
  34. {
  35. imgUrl: "/static/icons/index/APP-xfbg.svg",
  36. badge: 0,
  37. name: "消防报告",
  38. redirectUrl: "/pages/business/mhxf/fireReport/index",
  39. },
  40. {
  41. imgUrl: "/static/icons/index/APP-dbsx.svg",
  42. badge: 0,
  43. name: "待办事项",
  44. redirectUrl: "/pages/business/mhxf/needMatter/index",
  45. },
  46. // {
  47. // imgUrl: "/static/images/square/square-xf.png",
  48. // badge: 0,
  49. // name: "未开发",
  50. // redirectUrl: "",
  51. // },
  52. ];
  53. // 首页报警数据
  54. let staticData = {
  55. msg: "\u64cd\u4f5c\u6210\u529f",
  56. flag: true,
  57. companyCode: "1,2,3,4,5,6,7,8,12,13,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39",
  58. data: [
  59. {
  60. statisticalPeriod: "2021-03-16~2021-04-16",
  61. smartElectricityCount: "178",
  62. videoMonitoringCount: "12456",
  63. alarmCount: 12627,
  64. eventCount: 2,
  65. hiddenDangerCount: 4,
  66. offlineCount: 20,
  67. faultCount: 30,
  68. earlyWarningCount: 100,
  69. otherCount: 99,
  70. normalCount: 66,
  71. integratedAlarmCount: 12627,
  72. unprocessedCount: 0,
  73. },
  74. ],
  75. };
  76. // 巡检模块 开始
  77. let xunJianList = [
  78. {
  79. id: 1,
  80. title: "巡检任务",
  81. num: "0",
  82. imgUrl: "/static/images/xunjian/xunJian-icon1.png",
  83. redirectUrl: "/pages/business/zhaf/xunJian/plan/index",
  84. },
  85. {
  86. id: 2,
  87. title: "巡检记录",
  88. num: "0",
  89. imgUrl: "/static/images/xunjian/xunJian-icon2.png",
  90. redirectUrl: "/pages/business/zhaf/xunJian/plan/index",
  91. },
  92. {
  93. id: 3,
  94. title: "巡检采集",
  95. num: "0",
  96. imgUrl: "/static/images/xunjian/xunJian-icon3.png",
  97. redirectUrl: "/pages/business/zhaf/xunJian/collect/index",
  98. },
  99. ];
  100. let xunJianRecord = [
  101. {
  102. id: "561",
  103. title: "计划:巡检计划1",
  104. des: "点位:巡检点位01",
  105. time: "2021-01-20 15:23:43",
  106. status: 0,
  107. },
  108. {
  109. id: "561",
  110. title: "计划:巡检计划1",
  111. des: "点位:巡检点位01",
  112. time: "2021-01-20 15:23:43",
  113. status: 1,
  114. },
  115. {
  116. id: "561",
  117. title: "计划:巡检计划1",
  118. des: "点位:巡检点位01",
  119. time: "2021-01-20 15:23:43",
  120. status: 1,
  121. },
  122. ];
  123. let xunJianPlan = [
  124. {
  125. id: "561",
  126. title: "虹泾总部园巡检点位1",
  127. status: 0,
  128. },
  129. {
  130. id: "561",
  131. title: "虹泾总部园巡检点位2",
  132. status: 0,
  133. },
  134. {
  135. id: "561",
  136. title: "虹泾总部园巡检点位3",
  137. status: 1,
  138. },
  139. ];
  140. // 巡检模块 结束
  141. // 定义数据出口
  142. export default {
  143. staticData: staticData,
  144. cuIconList: cuIconList,
  145. xunJianList: xunJianList,
  146. xunJianRecord: xunJianRecord,
  147. xunJianPlan: xunJianPlan,
  148. };