main.data.ts 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700
  1. import { BasicColumn } from '/@/components/Table';
  2. import { FormSchema } from '/@/components/Table';
  3. import { rules } from '/@/utils/helper/validator';
  4. import { reactive } from 'vue';
  5. import type { EChartsOption } from 'echarts';
  6. import { useGlobSetting } from '/@/hooks/setting';
  7. import { cloneDeep } from 'lodash-es';
  8. type CtrlLockOpenType = {
  9. CtrlLockOpen: boolean | undefined;
  10. CtrlExplosionVentOpen: boolean | undefined;
  11. };
  12. export type PointMonitorType = {
  13. valueName: string;
  14. valueCode: string;
  15. value: number | string;
  16. warnMin_201: number | string;
  17. warnMin_104: number | string;
  18. readTime: string;
  19. };
  20. export const columns: BasicColumn[] = [
  21. {
  22. title: '名称',
  23. dataIndex: 'strname',
  24. width: 120,
  25. },
  26. {
  27. title: '安装位置',
  28. dataIndex: 'strinstallpos',
  29. width: 100,
  30. },
  31. {
  32. title: '是否为常闭型',
  33. dataIndex: 'bnormalclose',
  34. width: 100,
  35. // customRender: render.renderAvatar,
  36. },
  37. {
  38. title: '净宽',
  39. dataIndex: 'fclearwidth',
  40. width: 80,
  41. },
  42. {
  43. title: '净高',
  44. dataIndex: 'fclearheight',
  45. width: 100,
  46. },
  47. {
  48. title: '风门道数',
  49. dataIndex: 'ndoorcount',
  50. width: 100,
  51. },
  52. {
  53. title: '所属分站',
  54. width: 150,
  55. dataIndex: 'stationname',
  56. },
  57. {
  58. title: '点表',
  59. width: 100,
  60. dataIndex: 'strtype',
  61. },
  62. {
  63. title: '监测类型',
  64. dataIndex: 'monitorflag',
  65. width: 100,
  66. },
  67. {
  68. title: '是否模拟数据',
  69. dataIndex: 'testflag',
  70. width: 100,
  71. },
  72. ];
  73. export const recycleColumns: BasicColumn[] = [
  74. {
  75. title: '名称',
  76. dataIndex: 'strname',
  77. width: 100,
  78. },
  79. {
  80. title: '是否为常闭型',
  81. dataIndex: 'bnormalclose',
  82. width: 100,
  83. },
  84. ];
  85. export const searchFormSchema: FormSchema[] = [
  86. {
  87. label: '名称',
  88. field: 'strname',
  89. component: 'Input',
  90. colProps: { span: 6 },
  91. },
  92. {
  93. label: '安装位置',
  94. field: 'strinstallpos',
  95. component: 'Input',
  96. colProps: { span: 6 },
  97. },
  98. {
  99. label: '是否为常闭型',
  100. field: 'bnormalclose',
  101. component: 'JDictSelectTag',
  102. componentProps: {
  103. dictCode: 'user_status',
  104. placeholder: '请选择读写类型',
  105. stringToNumber: true,
  106. },
  107. colProps: { span: 6 },
  108. },
  109. ];
  110. export const formSchema: FormSchema[] = [
  111. {
  112. label: '',
  113. field: 'id',
  114. component: 'Input',
  115. show: false,
  116. },
  117. {
  118. label: '名称',
  119. field: 'strname',
  120. component: 'Input',
  121. },
  122. {
  123. label: '安装位置',
  124. field: 'strinstallpos',
  125. component: 'Input',
  126. },
  127. {
  128. label: '是否为常闭型',
  129. field: 'bnormalclose',
  130. component: 'RadioGroup',
  131. defaultValue: 1,
  132. componentProps: () => {
  133. return {
  134. options: [
  135. { label: '是', value: 1, key: '1' },
  136. { label: '否', value: 0, key: '2' },
  137. ],
  138. };
  139. },
  140. },
  141. {
  142. label: '净宽',
  143. field: 'fclearwidth',
  144. component: 'Input',
  145. },
  146. {
  147. label: '净高',
  148. field: 'fclearheight',
  149. component: 'Input',
  150. },
  151. {
  152. label: '风门道数',
  153. field: 'ndoorcount',
  154. component: 'Input',
  155. },
  156. {
  157. label: '所属分站',
  158. field: 'stationname',
  159. component: 'JDictSelectTag',
  160. componentProps: {
  161. dictCode: 'user_status',
  162. placeholder: '请选择状态',
  163. stringToNumber: true,
  164. },
  165. },
  166. {
  167. label: '点表',
  168. field: 'strtype',
  169. component: 'JDictSelectTag',
  170. componentProps: {
  171. dictCode: 'user_status',
  172. placeholder: '请选择状态',
  173. stringToNumber: true,
  174. },
  175. },
  176. {
  177. label: '监测类型',
  178. field: 'monitorflag',
  179. component: 'JDictSelectTag',
  180. componentProps: {
  181. dictCode: 'user_status',
  182. placeholder: '请选择状态',
  183. stringToNumber: true,
  184. },
  185. },
  186. {
  187. label: '是否模拟数据',
  188. field: 'testflag',
  189. component: 'RadioGroup',
  190. defaultValue: 1,
  191. componentProps: () => {
  192. return {
  193. options: [
  194. { label: '是', value: 1, key: '1' },
  195. { label: '否', value: 0, key: '2' },
  196. ],
  197. };
  198. },
  199. },
  200. ];
  201. export const tableColumns = [
  202. {
  203. title: '',
  204. dataIndex: 'isCheck',
  205. customCell: (_, index) => {
  206. if (index % 2 == 0) {
  207. return { rowSpan: 2 };
  208. } else {
  209. return { rowSpan: 0 };
  210. }
  211. },
  212. },
  213. {
  214. title: '安装位置',
  215. dataIndex: 'address',
  216. customCell: (_, index) => {
  217. if (index % 2 == 0) {
  218. return { rowSpan: 2 };
  219. } else {
  220. return { rowSpan: 0 };
  221. }
  222. },
  223. },
  224. {
  225. title: '运行风机',
  226. dataIndex: 'childName',
  227. },
  228. {
  229. title: '风机静压(Pa)',
  230. dataIndex: 'yc2',
  231. },
  232. {
  233. title: '风机全压(Pa)',
  234. dataIndex: 'dqPa',
  235. },
  236. {
  237. title: '电机流量(m³/s)',
  238. dataIndex: 'fanM3',
  239. },
  240. {
  241. title: '电机速度(rpm/s)',
  242. dataIndex: 'fanSD',
  243. },
  244. {
  245. title: '电机电压(V)',
  246. dataIndex: 'fanU',
  247. },
  248. {
  249. title: '电机电流(A)',
  250. dataIndex: 'fanA',
  251. },
  252. {
  253. title: '电机频率(Hz/s)',
  254. dataIndex: 'fanPL',
  255. },
  256. {
  257. title: '电机功率(KW/s)',
  258. dataIndex: 'fanGL',
  259. },
  260. {
  261. title: '振动X1(mm/s)',
  262. dataIndex: 'zdX1',
  263. },
  264. {
  265. title: '振动Y1(mm/s)',
  266. dataIndex: 'zdY1',
  267. },
  268. ];
  269. export const dataColumns = () => {
  270. return [
  271. {
  272. id: 'UXC',
  273. name: '电机轴温设定(℃)',
  274. id2: 'bearingFront2_F1',
  275. },
  276. { id: 'VXC', name: '电机定温设定(℃)', id2: 'bearingBack2_F1' },
  277. {
  278. id: 'WXC',
  279. name: '电机前轴温度(℃)',
  280. id2: 'stator2A_F1',
  281. },
  282. {
  283. id: 'QZC',
  284. name: '电机后轴温度(℃)',
  285. id2: 'stator2B_F1',
  286. },
  287. { id: 'ZCZ1C', name: '电机定子1温度(℃)', id2: 'fIA2_F1' },
  288. { id: 'ZCZ2C', name: '电机定子2温度(℃)', id2: 'fIB2_F1' },
  289. { id: 'FTZ1C', name: '电机定3温度(℃)', id2: 'fIC2_F1' },
  290. ];
  291. };
  292. export const stateColumns = () => {
  293. return [
  294. // {
  295. // id: 'lubeBoxTemperatureF1High',
  296. // name: '润滑站油箱油温高报警',
  297. // flag: false,
  298. // },
  299. {
  300. id: 'lubeBoxTemperatureF1Low',
  301. name: '润滑站1油箱油温低报警',
  302. flag: true,
  303. },
  304. {
  305. id: 'lubeTemperatureF1High',
  306. name: '润滑站1供油油温高报警',
  307. flag: true,
  308. },
  309. // {
  310. // id: 'lubeTemperatureF1Low',
  311. // name: '润滑站1供油油温低报警',
  312. // flag: false,
  313. // },
  314. { id: 'lubePaF1High', name: '润滑站1供油油压高报警', flag: true },
  315. { id: 'lubePaF1Low', name: '润滑站1供油油压低报警', flag: true },
  316. // { id: "ch4_F1High", name: "瓦斯值1高报警", flag: false },
  317. { id: 'singleDoorF1Warn', name: '侧开风门单模报警', flag: true },
  318. { id: 'lubeF1SlightFault', name: '稀油润滑站轻故障', flag: true },
  319. { id: 'lubeF1SevereFault', name: '稀油润滑站重故障', flag: true },
  320. { id: 'f1B1Fault', name: '变频器1故障', flag: true },
  321. { id: 'f1B2Fault', name: '变频器2故障', flag: true },
  322. { id: 'f1Fault', name: '通风机故障', flag: true },
  323. ];
  324. };
  325. export const faultDeviceHeader = [
  326. {
  327. title: '测点名称',
  328. code: 'valueName',
  329. width: '200px',
  330. },
  331. {
  332. title: '实时数据',
  333. code: 'value',
  334. width: '110px',
  335. },
  336. {
  337. title: '预警限值',
  338. code: 'warnMin_104',
  339. width: '110px',
  340. },
  341. {
  342. title: '报警限值',
  343. code: 'warnMin_201',
  344. width: '110px',
  345. },
  346. ];
  347. export const rightFaultDeviceColumns = [
  348. {
  349. title: '中端X',
  350. dataIndex: 'Fault_cd_ZX', // 测点名称
  351. width: 120,
  352. },
  353. {
  354. title: '中端X',
  355. dataIndex: 'Fault_ZX_val', // 中端X实时监测值
  356. width: 120,
  357. },
  358. ];
  359. export const modalTypeArr = {
  360. centerBtnArr: [
  361. {
  362. key: 'startSmoke',
  363. value: '启动/停止',
  364. permission: 'fan:startSmoke',
  365. },
  366. {
  367. key: 'startFan',
  368. value: '启动/停止',
  369. permission: 'fan:startFan',
  370. },
  371. {
  372. key: 'startFan',
  373. value: '启动/停止',
  374. permission: 'fan:startAndResetFan',
  375. },
  376. {
  377. key: 'resetFan',
  378. value: '一键复位',
  379. permission: 'fan:resetFan',
  380. },
  381. {
  382. key: 'changeSmoke',
  383. value: '不停风倒机',
  384. permission: 'fan:changeSmoke',
  385. },
  386. {
  387. key: 'changeDirection',
  388. value: '一键反风',
  389. permission: 'fan:changeDirection',
  390. },
  391. {
  392. key: 'frequency',
  393. value: '一键调频',
  394. permission: 'fan:frequency',
  395. },
  396. {
  397. key: 'fbm',
  398. value: '防爆门控制',
  399. permission: 'fan:fbm',
  400. },
  401. {
  402. key: 'kkjc',
  403. value: '工况辅助决策',
  404. permission: 'fan:kkjc',
  405. },
  406. {
  407. key: 'zhlk',
  408. value: '自主联控',
  409. permission: 'fan:zhlk',
  410. },
  411. ],
  412. };
  413. export const fbmControlData = <CtrlLockOpenType>reactive({
  414. CtrlLockOpen: false, // 远程开锁 true 为打开状态, false 为关闭状态
  415. CtrlExplosionVentOpen: false, // 远程开门 true 为打开状态, false 为关闭状态
  416. });
  417. // export const assistanceData = {
  418. // '30': {
  419. // angle: 0,
  420. // Hz: 30.0, //频率
  421. // a: -0.17624, //二次项系数
  422. // b: 34.59747, //一次项系数
  423. // c: 938.98517, //常数项系数
  424. // min: 93.0, //风量下限
  425. // max: 132.0, //风量上限
  426. // },
  427. // '31': {
  428. // angle: 0,
  429. // Hz: 31.0,
  430. // a: -0.17624,
  431. // b: 35.055694,
  432. // c: 851.596922,
  433. // min: 96.1,
  434. // max: 136.4,
  435. // },
  436. // '32': {
  437. // angle: 0,
  438. // Hz: 32.0,
  439. // a: -0.17624,
  440. // b: 35.513918,
  441. // c: 768.749733,
  442. // min: 99.2,
  443. // max: 140.8,
  444. // },
  445. // '33': {
  446. // angle: 0,
  447. // Hz: 33.0,
  448. // a: -0.17624,
  449. // b: 35.972142,
  450. // c: 690.443603,
  451. // min: 102.3,
  452. // max: 145.2,
  453. // },
  454. // '34': {
  455. // angle: 0,
  456. // Hz: 34.0,
  457. // a: -0.17624,
  458. // b: 36.430366,
  459. // c: 616.678531,
  460. // min: 105.4,
  461. // max: 149.6,
  462. // },
  463. // '35': {
  464. // angle: 0,
  465. // Hz: 35.0,
  466. // a: -0.17624,
  467. // b: 36.88859,
  468. // c: 547.454517,
  469. // min: 108.5,
  470. // max: 154.0,
  471. // },
  472. // '36': {
  473. // angle: 0,
  474. // Hz: 36.0,
  475. // a: -0.17624,
  476. // b: 37.346814,
  477. // c: 482.771563,
  478. // min: 111.6,
  479. // max: 158.4,
  480. // },
  481. // '37': {
  482. // angle: 0,
  483. // Hz: 37.0,
  484. // a: -0.17624,
  485. // b: 37.805038,
  486. // c: 422.629667,
  487. // min: 114.7,
  488. // max: 162.8,
  489. // },
  490. // '38': {
  491. // angle: 0,
  492. // Hz: 38.0,
  493. // a: -0.17624,
  494. // b: 38.263262,
  495. // c: 367.028829,
  496. // min: 117.8,
  497. // max: 167.2,
  498. // },
  499. // '39': {
  500. // angle: 0,
  501. // Hz: 39.0,
  502. // a: -0.17624,
  503. // b: 38.721486,
  504. // c: 315.96905,
  505. // min: 120.9,
  506. // max: 171.6,
  507. // },
  508. // '40': {
  509. // angle: 0,
  510. // Hz: 40.0,
  511. // a: -0.17624,
  512. // b: 39.17971,
  513. // c: 269.45033,
  514. // min: 124.0,
  515. // max: 176.0,
  516. // },
  517. // '41': {
  518. // angle: 0,
  519. // Hz: 41.0,
  520. // a: -0.17624,
  521. // b: 39.637934,
  522. // c: 227.472668,
  523. // min: 127.1,
  524. // max: 180.4,
  525. // },
  526. // '42': {
  527. // angle: 0,
  528. // Hz: 42.0,
  529. // a: -0.17624,
  530. // b: 40.096158,
  531. // c: 190.036065,
  532. // min: 130.2,
  533. // max: 184.8,
  534. // },
  535. // '43': {
  536. // angle: 0,
  537. // Hz: 43.0,
  538. // a: -0.17624,
  539. // b: 40.554382,
  540. // c: 157.140521,
  541. // min: 133.3,
  542. // max: 189.2,
  543. // },
  544. // '44': {
  545. // angle: 0,
  546. // Hz: 44.0,
  547. // a: -0.17624,
  548. // b: 41.012606,
  549. // c: 128.786035,
  550. // min: 136.4,
  551. // max: 193.6,
  552. // },
  553. // '45': {
  554. // angle: 0,
  555. // Hz: 45.0,
  556. // a: -0.17624,
  557. // b: 41.47083,
  558. // c: 104.972607,
  559. // min: 139.5,
  560. // max: 198.0,
  561. // },
  562. // '46': {
  563. // angle: 0,
  564. // Hz: 46.0,
  565. // a: -0.17624,
  566. // b: 41.929054,
  567. // c: 85.700239,
  568. // min: 142.6,
  569. // max: 202.4,
  570. // },
  571. // '47': {
  572. // angle: 0,
  573. // Hz: 47.0,
  574. // a: -0.17624,
  575. // b: 42.387278,
  576. // c: 70.968929,
  577. // min: 145.7,
  578. // max: 206.8,
  579. // },
  580. // '48': {
  581. // angle: 0,
  582. // Hz: 48.0,
  583. // a: -0.17624,
  584. // b: 42.845502,
  585. // c: 60.778677,
  586. // min: 148.8,
  587. // max: 211.2,
  588. // },
  589. // '49': {
  590. // angle: 0,
  591. // Hz: 49.0,
  592. // a: -0.17624,
  593. // b: 43.303726,
  594. // c: 55.129484,
  595. // min: 151.9,
  596. // max: 215.6,
  597. // },
  598. // '50': {
  599. // angle: 0,
  600. // Hz: 50.0,
  601. // a: -0.17624,
  602. // b: 43.76195,
  603. // c: 54.02135,
  604. // min: 155.0,
  605. // max: 220.0,
  606. // },
  607. // };
  608. export const assistanceData = {
  609. '30': {
  610. angle: 0,
  611. Hz: 30.0, //频率
  612. a: -0.17624, //二次项系数
  613. b: 43.40947, //一次项系数
  614. c: 97.60705999999982, //常数项系数
  615. min: 93.0, //风量下限
  616. max: 132.0, //风量上限
  617. },
  618. '31': {
  619. angle: 0,
  620. Hz: 31.0,
  621. a: -0.17624,
  622. b: 43.427094,
  623. c: 95.43614590000016,
  624. min: 96.1,
  625. max: 136.4,
  626. },
  627. '32': {
  628. angle: 0,
  629. Hz: 32.0,
  630. a: -0.17624,
  631. b: 43.444718,
  632. c: 93.26435059999994,
  633. min: 99.2,
  634. max: 140.8,
  635. },
  636. '33': {
  637. angle: 0,
  638. Hz: 33.0,
  639. a: -0.17624,
  640. b: 43.462342,
  641. c: 91.09167409999964,
  642. min: 102.3,
  643. max: 145.2,
  644. },
  645. '34': {
  646. angle: 0,
  647. Hz: 34.0,
  648. a: -0.17624,
  649. b: 43.479966000000005,
  650. c: 88.91811639999969,
  651. min: 105.4,
  652. max: 149.6,
  653. },
  654. '35': {
  655. angle: 0,
  656. Hz: 35.0,
  657. a: -0.17624,
  658. b: 43.49759,
  659. c: 86.74367749999965,
  660. min: 108.5,
  661. max: 154.0,
  662. },
  663. '36': {
  664. angle: 0,
  665. Hz: 36.0,
  666. a: -0.17624,
  667. b: 43.515214,
  668. c: 84.56835739999997,
  669. min: 111.6,
  670. max: 158.4,
  671. },
  672. '37': {
  673. angle: 0,
  674. Hz: 37.0,
  675. a: -0.17624,
  676. b: 43.532838,
  677. c: 82.3921561000002,
  678. min: 114.7,
  679. max: 162.8,
  680. },
  681. '38': {
  682. angle: 0,
  683. Hz: 38.0,
  684. a: -0.17624,
  685. b: 43.550462,
  686. c: 80.21507359999941,
  687. min: 117.8,
  688. max: 167.2,
  689. },
  690. '39': {
  691. angle: 0,
  692. Hz: 39.0,
  693. a: -0.17624,
  694. b: 43.568086,
  695. c: 78.0371098999999,
  696. min: 120.9,
  697. max: 171.6,
  698. },
  699. '40': {
  700. angle: 0,
  701. Hz: 40.0,
  702. a: -0.17624,
  703. b: 43.58571,
  704. c: 75.85826499999985,
  705. min: 124.0,
  706. max: 176.0,
  707. },
  708. '41': {
  709. angle: 0,
  710. Hz: 41.0,
  711. a: -0.17624,
  712. b: 43.603334,
  713. c: 73.67853890000015,
  714. min: 127.1,
  715. max: 180.4,
  716. },
  717. '42': {
  718. angle: 0,
  719. Hz: 42.0,
  720. a: -0.17624,
  721. b: 43.620958,
  722. c: 71.4979315999999,
  723. min: 130.2,
  724. max: 184.8,
  725. },
  726. '43': {
  727. angle: 0,
  728. Hz: 43.0,
  729. a: -0.17624,
  730. b: 43.638582,
  731. c: 69.31644309999956,
  732. min: 133.3,
  733. max: 189.2,
  734. },
  735. '44': {
  736. angle: 0,
  737. Hz: 44.0,
  738. a: -0.17624,
  739. b: 43.656206000000005,
  740. c: 67.13407339999958,
  741. min: 136.4,
  742. max: 193.6,
  743. },
  744. '45': {
  745. angle: 0,
  746. Hz: 45.0,
  747. a: -0.17624,
  748. b: 43.67383,
  749. c: 64.9508224999995,
  750. min: 139.5,
  751. max: 198.0,
  752. },
  753. '46': {
  754. angle: 0,
  755. Hz: 46.0,
  756. a: -0.17624,
  757. b: 43.691454,
  758. c: 62.76669039999979,
  759. min: 142.6,
  760. max: 202.4,
  761. },
  762. '47': {
  763. angle: 0,
  764. Hz: 47.0,
  765. a: -0.17624,
  766. b: 43.709078,
  767. c: 60.58167709999998,
  768. min: 145.7,
  769. max: 206.8,
  770. },
  771. '48': {
  772. angle: 0,
  773. Hz: 48.0,
  774. a: -0.17624,
  775. b: 43.726702,
  776. c: 58.39578259999962,
  777. min: 148.8,
  778. max: 211.2,
  779. },
  780. '49': {
  781. angle: 0,
  782. Hz: 49.0,
  783. a: -0.17624,
  784. b: 43.744326,
  785. c: 56.20900689999962,
  786. min: 151.9,
  787. max: 215.6,
  788. },
  789. '50': {
  790. angle: 0,
  791. Hz: 50.0,
  792. a: -0.17624,
  793. b: 43.76195,
  794. c: 54.021349999999984,
  795. min: 155.0,
  796. max: 220.0,
  797. },
  798. };
  799. export const setOption = (deviceType?) => {
  800. let yMax = 4500;
  801. const { sysOrgCode } = useGlobSetting();
  802. // const sysOrgCode = 'sdmtjtjjmk';
  803. if (sysOrgCode == 'sdmtjtdltmk') {
  804. // 这里判断白家渠还是五当沟
  805. if (deviceType == 'fanmain_bjq') {
  806. yMax = 5500;
  807. } else if (deviceType == 'fanmain_wdg') {
  808. yMax = 1200;
  809. }
  810. } else if (sysOrgCode == 'sdmtjtswmk') {
  811. if (deviceType == 'fanmain_bfj') {
  812. yMax = 5000;
  813. } else if (deviceType == 'fanmain_nfj') {
  814. yMax = 4500;
  815. }
  816. } else if (sysOrgCode == 'sdmtjtbdmk') {
  817. if (deviceType == 'fanmain_ljy') {
  818. yMax = 5000;
  819. } else if (deviceType == 'fanmain_zl') {
  820. yMax = 6000;
  821. }
  822. } else if (sysOrgCode == 'sdmtjtjjmk') {
  823. yMax = 6000;
  824. } else {
  825. yMax = 4500;
  826. }
  827. return reactive<EChartsOption>({
  828. title: {
  829. text: '风机运行工况辅助曲线图',
  830. textStyle: {
  831. color: '#BF954D',
  832. },
  833. left: 'center',
  834. top: 0,
  835. },
  836. // backgroundColor: '#39deff',
  837. tooltip: {
  838. trigger: 'axis',
  839. axisPointer: {
  840. type: 'cross',
  841. label: {
  842. backgroundColor: '#6a7985',
  843. },
  844. },
  845. },
  846. toolbox: {
  847. show: true,
  848. },
  849. grid: {
  850. left: 8,
  851. right: 50,
  852. bottom: 0,
  853. containLabel: true,
  854. },
  855. xAxis: {
  856. type: 'category',
  857. name: 'm³/s',
  858. nameTextStyle: {
  859. fontWeight: 600,
  860. fontSize: 13,
  861. },
  862. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  863. axisLabel: {
  864. margin: 20,
  865. fontSize: 14,
  866. color: '#f1f1f199',
  867. },
  868. boundaryGap: false,
  869. data: [],
  870. },
  871. yAxis: {
  872. type: 'value',
  873. axisLine: {
  874. show: true,
  875. lineStyle: {
  876. color: '#006c9d',
  877. },
  878. },
  879. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  880. axisLabel: {
  881. show: true,
  882. fontSize: 14,
  883. formatter: '{value}',
  884. color: '#0071A5',
  885. },
  886. min: 0,
  887. max: yMax, //武当沟
  888. name: 'Pa',
  889. nameTextStyle: {
  890. fontWeight: 600,
  891. fontSize: 13,
  892. },
  893. },
  894. series: [],
  895. });
  896. };
  897. export const initData1 = () => {
  898. const assistanceData = {
  899. '30': {
  900. angle: 0,
  901. Hz: 30.0, //频率
  902. a: -0.17624, //二次项系数
  903. b: 43.40947, //一次项系数
  904. c: 97.60705999999982, //常数项系数
  905. min: 93.0, //风量下限
  906. max: 171.0, //风量上限
  907. },
  908. '31': {
  909. angle: 0,
  910. Hz: 31.0,
  911. a: -0.17624,
  912. b: 43.427094,
  913. c: 95.43614590000016,
  914. min: 96.1,
  915. max: 174.4,
  916. },
  917. '32': {
  918. angle: 0,
  919. Hz: 32.0,
  920. a: -0.17624,
  921. b: 43.444718,
  922. c: 93.26435059999994,
  923. min: 99.2,
  924. max: 177.8,
  925. },
  926. '33': {
  927. angle: 0,
  928. Hz: 33.0,
  929. a: -0.17624,
  930. b: 43.462342,
  931. c: 91.09167409999964,
  932. min: 102.3,
  933. max: 180.2,
  934. },
  935. '34': {
  936. angle: 0,
  937. Hz: 34.0,
  938. a: -0.17624,
  939. b: 43.479966000000005,
  940. c: 88.91811639999969,
  941. min: 105.4,
  942. max: 182.0,
  943. },
  944. '35': {
  945. angle: 0,
  946. Hz: 35.0,
  947. a: -0.17624,
  948. b: 43.49759,
  949. c: 86.74367749999965,
  950. min: 108.5,
  951. max: 184.5,
  952. },
  953. '36': {
  954. angle: 0,
  955. Hz: 36.0,
  956. a: -0.17624,
  957. b: 43.515214,
  958. c: 84.56835739999997,
  959. min: 111.6,
  960. max: 187.0,
  961. },
  962. '37': {
  963. angle: 0,
  964. Hz: 37.0,
  965. a: -0.17624,
  966. b: 43.532838,
  967. c: 82.3921561000002,
  968. min: 114.7,
  969. max: 190.8,
  970. },
  971. '38': {
  972. angle: 0,
  973. Hz: 38.0,
  974. a: -0.17624,
  975. b: 43.550462,
  976. c: 80.21507359999941,
  977. min: 117.8,
  978. max: 193.0,
  979. },
  980. '39': {
  981. angle: 0,
  982. Hz: 39.0,
  983. a: -0.17624,
  984. b: 43.568086,
  985. c: 78.0371098999999,
  986. min: 120.9,
  987. max: 195.6,
  988. },
  989. '40': {
  990. angle: 0,
  991. Hz: 40.0,
  992. a: -0.17624,
  993. b: 43.58571,
  994. c: 75.85826499999985,
  995. min: 123.0,
  996. max: 197.0,
  997. },
  998. '41': {
  999. angle: 0,
  1000. Hz: 41.0,
  1001. a: -0.17624,
  1002. b: 43.603334,
  1003. c: 73.67853890000015,
  1004. min: 125.1,
  1005. max: 199.4,
  1006. },
  1007. '42': {
  1008. angle: 0,
  1009. Hz: 42.0,
  1010. a: -0.17624,
  1011. b: 43.620958,
  1012. c: 71.4979315999999,
  1013. min: 128.2,
  1014. max: 202.8,
  1015. },
  1016. '43': {
  1017. angle: 0,
  1018. Hz: 43.0,
  1019. a: -0.17624,
  1020. b: 43.638582,
  1021. c: 69.31644309999956,
  1022. min: 130.3,
  1023. max: 205.8,
  1024. },
  1025. '44': {
  1026. angle: 0,
  1027. Hz: 44.0,
  1028. a: -0.17624,
  1029. b: 43.656206000000005,
  1030. c: 67.13407339999958,
  1031. min: 132.4,
  1032. max: 208.5,
  1033. },
  1034. '45': {
  1035. angle: 0,
  1036. Hz: 45.0,
  1037. a: -0.17624,
  1038. b: 43.67383,
  1039. c: 64.9508224999995,
  1040. min: 134.5,
  1041. max: 211.8,
  1042. },
  1043. '46': {
  1044. angle: 0,
  1045. Hz: 46.0,
  1046. a: -0.17624,
  1047. b: 43.691454,
  1048. c: 62.76669039999979,
  1049. min: 136.6,
  1050. max: 214.4,
  1051. },
  1052. '47': {
  1053. angle: 0,
  1054. Hz: 47.0,
  1055. a: -0.17624,
  1056. b: 43.709078,
  1057. c: 60.58167709999998,
  1058. min: 138.7,
  1059. max: 217.8,
  1060. },
  1061. '48': {
  1062. angle: 0,
  1063. Hz: 48.0,
  1064. a: -0.17624,
  1065. b: 43.726702,
  1066. c: 58.39578259999962,
  1067. min: 140.8,
  1068. max: 219.2,
  1069. },
  1070. '49': {
  1071. angle: 0,
  1072. Hz: 49.0,
  1073. a: -0.17624,
  1074. b: 43.744326,
  1075. c: 56.20900689999962,
  1076. min: 143.9,
  1077. max: 221.6,
  1078. },
  1079. '50': {
  1080. angle: 0,
  1081. Hz: 50.0,
  1082. a: -0.17624,
  1083. b: 43.76195,
  1084. c: 54.021349999999984,
  1085. min: 146.0,
  1086. max: 223.0,
  1087. },
  1088. };
  1089. const num = 21;
  1090. const a = -0.17624; //-0.17624,
  1091. const m = 2770.6411125432646,
  1092. n = -124.15442010894235;
  1093. let i = 21;
  1094. const data = [];
  1095. for (const key in assistanceData) {
  1096. i -= 1;
  1097. const p = i;
  1098. const item = assistanceData[key];
  1099. item['b'] = 2 * a * (n + p);
  1100. item['c'] = a * (n + p) * (n + p) + m - i * 50;
  1101. // if (sysOrgCode == 'sdmtjtdltmk') {
  1102. // // 大柳塔井整体向右下移动
  1103. // item['min'] = item['min'] + 20;
  1104. // item['max'] = item['max'] + 20;
  1105. // item['b'] = 2 * a * (n + p) + 3;
  1106. // item['c'] = a * (n + p) * (n + p) + m - i * 60;
  1107. // } else {
  1108. // item['b'] = 2 * a * (n + p);
  1109. // item['c'] = a * (n + p) * (n + p) + m - i * 50;
  1110. // // //白家渠
  1111. // // a = -0.13424;
  1112. // // item['a'] = Math.round((a + 0.002 * (num - i)) * 10000) / 10000;
  1113. // // item['min'] = item['min'] + 50 + (num - i) * 2;
  1114. // // item['max'] = item['max'] + 65 + (num - i) * 3.5;
  1115. // // item['b'] = 2 * item['a'] * (n + p) + 8.8;
  1116. // // item['c'] = item['a'] * (n + p) * (n + p) + m - i * 60;
  1117. // // //武当沟
  1118. // // a = -0.17724;
  1119. // // item['a'] = Math.round((a - 0.002 * (num - i)) * 10000) / 10000;
  1120. // // item['min'] = item['min'] - 40 - (num - i) * 1;
  1121. // // item['max'] = item['max'] - 60 - (num - i) * 0.5;
  1122. // // item['b'] = 2 * item['a'] * (n + p) - 16.5;
  1123. // // item['c'] = item['a'] * (n + p) * (n + p) + m - i * 40;
  1124. // }
  1125. data.push(item);
  1126. }
  1127. console.log(data);
  1128. return data;
  1129. };
  1130. // 大柳塔武当沟
  1131. export const initData = (deviceType?) => {
  1132. const { sysOrgCode } = useGlobSetting();
  1133. // const sysOrgCode = 'sdmtjtjjmk';
  1134. if (sysOrgCode == 'sdmtjtdltmk') {
  1135. return initDataDlt(deviceType);
  1136. } else if (sysOrgCode == 'sdmtjtswmk') {
  1137. return initDataSw(deviceType);
  1138. } else if (sysOrgCode == 'sdmtjtbltmk') {
  1139. return initDataBlt('fanmain_bfj');
  1140. } else if (sysOrgCode == 'sdmtjtbdmk') {
  1141. return initDataBd(deviceType);
  1142. } else if (sysOrgCode == 'sdmtjtjjmk') {
  1143. return initDataJj();
  1144. } else {
  1145. return initData1();
  1146. }
  1147. };
  1148. // 大柳塔白家渠
  1149. export const initDataDlt = (deviceType?) => {
  1150. if (deviceType == 'fanmain_bjq') {
  1151. const num = 2;
  1152. const obj = {
  1153. angle: 0,
  1154. Hz: -0,
  1155. a: -0.0656,
  1156. b: 17.398283350755946,
  1157. c: 3241.38254718147,
  1158. min: 300,
  1159. max: 1100.0,
  1160. };
  1161. const a = -0.0656,
  1162. m = 17.398283350755946,
  1163. n = 3241.38254718147;
  1164. const maxList = [339.4, 359.4, 379.4, 399.4, 419.4];
  1165. const minList = [143, 152, 161, 170, 180];
  1166. const data = [];
  1167. for (let i = -2; i <= num; i++) {
  1168. const item = cloneDeep(obj);
  1169. item['Hz'] = 0 + i * 3;
  1170. item['c'] = n + 5 * i;
  1171. item['b'] = m + i * 2;
  1172. item['max'] = maxList[i + 2];
  1173. item['min'] = minList[i + 2];
  1174. data.push(item);
  1175. }
  1176. return data;
  1177. } else if (deviceType == 'fanmain_wdg') {
  1178. // 武当沟
  1179. const num = 2;
  1180. const obj = {
  1181. angle: 0,
  1182. Hz: -0,
  1183. a: -0.1424,
  1184. b: 26.316238660115914,
  1185. c: -370.62808803303426,
  1186. min: 300,
  1187. max: 1100.0,
  1188. };
  1189. const a = -0.1424,
  1190. m = 26.086238660115914,
  1191. n = -370.62808803303426;
  1192. const maxList = [138, 148, 158, 168, 178];
  1193. const minList = [90, 95, 100, 105, 110];
  1194. const data = [];
  1195. for (let i = -2; i <= num; i++) {
  1196. const item = cloneDeep(obj);
  1197. item['Hz'] = 0 + i * 3;
  1198. item['c'] = n + 1 * i;
  1199. item['b'] = m + i * 1.3;
  1200. item['max'] = maxList[i + 2];
  1201. item['min'] = minList[i + 2];
  1202. data.push(item);
  1203. }
  1204. return data;
  1205. }
  1206. };
  1207. export const initDataSw = (deviceType?) => {
  1208. if (deviceType == 'fanmain_bfj') {
  1209. // 北风井
  1210. const num = 2;
  1211. const obj = {
  1212. angle: 0,
  1213. Hz: 0,
  1214. a: -0.2486,
  1215. b: 14.998999006593294,
  1216. c: 3672.488224167444,
  1217. min: 300,
  1218. max: 1100.0,
  1219. };
  1220. const a = -0.2486,
  1221. m = 14.998999006593294,
  1222. n = 3672.488224167444;
  1223. const maxList = [115.67, 130.67, 146.67, 165.67, 185.67];
  1224. const minList = [50, 60, 70, 85, 100];
  1225. const data = [];
  1226. for (let i = -2; i <= num; i++) {
  1227. const item = cloneDeep(obj);
  1228. item['Hz'] = 0 + i * 3;
  1229. item['c'] = n + 5 * i;
  1230. item['b'] = m + i * 8;
  1231. item['max'] = maxList[i + 2];
  1232. item['min'] = minList[i + 2];
  1233. data.push(item);
  1234. }
  1235. return data;
  1236. } else if (deviceType == 'fanmain_nfj') {
  1237. // 南风井
  1238. const num = 2;
  1239. const obj = {
  1240. angle: 0,
  1241. Hz: -0,
  1242. a: -0.0445,
  1243. b: 15.46559392987956,
  1244. c: 2607.959183673496,
  1245. min: 300,
  1246. max: 1100.0,
  1247. };
  1248. const a = -0.0455,
  1249. m = 15.46559392987956,
  1250. n = 2607.959183673496;
  1251. const maxList = [315, 345, 375, 410, 450, 500];
  1252. const minList = [90, 105, 120, 145, 170, 185];
  1253. const data = [];
  1254. for (let i = -3; i <= num; i++) {
  1255. const item = cloneDeep(obj);
  1256. item['Hz'] = 0 + i * 3;
  1257. item['a'] = Math.round((a - 0.003 * (num - i)) * 10000) / 10000;
  1258. item['c'] = n + 10 * i;
  1259. item['b'] = m + i * 1.2;
  1260. item['max'] = maxList[i + 3];
  1261. item['min'] = minList[i + 3];
  1262. data.push(item);
  1263. }
  1264. return data;
  1265. }
  1266. };
  1267. const initDataBd = (deviceType?) => {
  1268. if (deviceType == 'fanmain_ljy') {
  1269. // 刘家宴
  1270. const num = 2;
  1271. const obj = {
  1272. angle: 0,
  1273. Hz: 0,
  1274. a: -0.02674,
  1275. b: 10.070078367532346,
  1276. c: 3048.210229423783,
  1277. min: 300,
  1278. max: 1100.0,
  1279. };
  1280. const a = -0.02774,
  1281. m = 10.090078367532346,
  1282. n = 3988.210229423783;
  1283. const maxList = [370, 410, 450, 500, 560, 624];
  1284. const minList = [70, 80, 100, 130, 160, 210];
  1285. const data = [];
  1286. let index = 0;
  1287. for (let i = -3; i <= num; i++) {
  1288. ++index;
  1289. const item = cloneDeep(obj);
  1290. item['a'] = Math.round((a - 0.002 * (6 - index)) * 10000) / 10000;
  1291. item['Hz'] = 0 + i * 3;
  1292. item['c'] = n + 10 * i;
  1293. item['b'] = m + i * 1.3;
  1294. item['max'] = maxList[i + 3];
  1295. item['min'] = minList[i + 3];
  1296. data.push(item);
  1297. }
  1298. return data;
  1299. } else if (deviceType == 'fanmain_zl') {
  1300. // 枣庄
  1301. const num = 2;
  1302. const obj = {
  1303. angle: 0,
  1304. Hz: 0,
  1305. a: -0.02674,
  1306. b: 10.070078367532346,
  1307. c: 3048.210229423783,
  1308. min: 300,
  1309. max: 1100.0,
  1310. };
  1311. const a = -0.05874,
  1312. m = 17.090078367532346,
  1313. n = 3588.210229423783;
  1314. const maxList = [315, 344, 379, 415, 454];
  1315. const minList = [160, 170, 180, 190, 200, 210];
  1316. const data = [];
  1317. let index = 0;
  1318. for (let i = -2; i <= num; i++) {
  1319. ++index;
  1320. const item = cloneDeep(obj);
  1321. item['a'] = Math.round((a - 0.003 * (6 - index)) * 10000) / 10000;
  1322. item['Hz'] = 0 + i * 3;
  1323. item['c'] = n + 6 * i;
  1324. item['b'] = m + i * 1.9;
  1325. item['max'] = maxList[i + 2];
  1326. item['min'] = minList[i + 2];
  1327. data.push(item);
  1328. }
  1329. return data;
  1330. }
  1331. };
  1332. const initDataBlt = (deviceType?) => {
  1333. const num = 2;
  1334. const obj = {
  1335. angle: 0,
  1336. Hz: 0,
  1337. a: -0.02674,
  1338. b: 10.070078367532346,
  1339. c: 3048.210229423783,
  1340. min: 300,
  1341. max: 1100.0,
  1342. };
  1343. const a = -0.02874,
  1344. m = 10.070078367532346,
  1345. n = 3048.210229423783;
  1346. const maxList = [370, 400, 440, 480, 525, 580];
  1347. const minList = [70, 80, 100, 130, 160, 210];
  1348. const data = [];
  1349. let index = 0;
  1350. for (let i = -3; i <= num; i++) {
  1351. ++index;
  1352. const item = cloneDeep(obj);
  1353. item['a'] = Math.round((a - 0.002 * (6 - index)) * 10000) / 10000;
  1354. item['Hz'] = 0 + i * 3;
  1355. item['c'] = n + 10 * i;
  1356. item['b'] = m + i * 1;
  1357. item['max'] = maxList[i + 3];
  1358. item['min'] = minList[i + 3];
  1359. data.push(item);
  1360. }
  1361. return data;
  1362. };
  1363. const initDataJj = (deviceType?) => {
  1364. const num = 2;
  1365. const obj = {
  1366. angle: 0,
  1367. Hz: 0,
  1368. a: -0.02674,
  1369. b: 10.070078367532346,
  1370. c: 3048.210229423783,
  1371. min: 300,
  1372. max: 1100.0,
  1373. };
  1374. const a = -0.09874,
  1375. m = 21.090078367532346,
  1376. n = 3588.210229423783;
  1377. const maxList = [239, 264, 292, 322, 354];
  1378. const minList = [60, 70, 80, 90, 100, 110];
  1379. const data = [];
  1380. let index = 0;
  1381. for (let i = -2; i <= num; i++) {
  1382. ++index;
  1383. const item = cloneDeep(obj);
  1384. item['a'] = Math.round((a - 0.003 * (6 - index)) * 10000) / 10000;
  1385. item['Hz'] = 0 + i * 3;
  1386. item['c'] = n + 10 * i;
  1387. item['b'] = m + i * 3;
  1388. item['max'] = maxList[i + 2];
  1389. item['min'] = minList[i + 2];
  1390. data.push(item);
  1391. }
  1392. return data;
  1393. };
  1394. export const fanInfoData = reactive({
  1395. fj: '一号回风井',
  1396. xh: 'FBCDZ No.29',
  1397. gl: '2×500',
  1398. edgl: '740',
  1399. eddy: '10000',
  1400. eddl: '38.4',
  1401. flfw: '110~260',
  1402. fyfw: '200~4100',
  1403. fbdj: 'ExdI',
  1404. ccrq: '2010.07',
  1405. sccj: '南阳防爆',
  1406. tjfs: '变频调节',
  1407. plfw: '30~50',
  1408. });
  1409. export const fanInfo = [
  1410. {
  1411. title: '风井',
  1412. code: 'windWell_mainFanInfo',
  1413. value: '一号回风井',
  1414. },
  1415. {
  1416. title: '型号',
  1417. code: 'modelType_mainFanInfo',
  1418. value: 'FBCDZ No.29',
  1419. },
  1420. {
  1421. title: '功率(kW)',
  1422. code: 'powerRating_mainFanInfo',
  1423. value: '2×500',
  1424. },
  1425. {
  1426. title: '额定转速(r/min)',
  1427. code: 'ratedSpeed_mainFanInfo',
  1428. value: '740',
  1429. },
  1430. {
  1431. title: '额定电压(V)',
  1432. code: 'ratedVoltage_mainFanInfo',
  1433. value: '10000',
  1434. },
  1435. {
  1436. title: '额定电流(A)',
  1437. code: 'ratedCurrent_mainFanInfo',
  1438. value: '38.4',
  1439. },
  1440. {
  1441. title: '风量范围(m³/s)',
  1442. code: 'airflowRange_mainFanInfo',
  1443. value: '110~260',
  1444. },
  1445. {
  1446. title: '风压范围(Pa)',
  1447. code: 'pressureRange_mainFanInfo',
  1448. value: '200~4100',
  1449. },
  1450. {
  1451. title: '防爆等级',
  1452. code: 'explosionProofRating_mainFanInfo',
  1453. value: 'ExdI',
  1454. },
  1455. {
  1456. title: '出厂日期',
  1457. code: 'manufactureDate_mainFanInfo',
  1458. value: '2010.07',
  1459. },
  1460. {
  1461. title: '生产厂家',
  1462. code: 'manufacturer_mainFanInfo',
  1463. value: '南阳防爆',
  1464. },
  1465. {
  1466. title: '调节方式',
  1467. code: 'adjustmentMethod_mainFanInfo',
  1468. value: '变频调节',
  1469. },
  1470. {
  1471. title: '频率可调范围(Hz)',
  1472. code: 'angleAdjustableRange_mainFanInfo',
  1473. value: '30~50',
  1474. },
  1475. ];
  1476. export const getSchamas = (): FormSchema[] => {
  1477. return [
  1478. {
  1479. field: 'fj',
  1480. component: 'Input',
  1481. label: '风井',
  1482. colProps: {
  1483. span: 6,
  1484. },
  1485. },
  1486. {
  1487. field: 'xh',
  1488. component: 'Input',
  1489. label: '型号',
  1490. colProps: {
  1491. span: 6,
  1492. },
  1493. },
  1494. {
  1495. field: 'gl',
  1496. component: 'Input',
  1497. label: '功率(kW)',
  1498. colProps: {
  1499. span: 6,
  1500. },
  1501. },
  1502. {
  1503. field: 'edgl',
  1504. component: 'Input',
  1505. label: '额定转速(r/min)',
  1506. colProps: {
  1507. span: 6,
  1508. },
  1509. },
  1510. {
  1511. field: 'eddy',
  1512. component: 'Input',
  1513. label: '额定电压(V)',
  1514. colProps: {
  1515. span: 6,
  1516. },
  1517. },
  1518. {
  1519. field: 'eddl',
  1520. component: 'Input',
  1521. label: '额定电流(A)',
  1522. colProps: {
  1523. span: 6,
  1524. },
  1525. },
  1526. {
  1527. field: 'flfw',
  1528. component: 'Input',
  1529. label: '风量范围(m³/s)',
  1530. colProps: {
  1531. span: 6,
  1532. },
  1533. },
  1534. {
  1535. field: 'fyfw',
  1536. component: 'Input',
  1537. label: '风压范围(Pa)',
  1538. colProps: {
  1539. span: 6,
  1540. },
  1541. },
  1542. {
  1543. field: 'fbdj',
  1544. component: 'Select',
  1545. label: '防爆等级',
  1546. colProps: {
  1547. span: 6,
  1548. },
  1549. componentProps: {
  1550. options: [
  1551. {
  1552. label: 'ExdI',
  1553. value: 'ExdI',
  1554. key: '1',
  1555. },
  1556. ],
  1557. },
  1558. },
  1559. {
  1560. field: 'ccrq',
  1561. component: 'Input',
  1562. label: '出厂日期',
  1563. colProps: {
  1564. span: 6,
  1565. },
  1566. },
  1567. {
  1568. field: 'sccj',
  1569. component: 'Input',
  1570. label: '生产厂家',
  1571. colProps: {
  1572. span: 6,
  1573. },
  1574. },
  1575. {
  1576. field: 'tjfs',
  1577. component: 'Select',
  1578. label: '调节方式',
  1579. colProps: {
  1580. span: 6,
  1581. },
  1582. componentProps: {
  1583. options: [
  1584. {
  1585. label: '变频调节',
  1586. value: '变频调节',
  1587. key: '1',
  1588. },
  1589. ],
  1590. },
  1591. },
  1592. {
  1593. field: 'plfw',
  1594. component: 'Input',
  1595. label: '频率可调范围(Hz)',
  1596. colProps: {
  1597. span: 6,
  1598. },
  1599. },
  1600. ];
  1601. };
  1602. export const getSchamas1 = (): FormSchema[] => {
  1603. return [
  1604. {
  1605. field: 'Hz',
  1606. component: 'InputNumber',
  1607. label: '频率(Hz)',
  1608. required: true,
  1609. colProps: {
  1610. span: 6,
  1611. },
  1612. },
  1613. {
  1614. field: 'a',
  1615. component: 'InputNumber',
  1616. label: '二次项系数',
  1617. required: true,
  1618. colProps: {
  1619. span: 6,
  1620. },
  1621. },
  1622. {
  1623. field: 'b',
  1624. component: 'InputNumber',
  1625. label: '一次项系数',
  1626. required: true,
  1627. colProps: {
  1628. span: 6,
  1629. },
  1630. },
  1631. {
  1632. field: 'c',
  1633. component: 'InputNumber',
  1634. label: '常数项系数',
  1635. required: true,
  1636. colProps: {
  1637. span: 6,
  1638. },
  1639. },
  1640. {
  1641. field: 'min',
  1642. component: 'InputNumber',
  1643. label: '风量下限(m³/s)',
  1644. required: true,
  1645. colProps: {
  1646. span: 6,
  1647. },
  1648. },
  1649. {
  1650. field: 'max',
  1651. component: 'InputNumber',
  1652. label: '风量上限(m³/s)',
  1653. required: true,
  1654. colProps: {
  1655. span: 6,
  1656. },
  1657. },
  1658. ];
  1659. };
  1660. export const lineFormData = reactive({
  1661. Hz: null,
  1662. a: null,
  1663. b: null,
  1664. c: null,
  1665. min: null,
  1666. max: null,
  1667. });