移动储能车V1版本
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345
  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="$t('MainTitle')" mode=""></image>
  6. <!-- <view class="tite">
  7. {{ $t('MainTitle') }}
  8. </view> -->
  9. <view class="time">
  10. <view class="time_top">
  11. {{formattedTime}}
  12. </view>
  13. <view class="time_bottom">
  14. <view>
  15. </view>
  16. <view class="time_bottom1">
  17. {{ $t('status') }}
  18. <view class="time_state" v-if="status=='ok'">
  19. {{$t('online')}}
  20. </view>
  21. <view class="time_state1" v-else>
  22. {{$t('offline')}}
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="parameter">
  29. <view class="parameter_left">
  30. <view class="parameter_left1">
  31. <view style="display: flex;justify-content: center;position: relative;">
  32. <cmd-progress type="dashboard" :percent="uidatasdata.SOC??0" stroke-color="#B0D0FF" :stroke-width="6" :width="180" stroke-shape="square" :showInfo="false"></cmd-progress>
  33. <view style="position: absolute;text-align: center;top: 20%;">
  34. <view style="font-size:72rpx;font-weight: bold;">{{uidatasdata.SOC??0}} <text style="font-size:32rpx;">%</text> </view>
  35. <view style="font-size:32rpx;margin-top: 6px;">SOC</view>
  36. </view>
  37. <view style="position: absolute;top: 70%;">
  38. <view style="width: 190px;display: flex;justify-content: space-between;">
  39. <view style="font-size:32rpx;margin-left: 10px;">0</view>
  40. <view style="font-size:32rpx;">100%</view>
  41. </view>
  42. </view>
  43. </view>
  44. <!-- <jerry-gauge></jerry-gauge>
  45. <view class="parameter_canvas">
  46. <view class="parameter_canvas1">
  47. 0
  48. </view>
  49. <view class="parameter_canvas2">
  50. 100%
  51. </view>
  52. </view> -->
  53. </view>
  54. <image class="parameter_leftdian1" src="../../static/img/AC2.png" alt="" />
  55. <view class="parameter_lef2">
  56. <image src="../../static/dian2.png" mode=""></image>
  57. </view>
  58. <image class="parameter_leftche1" src="../../static/fang.png" mode=""></image>
  59. <view class="parameter_leftview">{{$t('CommunicationSupplyOutput')}}</view>
  60. </view>
  61. <view class="parameter_right">
  62. <view class="parameter_righttop">
  63. <view class="parameter_1">
  64. <view class="parameter_2">
  65. <view class="parameter_31">
  66. <view class="parameter_4">
  67. <image src="../../static/y8.png" mode="" v-if="uidatasdata.AC_Out_380V_125A_Status==0.00"></image>
  68. <image src="../../static/y6.png" mode="" v-else></image>
  69. {{$t('state125A')}}
  70. </view>
  71. <view class="parameter_51" v-if="uidatasdata.AC_Out_380V_125A_Status==0.00">
  72. {{$t('connect')}}
  73. </view>
  74. <view class="parameter_5" v-else>
  75. {{$t('breakoff')}}
  76. </view>
  77. </view>
  78. <view class="parameter_31">
  79. <view class="parameter_4">
  80. <image src="../../static/y8.png" mode="" v-if="uidatasdata.AC_Out_380V_63A_Status==0.00"></image>
  81. <image src="../../static/y6.png" mode="" v-else></image>
  82. {{$t('state63A')}}
  83. </view>
  84. <view class="parameter_51" v-if="uidatasdata.AC_Out_380V_63A_Status==0.00">
  85. {{$t('connect')}}
  86. </view>
  87. <view class="parameter_5" v-else>
  88. {{$t('breakoff')}}
  89. </view>
  90. </view>
  91. <view class="parameter_31">
  92. <view class="parameter_4">
  93. <image src="../../static/y8.png" mode="" v-if="uidatasdata.AC_Out_220V_16A_Status==0.00"></image>
  94. <image src="../../static/y6.png" mode="" v-else></image>
  95. {{$t('state16A')}}
  96. </view>
  97. <view class="parameter_51" v-if="uidatasdata.AC_Out_220V_16A_Status==0.00">
  98. {{$t('connect')}}
  99. </view>
  100. <view class="parameter_5" v-else>
  101. {{$t('breakoff')}}
  102. </view>
  103. </view>
  104. </view>
  105. <view class="parameter_SOC">
  106. <image src="../../static/SOC.png" mode=""></image>
  107. <view class="parameter_SOCright">
  108. <view class="parameter_SOCright1">
  109. SOC
  110. </view>
  111. <view>
  112. <text class="parameter_SOCright2">{{uidatasdata.SOC??'—'}}</text><text> %</text>
  113. </view>
  114. </view>
  115. </view>
  116. <view class="parameter_Battery">
  117. <image src="../../static/Battery.png" mode=""></image>
  118. <view class="parameter_SOCright">
  119. <view class="parameter_SOCright1">
  120. {{$t('BatteryStatus')}}
  121. </view>
  122. <view class="parameter_Batterystate">
  123. <view v-if="uidatasdata.bms_BatSysState==5">
  124. {{$t('fault')}}
  125. </view>
  126. <!-- <view v-else-if="uidatasdata.bms_BatSysState==0">
  127. {{$t('ChuShiHua')}}
  128. </view> -->
  129. <view v-else-if="uidatasdata.bms_BatSysState==1">
  130. {{$t('NotupyetVoltage')}}
  131. </view>
  132. <!-- <view v-else-if="uidatasdata.bms_BatSysState==2">
  133. {{$t('HighVoltageMedium')}}
  134. </view> -->
  135. <view v-else-if="uidatasdata.bms_BatSysState==3">
  136. {{$t('voltagehasbeen')}}
  137. </view>
  138. <!-- <view v-else-if="uidatasdata.bms_BatSysState==4">
  139. {{$t('Underhighpressure')}}
  140. </view> -->
  141. <view v-else>
  142. </view>
  143. <!-- {{uidatasdata.bms_BatSysWorkMode_==0.00?'无效':'有效'}} -->
  144. </view>
  145. </view>
  146. </view>
  147. <view class="parameter_state">
  148. <image src="../../static/setup.png" mode=""></image>
  149. <view class="parameter_SOCright">
  150. <view class="parameter_SOCright1">
  151. {{$t('SystemStatus')}}
  152. </view>
  153. <view class="parameter_Batterystate">
  154. <!-- {{uidatasdata.bms_ChgLinkSt==0.00?'无效':'有效'}} -->
  155. <view v-if="uidatasdata.bms_BatSysWorkMode_==0">
  156. {{$t('uncharged')}}
  157. </view>
  158. <view v-else-if="uidatasdata.bms_BatSysWorkMode_==1">
  159. {{$t('Chargingprogress')}}
  160. </view>
  161. <view v-else-if="uidatasdata.bms_BatSysWorkMode_==2">
  162. {{$t('Chargingmalfunction')}}
  163. </view>
  164. <view v-else-if="uidatasdata.bms_BatSysWorkMode_==3">
  165. {{$t('full')}}
  166. </view>
  167. <!-- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==4">
  168. {{$t('Chargingstopped')}}
  169. </view> -->
  170. <!-- <view v-else-if="uidatasdata.bms_BatSysWorkMode_>3&&uidatasdata.bms_BatSysWorkMode_<8">
  171. {{$t('retain')}}
  172. </view> -->
  173. <view v-else>
  174. </view>
  175. </view>
  176. </view>
  177. </view>
  178. </view>
  179. </view>
  180. <view class="parameter_tap">
  181. <view :class="segmented==1?'parameter_tap1':'parameter_tap2'" @click="ontap(1)">
  182. {{$t('exchangeinformation')}}
  183. </view>
  184. <view :class="segmented==2?'parameter_tap1':'parameter_tap2'" @click="ontap(2)">
  185. {{$t('Batteryinformation')}}
  186. </view>
  187. <view :class="segmented==3?'parameter_tap1':'parameter_tap2'" @click="ontap(3)">
  188. {{$t('statisticalinformation')}}
  189. </view>
  190. <view :class="segmented==4?'parameter_tap1':'parameter_tap2'" @click="ontap(4)">
  191. {{$t('coolinginformation')}}
  192. </view>
  193. </view>
  194. <view class="parameter_zheng">
  195. <view class="parameter_box" v-if="segmented==1">
  196. <view class="parameter_zheng1">
  197. <view class="parameter_zheng11">
  198. <view class="parameter_zheng12">
  199. {{$t('PhaseVoltageAV')}}
  200. </view>
  201. <view class="parameter_zheng13">
  202. {{uidatasdata.PCSPortAPhaseVoltage??'—'}} <text class="parameter_zheng14">V</text>
  203. </view>
  204. </view>
  205. <view class="parameter_zheng11">
  206. <view class="parameter_zheng12">
  207. {{$t('PhaseVoltageBV')}}
  208. </view>
  209. <view class="parameter_zheng13">
  210. {{uidatasdata.PCSPortBPhaseVoltage??'—'}} <text class="parameter_zheng14">V</text>
  211. </view>
  212. </view>
  213. <view class="parameter_zheng11">
  214. <view class="parameter_zheng12">
  215. {{$t('PhaseVoltageCV')}}
  216. </view>
  217. <view class="parameter_zheng13">
  218. {{uidatasdata.PCSPortCPhaseVoltage??'—'}} <text class="parameter_zheng14">V</text>
  219. </view>
  220. </view>
  221. <view class="parameter_zheng11">
  222. <view class="parameter_zheng12">
  223. {{$t('DischargePower')}}
  224. </view>
  225. <view class="parameter_zheng13">
  226. {{uidatasdata.PCSTotalOutputPower??'—'}} <text class="parameter_zheng14">kW</text>
  227. </view>
  228. </view>
  229. </view>
  230. <view class="parameter_zheng2">
  231. <view class="parameter_zheng11">
  232. <view class="parameter_zheng12">
  233. {{$t('PhaseVoltageAA')}}
  234. </view>
  235. <view class="parameter_zheng13">
  236. {{uidatasdata["PCSOutputA-phaseCurrent"]??'—'}} <text class="parameter_zheng14">A</text>
  237. </view>
  238. </view>
  239. <view class="parameter_zheng11">
  240. <view class="parameter_zheng12">
  241. {{$t('PhaseVoltageBA')}}
  242. </view>
  243. <view class="parameter_zheng13">
  244. {{uidatasdata["PCSOutputB-phaseCurrent"]??'—'}} <text class="parameter_zheng14">A</text>
  245. </view>
  246. </view>
  247. <view class="parameter_zheng11">
  248. <view class="parameter_zheng12">
  249. {{$t('PhaseVoltageCA')}}
  250. </view>
  251. <view class="parameter_zheng13">
  252. {{uidatasdata["PCSOutputC-phaseCurrent"]??'—'}}<text class="parameter_zheng14">A</text>
  253. </view>
  254. </view>
  255. <view class="parameter_zheng11" style="height: 30px;">
  256. <view class="parameter_zheng12">
  257. <!-- {{$t('DischargeCapacity')}} -->
  258. </view>
  259. <!-- <view class="parameter_zheng13">
  260. {{uidatasdata.PCSACDisChargeEnergy??'—'}} <text class="parameter_zheng14">kWh</text>
  261. </view> -->
  262. </view>
  263. </view>
  264. </view>
  265. <view class="parameter_box" v-if="segmented==2">
  266. <view class="parameter_zheng1">
  267. <!-- <view class="parameter_zheng11">
  268. <view class="parameter_zheng12">
  269. {{$t('Batterypower')}}
  270. </view>
  271. <view class="parameter_zheng13">
  272. {{uidatasdata.BatSysSt2_BatPower??'—'}} <text class="parameter_zheng14">kW</text>
  273. </view>
  274. </view> -->
  275. <view class="parameter_zheng11">
  276. <view class="parameter_zheng12">
  277. {{$t('TotalPressure')}}
  278. </view>
  279. <view class="parameter_zheng13">
  280. {{uidatasdata.BatSysSt2_BatSumVInt??'—'}} <text class="parameter_zheng14">V</text>
  281. </view>
  282. </view>
  283. <view class="parameter_zheng11">
  284. <view class="parameter_zheng12">
  285. {{$t('AllowableDischargepower')}}
  286. </view>
  287. <!-- DchChgCurPowLimit_MaxDischargeCurrentLimit -->
  288. <view class="parameter_zheng13">
  289. {{uidatasdata.DchChgCurPowLimit_MaxDischargePowerLimit??'—'}} <text
  290. class="parameter_zheng14">kW</text>
  291. </view>
  292. </view>
  293. <view class="parameter_zheng11">
  294. <view class="parameter_zheng12">
  295. {{$t('MaximumVoltage')}}
  296. </view>
  297. <view class="parameter_zheng13">
  298. {{uidatasdata.BatCellVPeak_ValMaxCellVoltage??'—'}} <text
  299. class="parameter_zheng14">V</text>
  300. </view>
  301. </view>
  302. <view class="parameter_zheng11">
  303. <view class="parameter_zheng12">
  304. {{$t('MaximumTemperature')}}
  305. </view>
  306. <view class="parameter_zheng13">
  307. {{uidatasdata.CellTemperatureLimitsStatus_MaxTemp??'—'}} <text
  308. class="parameter_zheng14">℃</text>
  309. </view>
  310. </view>
  311. </view>
  312. <view class="parameter_zheng2">
  313. <view class="parameter_zheng11">
  314. <view class="parameter_zheng12">
  315. {{$t('BatteryCurrent')}}
  316. </view>
  317. <view class="parameter_zheng13">
  318. {{uidatasdata.BatSysSt2_BatCur??'—'}} <text class="parameter_zheng14">A</text>
  319. </view>
  320. </view>
  321. <!-- <view class="parameter_zheng11">
  322. <view class="parameter_zheng12">
  323. {{$t('TotalExternalPressure')}}
  324. </view>
  325. <view class="parameter_zheng13">
  326. {{uidatasdata.BatSysSt2_BatSumVOut??'—'}} <text class="parameter_zheng14">V</text>
  327. </view>
  328. </view> -->
  329. <view class="parameter_zheng11">
  330. <view class="parameter_zheng12">
  331. {{$t('AllowDischargeCurrent')}}
  332. </view>
  333. <view class="parameter_zheng13">
  334. <!-- {{uidatasdata.ChargingInformation_Chg_Max_Cur??'—'}} <text -->
  335. {{uidatasdata.DchChgCurPowLimit_MaxDischargeCurrentLimit??'—'}} <text
  336. class="parameter_zheng14">A</text>
  337. </view>
  338. </view>
  339. <view class="parameter_zheng11">
  340. <view class="parameter_zheng12">
  341. {{$t('MinimumIndividualVoltage')}}
  342. </view>
  343. <view class="parameter_zheng13">
  344. {{uidatasdata.BatCellVPeak_ValMinCellVoltage??'—'}} <text
  345. class="parameter_zheng14">V</text>
  346. </view>
  347. </view>
  348. <view class="parameter_zheng11">
  349. <view class="parameter_zheng12">
  350. {{$t('MinimumMonomerTemperature')}}
  351. </view>
  352. <view class="parameter_zheng13">
  353. {{uidatasdata.CellTemperatureLimitsStatus_MinTemp??'—'}} <text
  354. class="parameter_zheng14">℃</text>
  355. </view>
  356. </view>
  357. </view>
  358. </view>
  359. <view class="parameter_box" v-if="segmented==3">
  360. <view class="parameter_zheng10">
  361. <!-- <view class="parameter_zhengbox">
  362. <view class="parameter_zheng12">
  363. {{$t('AccumulatedChargingCapacityCommunication')}}
  364. </view>
  365. <view class="parameter_zhengbox13">
  366. {{uidatasdata.PCSACChargeEnergy??'—'}} <text class="parameter_zheng14">kW</text> <text></text>
  367. </view>
  368. </view>
  369. <view class="parameter_zhengbox parameter_zheng101">
  370. <view class="parameter_zheng12">
  371. {{$t('AccumulatedDCChargingCapacity')}}
  372. </view>
  373. <view class="parameter_zhengbox13">
  374. {{uidatasdata.PCSDCDisChargeEnergy??'—'}} <text class="parameter_zheng14">V</text> <text></text>
  375. </view>
  376. </view> -->
  377. <view class="parameter_zhengbox">
  378. <view class="parameter_zheng12">
  379. {{$t('RunningTimesdischarge')}}
  380. </view>
  381. <view class="parameter_zhengbox13">
  382. {{uidatasdata.CommunicationDuration}} <text class="parameter_zheng14">{{$t('RunningTimesmin')}}</text> <text></text>
  383. </view>
  384. </view>
  385. <view class="parameter_zhengbox parameter_zheng101">
  386. <view class="parameter_zheng12">
  387. {{$t('InputCapacitydischarge')}}
  388. </view>
  389. <view class="parameter_zhengbox13">
  390. {{uidatasdata.CommunicationDischarge}} <text class="parameter_zheng14">kWh</text> <text></text>
  391. </view>
  392. </view>
  393. <view class="parameter_zhengbox parameter_zheng101">
  394. <view class="parameter_zheng12">
  395. {{$t('AccumulateInputdischarge')}}
  396. </view>
  397. <view class="parameter_zhengbox13">
  398. <!-- {{uidatasdata.PCSDCDisChargeEnergy??'—'}} <text class="parameter_zheng14">kWh</text> <text></text> -->
  399. {{uidatasdata.PCSACDisChargeEnergy??'—'}}<text class="parameter_zheng14">kWh</text> <text></text>
  400. </view>
  401. </view>
  402. </view>
  403. </view>
  404. <view class="parameter_box" v-if="segmented==4">
  405. <view class="parameter_zheng1">
  406. <view class="parameter_zheng11">
  407. <view class="parameter_zheng12">
  408. {{$t('WorkingMode')}}
  409. </view>
  410. <view class="parameter_Batterystate">
  411. <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE}} <text class="parameter_zheng14">kW</text> -->
  412. <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE==1.00?'有效':'无效'}} -->
  413. <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==0">
  414. {{$t('OffMode')}}
  415. </view>
  416. <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==1">
  417. {{$t('CoolingMode')}}
  418. </view>
  419. <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==2">
  420. {{$t('HeatingMode')}}
  421. </view>
  422. <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==3">
  423. {{$t('CirculatingMode')}}
  424. </view>
  425. <view v-else>
  426. </view>
  427. </view>
  428. </view>
  429. <view class="parameter_zheng11">
  430. <view class="parameter_zheng12">
  431. {{$t('OutletTemperature')}}
  432. </view>
  433. <view class="parameter_zheng13">
  434. {{uidatasdata.TMS_Status_TMS_WATEROUT_TEMP??'—'}} <text
  435. class="parameter_zheng14">℃</text>
  436. </view>
  437. </view>
  438. <view class="parameter_zheng11">
  439. <view class="parameter_zheng12" style="height: 30px;">
  440. <!-- {{$t('PowerDemand')}} -->
  441. </view>
  442. <!-- <view class="parameter_zheng13">
  443. {{uidatasdata.TMS_Status_TMS_POWER_REQ??'—'}} <text class="parameter_zheng14">kW</text>
  444. </view> -->
  445. </view>
  446. </view>
  447. <view class="parameter_zheng2">
  448. <view class="parameter_zheng11">
  449. <view class="parameter_zheng12">
  450. {{$t('HighVoltageRelayStatus')}}
  451. </view>
  452. <view class="parameter_Batterystate">
  453. <!-- {{uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0.00?'无效':'有效'}} -->
  454. <view v-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0">
  455. {{$t('DisconnectedState')}}
  456. </view>
  457. <view v-else-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==1">
  458. {{$t('ClosedState')}}
  459. </view>
  460. <view v-else>
  461. </view>
  462. </view>
  463. </view>
  464. <view class="parameter_zheng11">
  465. <view class="parameter_zheng12">
  466. {{$t('waterTemperature')}}
  467. </view>
  468. <view class="parameter_zheng13">
  469. {{uidatasdata.TMS_Status_TMS_WATERIN_TEMP??'—'}} <text class="parameter_zheng14">℃</text>
  470. </view>
  471. </view>
  472. <view class="parameter_zheng11">
  473. <view class="parameter_zheng12" style="height: 30px;">
  474. <!-- {{$t('FaultLevel')}} -->
  475. </view>
  476. <!-- <view class="parameter_Batterystate">
  477. <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==0">
  478. {{$t('NoMalfunction')}}
  479. </view>
  480. <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==1">
  481. 1{{$t('LevelLault')}}
  482. </view>
  483. <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==2">
  484. 2{{$t('LevelLault')}}
  485. </view>
  486. <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==3">
  487. 3{{$t('LevelLault')}}
  488. </view>
  489. <view v-else>
  490. </view>
  491. </view> -->
  492. </view>
  493. </view>
  494. </view>
  495. <view class="parameter_zheng3">
  496. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_RunCmd==0" @click="dialogToggle">
  497. <view class="parameter_zheng31">
  498. <view class="parameter_zheng32">
  499. {{$t('open')}}
  500. </view>
  501. </view>
  502. </view>
  503. <view class="parameter_zheng31111" v-else>
  504. <view class="parameter_zheng31">
  505. <view class="parameter_zheng32ccc">
  506. {{$t('open')}}
  507. </view>
  508. </view>
  509. </view>
  510. <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_RunCmd==1" @click="onstopit">
  511. <view class="parameter_zheng31">
  512. <view class="parameter_zheng33">
  513. {{$t('stopIt')}}
  514. </view>
  515. </view>
  516. </view>
  517. <view class="parameter_zheng31111" v-else>
  518. <view class="parameter_zheng31">
  519. <view class="parameter_zheng32ccc">
  520. {{$t('stopIt')}}
  521. </view>
  522. </view>
  523. </view>
  524. </view>
  525. </view>
  526. <view class="parameter_home">
  527. <view class="parameter_home1" @click="onreturn">
  528. <image src="../../static/home.png" mode=""></image><text
  529. class="parameter_hometext">{{$t('ReturnModeSelection')}}</text>
  530. </view>
  531. <view class="parameter_home2" v-if="faultsdata.length>0&&!this.SysFaultState">
  532. <image src="../../static/home1.png" mode=""></image>
  533. <swiper class="swiper" circular :autoplay="true" :interval="2000"
  534. :duration="500" :vertical="true">
  535. <swiper-item v-for="(item, index) in faultsdata" :key="index">
  536. <view class="parameter_home3">{{ item["CONTENT"] }}</view>
  537. </swiper-item>
  538. </swiper>
  539. </view>
  540. </view>
  541. </view>
  542. </view>
  543. <uni-popup ref="alertDialog">
  544. <uni-popup-dialog :mode="modeinput" placeholder="请输入内容" v-model="value" :type="successtype"
  545. :cancelText="$t('CancelReturn')" :confirmText="confirmText" :title="title" :content="content" :beforeClose="true" @confirm="dialogConfirm"
  546. @close="dialogClose"></uni-popup-dialog>
  547. </uni-popup>
  548. <uni-popup ref="message" type="message">
  549. <uni-popup-message type="error" :message="messageText" :duration="3000"></uni-popup-message>
  550. </uni-popup>
  551. </view>
  552. </template>
  553. <script>
  554. // import JerryGauge from "../../uni_modules/jerry-gauge/index.vue";
  555. import cmdProgress from "@/components/cmd-progress/cmd-progress.vue"
  556. import {
  557. getuidatas,
  558. control,
  559. getfaultsList
  560. } from "../../api/api.js";
  561. import {getTime} from "../../utils/index.js";
  562. import { mapState } from 'vuex';
  563. export default {
  564. components:{
  565. cmdProgress
  566. },
  567. data() {
  568. return {
  569. successtype: 'success',
  570. confirmText: '确认启动',
  571. title: '你确定要开启该设备吗?',
  572. content: '启动设备前,请确认参照用户手册确定设备与各部件处于正确状态!',
  573. value: '',
  574. modeinput: '',
  575. segmented: 1,
  576. uidatas: '',
  577. formatTimeid:'',
  578. faultsdata:[],
  579. messageText:'',
  580. SysFaultState:true,
  581. currentDate:''
  582. }
  583. },
  584. onLoad() {
  585. const date = new Date();
  586. const year = date.getFullYear();
  587. const month = date.getMonth() + 1;
  588. const day = date.getDate();
  589. this.currentDate = `${year}-${month}-${day}`;
  590. this.confirmText = this.$t('ConfirmStart');
  591. this.title = this.$t('popUpTitle');
  592. this.content = this.$t('popUpContent');
  593. },
  594. computed: {
  595. // 使用 mapState 映射多个状态到组件的计算属性
  596. ...mapState(['formattedTime','status']),
  597. ...mapState({
  598. uidatasdata: state => state.uidatasdata
  599. })
  600. },
  601. mounted() {
  602. // this.onfaultsdata();
  603. },
  604. beforeUnmount() {
  605. },
  606. watch: {
  607. uidatasdata: {
  608. handler(newVal, oldVal) {
  609. console.log('uidatasdata 发生变化:', newVal);
  610. // 在这里可以添加处理逻辑
  611. if(newVal.SysState_SysFaultState==1&&this.SysFaultState){
  612. this.SysFaultState = false
  613. this.onfaultsdata();
  614. }else if(newVal.SysState_SysFaultState==0){
  615. this.SysFaultState = true
  616. }
  617. },
  618. deep: true // 监听深层次的变化
  619. }
  620. },
  621. methods: {
  622. onfaultsdata(){
  623. let data ={
  624. page:1,
  625. rows:10,
  626. device: '',
  627. starttime: '',
  628. endtime: '',
  629. rt: 1,
  630. type:'故障'
  631. }
  632. getfaultsList(data).then(res => {
  633. console.log(res);
  634. if(res.status=='ok'){
  635. this.faultsdata=[]
  636. for (var i = 0; i < res.data.list.length; i++) {
  637. if(this.currentDate == res.data.list[i].FAULTTIME.substring(0, 10)){
  638. this.faultsdata.push(res.data.list[i])
  639. }
  640. }
  641. }else{
  642. }
  643. });
  644. },
  645. // 返回首页
  646. onreturn() {
  647. uni.redirectTo({
  648. url: '/pages/index/index'
  649. });
  650. },
  651. // 启动设备弹窗
  652. dialogToggle() {
  653. this.modeinput = 'base'
  654. this.successtype = 'success'
  655. this.confirmText = this.$t('ConfirmStart');
  656. this.title = this.$t('popUpTitle');
  657. this.content = this.$t('popUpContent');
  658. this.$refs.alertDialog.open()
  659. },
  660. onstopit() {
  661. this.modeinput = 'base'
  662. this.successtype = 'error'
  663. this.confirmText = this.$t('ConfirmStop');
  664. this.title = this.$t('popUpTitleStop');
  665. this.content =this.$t('popUpContentStop');
  666. this.$refs.alertDialog.open()
  667. },
  668. // 确认弹窗
  669. dialogConfirm() {
  670. let uidatasdata = this.$store.state.uidatasdata
  671. let data = {
  672. id: "c35c4db0-113f-442a-9e26-728489265fdb",
  673. issaveinitvalue:false,
  674. value: this.content==this.$t('popUpContent')?'1':'0'
  675. }
  676. if(this.confirmText==this.$t('ConfirmStart')){
  677. if(uidatasdata.AC_In_380V_63A1_Status==0||uidatasdata.AC_In_380V_63A2_Status==0){
  678. this.messageText = this.$t('ACpowerSupplytext')
  679. this.$refs.message.open()
  680. return
  681. }
  682. }
  683. control(data).then(data => {
  684. // console.log(data);
  685. if (data.status == 'ok') {
  686. this.$refs.alertDialog.close()
  687. uni.showToast({
  688. title:this.$t('OperationSuccessful'),
  689. icon: 'none',
  690. duration: 2000, // 显示时长,单位为毫秒
  691. });
  692. } else {
  693. this.$refs.alertDialog.close()
  694. uni.showToast({
  695. title:this.$t('operationFailed'),
  696. icon: 'none', // 使用 'none' 图标来表示失败
  697. duration: 2000, // 显示时长,单位为毫秒
  698. });
  699. }
  700. });
  701. },
  702. dialogClose() {
  703. console.log(this.value);
  704. this.$refs.alertDialog.close()
  705. },
  706. ontap(e) {
  707. console.log(e);
  708. this.segmented = e;
  709. }
  710. }
  711. }
  712. </script>
  713. <style lang="scss" scoped>
  714. .content {
  715. width: 100%;
  716. height: 100vh;
  717. opacity: 1;
  718. background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
  719. box-sizing: border-box;
  720. }
  721. .top {
  722. width: 100%;
  723. height: 100px;
  724. display: flex;
  725. align-items: center;
  726. justify-content: space-between;
  727. background-size: 100% 100%;
  728. background-repeat: no-repeat;
  729. box-sizing: border-box;
  730. background-color: #fff;
  731. padding: 0px 46px;
  732. }
  733. .top_logo{
  734. width:327px;
  735. height: 56px;
  736. }
  737. .tite{
  738. width: 325px;
  739. height: 50px;
  740. }
  741. .time{
  742. width:277px;
  743. text-align: right;
  744. }
  745. .time_top {
  746. font-size: 17px;
  747. }
  748. .time_bottom {
  749. display: flex;
  750. font-size: 17px;
  751. justify-content: space-between;
  752. }
  753. .time_bottom1 {
  754. display: flex;
  755. }
  756. .time_state {
  757. font-size: 17px;
  758. font-weight: 600;
  759. color: rgba(22, 68, 144, 1);
  760. }
  761. .time_state1 {
  762. font-size: 17px;
  763. font-weight: 600;
  764. color: rgba(217, 22, 22, 1);
  765. }
  766. .parameter {
  767. width: 100%;
  768. padding-bottom: 20px;
  769. display: flex;
  770. padding: 20px 20px;
  771. box-sizing: border-box;
  772. }
  773. .parameter_left {
  774. width: 262.85px;
  775. height: 630px;
  776. opacity: 1;
  777. border-radius: 24.47px;
  778. background: linear-gradient(180deg, rgba(42, 150, 212, 0.1) 0%, rgba(42, 146, 209, 0) 100%);
  779. border: 2.94px solid rgba(242, 248, 252, 1);
  780. display: flex;
  781. flex-direction: column;
  782. align-items: center;
  783. padding: 20rpx 0px;
  784. }
  785. .parameter_left1 {
  786. width: 100%;
  787. height: 170px;
  788. box-sizing: border-box;
  789. display: flex;
  790. flex-direction: column;
  791. justify-content: space-between;
  792. align-items: center;
  793. padding-bottom: 10px;
  794. }
  795. .canvas {
  796. width: 180px;
  797. margin: 8px auto auto auto;
  798. }
  799. .parameter_canvas {
  800. width: 100%;
  801. display: flex;
  802. justify-content: space-around;
  803. box-sizing: border-box;
  804. }
  805. .parameter_canvas1 {
  806. margin-left: -20px;
  807. margin-top: -40px;
  808. }
  809. .parameter_canvas2 {
  810. margin-right: -20px;
  811. margin-top: -40px;
  812. }
  813. .parameter_leftdian1 {
  814. width: 119.92px;
  815. height: 91.04px;
  816. opacity: 1;
  817. }
  818. .parameter_lef2 {
  819. width: 100%;
  820. height: 210px;
  821. display: flex;
  822. justify-content: center;
  823. align-items: center;
  824. background-image: url("../../static/heng.png");
  825. background-size: auto 100%;
  826. background-repeat: no-repeat;
  827. background-position: center center;
  828. margin: 10px 0px;
  829. image {
  830. width: 100px;
  831. height: 100px;
  832. margin-top: -10px;
  833. }
  834. }
  835. .parameter_leftche {
  836. width: 115.52px;
  837. height: 78.32px;
  838. opacity: 1;
  839. }
  840. .parameter_leftche1 {
  841. width: 77px;
  842. height: 81px;
  843. opacity: 1;
  844. }
  845. .parameter_leftche2 {
  846. width: 77px;
  847. height: 62px;
  848. }
  849. .parameter_leftview {
  850. font-size: 19.58px;
  851. font-weight: 400;
  852. letter-spacing: 0px;
  853. line-height: 28.35px;
  854. color: rgba(0, 0, 0, 1);
  855. margin-top: 8px;
  856. }
  857. .parameter_right {
  858. flex: 1;
  859. margin-left: 10px;
  860. display: flex;
  861. flex-direction: column;
  862. justify-content: space-between;
  863. }
  864. .parameter_righttop {
  865. width: 100%;
  866. }
  867. .parameter_1 {
  868. display: flex;
  869. }
  870. .parameter_2 {
  871. width: 339.21px;
  872. display: flex;
  873. flex-direction: column;
  874. justify-content: space-between;
  875. margin-right: 16px;
  876. }
  877. .parameter_3 {
  878. width: 339.21px;
  879. display: flex;
  880. align-items: center;
  881. justify-content: space-between;
  882. padding: 12px 20px;
  883. box-sizing: border-box;
  884. border-radius: 9.79px;
  885. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  886. image {
  887. width: 7.83px;
  888. height: 7.83px;
  889. margin-right: 6px;
  890. }
  891. }
  892. .parameter_31 {
  893. width: 339.21px;
  894. display: flex;
  895. align-items: center;
  896. justify-content: space-between;
  897. padding: 3px 20px;
  898. box-sizing: border-box;
  899. border-radius: 9.79px;
  900. background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
  901. image {
  902. width: 7.83px;
  903. height: 7.83px;
  904. margin-right: 6px;
  905. }
  906. }
  907. .parameter_4 {
  908. /** 文本1 */
  909. font-size: 23.5px;
  910. font-weight: 700;
  911. color: rgba(38, 38, 38, 1);
  912. display: flex;
  913. align-items: center;
  914. }
  915. .parameter_5 {
  916. font-size: 24.47px;
  917. font-weight: 700;
  918. color: rgba(217, 22, 22, 1);
  919. }
  920. .parameter_51 {
  921. font-size: 24.47px;
  922. font-weight: 700;
  923. color: rgba(7, 123, 67, 1);
  924. }
  925. .parameter_SOC {
  926. display: flex;
  927. align-items: center;
  928. justify-content: space-around;
  929. // justify-content: space-between;
  930. // width: 195.11px;
  931. flex: 1;
  932. // padding: 0px 40px;
  933. height: 130px;
  934. /* opacity: 0.15; */
  935. border-radius: 9.79px;
  936. margin-right: 16px;
  937. background: linear-gradient(180deg, rgba(240, 209, 137, 0.15) 0%, rgba(186, 141, 56, 0.15) 100%);
  938. image {
  939. width: 37.2px;
  940. height: 37.2px;
  941. }
  942. }
  943. .parameter_state {
  944. display: flex;
  945. align-items: center;
  946. justify-content: space-around;
  947. // justify-content: space-between;
  948. // width: 195.11px;
  949. flex: 1;
  950. // padding: 0px 40px;
  951. height: 130px;
  952. /* opacity: 0.15; */
  953. border-radius: 9.79px;
  954. background: linear-gradient(180deg, rgba(93, 149, 245, 0.15) 0%, rgba(41, 71, 204, 0.15) 100%);
  955. image {
  956. width: 37.2px;
  957. height: 37.2px;
  958. }
  959. }
  960. .parameter_Battery {
  961. display: flex;
  962. align-items: center;
  963. justify-content: space-around;
  964. // justify-content: space-between;
  965. // width: 195.11px;
  966. flex: 1;
  967. // padding: 0px 40px;
  968. height: 130px;
  969. /* opacity: 0.15; */
  970. margin-right: 16px;
  971. border-radius: 9.79px;
  972. background: linear-gradient(180deg, rgba(133, 242, 133, 0.15)0%, rgba(82, 209, 75, 0.15)100%);
  973. image {
  974. width: 20px;
  975. height: 37.2px;
  976. }
  977. }
  978. .parameter_SOCright {
  979. display: flex;
  980. flex-direction: column;
  981. }
  982. .parameter_SOCright1 {
  983. font-size: 20.5px;
  984. font-weight: 700;
  985. letter-spacing: 0px;
  986. line-height: 32.24px;
  987. color: rgba(38, 38, 38, 1);
  988. text-align: right;
  989. }
  990. .parameter_SOCright2 {
  991. font-size: 29.37px;
  992. font-weight: 700;
  993. color: rgba(186, 141, 56, 1);
  994. }
  995. .parameter_Batterystate {
  996. font-size: 23.5px;
  997. font-weight: 500;
  998. color: rgba(38, 38, 38, 1);
  999. text-align: right;
  1000. }
  1001. .parameter_tap {
  1002. width: 100%;
  1003. display: flex;
  1004. margin-top: 18px;
  1005. }
  1006. .parameter_tap1 {
  1007. flex: 1;
  1008. height: 55.8px;
  1009. opacity: 1;
  1010. background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
  1011. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1012. display: flex;
  1013. align-items: center;
  1014. justify-content: center;
  1015. font-size: 23.5px;
  1016. font-weight: 500;
  1017. color: rgba(255, 255, 255, 1);
  1018. }
  1019. .parameter_tap2 {
  1020. flex: 1;
  1021. height: 55.8px;
  1022. opacity: 1;
  1023. background: rgba(242, 242, 242, 1);
  1024. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1025. display: flex;
  1026. align-items: center;
  1027. justify-content: center;
  1028. font-size: 23.5px;
  1029. font-weight: 500;
  1030. }
  1031. .parameter_zheng {
  1032. width: 100%;
  1033. height: 313px;
  1034. background-image: url("../../static/z16.png");
  1035. background-size: 100% 100%;
  1036. margin-top: 10px;
  1037. padding: 20px 0px;
  1038. display: flex;
  1039. }
  1040. .parameter_zheng1 {
  1041. width: 387px;
  1042. height: 100%;
  1043. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1044. display: flex;
  1045. flex-direction: column;
  1046. justify-content: space-between;
  1047. }
  1048. .parameter_zheng11 {
  1049. display: flex;
  1050. padding: 0px 20px;
  1051. justify-content: space-between;
  1052. }
  1053. .parameter_zhengbox{
  1054. display: flex;
  1055. padding: 0px 20px;
  1056. justify-content: space-between;
  1057. }
  1058. .parameter_zheng12 {
  1059. font-size: 23.5px;
  1060. font-weight: 400;
  1061. color: rgba(0, 0, 0, 1);
  1062. }
  1063. .parameter_zheng13 {
  1064. font-size: 29.37px;
  1065. font-weight: 700;
  1066. color: rgba(20, 105, 201, 1);
  1067. }
  1068. .parameter_zhengbox13 {
  1069. width: 50%;
  1070. font-size: 29.37px;
  1071. font-weight: 700;
  1072. color: rgba(20, 105, 201, 1);
  1073. display: flex;
  1074. justify-content: space-between;
  1075. }
  1076. .parameter_zheng14 {
  1077. font-size: 23.5px;
  1078. font-weight: 400;
  1079. color: rgba(0, 0, 0, 1);
  1080. }
  1081. .parameter_zheng2 {
  1082. width: 387px;
  1083. height: 100%;
  1084. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1085. display: flex;
  1086. flex-direction: column;
  1087. justify-content: space-between;
  1088. }
  1089. .parameter_zheng3 {
  1090. flex: 1;
  1091. height: 100%;
  1092. display: flex;
  1093. flex-direction: column;
  1094. align-items: center;
  1095. justify-content: center;
  1096. }
  1097. .parameter_zheng31 {
  1098. width: 90px;
  1099. height: 90px;
  1100. background-image: url("../../static/y4.png");
  1101. background-size: 100% 100%;
  1102. display: flex;
  1103. align-items: center;
  1104. justify-content: center;
  1105. padding-bottom: 3px;
  1106. box-sizing: border-box;
  1107. }
  1108. .parameter_zheng31111{
  1109. width: 120px;
  1110. height: 120px;
  1111. display: flex;
  1112. align-items: center;
  1113. justify-content: center;
  1114. }
  1115. .parameter_zheng32 {
  1116. width: 74px;
  1117. height: 74px;
  1118. background-image: url("../../static/y1.png");
  1119. background-size: 100% 100%;
  1120. display: flex;
  1121. align-items: center;
  1122. justify-content: center;
  1123. font-size: 19.58px;
  1124. font-weight: 700;
  1125. color: rgba(255, 255, 255, 1);
  1126. }
  1127. .parameter_zheng32ccc {
  1128. width: 68px;
  1129. height: 68px;
  1130. /* background-image: url("../../static/y1.png"); */
  1131. background-color: #cccccc;
  1132. background-size: 100% 100%;
  1133. display: flex;
  1134. align-items: center;
  1135. justify-content: center;
  1136. font-size: 19px;
  1137. font-weight: 700;
  1138. color: rgba(255, 255, 255, 1);
  1139. border-radius: 100%;
  1140. }
  1141. .parameter_zheng33 {
  1142. width: 74px;
  1143. height: 74px;
  1144. background-image: url("../../static/y6.png");
  1145. background-size: 100% 100%;
  1146. display: flex;
  1147. align-items: center;
  1148. justify-content: center;
  1149. font-size: 19px;
  1150. font-weight: 700;
  1151. color: rgba(255, 255, 255, 1);
  1152. }
  1153. .parameter_zheng34 {
  1154. width: 68px;
  1155. height: 68px;
  1156. background-image: url("../../static/y8.png");
  1157. background-size: 100% 100%;
  1158. font-size: 18px;
  1159. font-weight: 700;
  1160. color: rgba(255, 255, 255, 1);
  1161. display: flex;
  1162. flex-direction: column;
  1163. align-items: center;
  1164. justify-content: center;
  1165. }
  1166. .parameter_home {
  1167. width: 100%;
  1168. display: flex;
  1169. margin-top: 0px;
  1170. justify-content: space-between;
  1171. }
  1172. .parameter_home1 {
  1173. display: flex;
  1174. align-items: center;
  1175. image {
  1176. width: 32.8px;
  1177. height: 32.31px;
  1178. margin-right: 10px;
  1179. }
  1180. }
  1181. .parameter_hometext {
  1182. font-size: 19.58px;
  1183. font-weight: 400;
  1184. color: rgba(0, 0, 0, 1);
  1185. }
  1186. .parameter_home2 {
  1187. width: 636.33px;
  1188. height: 39.16px;
  1189. opacity: 0.8;
  1190. border-radius: 0.98px;
  1191. background: rgba(242, 242, 242, 1);
  1192. border: 0.49px solid rgba(161, 161, 161, 1);
  1193. box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
  1194. display: flex;
  1195. align-items: center;
  1196. padding: 0px 10px;
  1197. box-sizing: border-box;
  1198. image {
  1199. width: 26.92px;
  1200. height: 29.86px;
  1201. }
  1202. }
  1203. .swiper {
  1204. width: 100%;
  1205. height: 40px;
  1206. }
  1207. .parameter_home3 {
  1208. height: 40px; /* 每条消息的高度 */
  1209. line-height: 40px; /* 垂直居中 */
  1210. font-size: 17.62px;
  1211. font-weight: 400;
  1212. margin-left: 10px;
  1213. color: rgba(0, 0, 0, 1);
  1214. }
  1215. .uni-dialog-title-text {
  1216. font-size: 70.89px !important;
  1217. font-weight: 500;
  1218. color: rgba(5, 5, 5, 1);
  1219. }
  1220. .parameter_box {
  1221. display: flex;
  1222. }
  1223. .parameter_zheng10 {
  1224. width: 687px;
  1225. height: 100%;
  1226. border-right: 0.49px solid rgba(0, 0, 0, 1);
  1227. display: flex;
  1228. flex-direction: column;
  1229. /* justify-content: space-around; */
  1230. }
  1231. .parameter_zheng101{
  1232. margin-top: 40px;
  1233. }
  1234. </style>
  1235. <!--
  1236. 1、界面顶部logo替换成客户logo;
  1237. 2、2.0版本中交流插座开关处无反馈,将1.0中交流模式左上角的插座开关状态反馈删除;
  1238. 3、2.0版本中交流补电改为检测到插座电流后,弹窗选择输入功率,无需手动输入功率,删除1.0中交流补电模式的功率给定按钮;
  1239. 4、交流补电模式中加入了功率选择弹窗,包括只接入插座1或者插座2的单个插座功率选择,以及两个插座均接入的双插座功率选择;
  1240. 5、系统信息页面中根据2.0实际情况修改了电池串数以及版本号(设备的SN号后续确认后告知)
  1241. -->