gasPump.dataCc2_1.ts 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. export const leftMonitor = [
  2. {
  3. type: 'list',
  4. title: '瓦斯泵',
  5. stateHeader: [],
  6. children: [
  7. {
  8. title: '',
  9. childTitle: ['1#瓦斯泵', '2#瓦斯泵'],
  10. key: ['CentrifugalPump1_', 'CentrifugalPump2_'],
  11. list: [
  12. {
  13. title: '阀门开限位',
  14. code: 'GVL1_OpenLimit',
  15. type: 'warning',
  16. },
  17. {
  18. title: '阀门关限位',
  19. code: 'GVL1_CloseLimit',
  20. type: 'sign',
  21. },
  22. {
  23. title: '健康信号',
  24. code: 'PU_Healthy',
  25. type: 'sign',
  26. },
  27. {
  28. title: '平均电压(V)',
  29. code: 'MOT_AvgVoltage',
  30. type: '',
  31. },
  32. {
  33. title: 'A相电流(A)',
  34. code: 'MOT_Ia',
  35. type: '',
  36. },
  37. {
  38. title: 'B相电流(A)',
  39. code: 'MOT_Ib',
  40. type: '',
  41. },
  42. {
  43. title: 'C相电流(A)',
  44. code: 'MOT_Ic',
  45. type: '',
  46. },
  47. {
  48. title: '前轴温度(℃)',
  49. code: 'MOT_FrontAxleTemp',
  50. type: '',
  51. },
  52. {
  53. title: '后轴温度(℃)',
  54. code: 'MOT_BackAxleTemp',
  55. type: '',
  56. },
  57. {
  58. title: '前轴超温报警',
  59. code: 'MOT_FrontAxleOverTempAlarm',
  60. type: 'sign',
  61. },
  62. {
  63. title: '后轴超温报警',
  64. code: 'MOT_BackAxleOverTempAlarm',
  65. type: 'sign',
  66. },
  67. ],
  68. },
  69. ],
  70. },
  71. {
  72. type: 'list',
  73. title: '冷却泵',
  74. stateHeader: [],
  75. children: [
  76. {
  77. title: '',
  78. childTitle: ['1#冷却泵', '2#冷却泵'],
  79. key: ['SubmarinePump_MOT_', 'SubmarinePump2_MOT_'],
  80. list: [
  81. {
  82. title: '健康信号',
  83. code: 'Healthy',
  84. type: 'sign',
  85. },
  86. {
  87. title: '有功功率(KW)',
  88. code: 'Power',
  89. type: '',
  90. },
  91. {
  92. title: '平均电压(V)',
  93. code: 'AvgVoltage',
  94. type: '',
  95. },
  96. {
  97. title: 'A相电流(A)',
  98. code: 'Ia',
  99. type: '',
  100. },
  101. {
  102. title: 'B相电流(A)',
  103. code: 'Ib',
  104. type: '',
  105. },
  106. {
  107. title: 'C相电流(A)',
  108. code: 'Ic',
  109. type: '',
  110. },
  111. ],
  112. },
  113. ],
  114. },
  115. ];
  116. export const rightMonitor = [
  117. // {
  118. // type: 'table',
  119. // title: '磁力启动器运行状态',
  120. // stateHeader: ['设备名称', '断路器', '合闸输出', '分闸输出', '状态'],
  121. // children: [
  122. // {
  123. // title: '启动器1',
  124. // key: ['Starter1_'],
  125. // childTitle: ['启动器1'],
  126. // },
  127. // {
  128. // title: '启动器2',
  129. // key: ['Starter2_'],
  130. // childTitle: ['启动器2'],
  131. // },
  132. // {
  133. // title: '启动器3',
  134. // key: ['Starter3_'],
  135. // childTitle: ['启动器3'],
  136. // },
  137. // {
  138. // title: '启动器4',
  139. // key: ['Starter4_'],
  140. // childTitle: ['启动器4'],
  141. // },
  142. // {
  143. // title: '启动器5',
  144. // key: ['Starter5_'],
  145. // childTitle: ['启动器5'],
  146. // },
  147. // ],
  148. // list: [
  149. // {
  150. // title: '断路器',
  151. // type: '',
  152. // code: 'CBStatus',
  153. // dict: { '1': '合闸', '0': '分闸' },
  154. // },
  155. // {
  156. // title: '合闸输出',
  157. // type: '',
  158. // code: 'SwitchOnOutput',
  159. // },
  160. // {
  161. // title: '分闸输出',
  162. // type: '',
  163. // code: 'SwitchOffOutput',
  164. // },
  165. // {
  166. // title: '状态',
  167. // type: '',
  168. // code: 'PLCState',
  169. // dict: { '1': '连接', '0': '断开' },
  170. // },
  171. // ],
  172. // },
  173. // {
  174. // type: 'table',
  175. // title: '阀门运行状态',
  176. // stateHeader: ['设备名称', '开启', '停止', '健康', '模式'],
  177. // children: [
  178. // {
  179. // title: '抽气阀',
  180. // key: ['CentrifugalPump1_GVL1_', 'CentrifugalPump1_GVL2_'],
  181. // childTitle: ['1#注水阀', '2#注水阀'],
  182. // },
  183. // {
  184. // title: '排气阀',
  185. // key: ['CentrifugalPump2_GVL1_', 'CentrifugalPump2_GVL2_'],
  186. // childTitle: ['1#排气阀', '2#排气阀'],
  187. // },
  188. // ],
  189. // list: [
  190. // {
  191. // title: '开启',
  192. // type: '',
  193. // code: 'OpenLimit',
  194. // },
  195. // {
  196. // title: '停止',
  197. // type: '',
  198. // code: 'CloseLimit',
  199. // },
  200. // {
  201. // title: '健康',
  202. // type: '',
  203. // code: 'Healthy',
  204. // },
  205. // {
  206. // title: '模式',
  207. // type: '',
  208. // code: 'CtrlMode',
  209. // dict: { '1': '控制', '0': '就地' },
  210. // },
  211. // ],
  212. // },
  213. {
  214. type: 'list',
  215. title: '瓦斯泵预警监测',
  216. stateHeader: [],
  217. children: [
  218. {
  219. title: '',
  220. childTitle: ['1#瓦斯泵', '2#瓦斯泵'],
  221. key: ['CentrifugalPump1_MOT_', 'CentrifugalPump2_MOT_'],
  222. list: [
  223. // {
  224. // title: 'A相超温报警',
  225. // code: 'PhaseATempAlarm',
  226. // type: 'warning',
  227. // },
  228. {
  229. title: 'B相超温报警',
  230. code: 'PhaseBTempAlarm',
  231. type: 'warning',
  232. },
  233. {
  234. title: 'C相超温报警',
  235. code: 'PhaseCTempAlarm',
  236. type: 'warning',
  237. },
  238. {
  239. title: '前轴超温报警',
  240. code: 'FrontAxleOverTempAlarm',
  241. type: 'warning',
  242. },
  243. {
  244. title: '后轴超温报警',
  245. code: 'BackAxleOverTempAlarm',
  246. type: 'warning',
  247. },
  248. ],
  249. },
  250. ],
  251. },
  252. ];
  253. export const detailCtrl = [
  254. {
  255. title: '回路控制',
  256. type: [
  257. {
  258. title: '1回路',
  259. childTitle: ['1回路'],
  260. key: ['PD13_SG1_Loop1'],
  261. },
  262. {
  263. title: '2回路',
  264. childTitle: ['2回路'],
  265. key: ['PD13_SG1_Loop2'],
  266. },
  267. {
  268. title: '3回路',
  269. childTitle: ['3回路'],
  270. key: ['PD13_SG1_Loop3'],
  271. },
  272. {
  273. title: '4回路',
  274. childTitle: ['4回路'],
  275. key: ['PD13_SG1_Loop4'],
  276. },
  277. ],
  278. items: [
  279. {
  280. title: '分闸运行',
  281. code: '_HMISwitchOff',
  282. },
  283. {
  284. title: '合闸运行',
  285. code: '_HMISwitchOn',
  286. },
  287. {
  288. title: '远程短路试验',
  289. code: '_HMIShortTest',
  290. },
  291. {
  292. title: '远程漏电试验',
  293. code: '_HMILeakageTest',
  294. },
  295. ],
  296. },
  297. {
  298. title: '泵站控制',
  299. type: [
  300. {
  301. title: '瓦斯泵',
  302. childTitle: ['1#瓦斯泵', '2#瓦斯泵'],
  303. key: ['PD13_Starter201', 'PD13_Starter202'],
  304. },
  305. {
  306. title: '排水泵',
  307. childTitle: ['1#排水泵', '2#排水泵'],
  308. key: ['PD13_Starter208'],
  309. },
  310. {
  311. title: '注水泵',
  312. childTitle: ['1#排水泵', '2#排水泵'],
  313. key: ['PD13_Starter203', 'PD13_Starter204'],
  314. },
  315. ],
  316. items: [
  317. {
  318. title: '远程短路试验',
  319. code: '_HMIShortTest',
  320. },
  321. {
  322. title: '远程漏电试验',
  323. code: '_HMILeakageTest',
  324. },
  325. {
  326. title: '通信合闸安全校验',
  327. code: '_SafetyVerify',
  328. },
  329. ],
  330. },
  331. {
  332. title: '阀门控制',
  333. type: [
  334. {
  335. title: '注水阀',
  336. childTitle: ['1#注水阀', '2#注水阀'],
  337. key: ['PD13_SG1', 'PD13_SG2'],
  338. },
  339. {
  340. title: '抽气阀',
  341. childTitle: ['1#抽气阀', '2#抽气阀'],
  342. key: ['PD13_SG4', 'PD13_SG6'],
  343. },
  344. {
  345. title: '排气阀',
  346. childTitle: ['1#排气阀', '2#排气阀'],
  347. key: ['PD13_SG3', 'PD13_SG5'],
  348. },
  349. ],
  350. items: [
  351. {
  352. title: '开启',
  353. code: '_HMIOpen',
  354. },
  355. {
  356. title: '关闭',
  357. code: '_HMIClose',
  358. },
  359. {
  360. title: '停止',
  361. code: '_HMIStop',
  362. },
  363. ],
  364. },
  365. ];
  366. export const modelMonitor = [
  367. {
  368. title: '负压(KPa)',
  369. code: 'FanPre',
  370. },
  371. {
  372. title: '泵站内温度(℃)',
  373. code: 'TemperatureSensor_Temp',
  374. },
  375. {
  376. title: '水仓液位(m)',
  377. code: 'VSL_LiquidLevelSensor_Level',
  378. },
  379. {
  380. title: '双瓦斯泵停泵报警',
  381. code: 'PumpStopAlarm1',
  382. type: 'warning',
  383. },
  384. {
  385. title: '泵站温度低报警',
  386. code: 'TemperatureSensor_TemperatureLowAlarm',
  387. type: 'warning',
  388. },
  389. {
  390. title: '泵站温度高报警',
  391. code: 'TemperatureSensor_TemperatureHighAlarm',
  392. type: 'warning',
  393. },
  394. {
  395. title: '水仓液位低报警',
  396. code: 'VSL_LiquidLevelSensor_LowWaterAlarm',
  397. type: 'warning',
  398. },
  399. {
  400. title: '水仓液位高报警',
  401. code: 'VSL_LiquidLevelSensor_HighWaterAlarm',
  402. type: 'warning',
  403. },
  404. ];