123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- // 本地模拟json数据
- // 首页九宫格
- let cuIconList = [
- {
- imgUrl: "/static/icons/index/APP-xunjian.svg",
- badge: 0,
- name: "巡检",
- redirectUrl: "/pages/business/zhaf/xunJian/xunJian",
- },
- {
- imgUrl: "/static/icons/index/APP-xxcx.svg",
- badge: 0,
- name: "信息查询",
- redirectUrl: "/pages/business/mhxf/informationSelect/index",
- },
- {
- imgUrl: "/static/icons/index/APP-sbgl.svg",
- badge: 0,
- name: "设备管理",
- redirectUrl: "/pages/business/mhxf/deviceManage/index",
- },
- {
- imgUrl: "/static/icons/index/APP-zzdt.svg",
- badge: 0,
- name: "协同作战",
- redirectUrl: "/pages/business/mhxf/coordination/index",
- },
- {
- imgUrl: "/static/icons/index/APP-dwxxcj.svg",
- badge: 0,
- name: "单位采集",
- redirectUrl: "/pages/business/mhxf/unitInfoCollection/index",
- },
- {
- imgUrl: "/static/icons/index/APP-xfbg.svg",
- badge: 0,
- name: "消防报告",
- redirectUrl: "/pages/business/mhxf/fireReport/index",
- },
- {
- imgUrl: "/static/icons/index/APP-dbsx.svg",
- badge: 0,
- name: "待办事项",
- redirectUrl: "/pages/business/mhxf/needMatter/index",
- },
- // {
- // imgUrl: "/static/images/square/square-xf.png",
- // badge: 0,
- // name: "未开发",
- // redirectUrl: "",
- // },
- ];
- // 首页报警数据
- let staticData = {
- msg: "\u64cd\u4f5c\u6210\u529f",
- flag: true,
- 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",
- data: [
- {
- statisticalPeriod: "2021-03-16~2021-04-16",
- smartElectricityCount: "178",
- videoMonitoringCount: "12456",
- alarmCount: 12627,
- eventCount: 2,
- hiddenDangerCount: 4,
- offlineCount: 20,
- faultCount: 30,
- earlyWarningCount: 100,
- otherCount: 99,
- normalCount: 66,
- integratedAlarmCount: 12627,
- unprocessedCount: 0,
- },
- ],
- };
- // 巡检模块 开始
- let xunJianList = [
- {
- id: 1,
- title: "巡检任务",
- num: "0",
- imgUrl: "/static/images/xunjian/xunJian-icon1.png",
- redirectUrl: "/pages/business/zhaf/xunJian/plan/index",
- },
- {
- id: 2,
- title: "巡检记录",
- num: "0",
- imgUrl: "/static/images/xunjian/xunJian-icon2.png",
- redirectUrl: "/pages/business/zhaf/xunJian/plan/index",
- },
- {
- id: 3,
- title: "巡检采集",
- num: "0",
- imgUrl: "/static/images/xunjian/xunJian-icon3.png",
- redirectUrl: "/pages/business/zhaf/xunJian/collect/index",
- },
- ];
- let xunJianRecord = [
- {
- id: "561",
- title: "计划:巡检计划1",
- des: "点位:巡检点位01",
- time: "2021-01-20 15:23:43",
- status: 0,
- },
- {
- id: "561",
- title: "计划:巡检计划1",
- des: "点位:巡检点位01",
- time: "2021-01-20 15:23:43",
- status: 1,
- },
- {
- id: "561",
- title: "计划:巡检计划1",
- des: "点位:巡检点位01",
- time: "2021-01-20 15:23:43",
- status: 1,
- },
- ];
- let xunJianPlan = [
- {
- id: "561",
- title: "虹泾总部园巡检点位1",
- status: 0,
- },
- {
- id: "561",
- title: "虹泾总部园巡检点位2",
- status: 0,
- },
- {
- id: "561",
- title: "虹泾总部园巡检点位3",
- status: 1,
- },
- ];
- // 巡检模块 结束
- // 定义数据出口
- export default {
- staticData: staticData,
- cuIconList: cuIconList,
- xunJianList: xunJianList,
- xunJianRecord: xunJianRecord,
- xunJianPlan: xunJianPlan,
- };
|