safetyList.data.ts 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. // {
  4. // title: '序号',
  5. // width: 60,
  6. // align: 'center',
  7. // customRender: ({ index }: { index: number }) => `${index + 1}`
  8. // },
  9. {
  10. title: '安装位置',
  11. dataIndex: 'strinstallpos',
  12. key: 'strinstallpos',
  13. align: 'center',
  14. },
  15. {
  16. title: 'Ip地址',
  17. dataIndex: 'stripC',
  18. key: 'stripC',
  19. width: 80,
  20. align: 'center',
  21. },
  22. {
  23. title: '监测值',
  24. dataIndex: 'valueJc',
  25. key: 'valueJc',
  26. align: 'center',
  27. },
  28. {
  29. title: '供电模式',
  30. dataIndex: 'gdmsC',
  31. key: 'gdmsC',
  32. width: 80,
  33. align: 'center',
  34. },
  35. {
  36. title: '电池容量(%)',
  37. dataIndex: 'dcrl',
  38. key: 'dcrl',
  39. width: 80,
  40. align: 'center',
  41. },
  42. {
  43. title: '启用状态',
  44. dataIndex: 'linkIdC',
  45. key: 'linkIdC',
  46. width: 80,
  47. align: 'center',
  48. },
  49. {
  50. title: '通讯状态',
  51. dataIndex: 'linkstatusC',
  52. key: 'linkstatusC',
  53. width: 80,
  54. align: 'center',
  55. },
  56. // {
  57. // title: '时间',
  58. // dataIndex: 'updateTime',
  59. // key: 'updateTime',
  60. // width: 120,
  61. // align: 'center',
  62. // },
  63. {
  64. title: '操作',
  65. dataIndex: 'action',
  66. width: 280,
  67. align: 'center',
  68. slots: { customRender: 'action' },
  69. },
  70. ];
  71. export const columnsDetail: BasicColumn[] = [
  72. {
  73. title: '安装位置',
  74. dataIndex: 'strInstallPos',
  75. key: 'strInstallPos',
  76. width: 180,
  77. align: 'center',
  78. },
  79. {
  80. title: '通讯状态',
  81. dataIndex: 'linkstatusC',
  82. key: 'linkstatusC',
  83. align: 'center',
  84. },
  85. {
  86. title: '读写状态',
  87. dataIndex: 'dxzt',
  88. key: 'dxzt',
  89. align: 'center',
  90. },
  91. {
  92. title: '程序版本号',
  93. dataIndex: 'cxbbh',
  94. key: 'cxbbh',
  95. align: 'center',
  96. },
  97. {
  98. title: '电源状态',
  99. dataIndex: 'dyzt',
  100. key: 'dyzt',
  101. align: 'center',
  102. },
  103. {
  104. title: '电量(%)',
  105. dataIndex: 'dl',
  106. key: 'dl',
  107. align: 'center',
  108. },
  109. {
  110. title: '断线标志',
  111. dataIndex: 'dxbz',
  112. key: 'dxbz',
  113. align: 'center',
  114. },
  115. {
  116. title: '电池组总电压(mv)',
  117. dataIndex: 'dczzdy',
  118. key: 'dczzdy',
  119. align: 'center',
  120. },
  121. {
  122. title: '负载电流(mA)',
  123. dataIndex: 'fzcdl',
  124. key: 'fzcdl',
  125. align: 'center',
  126. },
  127. {
  128. title: '电池数量(节)',
  129. dataIndex: 'dcsl',
  130. key: 'dcsl',
  131. align: 'center',
  132. },
  133. {
  134. title: '单节电池电压1',
  135. dataIndex: 'djdcdy1',
  136. key: 'djdcdy1',
  137. align: 'center',
  138. },
  139. {
  140. title: '单节电池电压2',
  141. dataIndex: 'djdcdy2',
  142. key: 'djdcdy2',
  143. align: 'center',
  144. },
  145. {
  146. title: '单节电池电压3',
  147. dataIndex: 'djdcdy3',
  148. key: 'djdcdy3',
  149. align: 'center',
  150. },
  151. {
  152. title: '单节电池电压4',
  153. dataIndex: 'djdcdy4',
  154. key: 'djdcdy4',
  155. align: 'center',
  156. },
  157. {
  158. title: '单节电池电压5',
  159. dataIndex: 'djdcdy5',
  160. key: 'djdcdy5',
  161. align: 'center',
  162. },
  163. {
  164. title: '单节电池电压6',
  165. dataIndex: 'djdcdy6',
  166. key: 'djdcdy6',
  167. align: 'center',
  168. },
  169. {
  170. title: '操作',
  171. dataIndex: 'action',
  172. width: 150,
  173. align: 'center',
  174. slots: { customRender: 'action' },
  175. },
  176. ];
  177. export const deviceColumns: BasicColumn[] = [
  178. {
  179. title: '安装位置',
  180. dataIndex: 'deviceStrinstallpos',
  181. key: 'deviceStrinstallpos',
  182. width: 180,
  183. align: 'center',
  184. },
  185. {
  186. title: '第一路风速风向',
  187. dataIndex: 'dylfsfx',
  188. key: 'dylfsfx',
  189. align: 'center',
  190. },
  191. {
  192. title: '第一路报警状态',
  193. dataIndex: 'dylbjzt',
  194. key: 'dylbjzt',
  195. align: 'center',
  196. },
  197. {
  198. title: '第一路1发2收AD值',
  199. dataIndex: 'dyl1f2sADz',
  200. key: 'dyl1f2sADz',
  201. align: 'center',
  202. },
  203. {
  204. title: '第一路2发1收AD值',
  205. dataIndex: 'dyl2f1sADz',
  206. key: 'dyl2f1sADz',
  207. align: 'center',
  208. },
  209. {
  210. title: '通风量',
  211. dataIndex: 'tfl',
  212. key: 'tfl',
  213. align: 'center',
  214. },
  215. {
  216. title: '硬件版本',
  217. dataIndex: 'yjbb',
  218. key: 'yjbb',
  219. align: 'center',
  220. },
  221. {
  222. title: '软件版本',
  223. dataIndex: 'rjbb',
  224. key: 'rjbb',
  225. align: 'center',
  226. },
  227. {
  228. title: '在线离线标志',
  229. dataIndex: 'zxlxbz',
  230. key: 'zxlxbz',
  231. align: 'center',
  232. },
  233. {
  234. title: '日期和时间',
  235. dataIndex: 'rqsj',
  236. key: 'rqsj',
  237. align: 'center',
  238. },
  239. {
  240. title: 'RS485_MODBUS地址',
  241. dataIndex: 'rs485modbusdz',
  242. key: 'rs485modbusdz',
  243. align: 'center',
  244. },
  245. {
  246. title: '探头安装距离',
  247. dataIndex: 'ttazjl',
  248. key: 'ttazjl',
  249. align: 'center',
  250. },
  251. {
  252. title: '基线距离',
  253. dataIndex: 'jxjl',
  254. key: 'jxjl',
  255. align: 'center',
  256. },
  257. {
  258. title: '安装角度',
  259. dataIndex: 'azjd',
  260. key: 'azjd',
  261. align: 'center',
  262. },
  263. {
  264. title: '设置时长',
  265. dataIndex: 'szsz',
  266. key: 'szsz',
  267. align: 'center',
  268. },
  269. {
  270. title: '数据平均周期',
  271. dataIndex: 'sjpjzq',
  272. key: 'sjpjzq',
  273. align: 'center',
  274. },
  275. {
  276. title: '第一路一发二收PG值',
  277. dataIndex: 'dylyfesPGz',
  278. key: 'dylyfesPGz',
  279. align: 'center',
  280. },
  281. {
  282. title: '第一路二发一收PG值',
  283. dataIndex: 'dylefysPGz',
  284. key: 'dylefysPGz',
  285. align: 'center',
  286. },
  287. {
  288. title: '风道截面积',
  289. dataIndex: 'fdjmj',
  290. key: 'fdjmj',
  291. align: 'center',
  292. },
  293. {
  294. title: '第一路整体系数k',
  295. dataIndex: 'dylztxsk',
  296. key: 'dylztxsk',
  297. align: 'center',
  298. },
  299. {
  300. title: '第一路第一段系数',
  301. dataIndex: 'dyldydxs1',
  302. key: 'dyldydxs1',
  303. align: 'center',
  304. },
  305. {
  306. title: '第一路第二段系数',
  307. dataIndex: 'dyldedxs2',
  308. key: 'dyldedxs2',
  309. align: 'center',
  310. },
  311. {
  312. title: '第一路第三段系数',
  313. dataIndex: 'dyldsdxs3',
  314. key: 'dyldsdxs3',
  315. align: 'center',
  316. },
  317. {
  318. title: '第一路第四段系数',
  319. dataIndex: 'dyldsdxs4',
  320. key: 'dyldsdxs4',
  321. align: 'center',
  322. },
  323. {
  324. title: '第一路第五段系数',
  325. dataIndex: 'dyldwdxs5',
  326. key: 'dyldwdxs5',
  327. align: 'center',
  328. },
  329. {
  330. title: '第一路第六段系数',
  331. dataIndex: 'dyldldxs6',
  332. key: 'dyldldxs6',
  333. align: 'center',
  334. },
  335. {
  336. title: '系数KB',
  337. dataIndex: 'xsKB',
  338. key: 'xsKB',
  339. align: 'center',
  340. },
  341. {
  342. title: '系数KB符号',
  343. dataIndex: 'xsKBfh',
  344. key: 'xsKBfh',
  345. align: 'center',
  346. },
  347. {
  348. title: '高报警阈值',
  349. dataIndex: 'gbjyz',
  350. key: 'gbjyz',
  351. align: 'center',
  352. },
  353. {
  354. title: '低报警阈值',
  355. dataIndex: 'dbjyz',
  356. key: 'dbjyz',
  357. align: 'center',
  358. },
  359. {
  360. title: '报警使能',
  361. dataIndex: 'bjsn',
  362. key: 'bjsn',
  363. align: 'center',
  364. },
  365. {
  366. title: '第一路485波特率',
  367. dataIndex: 'dyl485btl',
  368. key: 'dyl485btl',
  369. align: 'center',
  370. },
  371. {
  372. title: '四个字节保存密码',
  373. dataIndex: 'sgzjbcmm',
  374. key: 'sgzjbcmm',
  375. align: 'center',
  376. },
  377. ];
  378. export const columnsOperate: BasicColumn[] = [
  379. {
  380. title: '分站名称',
  381. dataIndex: 'stationName',
  382. key: 'stationName',
  383. align: 'center',
  384. },
  385. {
  386. title: '设备名称',
  387. dataIndex: 'deviceName',
  388. key: 'deviceName',
  389. align: 'center',
  390. },
  391. {
  392. title: '点位Key',
  393. dataIndex: 'plcCode',
  394. key: 'plcCode',
  395. align: 'center',
  396. },
  397. {
  398. title: '点位名称',
  399. dataIndex: 'plcCodeName',
  400. key: 'plcCodeName',
  401. align: 'center',
  402. },
  403. {
  404. title: '下发值',
  405. dataIndex: 'value',
  406. key: 'value',
  407. align: 'center',
  408. },
  409. {
  410. title: '操作结果',
  411. dataIndex: 'resultValue',
  412. key: 'resultValue',
  413. align: 'center',
  414. },
  415. {
  416. title: '描述',
  417. dataIndex: 'remark',
  418. key: 'remark',
  419. align: 'center',
  420. },
  421. {
  422. title: '操作时间',
  423. dataIndex: 'createTime',
  424. key: 'createTime',
  425. align: 'center',
  426. },
  427. ];