safetyList.data.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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: 90,
  33. align: 'center',
  34. },
  35. {
  36. title: '电池容量(%)',
  37. dataIndex: 'dcrl',
  38. key: 'dcrl',
  39. width: 110,
  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: 220,
  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. ];