nitrogen.data.hty.ts 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  1. export const monitorDataGroupArr = [[1, 2, 3, 4, 5, 6]];
  2. export const modelMonitor = [
  3. {
  4. type: 'list',
  5. title: '空压机',
  6. stateHeader: [],
  7. key: 'PRE',
  8. list: [
  9. {
  10. title: '累计运行时间_天',
  11. code: '_TotalRunTime_Day',
  12. unit: 'day',
  13. child: [],
  14. },
  15. {
  16. title: '累计运行时间_时',
  17. code: '_TotalRunTime_Hour',
  18. unit: 'h',
  19. child: [],
  20. },
  21. {
  22. title: '累计运行时间_分',
  23. code: '_TotalRunTime_Min',
  24. unit: 'minutes',
  25. child: [],
  26. },
  27. {
  28. title: '电压',
  29. code: '_Voltage',
  30. unit: 'V',
  31. child: [],
  32. },
  33. {
  34. title: '电流',
  35. code: '_Current',
  36. unit: 'A',
  37. child: [],
  38. },
  39. {
  40. title: '主机温度',
  41. code: '_MainUnitTemp',
  42. unit: '℃',
  43. child: [],
  44. },
  45. {
  46. title: '回水温度',
  47. code: '_ReturnWaterTemp',
  48. unit: '℃',
  49. child: [],
  50. },
  51. {
  52. title: '排气压力',
  53. code: '_ExhaustPressure',
  54. unit: 'MPa',
  55. child: [],
  56. },
  57. {
  58. title: '故障次数',
  59. code: '_FaultCount',
  60. unit: '',
  61. child: [],
  62. },
  63. {
  64. title: '启动次数',
  65. code: '_StartCount',
  66. unit: '',
  67. child: [],
  68. },
  69. {
  70. title: '油分油位',
  71. code: '_OilSeparatorLevel',
  72. unit: '',
  73. child: [],
  74. },
  75. {
  76. code: 'signal',
  77. child: [
  78. {
  79. title: `运行反馈`,
  80. code: `_Blower1_RunFeedback`,
  81. isWaring: false,
  82. },
  83. {
  84. title: `故障反馈`,
  85. code: `_Blower1_FaultFeedback`,
  86. isWaring: false,
  87. },
  88. ],
  89. },
  90. ],
  91. },
  92. {
  93. type: 'list',
  94. title: '储气罐',
  95. key: 'PRE',
  96. stateHeader: [],
  97. hideInGroup: [],
  98. list: [
  99. {
  100. title: '储气温度',
  101. code: '_StorageTemp',
  102. unit: '℃',
  103. },
  104. {
  105. title: '风包压力',
  106. code: '_PackagePressure',
  107. unit: 'MPa',
  108. },
  109. ],
  110. },
  111. ];
  112. export const totalData = [
  113. {
  114. title: '总管路瞬时流量',
  115. code: 'MainInstantFlow',
  116. unit: 'm³/min',
  117. },
  118. {
  119. title: '总管路累计流量',
  120. code: 'MainTotalFlow',
  121. unit: 'm³/min',
  122. },
  123. ];
  124. export const leftMonitor = [
  125. {
  126. type: 'list',
  127. title: '压风机1',
  128. stateHeader: [],
  129. children: [
  130. {
  131. title: '',
  132. childTitle: ['1#压风机'],
  133. key: ['PRE1'],
  134. list: [
  135. {
  136. title: `风包温度高报警`,
  137. code: `_Blower1_TempHighAlarm`,
  138. type: 'warning',
  139. },
  140. {
  141. title: `风包温度低报警`,
  142. code: `_Blower1_TempLowAlarm`,
  143. type: 'warning',
  144. },
  145. {
  146. title: `风包压力高报警`,
  147. code: `_Blower1_PressureHighAlarm`,
  148. type: 'warning',
  149. },
  150. {
  151. title: `风包压力低报警`,
  152. code: `_Blower_LowPressure`,
  153. type: 'warning',
  154. },
  155. {
  156. title: `电机前轴振动高报警`,
  157. code: `_Motor_FrontVibHigh`,
  158. type: 'warning',
  159. },
  160. {
  161. title: '电机前轴振动低报警',
  162. code: '_Motor_FrontVibLow',
  163. type: 'warning',
  164. },
  165. {
  166. title: '电机后轴振动高报警',
  167. code: '_Motor_RearVibHigh',
  168. type: 'warning',
  169. },
  170. {
  171. title: '电机后轴振动低报警',
  172. code: '_Motor_RearVibLow',
  173. type: 'warning',
  174. },
  175. {
  176. title: '启动超时报警',
  177. code: '_Blower_StartTimeout',
  178. type: 'warning',
  179. },
  180. {
  181. title: '停止超时报警',
  182. code: '_Blower_StopTimeout',
  183. type: 'warning',
  184. },
  185. {
  186. title: '压力传感器保护投退',
  187. code: '_PressureSensor_Protect',
  188. type: 'warning',
  189. },
  190. {
  191. title: '温度传感器保护投退',
  192. code: '_TemperatureSensor_Protect',
  193. type: 'warning',
  194. },
  195. {
  196. title: '前轴振动传感器保护投退',
  197. code: '_FrontVibrationSensor_Protect',
  198. type: 'warning',
  199. },
  200. {
  201. title: '后轴振动传感器保护投退',
  202. code: '_RearVibrationSensor_Protect',
  203. type: 'warning',
  204. },
  205. {
  206. title: '流量传感器保护投退',
  207. code: '_FlowSensor_Protect',
  208. type: 'warning',
  209. },
  210. {
  211. title: '启动',
  212. code: '_AirCompressor_Start',
  213. type: 'warning',
  214. },
  215. {
  216. title: '停止',
  217. code: '_AirCompressor_Stop',
  218. type: 'warning',
  219. },
  220. {
  221. title: '复位',
  222. code: '_AirCompressor_Reset',
  223. type: 'warning',
  224. },
  225. {
  226. title: '加载',
  227. code: '_AirCompressor_Load',
  228. type: 'warning',
  229. },
  230. {
  231. title: `电机前轴振动`,
  232. code: `_FrontVibration`,
  233. type: '',
  234. },
  235. {
  236. title: '电机前轴温度',
  237. code: '_FrontTemp',
  238. type: '',
  239. },
  240. {
  241. title: '回水管流量',
  242. code: '_ReturnFlow',
  243. type: '',
  244. },
  245. {
  246. title: '电压高报警值',
  247. code: '_HighVoltageAlarmSetting',
  248. type: '',
  249. },
  250. {
  251. title: '电流高报警值',
  252. code: '_HighCurrentAlarmSetting',
  253. type: '',
  254. },
  255. {
  256. title: '排气温度高报警值',
  257. code: '_ExhaustTempHighAlarmSetting',
  258. type: '',
  259. },
  260. {
  261. title: '振动值高报警值',
  262. code: '_VibrationHighAlarmSetting',
  263. type: '',
  264. },
  265. {
  266. title: '流量高报警值',
  267. code: '_FlowHighAlarmSetting',
  268. type: '',
  269. },
  270. ],
  271. },
  272. ],
  273. },
  274. {
  275. type: 'list',
  276. title: '压风机2',
  277. stateHeader: [],
  278. children: [
  279. {
  280. title: '',
  281. childTitle: ['2#压风机'],
  282. key: ['PRE2'],
  283. list: [
  284. {
  285. title: `风包温度高报警`,
  286. code: `_Blower_HighTemp`,
  287. type: 'warning',
  288. },
  289. {
  290. title: `风包温度低报警`,
  291. code: `_Blower_LowTemp`,
  292. type: 'warning',
  293. },
  294. {
  295. title: `风包压力高报警`,
  296. code: `_Blower_HighPressure`,
  297. type: 'warning',
  298. },
  299. {
  300. title: `风包压力低报警`,
  301. code: `_Blower_LowPressure`,
  302. type: 'warning',
  303. },
  304. {
  305. title: `电机前轴振动高报警`,
  306. code: `_Motor_FrontVibHigh`,
  307. type: 'warning',
  308. },
  309. {
  310. title: '电机前轴振动低报警',
  311. code: '_Motor_FrontVibLow',
  312. type: 'warning',
  313. },
  314. {
  315. title: '电机后轴振动高报警',
  316. code: '_Motor_RearVibHigh',
  317. type: 'warning',
  318. },
  319. {
  320. title: '电机后轴振动低报警',
  321. code: '_Motor_RearVibLow',
  322. type: 'warning',
  323. },
  324. {
  325. title: '启动超时报警',
  326. code: '_Blower_StartTimeout',
  327. type: 'warning',
  328. },
  329. {
  330. title: '停止超时报警',
  331. code: '_Blower_StopTimeout',
  332. type: 'warning',
  333. },
  334. {
  335. title: '压力传感器保护投退',
  336. code: '_PressureSensor_Protect',
  337. type: 'warning',
  338. },
  339. {
  340. title: `温度传感器保护投退`,
  341. code: `_TemperatureSensor_Protect`,
  342. type: 'warning',
  343. },
  344. {
  345. title: `前轴振动传感器保护投退`,
  346. code: `_FrontVibrationSensor_Protect`,
  347. type: 'warning',
  348. },
  349. {
  350. title: `后轴振动传感器保护投退`,
  351. code: `_RearVibrationSensor_Protect`,
  352. type: 'warning',
  353. },
  354. {
  355. title: `流量传感器保护投退`,
  356. code: `_FlowSensor_Protect`,
  357. type: 'warning',
  358. },
  359. {
  360. title: `启动`,
  361. code: `_AirCompressor_Start`,
  362. type: 'warning',
  363. },
  364. {
  365. title: `停止`,
  366. code: `_AirCompressor_Stop`,
  367. type: 'warning',
  368. },
  369. {
  370. title: `复位`,
  371. code: `_AirCompressor_Reset`,
  372. type: 'warning',
  373. },
  374. {
  375. title: `加载`,
  376. code: `_AirCompressor_Load`,
  377. type: 'warning',
  378. },
  379. {
  380. title: '电机前轴振动',
  381. code: '_FrontVibration',
  382. type: '',
  383. },
  384. {
  385. title: '电机前轴温度',
  386. code: '_FrontTemp',
  387. type: '',
  388. },
  389. {
  390. title: '回水管流量',
  391. code: '_ReturnFlow',
  392. type: '',
  393. },
  394. {
  395. title: '电压高报警值',
  396. code: '_HighVoltageAlarmSetting',
  397. type: '',
  398. },
  399. {
  400. title: '电流高报警值',
  401. code: '_HighCurrentAlarmSetting',
  402. type: '',
  403. },
  404. {
  405. title: '排气温度高报警值',
  406. code: '_ExhaustTempHighAlarmSetting',
  407. type: '',
  408. },
  409. {
  410. title: '振动值高报警值',
  411. code: '_VibrationHighAlarmSetting',
  412. type: '',
  413. },
  414. {
  415. title: '流量高报警值',
  416. code: '_FlowHighAlarmSetting',
  417. type: '',
  418. },
  419. ],
  420. },
  421. ],
  422. },
  423. {
  424. type: 'list',
  425. title: '压风机3',
  426. stateHeader: [],
  427. children: [
  428. {
  429. title: '',
  430. childTitle: ['3#压风机'],
  431. key: ['PRE3'],
  432. list: [
  433. {
  434. title: `风包温度高报警`,
  435. code: `_Blower_HighTemp`,
  436. type: 'warning',
  437. },
  438. {
  439. title: `风包温度低报警`,
  440. code: `_Blower_LowTemp`,
  441. type: 'warning',
  442. },
  443. {
  444. title: `风包压力高报警`,
  445. code: `_Blower_HighPressure`,
  446. type: 'warning',
  447. },
  448. {
  449. title: `风包压力低报警`,
  450. code: `_Blower_LowPressure`,
  451. type: 'warning',
  452. },
  453. {
  454. title: `电机前轴振动高报警`,
  455. code: `_Motor_FrontVibHigh`,
  456. type: 'warning',
  457. },
  458. {
  459. title: '电机前轴振动低报警',
  460. code: '_Motor_FrontVibLow',
  461. type: 'warning',
  462. },
  463. {
  464. title: '电机后轴振动高报警',
  465. code: '_Motor_RearVibHigh',
  466. type: 'warning',
  467. },
  468. {
  469. title: '电机后轴振动低报警',
  470. code: '_Motor_RearVibLow',
  471. type: 'warning',
  472. },
  473. {
  474. title: '启动超时报警',
  475. code: '_Blower_StartTimeout',
  476. type: 'warning',
  477. },
  478. {
  479. title: '停止超时报警',
  480. code: '_Blower_StopTimeout',
  481. type: 'warning',
  482. },
  483. {
  484. title: '压力传感器保护投退',
  485. code: '_PressureSensor_Protect',
  486. type: 'warning',
  487. },
  488. {
  489. title: `温度传感器保护投退`,
  490. code: `_TemperatureSensor_Protect`,
  491. type: 'warning',
  492. },
  493. {
  494. title: `前轴振动传感器保护投退`,
  495. code: `_FrontVibrationSensor_Protect`,
  496. type: 'warning',
  497. },
  498. {
  499. title: `后轴振动传感器保护投退`,
  500. code: `_RearVibrationSensor_Protect`,
  501. type: 'warning',
  502. },
  503. {
  504. title: `流量传感器保护投退`,
  505. code: `_FlowSensor_Protect`,
  506. type: 'warning',
  507. },
  508. {
  509. title: `启动`,
  510. code: `_AirCompressor_Start`,
  511. type: 'warning',
  512. },
  513. {
  514. title: `停止`,
  515. code: `_AirCompressor_Stop`,
  516. type: 'warning',
  517. },
  518. {
  519. title: `复位`,
  520. code: `_AirCompressor_Reset`,
  521. type: 'warning',
  522. },
  523. {
  524. title: `加载`,
  525. code: `_AirCompressor_Load`,
  526. type: 'warning',
  527. },
  528. {
  529. title: '电机前轴振动',
  530. code: '_FrontVibration',
  531. type: '',
  532. },
  533. {
  534. title: '电机前轴温度',
  535. code: '_FrontTemp',
  536. type: '',
  537. },
  538. {
  539. title: '回水管流量',
  540. code: '_ReturnFlow',
  541. type: '',
  542. },
  543. {
  544. title: '电压高报警值',
  545. code: '_HighVoltageAlarmSetting',
  546. type: '',
  547. },
  548. {
  549. title: '电流高报警值',
  550. code: '_HighCurrentAlarmSetting',
  551. type: '',
  552. },
  553. {
  554. title: '排气温度高报警值',
  555. code: '_ExhaustTempHighAlarmSetting',
  556. type: '',
  557. },
  558. {
  559. title: '振动值高报警值',
  560. code: '_VibrationHighAlarmSetting',
  561. type: '',
  562. },
  563. {
  564. title: '流量高报警值',
  565. code: '_FlowHighAlarmSetting',
  566. type: '',
  567. },
  568. ],
  569. },
  570. ],
  571. },
  572. ];
  573. export const rightMonitor = [
  574. {
  575. type: 'list',
  576. title: '压风机4',
  577. stateHeader: [],
  578. children: [
  579. {
  580. title: '',
  581. childTitle: ['4#压风机'],
  582. key: ['PRE4'],
  583. list: [
  584. {
  585. title: `风包温度高报警`,
  586. code: `_Blower_HighTemp`,
  587. type: 'warning',
  588. },
  589. {
  590. title: `风包温度低报警`,
  591. code: `_Blower_LowTemp`,
  592. type: 'warning',
  593. },
  594. {
  595. title: `风包压力高报警`,
  596. code: `_Blower_HighPressure`,
  597. type: 'warning',
  598. },
  599. {
  600. title: `风包压力低报警`,
  601. code: `_Blower_LowPressure`,
  602. type: 'warning',
  603. },
  604. {
  605. title: `电机前轴振动高报警`,
  606. code: `_Motor_FrontVibHigh`,
  607. type: 'warning',
  608. },
  609. {
  610. title: '电机前轴振动低报警',
  611. code: '_Motor_FrontVibLow',
  612. type: 'warning',
  613. },
  614. {
  615. title: '电机后轴振动高报警',
  616. code: '_Motor_RearVibHigh',
  617. type: 'warning',
  618. },
  619. {
  620. title: '电机后轴振动低报警',
  621. code: '_Motor_RearVibLow',
  622. type: 'warning',
  623. },
  624. {
  625. title: '启动超时报警',
  626. code: '_Blower_StartTimeout',
  627. type: 'warning',
  628. },
  629. {
  630. title: '停止超时报警',
  631. code: '_Blower_StopTimeout',
  632. type: 'warning',
  633. },
  634. {
  635. title: '压力传感器保护投退',
  636. code: '_PressureSensor_Protect',
  637. type: 'warning',
  638. },
  639. {
  640. title: `温度传感器保护投退`,
  641. code: `_TemperatureSensor_Protect`,
  642. type: 'warning',
  643. },
  644. {
  645. title: `前轴振动传感器保护投退`,
  646. code: `_FrontVibrationSensor_Protect`,
  647. type: 'warning',
  648. },
  649. {
  650. title: `后轴振动传感器保护投退`,
  651. code: `_RearVibrationSensor_Protect`,
  652. type: 'warning',
  653. },
  654. {
  655. title: `流量传感器保护投退`,
  656. code: `_FlowSensor_Protect`,
  657. type: 'warning',
  658. },
  659. {
  660. title: `启动`,
  661. code: `_AirCompressor_Start`,
  662. type: 'warning',
  663. },
  664. {
  665. title: `停止`,
  666. code: `_AirCompressor_Stop`,
  667. type: 'warning',
  668. },
  669. {
  670. title: `复位`,
  671. code: `_AirCompressor_Reset`,
  672. type: 'warning',
  673. },
  674. {
  675. title: `加载`,
  676. code: `_AirCompressor_Load`,
  677. type: 'warning',
  678. },
  679. {
  680. title: '电机前轴振动',
  681. code: '_FrontVibration',
  682. type: '',
  683. },
  684. {
  685. title: '电机前轴温度',
  686. code: '_FrontTemp',
  687. type: '',
  688. },
  689. {
  690. title: '回水管流量',
  691. code: '_ReturnFlow',
  692. type: '',
  693. },
  694. {
  695. title: '电压高报警值',
  696. code: '_HighVoltageAlarmSetting',
  697. type: '',
  698. },
  699. {
  700. title: '电流高报警值',
  701. code: '_HighCurrentAlarmSetting',
  702. type: '',
  703. },
  704. {
  705. title: '排气温度高报警值',
  706. code: '_ExhaustTempHighAlarmSetting',
  707. type: '',
  708. },
  709. {
  710. title: '振动值高报警值',
  711. code: '_VibrationHighAlarmSetting',
  712. type: '',
  713. },
  714. {
  715. title: '流量高报警值',
  716. code: '_FlowHighAlarmSetting',
  717. type: '',
  718. },
  719. ],
  720. },
  721. ],
  722. },
  723. {
  724. type: 'list',
  725. title: '压风机5',
  726. stateHeader: [],
  727. children: [
  728. {
  729. title: '',
  730. childTitle: ['5#压风机'],
  731. key: ['PRE5'],
  732. list: [
  733. {
  734. title: `风包温度高报警`,
  735. code: `_Blower_HighTemp`,
  736. type: 'warning',
  737. },
  738. {
  739. title: `风包温度低报警`,
  740. code: `_Blower_LowTemp`,
  741. type: 'warning',
  742. },
  743. {
  744. title: `风包压力高报警`,
  745. code: `_Blower_HighPressure`,
  746. type: 'warning',
  747. },
  748. {
  749. title: `风包压力低报警`,
  750. code: `_Blower_LowPressure`,
  751. type: 'warning',
  752. },
  753. {
  754. title: `电机前轴振动高报警`,
  755. code: `_Motor_FrontVibHigh`,
  756. type: 'warning',
  757. },
  758. {
  759. title: '电机前轴振动低报警',
  760. code: '_Motor_FrontVibLow',
  761. type: 'warning',
  762. },
  763. {
  764. title: '电机后轴振动高报警',
  765. code: '_Motor_RearVibHigh',
  766. type: 'warning',
  767. },
  768. {
  769. title: '电机后轴振动低报警',
  770. code: '_Motor_RearVibLow',
  771. type: 'warning',
  772. },
  773. {
  774. title: '启动超时报警',
  775. code: '_Blower_StartTimeout',
  776. type: 'warning',
  777. },
  778. {
  779. title: '停止超时报警',
  780. code: '_Blower_StopTimeout',
  781. type: 'warning',
  782. },
  783. {
  784. title: '压力传感器保护投退',
  785. code: '_PressureSensor_Protect',
  786. type: 'warning',
  787. },
  788. {
  789. title: `温度传感器保护投退`,
  790. code: `_TemperatureSensor_Protect`,
  791. type: 'warning',
  792. },
  793. {
  794. title: `前轴振动传感器保护投退`,
  795. code: `_FrontVibrationSensor_Protect`,
  796. type: 'warning',
  797. },
  798. {
  799. title: `后轴振动传感器保护投退`,
  800. code: `_RearVibrationSensor_Protect`,
  801. type: 'warning',
  802. },
  803. {
  804. title: `流量传感器保护投退`,
  805. code: `_FlowSensor_Protect`,
  806. type: 'warning',
  807. },
  808. {
  809. title: `启动`,
  810. code: `_AirCompressor_Start`,
  811. type: 'warning',
  812. },
  813. {
  814. title: `停止`,
  815. code: `_AirCompressor_Stop`,
  816. type: 'warning',
  817. },
  818. {
  819. title: `复位`,
  820. code: `_AirCompressor_Reset`,
  821. type: 'warning',
  822. },
  823. {
  824. title: `加载`,
  825. code: `_AirCompressor_Load`,
  826. type: 'warning',
  827. },
  828. {
  829. title: '电机前轴振动',
  830. code: '_FrontVibration',
  831. type: '',
  832. },
  833. {
  834. title: '电机前轴温度',
  835. code: '_FrontTemp',
  836. type: '',
  837. },
  838. {
  839. title: '回水管流量',
  840. code: '_ReturnFlow',
  841. type: '',
  842. },
  843. {
  844. title: '电压高报警值',
  845. code: '_HighVoltageAlarmSetting',
  846. type: '',
  847. },
  848. {
  849. title: '电流高报警值',
  850. code: '_HighCurrentAlarmSetting',
  851. type: '',
  852. },
  853. {
  854. title: '排气温度高报警值',
  855. code: '_ExhaustTempHighAlarmSetting',
  856. type: '',
  857. },
  858. {
  859. title: '振动值高报警值',
  860. code: '_VibrationHighAlarmSetting',
  861. type: '',
  862. },
  863. {
  864. title: '流量高报警值',
  865. code: '_FlowHighAlarmSetting',
  866. type: '',
  867. },
  868. ],
  869. },
  870. ],
  871. },
  872. {
  873. type: 'list',
  874. title: '压风机6',
  875. stateHeader: [],
  876. children: [
  877. {
  878. title: '',
  879. childTitle: ['6#压风机'],
  880. key: ['PRE6'],
  881. list: [
  882. {
  883. title: `风包温度高报警`,
  884. code: `_Blower_HighTemp`,
  885. type: 'warning',
  886. },
  887. {
  888. title: `风包温度低报警`,
  889. code: `_Blower_LowTemp`,
  890. type: 'warning',
  891. },
  892. {
  893. title: `风包压力高报警`,
  894. code: `_Blower_HighPressure`,
  895. type: 'warning',
  896. },
  897. {
  898. title: `风包压力低报警`,
  899. code: `_Blower_LowPressure`,
  900. type: 'warning',
  901. },
  902. {
  903. title: `电机前轴振动高报警`,
  904. code: `_Motor_FrontVibHigh`,
  905. type: 'warning',
  906. },
  907. {
  908. title: '电机前轴振动低报警',
  909. code: '_Motor_FrontVibLow',
  910. type: 'warning',
  911. },
  912. {
  913. title: '电机后轴振动高报警',
  914. code: '_Motor_RearVibHigh',
  915. type: 'warning',
  916. },
  917. {
  918. title: '电机后轴振动低报警',
  919. code: '_Motor_RearVibLow',
  920. type: 'warning',
  921. },
  922. {
  923. title: '启动超时报警',
  924. code: '_Blower_StartTimeout',
  925. type: 'warning',
  926. },
  927. {
  928. title: '停止超时报警',
  929. code: '_Blower_StopTimeout',
  930. type: 'warning',
  931. },
  932. {
  933. title: '压力传感器保护投退',
  934. code: '_PressureSensor_Protect',
  935. type: 'warning',
  936. },
  937. {
  938. title: `温度传感器保护投退`,
  939. code: `_TemperatureSensor_Protect`,
  940. type: 'warning',
  941. },
  942. {
  943. title: `前轴振动传感器保护投退`,
  944. code: `_FrontVibrationSensor_Protect`,
  945. type: 'warning',
  946. },
  947. {
  948. title: `后轴振动传感器保护投退`,
  949. code: `_RearVibrationSensor_Protect`,
  950. type: 'warning',
  951. },
  952. {
  953. title: `流量传感器保护投退`,
  954. code: `_FlowSensor_Protect`,
  955. type: 'warning',
  956. },
  957. {
  958. title: `启动`,
  959. code: `_AirCompressor_Start`,
  960. type: 'warning',
  961. },
  962. {
  963. title: `停止`,
  964. code: `_AirCompressor_Stop`,
  965. type: 'warning',
  966. },
  967. {
  968. title: `复位`,
  969. code: `_AirCompressor_Reset`,
  970. type: 'warning',
  971. },
  972. {
  973. title: `加载`,
  974. code: `_AirCompressor_Load`,
  975. type: 'warning',
  976. },
  977. {
  978. title: '电机前轴振动',
  979. code: '_FrontVibration',
  980. type: '',
  981. },
  982. {
  983. title: '电机前轴温度',
  984. code: '_FrontTemp',
  985. type: '',
  986. },
  987. {
  988. title: '回水管流量',
  989. code: '_ReturnFlow',
  990. type: '',
  991. },
  992. {
  993. title: '电压高报警值',
  994. code: '_HighVoltageAlarmSetting',
  995. type: '',
  996. },
  997. {
  998. title: '电流高报警值',
  999. code: '_HighCurrentAlarmSetting',
  1000. type: '',
  1001. },
  1002. {
  1003. title: '排气温度高报警值',
  1004. code: '_ExhaustTempHighAlarmSetting',
  1005. type: '',
  1006. },
  1007. {
  1008. title: '振动值高报警值',
  1009. code: '_VibrationHighAlarmSetting',
  1010. type: '',
  1011. },
  1012. {
  1013. title: '流量高报警值',
  1014. code: '_FlowHighAlarmSetting',
  1015. type: '',
  1016. },
  1017. ],
  1018. },
  1019. ],
  1020. },
  1021. ];
  1022. export const detailCtrl = [];