nitrogen.data.jh.ts 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /**
  2. * 监测数据组配置,该配置主要影响的是模型中套件的数量
  3. *
  4. * 数组第一层意味着有几套监测系统,第二层意味着一套监测系统里有几个套件。
  5. * 第二层中的数据意味着套件编号,将用于生成点表字段来展示数据
  6. */
  7. export const monitorDataGroupArr = [[1, 2, 3, 4]];
  8. /**
  9. * 监测数据详情配置,该配置主要影响了模型里各个套件所展示的详情信息
  10. *
  11. * type代表详情信息排版类型
  12. *
  13. * key用于和套件编号、list[x].code一起生成点表字段,例如:key1code
  14. */
  15. export const modelMonitor = [
  16. {
  17. type: 'list',
  18. title: '空压机',
  19. stateHeader: [],
  20. key: 'forFan',
  21. list: [
  22. {
  23. code: 'signal',
  24. child: [
  25. {
  26. title: `运行状态`,
  27. code: `Working`,
  28. isWaring: false,
  29. },
  30. ],
  31. },
  32. {
  33. title: '出口压力',
  34. code: 'GasSupplyPressure',
  35. unit: 'mPa',
  36. },
  37. {
  38. title: `电机电流`,
  39. code: `Current`,
  40. unit: 'A',
  41. },
  42. {
  43. title: `运行时间`,
  44. code: `RunTime`,
  45. unit: 'h',
  46. },
  47. {
  48. title: `电机温度`,
  49. code: `Temp`,
  50. unit: '℃',
  51. },
  52. {
  53. title: '风包压力',
  54. code: 'WindBagPressure',
  55. unit: 'mPa',
  56. },
  57. {
  58. title: '风包温度',
  59. code: 'WindBagTemp',
  60. unit: '℃',
  61. },
  62. ],
  63. },
  64. {
  65. type: 'list',
  66. title: '储气罐',
  67. key: 'PRE',
  68. stateHeader: [],
  69. list: [],
  70. },
  71. ];
  72. /**
  73. * 左侧监测数据配置,该配置主要影响左边监测模块里展示的信息
  74. *
  75. * type代表详情信息排版类型
  76. *
  77. * key用于和套件编号、list[x].code一起生成点表字段,例如:key1code
  78. */
  79. export const leftMonitor = [
  80. // {
  81. // type: 'list',
  82. // title: '压风机1',
  83. // stateHeader: [],
  84. // children: [
  85. // {
  86. // title: '',
  87. // childTitle: ['1#压风机'],
  88. // key: ['PRE1'],
  89. // list: [
  90. // {
  91. // title: `启动失败`,
  92. // code: `_MOT_StartFail`,
  93. // type: 'warning',
  94. // },
  95. // {
  96. // title: `停止失败`,
  97. // code: `_MOT_StopFail`,
  98. // type: 'warning',
  99. // },
  100. // {
  101. // title: `报警信号`,
  102. // code: `_AlamSignal`,
  103. // type: 'warning',
  104. // },
  105. // {
  106. // title: `故障信号`,
  107. // code: `_FaultSignal`,
  108. // type: 'warning',
  109. // },
  110. // {
  111. // title: `B相绕组超温`,
  112. // code: `_MOT_PhaseBTempAlarm`,
  113. // type: 'warning',
  114. // },
  115. // {
  116. // title: `C相绕组超温`,
  117. // code: `_MOT_PhaseCTempAlarm`,
  118. // type: 'warning',
  119. // },
  120. // {
  121. // title: '电机启动失败',
  122. // code: '_MOT_StartFail',
  123. // type: 'warning',
  124. // },
  125. // {
  126. // title: '电机停止失败',
  127. // code: '_MOT_StopFail',
  128. // type: 'warning',
  129. // },
  130. // {
  131. // title: '电机运行返回',
  132. // code: '_MOT_RunReturn',
  133. // type: 'warning',
  134. // },
  135. // {
  136. // title: `A相绕组超温`,
  137. // code: `_MOT_PhaseATempAlarm`,
  138. // type: 'warning',
  139. // },
  140. // {
  141. // title: `主机本机`,
  142. // code: `_HostorLoc`,
  143. // type: 'signal',
  144. // },
  145. // {
  146. // title: '总运行时间(h)',
  147. // code: '_MOT_TotalRunTime',
  148. // type: '',
  149. // },
  150. // {
  151. // title: 'A相绕组温度(℃)',
  152. // code: '_MOT_PhaseATemp',
  153. // type: '',
  154. // },
  155. // {
  156. // title: 'B相绕组温度(℃)',
  157. // code: '_MOT_PhaseBTemp',
  158. // type: '',
  159. // },
  160. // {
  161. // title: 'C相绕组温度(℃)',
  162. // code: '_MOT_PhaseCTemp',
  163. // type: '',
  164. // },
  165. // ],
  166. // },
  167. // ],
  168. // },
  169. // {
  170. // type: 'list',
  171. // title: '压风机2',
  172. // stateHeader: [],
  173. // children: [
  174. // {
  175. // title: '',
  176. // childTitle: ['2#压风机'],
  177. // key: ['PRE2'],
  178. // list: [
  179. // {
  180. // title: `启动失败`,
  181. // code: `_MOT_StartFail`,
  182. // type: 'warning',
  183. // },
  184. // {
  185. // title: `停止失败`,
  186. // code: `_MOT_StopFail`,
  187. // type: 'warning',
  188. // },
  189. // {
  190. // title: `报警信号`,
  191. // code: `_AlamSignal`,
  192. // type: 'warning',
  193. // },
  194. // {
  195. // title: `故障信号`,
  196. // code: `_FaultSignal`,
  197. // type: 'warning',
  198. // },
  199. // {
  200. // title: `B相绕组超温`,
  201. // code: `_MOT_PhaseBTempAlarm`,
  202. // type: 'warning',
  203. // },
  204. // {
  205. // title: `C相绕组超温`,
  206. // code: `_MOT_PhaseCTempAlarm`,
  207. // type: 'warning',
  208. // },
  209. // {
  210. // title: '电机启动失败',
  211. // code: '_MOT_StartFail',
  212. // type: 'warning',
  213. // },
  214. // {
  215. // title: '电机停止失败',
  216. // code: '_MOT_StopFail',
  217. // type: 'warning',
  218. // },
  219. // {
  220. // title: '电机运行返回',
  221. // code: '_MOT_RunReturn',
  222. // type: 'warning',
  223. // },
  224. // {
  225. // title: `A相绕组超温`,
  226. // code: `_MOT_PhaseATempAlarm`,
  227. // type: 'warning',
  228. // },
  229. // {
  230. // title: `主机本机`,
  231. // code: `_HostorLoc`,
  232. // type: 'signal',
  233. // },
  234. // {
  235. // title: '总运行时间(h)',
  236. // code: '_MOT_TotalRunTime',
  237. // type: '',
  238. // },
  239. // {
  240. // title: 'A相绕组温度(℃)',
  241. // code: '_MOT_PhaseATemp',
  242. // type: '',
  243. // },
  244. // {
  245. // title: 'B相绕组温度(℃)',
  246. // code: '_MOT_PhaseBTemp',
  247. // type: '',
  248. // },
  249. // {
  250. // title: 'C相绕组温度(℃)',
  251. // code: '_MOT_PhaseCTemp',
  252. // type: '',
  253. // },
  254. // ],
  255. // },
  256. // ],
  257. // },
  258. ];
  259. /**
  260. * 右上角汇总数据配置
  261. *
  262. * code表示点表字段,例如:pressure_total
  263. */
  264. export const totalData = [
  265. {
  266. title: '总压力',
  267. code: 'TotalPressure',
  268. unit: 'mPa',
  269. },
  270. ];
  271. /**
  272. * 右侧监测数据配置,该配置主要影响右边监测模块里展示的信息
  273. *
  274. * type代表详情信息排版类型
  275. *
  276. * key用于和套件编号、list[x].code一起生成点表字段,例如:key1code
  277. */
  278. export const rightMonitor = [
  279. // {
  280. // type: 'list',
  281. // title: '压风机3',
  282. // stateHeader: [],
  283. // children: [
  284. // {
  285. // title: '',
  286. // childTitle: ['3#压风机'],
  287. // key: ['PRE3'],
  288. // list: [
  289. // {
  290. // title: `启动失败`,
  291. // code: `_MOT_StartFail`,
  292. // type: 'warning',
  293. // },
  294. // {
  295. // title: `停止失败`,
  296. // code: `_MOT_StopFail`,
  297. // type: 'warning',
  298. // },
  299. // {
  300. // title: `报警信号`,
  301. // code: `_AlamSignal`,
  302. // type: 'warning',
  303. // },
  304. // {
  305. // title: `故障信号`,
  306. // code: `_FaultSignal`,
  307. // type: 'warning',
  308. // },
  309. // {
  310. // title: `B相绕组超温`,
  311. // code: `_MOT_PhaseBTempAlarm`,
  312. // type: 'warning',
  313. // },
  314. // {
  315. // title: `C相绕组超温`,
  316. // code: `_MOT_PhaseCTempAlarm`,
  317. // type: 'warning',
  318. // },
  319. // {
  320. // title: '电机启动失败',
  321. // code: '_MOT_StartFail',
  322. // type: 'warning',
  323. // },
  324. // {
  325. // title: '电机停止失败',
  326. // code: '_MOT_StopFail',
  327. // type: 'warning',
  328. // },
  329. // {
  330. // title: '电机运行返回',
  331. // code: '_MOT_RunReturn',
  332. // type: 'warning',
  333. // },
  334. // {
  335. // title: `A相绕组超温`,
  336. // code: `_MOT_PhaseATempAlarm`,
  337. // type: 'warning',
  338. // },
  339. // {
  340. // title: `主机本机`,
  341. // code: `_HostorLoc`,
  342. // type: 'signal',
  343. // },
  344. // {
  345. // title: '总运行时间(h)',
  346. // code: '_MOT_TotalRunTime',
  347. // type: '',
  348. // },
  349. // {
  350. // title: 'A相绕组温度(℃)',
  351. // code: '_MOT_PhaseATemp',
  352. // type: '',
  353. // },
  354. // {
  355. // title: 'B相绕组温度(℃)',
  356. // code: '_MOT_PhaseBTemp',
  357. // type: '',
  358. // },
  359. // {
  360. // title: 'C相绕组温度(℃)',
  361. // code: '_MOT_PhaseCTemp',
  362. // type: '',
  363. // },
  364. // ],
  365. // },
  366. // ],
  367. // },
  368. ];
  369. export const detailCtrl = [];