common.data.ts 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. import { reactive, markRaw, defineAsyncComponent } from 'vue';
  2. import { getAssetURL } from '/@/utils/ui';
  3. import { useGlobSetting } from '/@/hooks/setting';
  4. export const getMaxY = function (param) {
  5. console.log(param,'999999')
  6. let maxval=0
  7. if (param.length == 1) {
  8. maxval = Math.max(...param[0]);
  9. } else if (param.length == 2) {
  10. const max1 = Math.max(...param[0]);
  11. const max2 = Math.max(...param[1]);
  12. maxval = Math.max(max1,max2)
  13. } else if (param.length == 3) {
  14. const max1 = Math.max(...param[0]);
  15. const max2 = Math.max(...param[1]);
  16. const max3 = Math.max(...param[2]);
  17. maxval=Math.max(max1,max2,max3)
  18. }
  19. const digitCount = maxval.toFixed(0).length;
  20. console.log(digitCount,'digitCount')
  21. let yMax = 0;
  22. if (digitCount < 2) {
  23. if (yMax < 0.5) {
  24. yMax = 1;
  25. } else if (yMax < 0.9) {
  26. yMax = 1.5;
  27. } else if (yMax < 5) {
  28. yMax = 10;
  29. } else {
  30. yMax = 15;
  31. }
  32. } else if (digitCount < 3) {
  33. const n = Number((Number(yMax.toFixed(0)) / 10).toFixed(0));
  34. if (yMax < n * 10 + 5) {
  35. yMax = (n + 1) * 10;
  36. } else {
  37. yMax = (n + 2) * 10;
  38. }
  39. } else if (digitCount < 4) {
  40. const n = Number((Number(yMax.toFixed(0)) / 100).toFixed(0));
  41. if (yMax < n * 100 + 50) {
  42. yMax = (n + 1) * 100;
  43. } else {
  44. yMax = (n + 2) * 100;
  45. }
  46. } else if (digitCount < 5) {
  47. const n = Number((Number(yMax.toFixed(0)) / 1000).toFixed(0));
  48. if (yMax < n * 1000 + 500) {
  49. yMax = (n + 1) * 1000;
  50. } else {
  51. yMax = (n + 1) * 1000 + 500;
  52. }
  53. } else if (digitCount < 6) {
  54. const n = Number((Number(yMax.toFixed(0)) / 10000).toFixed(0));
  55. if (yMax < n * 10000 + 5000) {
  56. yMax = (n + 1) * 10000;
  57. } else {
  58. yMax = (n + 1) * 10000 + 5000;
  59. }
  60. }
  61. return yMax
  62. }
  63. export const getMinY = function (param) {
  64. let minval=0
  65. if (param.length == 1) {
  66. minval = Math.min(...param[0]);
  67. } else if (param.length == 2) {
  68. const min1 = Math.min(...param[0]);
  69. const min2 = Math.min(...param[1]);
  70. minval=Math.min(min1,min2)
  71. } else if (param.length == 3) {
  72. const min1 = Math.min(...param[0]);
  73. const min2 = Math.min(...param[1]);
  74. const min3 = Math.min(...param[2]);
  75. minval=Math.min(min1,min2,min3)
  76. }
  77. const minDigitCount = minval.toFixed(0).length;
  78. let yMin = 0;
  79. if (minDigitCount < 2) {
  80. if (yMin> 0.5) {
  81. yMin = 0.5;
  82. } else if (yMin > 1.5) {
  83. yMin = 1.0;
  84. } else if (yMin > 10) {
  85. yMin = 5;
  86. } else {
  87. yMin = 15;
  88. }
  89. } else if (minDigitCount < 3) {
  90. const n = Number((Number(yMin.toFixed(0)) / 10).toFixed(0));
  91. if (n > 1) {
  92. yMin = (n - 1) * 10;
  93. } else {
  94. yMin = 10;
  95. }
  96. } else if (minDigitCount < 4) {
  97. const n = Number((Number(yMin.toFixed(0)) / 100).toFixed(0));
  98. if (n > 1) {
  99. yMin = (n - 1) * 100;
  100. } else {
  101. yMin = 100;
  102. }
  103. } else if (minDigitCount < 5) {
  104. const n = Number((Number(yMin.toFixed(0)) / 1000).toFixed(0));
  105. if (n > 1) {
  106. yMin = (n - 1) * 1000;
  107. } else {
  108. yMin = 1000;
  109. }
  110. } else if (minDigitCount < 6) {
  111. const n = Number((Number(yMin.toFixed(0)) / 10000).toFixed(0));
  112. if (n > 1) {
  113. yMin = (n - 1) * 10000;
  114. } else {
  115. yMin = 10000;
  116. }
  117. }
  118. return yMin
  119. }
  120. //中间区域数据-通风
  121. export const centerAreaListT1 = [
  122. { id: 0, label: '进风量(m³/min)' },
  123. { id: 1, label: '回风量(m³/min)' },
  124. { id: 2, label: '需风量(m³/min)' },
  125. ];
  126. //中间区域底部数据-通风
  127. export const centerAreaListB1 = [
  128. {
  129. id: 0,
  130. content: '',
  131. },
  132. {
  133. id: 1,
  134. content: '',
  135. },
  136. {
  137. id: 2,
  138. content: '',
  139. },
  140. ];
  141. //内外因火灾菜单列表
  142. export const typeMenuList = [{ name: '内因火灾' }, { name: '外因火灾' }, { name: '火灾指标' }];
  143. //通风选项菜单列表
  144. export const typeMenuListTf = [{ name: '通风监测' }, { name: '巷道阻力分析' }];
  145. //瓦斯监测菜单列表
  146. export function getMonitorComponent() {
  147. // const { sysOrgCode } = useGlobSetting();
  148. const sysOrgCode = 'sdmtjtbdmk';
  149. let typeMenuListGas;
  150. switch (sysOrgCode) {
  151. case 'sdmtjtbetmk': //布尔台
  152. typeMenuListGas = [{ name: '预警监测' }, { name: '预警指标' }, { name: '瓦斯参数' }];
  153. return typeMenuListGas;
  154. case 'sdmtjtbdmk': //宝德
  155. typeMenuListGas = [{ name: '预警监测' }, { name: '管道故障诊断' }, { name: '预警指标' }];
  156. return typeMenuListGas;
  157. default:
  158. typeMenuListGas = [{ name: '预警监测' }, { name: '预警指标' }];
  159. // typeMenuListGas = [{ name: '预警监测' },{ name: '管道故障诊断' }, { name: '预警指标' }];
  160. return typeMenuListGas;
  161. }
  162. }
  163. //当前加载组件
  164. export const componentName = {
  165. fireWork: markRaw(defineAsyncComponent(() => import('./common/fireWork.vue'))),
  166. closeWall: markRaw(defineAsyncComponent(() => import('./common/closeWall.vue'))),
  167. mainWell: markRaw(defineAsyncComponent(() => import('./common/mainWell.vue'))),
  168. warnFireBrt: markRaw(defineAsyncComponent(() => import('./common/warnFire-brt.vue'))),
  169. warnFireBd: markRaw(defineAsyncComponent(() => import('./common/warnFire-bd.vue'))),
  170. };
  171. //顶部区域数据
  172. export const topList = [
  173. {
  174. id: 0,
  175. label: '最高温度(°C)',
  176. imgSrc: true,
  177. value: '--',
  178. text: '',
  179. list: [],
  180. },
  181. {
  182. id: 1,
  183. label: '最低温度(°C)',
  184. imgSrc: true,
  185. value: '--',
  186. text: '',
  187. list: [],
  188. },
  189. {
  190. id: 2,
  191. label: '平均温度(°C)',
  192. imgSrc: true,
  193. value: '--',
  194. text: '',
  195. list: [],
  196. },
  197. { id: 3, imgSrc: false, label: '', value: null, text: '--', list: [] },
  198. {
  199. id: 4,
  200. imgSrc: false,
  201. label: '回风隅角',
  202. value: null,
  203. text: '',
  204. list: [
  205. { id: 0, label: 'O₂', value: 0 },
  206. { id: 1, label: 'CO', value: 0 },
  207. ],
  208. },
  209. ];
  210. export const ventilateTopList = [
  211. {
  212. id: 0,
  213. label: '进风量(m³/min)',
  214. imgSrc: true,
  215. value: '--',
  216. text: '',
  217. list: [],
  218. },
  219. {
  220. id: 1,
  221. label: '回风量(m³/min)',
  222. imgSrc: true,
  223. value: '--',
  224. text: '',
  225. list: [],
  226. },
  227. {
  228. id: 2,
  229. label: '需风量(m³/min)',
  230. imgSrc: true,
  231. value: '--',
  232. text: '',
  233. list: [],
  234. },
  235. { id: 3, imgSrc: false, label: '', value: null, text: '--', list: [] },
  236. // {
  237. // id: 4,
  238. // imgSrc: false,
  239. // label: '其他信息',
  240. // value: null,
  241. // text: '',
  242. // list: [
  243. // { id: 0, label: 'O₂', value: '--' },
  244. // { id: 1, label: 'CO', value: '--' },
  245. // ],
  246. // },
  247. ];
  248. //束管监测选项列表
  249. export const contentList = [
  250. {
  251. id: 0,
  252. list: [
  253. {
  254. id: '0-0',
  255. title: 'O₂',
  256. dw: '(%)',
  257. label: '浓度 : ',
  258. value: '--',
  259. label1: '时间 : ',
  260. time: '--',
  261. },
  262. {
  263. id: '0-1',
  264. title: 'C₂H₄',
  265. dw: '(ppm)',
  266. label: '浓度 : ',
  267. value: '--',
  268. label1: '时间 : ',
  269. time: '--',
  270. },
  271. ],
  272. },
  273. {
  274. id: 1,
  275. list: [
  276. {
  277. id: '1-0',
  278. title: 'CO',
  279. dw: '(ppm)',
  280. label: '浓度 : ',
  281. value: '--',
  282. label1: '时间 : ',
  283. time: '--',
  284. },
  285. {
  286. id: '1-1',
  287. title: 'CH₄',
  288. dw: '(ppm)',
  289. label: '浓度 : ',
  290. value: '--',
  291. label1: '时间 : ',
  292. time: '--',
  293. },
  294. ],
  295. },
  296. {
  297. id: 2,
  298. list: [
  299. {
  300. id: '2-0',
  301. title: 'CO₂',
  302. dw: '(%)',
  303. label: '浓度 : ',
  304. value: '--',
  305. label1: '时间 : ',
  306. time: '--',
  307. },
  308. {
  309. id: '2-1',
  310. title: 'C₂H₂',
  311. dw: '(ppm)',
  312. label: '浓度 : ',
  313. value: '--',
  314. label1: '时间 : ',
  315. time: '--',
  316. },
  317. ],
  318. },
  319. ];
  320. //外因火灾-工作面顶部区域数据
  321. export const topOutList = [
  322. {
  323. id: 0,
  324. imgSrc: true,
  325. label: '最高温度(°C)',
  326. value: '0',
  327. text: '',
  328. },
  329. {
  330. id: 1,
  331. imgSrc: true,
  332. label: '最低温度(°C)',
  333. value: '0',
  334. text: '',
  335. },
  336. {
  337. id: 2,
  338. imgSrc: true,
  339. label: '平均温度(°C)',
  340. value: '0',
  341. text: '',
  342. },
  343. { id: 3, imgSrc: false, label: '', value: null, text: '' },
  344. // {
  345. // id: 4,
  346. // imgSrc: false,
  347. // label: '',
  348. // value: null,
  349. // text: '井下消防材料库',
  350. // },
  351. ];
  352. //外因火灾-中间区域标题数据
  353. // export const tabList = [
  354. // { id: 0, label: '烟雾传感器监测', details: '' },
  355. // { id: 1, label: '一氧化碳传感器监测', details: '' },
  356. // { id: 2, label: '自动喷淋灭火装置监测', details: '' },
  357. // ];
  358. export const tabLists = {
  359. yw: '烟雾传感器监测',
  360. wd: '温度传感器监测',
  361. pl: '自动喷淋灭火装置监测',
  362. co: '一氧化碳传感器监测',
  363. };
  364. //外因火灾-传感器table列
  365. // export const columns = [
  366. // {
  367. // title: '序号',
  368. // dataIndex: '',
  369. // key: 'rowIndex',
  370. // width: 60,
  371. // align: 'center',
  372. // customRender: ({ index }) => {
  373. // return `${index + 1}`;
  374. // },
  375. // },
  376. // { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
  377. // { rowIndex: 2, dataIndex: 'warnLevel_str', width: 80, title: '状态', type: '1', align: 'center' },
  378. // { rowIndex: 3, dataIndex: 'readTime', title: '时间', type: '1', align: 'center' },
  379. // ];
  380. //外因火灾-烟雾传感器table列
  381. // export const columnsSmoke = [
  382. // {
  383. // title: '序号',
  384. // dataIndex: '',
  385. // key: 'rowIndex',
  386. // width: 60,
  387. // align: 'center',
  388. // customRender: ({ index }) => {
  389. // return `${index + 1}`;
  390. // },
  391. // },
  392. // { rowIndex: 1, dataIndex: 'strinstallpos', title: '名称', type: '1', align: 'center' },
  393. // { rowIndex: 2, dataIndex: 'val', width: 80, title: '值', type: '1', align: 'center' },
  394. // { rowIndex: 3, dataIndex: 'warnLevel_str', width: 80, title: '状态', type: '1', align: 'center' },
  395. // { rowIndex: 4, dataIndex: 'readTime', title: '时间', type: '1', align: 'center' },
  396. // ];