bundleSpy-table.data.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. {
  4. title: '序号',
  5. width: 60,
  6. align: 'center',
  7. dataIndex: 'xh',
  8. key: 'xh',
  9. },
  10. {
  11. title: '采样地点',
  12. dataIndex: 'jcdd',
  13. key: 'jcdd',
  14. width: 100,
  15. align: 'center',
  16. },
  17. {
  18. title: '取样分析时间',
  19. dataIndex: 'qyfxsj',
  20. key: 'qyfxsj',
  21. width: 100,
  22. align: 'center',
  23. },
  24. {
  25. title: 'O₂(%)',
  26. dataIndex: 'o2_ave',
  27. key: 'o2_ave',
  28. width: 100,
  29. align: 'center',
  30. },
  31. {
  32. title: 'N₂(%)',
  33. dataIndex: 'n2_ave',
  34. key: 'n2_ave',
  35. width: 100,
  36. align: 'center',
  37. },
  38. {
  39. title: 'CO(%)',
  40. dataIndex: 'co_ave',
  41. key: 'co_ave',
  42. width: 100,
  43. align: 'center',
  44. },
  45. {
  46. title: 'CO₂(%)',
  47. dataIndex: 'co2_ave',
  48. key: 'co2_ave',
  49. width: 100,
  50. align: 'center',
  51. },
  52. {
  53. title: 'CH₄(%)',
  54. dataIndex: 'ch4_ave',
  55. key: 'ch4_ave',
  56. width: 100,
  57. align: 'center',
  58. },
  59. {
  60. title: 'C2H6(%)',
  61. dataIndex: 'c2h6_ave',
  62. key: 'c2h6_ave',
  63. width: 100,
  64. align: 'center',
  65. },
  66. {
  67. title: 'C₂H₄(%)',
  68. dataIndex: 'c2h4_ave',
  69. key: 'c2h4_ave',
  70. width: 100,
  71. align: 'center',
  72. },
  73. {
  74. title: 'C₂H₂(%)',
  75. dataIndex: 'c2h2_ave',
  76. key: 'c2h2_ave',
  77. width: 100,
  78. align: 'center',
  79. },
  80. {
  81. title: '总组分含量',
  82. dataIndex: 'zzfhl_ave',
  83. key: 'zzfhl_ave',
  84. width: 100,
  85. align: 'center',
  86. },
  87. {
  88. title: '煤自燃阶段',
  89. dataIndex: 'internalFireWarnLevel',
  90. width: 100,
  91. align: 'center',
  92. },
  93. {
  94. title: '操作',
  95. dataIndex: 'action',
  96. width: 100,
  97. align: 'center',
  98. },
  99. ];