fireAreaJudgeAnalysis.data.ts 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. import { BasicColumn } from '/@/components/Table';
  2. import { FormSchema } from '/@/components/Table';
  3. export const boardData = [
  4. {
  5. label: '存在风险情况数量',
  6. value: '10',
  7. },
  8. {
  9. label: '低风险',
  10. value: '27',
  11. },
  12. {
  13. label: '一般风险',
  14. value: '27',
  15. },
  16. {
  17. label: '较高风险',
  18. value: '27',
  19. },
  20. {
  21. label: '高风险',
  22. value: '27',
  23. },
  24. ];
  25. // 实时数据相关
  26. export const columns: BasicColumn[] = [
  27. {
  28. title: '序号',
  29. align: 'center',
  30. customRender: ({ index }: { index: number }) => `${index + 1}`,
  31. },
  32. {
  33. title: '区域',
  34. dataIndex: 'areaName',
  35. },
  36. {
  37. title: '煤矿名称',
  38. dataIndex: 'mineName',
  39. },
  40. {
  41. title: '密闭名称',
  42. dataIndex: 'devicePos',
  43. },
  44. {
  45. title: '所属煤层',
  46. dataIndex: 'coalSeamName',
  47. },
  48. {
  49. title: '自燃倾向性',
  50. dataIndex: 'riskLevel',
  51. },
  52. {
  53. title: '空气温度(℃)',
  54. dataIndex: 'temperature',
  55. },
  56. {
  57. title: 'O2浓度(ppm)',
  58. dataIndex: 'O2Val',
  59. },
  60. {
  61. title: 'C2H4浓度(ppm)',
  62. dataIndex: 'C2H4Val',
  63. },
  64. {
  65. title: 'C2H2浓度(ppm)',
  66. dataIndex: 'C2H2Val',
  67. },
  68. {
  69. title: 'CO浓度(ppm)',
  70. dataIndex: 'COVal',
  71. },
  72. {
  73. title: '出水温度(℃)',
  74. dataIndex: 'temperature',
  75. },
  76. {
  77. title: '监测时长(天)',
  78. dataIndex: 'daysMonitored',
  79. },
  80. {
  81. title: '风险分析',
  82. dataIndex: 'riskAnalysis',
  83. },
  84. {
  85. title: '预警时间',
  86. dataIndex: 'alertTime',
  87. },
  88. {
  89. title: '是否解决',
  90. dataIndex: 'isResolved',
  91. },
  92. ];
  93. export const searchFormSchema: FormSchema[] = [
  94. {
  95. field: 'mineName',
  96. label: '所属执法处',
  97. component: 'Select',
  98. componentProps: {
  99. options: [
  100. { label: '执法一处', value: '0' },
  101. { label: '执法二处', value: '1' },
  102. { label: '执法三处', value: '2' },
  103. ],
  104. },
  105. colProps: { span: 6 },
  106. },
  107. {
  108. field: 'mineName',
  109. label: '所属区域',
  110. component: 'Select',
  111. componentProps: {
  112. options: [
  113. { label: '执法一处', value: '0' },
  114. { label: '执法二处', value: '1' },
  115. { label: '执法三处', value: '2' },
  116. ],
  117. },
  118. colProps: { span: 6 },
  119. },
  120. {
  121. field: 'mineName',
  122. label: '煤矿名称',
  123. component: 'Input',
  124. colProps: { span: 6 },
  125. },
  126. {
  127. field: 'mineNameAbbr',
  128. label: '煤矿简称',
  129. component: 'Input',
  130. colProps: { span: 6 },
  131. },
  132. {
  133. field: 'productStatus',
  134. label: '生产状态',
  135. component: 'Select',
  136. componentProps: {
  137. options: [
  138. { label: '拟建矿井', value: '0' },
  139. { label: '正常生产矿井', value: '1' },
  140. { label: '长期停产矿井', value: '2' },
  141. ],
  142. },
  143. colProps: { span: 6 },
  144. },
  145. {
  146. field: 'riskLevel',
  147. label: '自燃情况',
  148. component: 'Select',
  149. componentProps: {
  150. options: [
  151. { label: 'Ⅰ类容易自燃', value: '0' },
  152. { label: 'Ⅱ类自燃', value: '1' },
  153. { label: 'Ⅲ类不易自燃', value: '2' },
  154. ],
  155. },
  156. colProps: { span: 6 },
  157. },
  158. ];
  159. export const minesData = [
  160. {
  161. orderNo: 101, // 序号
  162. enforcement: '执法一处', // 区域
  163. mineName: '神木市三江', // 煤矿名称
  164. sealedName: '采空区密闭', // 密闭名称
  165. coalSeam: 'XX煤层', // 所属煤层
  166. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  167. COVal: 24, // CO浓度(ppm)
  168. CH4Val: 0, // CH4浓度(%)
  169. C2H2Val: 0, // C2H2浓度(ppm)
  170. O2Val: 20, // O2浓度(%)
  171. temperature: 35, // 温度(℃)
  172. pressureDiff: 50, // 压差(Pa)
  173. leakage: '气体涌出', // 是否漏风
  174. fireHazard: '低风险', // 自然发火隐患
  175. unsealing: '不可启封', // 密闭启封判定
  176. explosionHazard: '低风险', // 爆炸危险性
  177. updateTime: '2025-11-17 15:00:40', // 更新时间
  178. alertTime: '2025-11-17 15:00:40',
  179. interPressure: '10',
  180. outerPressure: '20',
  181. },
  182. {
  183. orderNo: 102, // 序号
  184. enforcement: '执法一处', // 区域
  185. mineName: '神木市三江', // 煤矿名称
  186. sealedName: '采空区密闭', // 密闭名称
  187. coalSeam: 'XX煤层', // 所属煤层
  188. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  189. COVal: 24, // CO浓度(ppm)
  190. CH4Val: 0, // CH4浓度(%)
  191. C2H2Val: 0, // C2H2浓度(ppm)
  192. O2Val: 20, // O2浓度(%)
  193. temperature: 35, // 温度(℃)
  194. pressureDiff: 50, // 压差(Pa)
  195. leakage: '气体涌出', // 是否漏风
  196. fireHazard: '低风险', // 自然发火隐患
  197. unsealing: '不可启封', // 密闭启封判定
  198. explosionHazard: '低风险', // 爆炸危险性
  199. updateTime: '2025-11-17 15:00:40', // 更新时间
  200. alertTime: '2025-11-17 15:00:40',
  201. interPressure: '10',
  202. outerPressure: '20',
  203. },
  204. {
  205. orderNo: 103, // 序号
  206. enforcement: '执法一处', // 区域
  207. mineName: '神木市三江', // 煤矿名称
  208. sealedName: '采空区密闭', // 密闭名称
  209. coalSeam: 'XX煤层', // 所属煤层
  210. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  211. COVal: 24, // CO浓度(ppm)
  212. CH4Val: 0, // CH4浓度(%)
  213. C2H2Val: 0, // C2H2浓度(ppm)
  214. O2Val: 20, // O2浓度(%)
  215. temperature: 35, // 温度(℃)
  216. pressureDiff: 50, // 压差(Pa)
  217. leakage: '气体涌出', // 是否漏风
  218. fireHazard: '低风险', // 自然发火隐患
  219. unsealing: '不可启封', // 密闭启封判定
  220. explosionHazard: '低风险', // 爆炸危险性
  221. updateTime: '2025-11-17 15:00:40', // 更新时间
  222. alertTime: '2025-11-17 15:00:40',
  223. interPressure: '10',
  224. outerPressure: '20',
  225. },
  226. ];
  227. export const historicalMinesData = [
  228. {
  229. orderNo: 101, // 序号
  230. enforcement: '执法一处', // 区域
  231. mineName: '神木市三江', // 煤矿名称
  232. sealedName: '采空区密闭', // 密闭名称
  233. coalSeam: 'XX煤层', // 所属煤层
  234. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  235. COVal: 24, // CO浓度(ppm)
  236. CH4Val: 0, // CH4浓度(%)
  237. C2H2Val: 0, // C2H2浓度(ppm)
  238. O2Val: 20, // O2浓度(%)
  239. temperature: 35, // 温度(℃)
  240. pressureDiff: 50, // 压差(Pa)
  241. leakage: '气体涌出', // 是否漏风
  242. fireHazard: '低风险', // 自然发火隐患
  243. unsealing: '不可启封', // 密闭启封判定
  244. explosionHazard: '低风险', // 爆炸危险性
  245. updateTime: '2025-12-22 15:00:40', // 更新时间
  246. alertTime: '2025-11-17 15:00:40',
  247. interPressure: '10',
  248. outerPressure: '20',
  249. },
  250. {
  251. orderNo: 102, // 序号
  252. enforcement: '执法一处', // 区域
  253. mineName: '神木市三江', // 煤矿名称
  254. sealedName: '采空区密闭', // 密闭名称
  255. coalSeam: 'XX煤层', // 所属煤层
  256. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  257. COVal: 24, // CO浓度(ppm)
  258. CH4Val: 0, // CH4浓度(%)
  259. C2H2Val: 0, // C2H2浓度(ppm)
  260. O2Val: 20, // O2浓度(%)
  261. temperature: 35, // 温度(℃)
  262. pressureDiff: 50, // 压差(Pa)
  263. leakage: '气体涌出', // 是否漏风
  264. fireHazard: '低风险', // 自然发火隐患
  265. unsealing: '不可启封', // 密闭启封判定
  266. explosionHazard: '低风险', // 爆炸危险性
  267. updateTime: '2025-12-22 15:00:40', // 更新时间
  268. alertTime: '2025-11-17 15:00:40',
  269. interPressure: '10',
  270. outerPressure: '20',
  271. },
  272. {
  273. orderNo: 103, // 序号
  274. enforcement: '执法一处', // 区域
  275. mineName: '神木市三江', // 煤矿名称
  276. sealedName: '采空区密闭', // 密闭名称
  277. coalSeam: 'XX煤层', // 所属煤层
  278. riskLevel: 'Ⅰ类容易自燃', // 自燃倾向性(与搜索框选项label一致)
  279. COVal: 24, // CO浓度(ppm)
  280. CH4Val: 0, // CH4浓度(%)
  281. C2H2Val: 0, // C2H2浓度(ppm)
  282. O2Val: 20, // O2浓度(%)
  283. temperature: 35, // 温度(℃)
  284. pressureDiff: 50, // 压差(Pa)
  285. leakage: '气体涌出', // 是否漏风
  286. fireHazard: '低风险', // 自然发火隐患
  287. unsealing: '不可启封', // 密闭启封判定
  288. explosionHazard: '低风险', // 爆炸危险性
  289. updateTime: '2025-12-22 15:00:40', // 更新时间
  290. alertTime: '2025-11-17 15:00:40',
  291. interPressure: '10',
  292. outerPressure: '20',
  293. },
  294. ];