移动储能车V1版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

supplyss.vue 38KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <image class="top_logo" src="../../static/logo.png" mode=""></image>
  5. <image class="tite" src="../../static/tite.png" mode=""></image>
  6. <view class="time">
  7. <view class="time_top">
  8. {{formattedTime}}
  9. </view>
  10. <view class="time_bottom">
  11. <view>
  12. </view>
  13. <view class="time_bottom1">
  14. 连接状态:
  15. <view class="time_state" v-if="status=='ok'">
  16. 在线
  17. </view>
  18. <view class="time_state1" v-else>
  19. 离线
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="parameter">
  26. <view class="parameter_left">
  27. <view class="parameter_left1">
  28. <jerry-gauge></jerry-gauge>
  29. <view class="parameter_canvas">
  30. <view class="parameter_canvas1">
  31. 0
  32. </view>
  33. <view class="parameter_canvas2">
  34. 100%
  35. </view>
  36. </view>
  37. </view>
  38. <image class="parameter_leftdian1" src="../../static/dian1.png" alt="" />
  39. <view class="parameter_lef2">
  40. <image src="../../static/dian2.png" mode=""></image>
  41. </view>
  42. <image class="parameter_leftche2" src="../../static/che1.png" mode=""></image>
  43. <view class="parameter_leftview">直流供电</view>
  44. </view>
  45. <view class="parameter_right">
  46. <view class="parameter_righttop">
  47. <view class="parameter_1">
  48. <view class="parameter_2">
  49. <view class="parameter_3" v-if="ChargingStation==1">
  50. <view class="parameter_4">
  51. <image src="../../static/y8.png" mode="" v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarConnectStatus_ccu==1.00"></image>
  52. <image src="../../static/y6.png" mode="" v-else></image>
  53. 连接状态
  54. </view>
  55. <view class="parameter_51" v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarConnectStatus_ccu==1.00">
  56. 连接
  57. </view>
  58. <view class="parameter_5" v-else>
  59. 断开
  60. </view>
  61. </view>
  62. <view class="parameter_3" v-else>
  63. <view class="parameter_4">
  64. <image src="../../static/y8.png" mode="" v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarConnectStatus_ccu==1.00"></image>
  65. <image src="../../static/y6.png" mode="" v-else></image>
  66. 连接状态
  67. </view>
  68. <view class="parameter_51" v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarConnectStatus_ccu==1.00">
  69. 连接
  70. </view>
  71. <view class="parameter_5" v-else>
  72. 断开
  73. </view>
  74. </view>
  75. <view class="parameter_3" v-if="ChargingStation==1">
  76. <view class="parameter_4">
  77. <image src="../../static/y8.png" mode="" v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==1.00"></image>
  78. <image src="../../static/y6.png" mode="" v-else></image>
  79. 工作状态
  80. </view>
  81. <view class="parameter_Batterystate">
  82. <view v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==0.00">
  83. 待机
  84. </view>
  85. <view v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==1.00">
  86. 工作
  87. </view>
  88. <view v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==2.00">
  89. 充电完成
  90. </view>
  91. <view v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==3.00">
  92. 充电暂停
  93. </view>
  94. </view>
  95. </view>
  96. <view class="parameter_3" v-if="ChargingStation==2">
  97. <view class="parameter_4">
  98. <image src="../../static/y8.png" mode="" v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==1.00"></image>
  99. <image src="../../static/y6.png" mode="" v-else></image>
  100. 工作状态
  101. </view>
  102. <view class="parameter_Batterystate">
  103. <view v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==0.00">
  104. 待机
  105. </view>
  106. <view v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==1.00">
  107. 工作
  108. </view>
  109. <view v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==2.00">
  110. 充电完成
  111. </view>
  112. <view v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==3.00">
  113. 充电暂停
  114. </view>
  115. </view>
  116. <!-- <view class="parameter_5" v-else>
  117. 断开
  118. </view> -->
  119. </view>
  120. </view>
  121. <view class="parameter_SOC">
  122. <image src="../../static/SOC.png" mode=""></image>
  123. <view class="parameter_SOCright">
  124. <view class="parameter_SOCright1">
  125. SOC
  126. </view>
  127. <view>
  128. <text class="parameter_SOCright2">{{uidatasdata.SOC}}</text><text>%</text>
  129. </view>
  130. </view>
  131. </view>
  132. <view class="parameter_Battery">
  133. <image src="../../static/Battery.png" mode=""></image>
  134. <view class="parameter_SOCright">
  135. <view class="parameter_SOCright1">
  136. 电池状态
  137. </view>
  138. <view class="parameter_Batterystate">
  139. <view v-if="uidatasdata.bms_BatSysState==5">
  140. 故障
  141. </view>
  142. <view v-if="uidatasdata.bms_BatSysState==0">
  143. 出始化
  144. </view>
  145. <view v-if="uidatasdata.bms_BatSysState==1">
  146. 未上高压
  147. </view>
  148. <view v-if="uidatasdata.bms_BatSysState==2">
  149. 上高压中
  150. </view>
  151. <view v-if="uidatasdata.bms_BatSysState==3">
  152. 已上高压
  153. </view>
  154. <view v-if="uidatasdata.bms_BatSysState==4">
  155. 下高压中
  156. </view>
  157. <!-- {{uidatasdata.bms_BatSysState==0.00?'无效':'有效'}} -->
  158. </view>
  159. </view>
  160. </view>
  161. <view class="parameter_state">
  162. <image src="../../static/setup.png" mode=""></image>
  163. <view class="parameter_SOCright">
  164. <view class="parameter_SOCright1">
  165. 系统状态
  166. </view>
  167. <view class="parameter_Batterystate">
  168. <!-- {{uidatasdata.bms_ChgLinkSt==0.00?'无效':'有效'}} -->
  169. <view v-if="uidatasdata.bms_ChargeStatus==0">
  170. 未充电
  171. </view>
  172. <view v-if="uidatasdata.bms_ChargeStatus==1">
  173. 充电中
  174. </view>
  175. <view v-if="uidatasdata.bms_ChargeStatus==2">
  176. 充电故障
  177. </view>
  178. <view v-if="uidatasdata.bms_ChargeStatus==3">
  179. 充满
  180. </view>
  181. <view v-if="uidatasdata.bms_ChargeStatus==4">
  182. 充电停止
  183. </view>
  184. <view v-if="uidatasdata.bms_ChargeStatus==5">
  185. 保留
  186. </view>
  187. </view>
  188. </view>
  189. </view>
  190. </view>
  191. </view>
  192. <view class="parameter_tap">
  193. <view :class="segmented==1?'parameter_tap1':'parameter_tap2'" @click="ontap(1)">
  194. 枪A信息
  195. </view>
  196. <view :class="segmented==2?'parameter_tap1':'parameter_tap2'" @click="ontap(2)">
  197. 枪B信息
  198. </view>
  199. <view :class="segmented==3?'parameter_tap1':'parameter_tap2'" @click="ontap(3)">
  200. 电池信息
  201. </view>
  202. <view :class="segmented==4?'parameter_tap1':'parameter_tap2'" @click="ontap(4)">
  203. 连接信息
  204. </view>
  205. <view :class="segmented==5?'parameter_tap1':'parameter_tap2'" @click="ontap(5)">
  206. 液冷信息
  207. </view>
  208. </view>
  209. <view class="parameter_zheng">
  210. <view class="parameter_box" v-if="segmented==1">
  211. <view class="parameter_zheng1">
  212. <view class="parameter_zheng11">
  213. <view class="parameter_zheng12">
  214. 充电电压
  215. </view>
  216. <view class="parameter_zheng13">
  217. {{uidatasdata.ChargingStation_1_telemetryFrameccu_outputVoltage}} <text class="parameter_zheng14">V</text>
  218. </view>
  219. </view>
  220. <view class="parameter_zheng11">
  221. <view class="parameter_zheng12">
  222. 充电电流
  223. </view>
  224. <view class="parameter_zheng13">
  225. {{uidatasdata.ChargingStation_1_telemetryFrameccu_chargeOutputCurrent}} <text class="parameter_zheng14">A</text>
  226. </view>
  227. </view>
  228. <view class="parameter_zheng11">
  229. <view class="parameter_zheng12">
  230. 车辆SOC
  231. </view>
  232. <view class="parameter_zheng13">
  233. {{uidatasdata.ChargingStation_1_telemetryFrameccu_soc}} <text class="parameter_zheng14">%</text>
  234. </view>
  235. </view>
  236. <view class="parameter_zheng11">
  237. <view class="parameter_zheng12">
  238. 充电功率
  239. </view>
  240. <view class="parameter_zheng13">
  241. {{((uidatasdata.ChargingStation_1_telemetryFrameccu_outputVoltage*uidatasdata.ChargingStation_1_telemetryFrameccu_chargeOutputCurrent)/1000).toFixed(2)}} <text class="parameter_zheng14">kW</text>
  242. </view>
  243. </view>
  244. </view>
  245. <view class="parameter_zheng2">
  246. <view class="parameter_zheng11">
  247. <view class="parameter_zheng12">
  248. 充电电量
  249. </view>
  250. <view class="parameter_zheng13">
  251. {{uidatasdata.ChargingStation_1_telemetryFrameccu_ThisChargePower}} <text class="parameter_zheng14">kWh</text>
  252. </view>
  253. </view>
  254. <view class="parameter_zheng11">
  255. <view class="parameter_zheng12">
  256. 充电费用
  257. </view>
  258. <view class="parameter_zheng13">
  259. {{uidatasdata.ChargingStation_1_telemetryFrameccu_AccumulatedChargingElectricityCost}} <text class="parameter_zheng14">元</text>
  260. </view>
  261. </view>
  262. <view class="parameter_zheng11">
  263. <view class="parameter_zheng12">
  264. 充电时间
  265. </view>
  266. <view class="parameter_zheng13">
  267. {{uidatasdata.ChargingStation_1_telemetryFrameccu_EstimateTheRemainingChargingTime}} <text class="parameter_zheng14">min</text>
  268. </view>
  269. </view>
  270. <view class="parameter_zheng11 parameter_zheng102">
  271. <view class="parameter_zheng12">
  272. </view>
  273. <view class="parameter_zheng13">
  274. </view>
  275. </view>
  276. </view>
  277. </view>
  278. <view class="parameter_box" v-if="segmented==2">
  279. <view class="parameter_zheng1">
  280. <view class="parameter_zheng11">
  281. <view class="parameter_zheng12">
  282. 充电电压
  283. </view>
  284. <view class="parameter_zheng13">
  285. {{uidatasdata.ChargingStation_2_telemetryFrameccu_outputVoltage}} <text class="parameter_zheng14">V</text>
  286. </view>
  287. </view>
  288. <view class="parameter_zheng11">
  289. <view class="parameter_zheng12">
  290. 充电电流
  291. </view>
  292. <view class="parameter_zheng13">
  293. {{uidatasdata.ChargingStation_2_telemetryFrameccu_chargeOutputCurrent}} <text class="parameter_zheng14">A</text>
  294. </view>
  295. </view>
  296. <view class="parameter_zheng11">
  297. <view class="parameter_zheng12">
  298. 车辆SOC
  299. </view>
  300. <view class="parameter_zheng13">
  301. {{uidatasdata.ChargingStation_2_telemetryFrameccu_soc}}<text class="parameter_zheng14"> %</text>
  302. </view>
  303. </view>
  304. <view class="parameter_zheng11">
  305. <view class="parameter_zheng12">
  306. 充电功率
  307. </view>
  308. <view class="parameter_zheng13">
  309. {{((uidatasdata.ChargingStation_2_telemetryFrameccu_outputVoltage*uidatasdata.ChargingStation_2_telemetryFrameccu_chargeOutputCurrent)/1000).toFixed(2)}} <text class="parameter_zheng14">kW</text>
  310. </view>
  311. </view>
  312. </view>
  313. <view class="parameter_zheng2">
  314. <view class="parameter_zheng11">
  315. <view class="parameter_zheng12">
  316. 充电电量
  317. </view>
  318. <view class="parameter_zheng13">
  319. {{uidatasdata.ChargingStation_2_telemetryFrameccu_ThisChargePower}} <text class="parameter_zheng14">kWh</text>
  320. </view>
  321. </view>
  322. <view class="parameter_zheng11">
  323. <view class="parameter_zheng12">
  324. 充电费用
  325. </view>
  326. <view class="parameter_zheng13">
  327. {{uidatasdata.ChargingStation_2_telemetryFrameccu_AccumulatedChargingElectricityCost}} <text class="parameter_zheng14">元</text>
  328. </view>
  329. </view>
  330. <view class="parameter_zheng11">
  331. <view class="parameter_zheng12">
  332. 充电时间
  333. </view>
  334. <view class="parameter_zheng13">
  335. {{uidatasdata.ChargingStation_2_telemetryFrameccu_EstimateTheRemainingChargingTime}} <text class="parameter_zheng14">min</text>
  336. </view>
  337. </view>
  338. <view class="parameter_zheng11 parameter_zheng102">
  339. <view class="parameter_zheng12">
  340. </view>
  341. <view class="parameter_zheng13">
  342. </view>
  343. </view>
  344. </view>
  345. </view>
  346. <view class="parameter_box" v-if="segmented==3">
  347. <view class="parameter_zheng1">
  348. <view class="parameter_zheng11">
  349. <view class="parameter_zheng12">
  350. 电池功率
  351. </view>
  352. <view class="parameter_zheng13">
  353. {{uidatasdata.BatSysSt2_BatPower}} <text class="parameter_zheng14">kW</text>
  354. </view>
  355. </view>
  356. <view class="parameter_zheng11">
  357. <view class="parameter_zheng12">
  358. 电池内总压
  359. </view>
  360. <view class="parameter_zheng13">
  361. {{uidatasdata.BatSysSt2_BatSumVInt}} <text class="parameter_zheng14">V</text>
  362. </view>
  363. </view>
  364. <view class="parameter_zheng11">
  365. <view class="parameter_zheng12">
  366. 允许放电功率
  367. </view>
  368. <view class="parameter_zheng13">
  369. {{uidatasdata.DchChgCurPowLimit_MaxDischargePowerLimit}} <text class="parameter_zheng14">kW</text>
  370. </view>
  371. </view>
  372. <view class="parameter_zheng11">
  373. <view class="parameter_zheng12">
  374. 最大单体电压
  375. </view>
  376. <view class="parameter_zheng13">
  377. {{uidatasdata.BatCellVPeak_ValMaxCellVoltage}} <text class="parameter_zheng14">V</text>
  378. </view>
  379. </view>
  380. <view class="parameter_zheng11">
  381. <view class="parameter_zheng12">
  382. 最大单体温度
  383. </view>
  384. <view class="parameter_zheng13">
  385. {{uidatasdata.BatSysLimitVal_MaxCellTemperatureLimit}} <text class="parameter_zheng14">℃</text>
  386. </view>
  387. </view>
  388. </view>
  389. <view class="parameter_zheng2">
  390. <view class="parameter_zheng11">
  391. <view class="parameter_zheng12">
  392. 电池电流
  393. </view>
  394. <view class="parameter_zheng13">
  395. {{uidatasdata.BatSysSt2_BatCur}} <text class="parameter_zheng14">A</text>
  396. </view>
  397. </view>
  398. <view class="parameter_zheng11">
  399. <view class="parameter_zheng12">
  400. 电池外总压
  401. </view>
  402. <view class="parameter_zheng13">
  403. {{uidatasdata.BatSysSt2_BatSumVOut}} <text class="parameter_zheng14">V</text>
  404. </view>
  405. </view>
  406. <view class="parameter_zheng11">
  407. <view class="parameter_zheng12">
  408. 允许放电电流
  409. </view>
  410. <view class="parameter_zheng13">
  411. {{uidatasdata.ChargingInformation_Chg_Max_Cur}}<text class="parameter_zheng14">A</text>
  412. </view>
  413. </view>
  414. <view class="parameter_zheng11">
  415. <view class="parameter_zheng12">
  416. 最小单体电压
  417. </view>
  418. <view class="parameter_zheng13">
  419. {{uidatasdata.BatCellVPeak_ValMinCellVoltage}} <text class="parameter_zheng14">V</text>
  420. </view>
  421. </view>
  422. <view class="parameter_zheng11">
  423. <view class="parameter_zheng12">
  424. 最小单体温度
  425. </view>
  426. <view class="parameter_zheng13">
  427. {{uidatasdata.CellTemperatureLimitsStatus_MinTemp}} <text class="parameter_zheng14">℃</text>
  428. </view>
  429. </view>
  430. </view>
  431. </view>
  432. <view class="parameter_box" v-if="segmented==4">
  433. <view class="parameter_zheng1">
  434. <view class="parameter_zheng11">
  435. <view class="parameter_zheng12">
  436. 电池系统工作模式
  437. </view>
  438. <view class="parameter_Batterystate">
  439. <!-- {{uidatasdata.bms_BatSysWorkMode_==0.00?'无效':'有效'}} -->
  440. <view v-if="uidatasdata.bms_BatSysWorkMode_==0">
  441. 无效
  442. </view>
  443. <view v-if="uidatasdata.bms_BatSysWorkMode_==1">
  444. 放电模式
  445. </view>
  446. <view v-if="uidatasdata.bms_BatSysWorkMode_==2">
  447. pcs充电模式
  448. </view>
  449. <view v-if="uidatasdata.bms_BatSysWorkMode_==3">
  450. 欧标充电模式
  451. </view>
  452. </view>
  453. </view>
  454. <view class="parameter_zheng11">
  455. <view class="parameter_zheng12">
  456. 电池系统状态
  457. </view>
  458. <view class="parameter_Batterystate">
  459. <!-- {{uidatasdata.bms_BatSysState==0.00?'无效':'有效'}} -->
  460. <view v-if="uidatasdata.bms_BatSysState==0">
  461. 初始化
  462. </view>
  463. <view v-if="uidatasdata.bms_BatSysState==1">
  464. 未上高压
  465. </view>
  466. <view v-if="uidatasdata.bms_BatSysState==2">
  467. 上高压中
  468. </view>
  469. <view v-if="uidatasdata.bms_BatSysState==3">
  470. 已上高压
  471. </view>
  472. <view v-if="uidatasdata.bms_BatSysState==4">
  473. 下高压中
  474. </view>
  475. <view v-if="uidatasdata.bms_BatSysState==5">
  476. 故障
  477. </view>
  478. </view>
  479. </view>
  480. <view class="parameter_zheng11">
  481. <view class="parameter_zheng12">
  482. 充电状态
  483. </view>
  484. <view class="parameter_Batterystate">
  485. <view v-if="uidatasdata.bms_ChargeStatus==0">
  486. 未充电
  487. </view>
  488. <view v-if="uidatasdata.bms_ChargeStatus==1">
  489. 充电中
  490. </view>
  491. <view v-if="uidatasdata.bms_ChargeStatus==2">
  492. 充电故障
  493. </view>
  494. <view v-if="uidatasdata.bms_ChargeStatus==3">
  495. 充满
  496. </view>
  497. <view v-if="uidatasdata.bms_ChargeStatus==4">
  498. 充电停止
  499. </view>
  500. <view v-if="uidatasdata.bms_ChargeStatus==5">
  501. 保留
  502. </view>
  503. </view>
  504. </view>
  505. </view>
  506. <view class="parameter_zheng22">
  507. <view class="parameter_zheng11">
  508. <view class="parameter_zheng12">
  509. 充电连接状态
  510. </view>
  511. <view class="parameter_Batterystate1" v-if="uidatasdata.bms_ChgLinkSt==1.00">
  512. 快充连接
  513. </view>
  514. <view class="parameter_Batterystate1" v-else>
  515. 无连接
  516. </view>
  517. </view>
  518. <view class="parameter_zheng11">
  519. <view class="parameter_zheng12">
  520. 电池故障等级
  521. </view>
  522. <view class="parameter_Batterystate1">
  523. <!-- {{uidatasdata.bms_BatteryFaultLevl==0.00?'无故障':'有效'}} -->
  524. <view v-if="uidatasdata.bms_BatteryFaultLevl==0">
  525. 无故障
  526. </view>
  527. <view v-if="uidatasdata.bms_BatteryFaultLevl==1">
  528. 1级告警
  529. </view>
  530. <view v-if="uidatasdata.bms_BatteryFaultLevl==2">
  531. 2级告警
  532. </view>
  533. <view v-if="uidatasdata.bms_BatteryFaultLevl==3">
  534. 3级告警
  535. </view>
  536. </view>
  537. </view>
  538. <view class="parameter_zheng11 parameter_zheng102">
  539. </view>
  540. </view>
  541. </view>
  542. <view class="parameter_box" v-if="segmented==5">
  543. <view class="parameter_zheng1">
  544. <view class="parameter_zheng11">
  545. <view class="parameter_zheng12">
  546. 工作模式
  547. </view>
  548. <view class="parameter_Batterystate">
  549. <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE}} <text class="parameter_zheng14">kW</text> -->
  550. <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE==1.00?'有效':'无效'}} -->
  551. <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==0">
  552. 关机模式
  553. </view>
  554. <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==1">
  555. 制冷模式
  556. </view>
  557. <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==2">
  558. 自热模式
  559. </view>
  560. <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==3">
  561. 自循环模式
  562. </view>
  563. </view>
  564. </view>
  565. <view class="parameter_zheng11">
  566. <view class="parameter_zheng12">
  567. 出水温度
  568. </view>
  569. <view class="parameter_zheng13">
  570. {{uidatasdata.TMS_Status_TMS_WATEROUT_TEMP}} <text class="parameter_zheng14">℃</text>
  571. </view>
  572. </view>
  573. <view class="parameter_zheng11">
  574. <view class="parameter_zheng12">
  575. 需求功率
  576. </view>
  577. <view class="parameter_zheng13">
  578. {{uidatasdata.TMS_Status_TMS_POWER_REQ}} <text class="parameter_zheng14">kW</text>
  579. </view>
  580. </view>
  581. </view>
  582. <view class="parameter_zheng2">
  583. <view class="parameter_zheng11">
  584. <view class="parameter_zheng12">
  585. 高压继电器状态
  586. </view>
  587. <view class="parameter_Batterystate">
  588. <!-- {{uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0.00?'无效':'有效'}} -->
  589. <view v-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0">
  590. 断开状态
  591. </view>
  592. <view v-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==1">
  593. 闭合状态
  594. </view>
  595. </view>
  596. </view>
  597. <view class="parameter_zheng11">
  598. <view class="parameter_zheng12">
  599. 入水温度
  600. </view>
  601. <view class="parameter_zheng13">
  602. {{uidatasdata.TMS_Status_TMS_WATERIN_TEMP}} <text class="parameter_zheng14">℃</text>
  603. </view>
  604. </view>
  605. <view class="parameter_zheng11">
  606. <view class="parameter_zheng12">
  607. 故障等级
  608. </view>
  609. <view class="parameter_Batterystate">
  610. <!-- {{uidatasdata.TMS_Status_TMS_ERR_LEVEL==0.00?'无效':'有效'}} -->
  611. <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==0">
  612. 无故障
  613. </view>
  614. <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==1">
  615. 1级故障
  616. </view>
  617. <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==2">
  618. 2级故障
  619. </view>
  620. <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==3">
  621. 3级故障
  622. </view>
  623. </view>
  624. </view>
  625. </view>
  626. </view>
  627. <view class="parameter_zheng3" v-if="this.segmented==1">
  628. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun1RunCmd==1">
  629. <view class="parameter_zheng31">
  630. <view class="parameter_zheng32ccc">
  631. 开启
  632. </view>
  633. </view>
  634. </view>
  635. <view class="parameter_zheng31111" v-else @click="dialogToggle">
  636. <view class="parameter_zheng31">
  637. <view class="parameter_zheng32">
  638. 开启
  639. </view>
  640. </view>
  641. </view>
  642. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun1RunCmd==0">
  643. <view class="parameter_zheng31" >
  644. <view class="parameter_zheng32ccc">
  645. 停止
  646. </view>
  647. </view>
  648. </view>
  649. <view class="parameter_zheng31111" v-else @click="onstopit">
  650. <view class="parameter_zheng31">
  651. <view class="parameter_zheng33">
  652. 停止
  653. </view>
  654. </view>
  655. </view>
  656. </view>
  657. <view class="parameter_zheng3" v-if="this.segmented==2">
  658. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun2RunCmd==1">
  659. <view class="parameter_zheng31">
  660. <view class="parameter_zheng32ccc">
  661. 开启
  662. </view>
  663. </view>
  664. </view>
  665. <view class="parameter_zheng31111" v-else @click="dialogToggle">
  666. <view class="parameter_zheng31">
  667. <view class="parameter_zheng32">
  668. 开启
  669. </view>
  670. </view>
  671. </view>
  672. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun2RunCmd==0">
  673. <view class="parameter_zheng31">
  674. <view class="parameter_zheng32ccc">
  675. 停止
  676. </view>
  677. </view>
  678. </view>
  679. <view class="parameter_zheng31111" v-else @click="onstopit">
  680. <view class="parameter_zheng31">
  681. <view class="parameter_zheng33">
  682. 停止
  683. </view>
  684. </view>
  685. </view>
  686. </view>
  687. </view>
  688. <view class="parameter_home">
  689. <view class="parameter_home1" @click="onreturn">
  690. <image src="../../static/home.png" mode=""></image><text
  691. class="parameter_hometext">返回模式选择</text>
  692. </view>
  693. <view class="parameter_home2">
  694. <image src="../../static/home1.png" mode=""></image>
  695. <swiper class="swiper" circular :autoplay="true" :interval="2000"
  696. :duration="500" :vertical="true">
  697. <swiper-item v-for="(item, index) in faultsdata" :key="index">
  698. <view class="parameter_home3">{{ item["CONTENT"] }}</view>
  699. </swiper-item>
  700. </swiper>
  701. </view>
  702. </view>
  703. </view>
  704. </view>
  705. <uni-popup ref="alertDialog">
  706. <uni-popup-dialog :mode="modeinput" placeholder="请输入内容" v-model="value" :type="successtype"
  707. cancelText="取消返回" :confirmText="confirmText" :title="title" :content="content" @confirm="dialogConfirm"
  708. @close="dialogClose"></uni-popup-dialog>
  709. </uni-popup>
  710. </view>
  711. </template>
  712. <!-- -->
  713. <script>
  714. import JerryGauge from "../../uni_modules/jerry-gauge/index.vue";
  715. import {getuidatas,control,getfaultsList} from "../../api/api.js"
  716. import {getTime} from "../../utils/index.js"
  717. import { mapState } from 'vuex';
  718. export default {
  719. components:{
  720. JerryGauge
  721. },
  722. data() {
  723. return {
  724. successtype: 'success',
  725. confirmText: '确认启动',
  726. title: '你确定要开启该设备吗?',
  727. content: '启动设备前,请确认参照用户手册确定设备与各部件处于正确状态!',
  728. value: '',
  729. modeinput: '',
  730. segmented: 1,
  731. ChargingStation:1,
  732. faultsdata:[]
  733. }
  734. },
  735. onLoad() {
  736. },
  737. computed: {
  738. // 使用 mapState 映射多个状态到组件的计算属性
  739. ...mapState(['formattedTime','status']),
  740. ...mapState({
  741. uidatasdata: state => state.uidatasdata
  742. })
  743. },
  744. mounted() {
  745. this.onfaultsdata();
  746. },
  747. beforeUnmount(){
  748. },
  749. methods: {
  750. onfaultsdata(){
  751. let data ={
  752. page:1,
  753. rows:1000,
  754. device: '',
  755. starttime: '',
  756. endtime: '',
  757. rt: 1,
  758. type:''
  759. }
  760. getfaultsList(data).then(res => {
  761. console.log(res);
  762. if(res.status=='ok'){
  763. this.faultsdata= res.data.list
  764. }else{
  765. }
  766. });
  767. },
  768. // 返回首页
  769. onreturn() {
  770. uni.redirectTo({
  771. url: '/pages/index/index'
  772. });
  773. },
  774. // 启动设备弹窗
  775. dialogToggle() {
  776. this.modeinput = 'base'
  777. this.successtype = 'success'
  778. this.confirmText = '确认启动'
  779. this.title = '你确定要开启该设备吗?'
  780. this.content = '启动设备前,请确认参照用户手册确定设备与各部件处于正确状态!'
  781. this.$refs.alertDialog.open()
  782. },
  783. // 关闭设备弹窗
  784. onstopit() {
  785. this.modeinput = 'base'
  786. this.successtype = 'error'
  787. this.confirmText = '确认停止'
  788. this.title = '你确定要停止该设备吗?'
  789. this.content = '设备完全停止后,方能进行后续操作,否则可能危及生命安全!'
  790. this.$refs.alertDialog.open()
  791. },
  792. // 确定
  793. dialogConfirm() {
  794. let data ={}
  795. if(this.segmented==1){
  796. data = {
  797. id: "3b26469f-ad5b-43bf-b715-4213921321d0",
  798. issaveinitvalue:false,
  799. value: this.confirmText=='确认启动'?'1':'0'
  800. }
  801. }else if(this.segmented==2){
  802. data = {
  803. id: "78f59493-65f3-4860-8296-7f07bb0ca55b",
  804. issaveinitvalue:false,
  805. value: this.confirmText=='确认启动'?'1':'0'
  806. }
  807. }else{
  808. data = {
  809. id: "c35c4db0-113f-442a-9e26-728489265fdb",
  810. issaveinitvalue:false,
  811. value: this.confirmText=='确认启动'?'1':'0'
  812. }
  813. }
  814. control(data).then(data => {
  815. console.log(data);
  816. if (data.status == 'ok') {
  817. uni.showToast({
  818. title:'操作成功',
  819. icon: 'none',
  820. duration: 2000, // 显示时长,单位为毫秒
  821. });
  822. } else {
  823. uni.showToast({
  824. title: '操作失败',
  825. icon: 'none', // 使用 'none' 图标来表示失败
  826. duration: 2000, // 显示时长,单位为毫秒
  827. });
  828. }
  829. });
  830. },
  831. // 取消
  832. dialogClose() {
  833. console.log(this.value);
  834. this.$refs.alertDialog.close()
  835. },
  836. // 切换标签
  837. ontap(e) {
  838. console.log(e);
  839. this.segmented = e;
  840. if(this.segmented==1){
  841. this.ChargingStation = 1
  842. }else if(this.segmented==2){
  843. this.ChargingStation = 2
  844. }
  845. }
  846. }
  847. }
  848. </script>
  849. <!-- -->
  850. <style lang="scss" scoped>
  851. .content {
  852. width: 100%;
  853. height: 100vh;
  854. opacity: 1;
  855. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
  856. box-sizing: border-box;
  857. }
  858. .top {
  859. width: 100%;
  860. height: 100px;
  861. display: flex;
  862. align-items: center;
  863. justify-content: space-between;
  864. background-size: 100% 100%;
  865. background-repeat: no-repeat;
  866. box-sizing: border-box;
  867. background-color: #fff;
  868. padding: 0px 46px;
  869. }
  870. .top_logo {
  871. width: 426px;
  872. height: 68px;
  873. }
  874. .tite {
  875. width: 277px;
  876. height: 48px;
  877. }
  878. .time {
  879. text-align: right;
  880. }
  881. .time_top {
  882. font-size: 17px;
  883. }
  884. .time_bottom {
  885. display: flex;
  886. font-size: 17px;
  887. justify-content: space-between;
  888. }
  889. .time_bottom1 {
  890. display: flex;
  891. }
  892. .time_state {
  893. font-size: 17px;
  894. font-weight: 600;
  895. color: rgba(22, 68, 144, 1);
  896. }
  897. .time_state1 {
  898. font-size: 17px;
  899. font-weight: 600;
  900. color: rgba(217, 22, 22, 1);
  901. }
  902. .parameter {
  903. width: 100%;
  904. padding-bottom: 20px;
  905. display: flex;
  906. padding: 20px 20px;
  907. box-sizing: border-box;
  908. }
  909. .parameter_left {
  910. width: 262.85px;
  911. height: 630px;
  912. opacity: 1;
  913. border-radius: 24.47px;
  914. background: linear-gradient(180deg, rgba(42, 150, 212, 0.1) 0%, rgba(42, 146, 209, 0) 100%);
  915. border: 2.94px solid rgba(242, 248, 252, 1);
  916. display: flex;
  917. flex-direction: column;
  918. align-items: center;
  919. padding: 20rpx 0px;
  920. }
  921. .parameter_left1 {
  922. width: 100%;
  923. height: 170px;
  924. box-sizing: border-box;
  925. display: flex;
  926. flex-direction: column;
  927. justify-content: space-between;
  928. align-items: center;
  929. padding-bottom: 10px;
  930. }
  931. .canvas {
  932. width: 180px;
  933. margin: 8px auto auto auto;
  934. }
  935. .parameter_canvas {
  936. width: 100%;
  937. display: flex;
  938. justify-content: space-around;
  939. box-sizing: border-box;
  940. }
  941. .parameter_canvas1 {
  942. margin-left: -20px;
  943. margin-top: -40px;
  944. }
  945. .parameter_canvas2 {
  946. margin-right: -20px;
  947. margin-top: -40px;
  948. }
  949. .parameter_leftdian1 {
  950. width: 97.9px;
  951. height: 97.9px;
  952. opacity: 1;
  953. }
  954. .parameter_lef2 {
  955. width: 100%;
  956. height: 220px;
  957. display: flex;
  958. justify-content: center;
  959. align-items: center;
  960. background-image: url("../../static/heng.png");
  961. background-size: auto 100%;
  962. background-repeat: no-repeat;
  963. background-position: center center;
  964. margin: 10px 0px;
  965. image {
  966. width: 100px;
  967. height: 100px;
  968. margin-top: -10px;
  969. }
  970. }
  971. .parameter_leftche {
  972. width: 115.52px;
  973. height: 78.32px;
  974. opacity: 1;
  975. }
  976. .parameter_leftche1 {
  977. width: 77px;
  978. height: 81px;
  979. opacity: 1;
  980. }
  981. .parameter_leftche2 {
  982. width: 77px;
  983. height: 62px;
  984. }
  985. .parameter_leftview {
  986. font-size: 19.58px;
  987. font-weight: 400;
  988. letter-spacing: 0px;
  989. line-height: 28.35px;
  990. color: rgba(0, 0, 0, 1);
  991. margin-top: 8px;
  992. }
  993. .parameter_right {
  994. flex: 1;
  995. margin-left: 10px;
  996. display: flex;
  997. flex-direction: column;
  998. justify-content: space-between;
  999. }
  1000. .parameter_righttop {
  1001. width: 100%;
  1002. }
  1003. .parameter_1 {
  1004. display: flex;
  1005. }
  1006. .parameter_2 {
  1007. width: 339.21px;
  1008. display: flex;
  1009. flex-direction: column;
  1010. justify-content: space-between;
  1011. margin-right: 16px;
  1012. }
  1013. .parameter_3 {
  1014. width: 339.21px;
  1015. display: flex;
  1016. align-items: center;
  1017. justify-content: space-between;
  1018. padding: 12px 20px;
  1019. box-sizing: border-box;
  1020. border-radius: 9.79px;
  1021. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  1022. image {
  1023. width: 7.83px;
  1024. height: 7.83px;
  1025. margin-right: 6px;
  1026. }
  1027. }
  1028. .parameter_31 {
  1029. width: 339.21px;
  1030. display: flex;
  1031. align-items: center;
  1032. justify-content: space-between;
  1033. padding: 3px 20px;
  1034. box-sizing: border-box;
  1035. border-radius: 9.79px;
  1036. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  1037. image {
  1038. width: 7.83px;
  1039. height: 7.83px;
  1040. margin-right: 6px;
  1041. }
  1042. }
  1043. .parameter_4 {
  1044. /** 文本1 */
  1045. font-size: 23.5px;
  1046. font-weight: 700;
  1047. color: rgba(38, 38, 38, 1);
  1048. display: flex;
  1049. align-items: center;
  1050. }
  1051. .parameter_5 {
  1052. font-size: 24.47px;
  1053. font-weight: 700;
  1054. color: rgba(217, 22, 22, 1);
  1055. }
  1056. .parameter_51 {
  1057. font-size: 24.47px;
  1058. font-weight: 700;
  1059. color: rgba(7, 123, 67, 1);
  1060. }
  1061. .parameter_SOC {
  1062. display: flex;
  1063. align-items: center;
  1064. justify-content: space-around;
  1065. width: 195.11px;
  1066. height: 130px;
  1067. /* opacity: 0.15; */
  1068. border-radius: 9.79px;
  1069. margin-right: 16px;
  1070. background: linear-gradient(180deg, rgba(240, 209, 137, 0.15) 0%, rgba(186, 141, 56, 0.15) 100%);
  1071. image {
  1072. width: 37.2px;
  1073. height: 37.2px;
  1074. }
  1075. }
  1076. .parameter_state {
  1077. display: flex;
  1078. align-items: center;
  1079. justify-content: space-around;
  1080. width: 195.11px;
  1081. height: 130px;
  1082. /* opacity: 0.15; */
  1083. border-radius: 9.79px;
  1084. background: linear-gradient(180deg, rgba(93, 149, 245, 0.15) 0%, rgba(41, 71, 204, 0.15) 100%);
  1085. image {
  1086. width: 37.2px;
  1087. height: 37.2px;
  1088. }
  1089. }
  1090. .parameter_Battery {
  1091. display: flex;
  1092. align-items: center;
  1093. justify-content: space-around;
  1094. width: 195.11px;
  1095. height: 130px;
  1096. /* opacity: 0.15; */
  1097. margin-right: 16px;
  1098. border-radius: 9.79px;
  1099. background: linear-gradient(180deg, rgba(133, 242, 133, 0.15)0%, rgba(82, 209, 75, 0.15)100%);
  1100. image {
  1101. width: 37.2px;
  1102. height: 37.2px;
  1103. }
  1104. }
  1105. .parameter_SOCright {
  1106. display: flex;
  1107. flex-direction: column;
  1108. }
  1109. .parameter_SOCright1 {
  1110. font-size: 23.5px;
  1111. font-weight: 700;
  1112. letter-spacing: 0px;
  1113. line-height: 32.24px;
  1114. color: rgba(38, 38, 38, 1);
  1115. text-align: right;
  1116. }
  1117. .parameter_SOCright2 {
  1118. font-size: 29.37px;
  1119. font-weight: 700;
  1120. color: rgba(186, 141, 56, 1);
  1121. }
  1122. .parameter_Batterystate {
  1123. font-size: 23.5px;
  1124. font-weight: 500;
  1125. color: rgba(38, 38, 38, 1);
  1126. text-align: right;
  1127. }
  1128. .parameter_Batterystate1 {
  1129. font-weight: 500;
  1130. text-align: right;
  1131. font-size: 24px;
  1132. color: rgba(20, 105, 201, 1);
  1133. }
  1134. .parameter_tap {
  1135. width: 100%;
  1136. display: flex;
  1137. margin-top: 18px;
  1138. }
  1139. .parameter_tap1 {
  1140. flex: 1;
  1141. height: 55.8px;
  1142. opacity: 1;
  1143. background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
  1144. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1145. display: flex;
  1146. align-items: center;
  1147. justify-content: center;
  1148. font-size: 23.5px;
  1149. font-weight: 500;
  1150. color: rgba(255, 255, 255, 1);
  1151. }
  1152. .parameter_tap2 {
  1153. flex: 1;
  1154. height: 55.8px;
  1155. opacity: 1;
  1156. background: rgba(242, 242, 242, 1);
  1157. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1158. display: flex;
  1159. align-items: center;
  1160. justify-content: center;
  1161. font-size: 23.5px;
  1162. font-weight: 500;
  1163. }
  1164. .parameter_zheng {
  1165. width: 100%;
  1166. height: 313px;
  1167. background-image: url("../../static/z16.png");
  1168. background-size: 100% 100%;
  1169. margin-top: 10px;
  1170. padding: 20px 0px;
  1171. display: flex;
  1172. }
  1173. .parameter_zheng1 {
  1174. width: 387px;
  1175. height: 100%;
  1176. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1177. display: flex;
  1178. flex-direction: column;
  1179. justify-content: space-between;
  1180. }
  1181. .parameter_zheng11 {
  1182. display: flex;
  1183. padding: 0px 20px;
  1184. justify-content: space-between;
  1185. }
  1186. .parameter_zheng12 {
  1187. font-size: 23.5px;
  1188. font-weight: 400;
  1189. color: rgba(0, 0, 0, 1);
  1190. }
  1191. .parameter_zheng13 {
  1192. font-size: 29.37px;
  1193. font-weight: 700;
  1194. color: rgba(20, 105, 201, 1);
  1195. }
  1196. .parameter_zheng14 {
  1197. font-size: 23.5px;
  1198. font-weight: 400;
  1199. color: rgba(0, 0, 0, 1);
  1200. }
  1201. .parameter_zheng2 {
  1202. width: 387px;
  1203. height: 100%;
  1204. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1205. display: flex;
  1206. flex-direction: column;
  1207. justify-content: space-between;
  1208. }
  1209. .parameter_zheng3 {
  1210. flex: 1;
  1211. height: 100%;
  1212. display: flex;
  1213. flex-direction: column;
  1214. align-items: center;
  1215. justify-content: center;
  1216. }
  1217. .parameter_zheng31111{
  1218. width: 120px;
  1219. height: 120px;
  1220. display: flex;
  1221. align-items: center;
  1222. justify-content: center;
  1223. }
  1224. .parameter_zheng31 {
  1225. width: 90px;
  1226. height: 90px;
  1227. background-image: url("../../static/y4.png");
  1228. background-size: 100% 100%;
  1229. display: flex;
  1230. align-items: center;
  1231. justify-content: center;
  1232. padding-bottom: 3px;
  1233. box-sizing: border-box;
  1234. }
  1235. .parameter_zheng32 {
  1236. width: 74px;
  1237. height: 74px;
  1238. background-image: url("../../static/y1.png");
  1239. background-size: 100% 100%;
  1240. display: flex;
  1241. align-items: center;
  1242. justify-content: center;
  1243. font-size: 19.58px;
  1244. font-weight: 700;
  1245. color: rgba(255, 255, 255, 1);
  1246. }
  1247. .parameter_zheng32ccc {
  1248. width: 68px;
  1249. height: 68px;
  1250. /* background-image: url("../../static/y1.png"); */
  1251. background-color: #cccccc;
  1252. background-size: 100% 100%;
  1253. display: flex;
  1254. align-items: center;
  1255. justify-content: center;
  1256. font-size: 19px;
  1257. font-weight: 700;
  1258. color: rgba(255, 255, 255, 1);
  1259. border-radius: 100%;
  1260. }
  1261. .parameter_zheng33 {
  1262. width: 74px;
  1263. height: 74px;
  1264. background-image: url("../../static/y6.png");
  1265. background-size: 100% 100%;
  1266. display: flex;
  1267. align-items: center;
  1268. justify-content: center;
  1269. font-size: 19px;
  1270. font-weight: 700;
  1271. color: rgba(255, 255, 255, 1);
  1272. }
  1273. .parameter_zheng34 {
  1274. width: 68px;
  1275. height: 68px;
  1276. background-image: url("../../static/y8.png");
  1277. background-size: 100% 100%;
  1278. font-size: 18px;
  1279. font-weight: 700;
  1280. color: rgba(255, 255, 255, 1);
  1281. display: flex;
  1282. flex-direction: column;
  1283. align-items: center;
  1284. justify-content: center;
  1285. }
  1286. .parameter_home {
  1287. width: 100%;
  1288. display: flex;
  1289. margin-top: 0px;
  1290. justify-content: space-between;
  1291. }
  1292. .parameter_home1 {
  1293. display: flex;
  1294. align-items: center;
  1295. image {
  1296. width: 32.8px;
  1297. height: 32.31px;
  1298. margin-right: 10px;
  1299. }
  1300. }
  1301. .parameter_hometext {
  1302. font-size: 19.58px;
  1303. font-weight: 400;
  1304. color: rgba(0, 0, 0, 1);
  1305. }
  1306. .parameter_home2 {
  1307. width: 636.33px;
  1308. height: 39.16px;
  1309. opacity: 0.8;
  1310. border-radius: 0.98px;
  1311. background: rgba(242, 242, 242, 1);
  1312. border: 0.49px solid rgba(161, 161, 161, 1);
  1313. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1314. display: flex;
  1315. align-items: center;
  1316. padding: 0px 10px;
  1317. box-sizing: border-box;
  1318. image {
  1319. width: 26.92px;
  1320. height: 29.86px;
  1321. }
  1322. }
  1323. .swiper {
  1324. width: 100%;
  1325. height: 40px;
  1326. }
  1327. .parameter_home3 {
  1328. height: 40px; /* 每条消息的高度 */
  1329. line-height: 40px; /* 垂直居中 */
  1330. font-size: 17.62px;
  1331. font-weight: 400;
  1332. color: rgba(0, 0, 0, 1);
  1333. margin-left: 10px;
  1334. }
  1335. .uni-dialog-title-text {
  1336. font-size: 70.89px !important;
  1337. font-weight: 500;
  1338. color: rgba(5, 5, 5, 1);
  1339. }
  1340. .parameter_box{
  1341. display: flex;
  1342. }
  1343. .parameter_zheng10{
  1344. width: 687px;
  1345. height: 100%;
  1346. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1347. display: flex;
  1348. flex-direction: column;
  1349. justify-content: space-around;
  1350. }
  1351. .parameter_zheng22 {
  1352. width: 387px;
  1353. height: 100%;
  1354. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1355. display: flex;
  1356. flex-direction: column;
  1357. justify-content: space-between;
  1358. }
  1359. .parameter_zheng101{
  1360. margin-top: 10px;
  1361. }
  1362. .parameter_zheng102{
  1363. margin-top: 30px;
  1364. }
  1365. </style>