| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619 |
- <template>
- <view class="content">
- <view class="top">
- <image class="top_logo" src="../../static/logo.png" mode=""></image>
- <image class="tite" :src="$t('MainTitle')" mode=""></image>
- <!-- <view class="tite">
- {{ $t('MainTitle') }}
- </view> -->
- <view class="time">
- <view class="time_top">
- {{formattedTime}}
- </view>
- <view class="time_bottom">
- <view>
-
- </view>
- <view class="time_bottom1">
- {{$t('status')}}
- <view class="time_state" v-if="status=='ok'">
- {{$t('online')}}
- </view>
- <view class="time_state1" v-else>
- {{$t('offline')}}
- </view>
- </view>
-
- </view>
-
- </view>
- </view>
- <view class="parameter">
- <view class="parameter_left">
- <view class="parameter_left1">
- <view style="display: flex;justify-content: center;position: relative;">
- <cmd-progress type="dashboard" :percent="uidatasdata.SOC??0" stroke-color="#B0D0FF" :stroke-width="6" :width="180" stroke-shape="square" :showInfo="false"></cmd-progress>
- <view style="position: absolute;text-align: center;top: 20%;">
- <view style="font-size:72rpx;font-weight: bold;">{{uidatasdata.SOC??0}} <text style="font-size:32rpx;">%</text> </view>
- <view style="font-size:32rpx;margin-top: 6px;">SOC</view>
- </view>
- <view style="position: absolute;top: 70%;">
- <view style="width: 190px;display: flex;justify-content: space-between;">
- <view style="font-size:32rpx;margin-left: 10px;">0</view>
- <view style="font-size:32rpx;">100%</view>
- </view>
-
- </view>
- </view>
- <!-- <jerry-gauge></jerry-gauge>
- <view class="parameter_canvas">
- <view class="parameter_canvas1">
- 0
- </view>
- <view class="parameter_canvas2">
- 100%
- </view>
- </view> -->
- </view>
- <image class="parameter_leftdian1" src="../../static/img/AC2.png" alt="" />
- <view class="parameter_lef2">
- <image src="../../static/dian2.png" mode=""></image>
- </view>
- <image class="parameter_leftche2" src="../../static/che1.png" mode=""></image>
- <view class="parameter_leftview">{{$t('DirectSupplyOutput')}}</view>
- </view>
- <view class="parameter_right">
- <view class="parameter_righttop">
- <view class="parameter_1">
- <view class="parameter_2">
- <view class="parameter_3" v-if="ChargingStation==1">
- <view class="parameter_4">
- <image src="../../static/y8.png" mode=""
- v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarConnectStatus_ccu==1.00">
- </image>
- <image src="../../static/y6.png" mode="" v-else></image>
- {{$t('ConnectionStatus')}}
- </view>
- <view class="parameter_51"
- v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarConnectStatus_ccu==1.00">
- {{$t('connect')}}
- </view>
- <view class="parameter_5" v-else>
- {{$t('breakoff')}}
- </view>
- </view>
- <view class="parameter_3" v-else>
- <view class="parameter_4">
- <image src="../../static/y8.png" mode=""
- v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarConnectStatus_ccu==1.00">
- </image>
- <image src="../../static/y6.png" mode="" v-else></image>
- {{$t('ConnectionStatus')}}
- </view>
- <view class="parameter_51"
- v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarConnectStatus_ccu==1.00">
- {{$t('connect')}}
- </view>
- <view class="parameter_5" v-else>
- {{$t('breakoff')}}
- </view>
- </view>
- <view class="parameter_3" v-if="ChargingStation==1">
- <view class="parameter_4">
- <image src="../../static/y8.png" mode=""
- v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==1.00">
- </image>
- <image src="../../static/y6.png" mode="" v-else></image>
- {{$t('workingCondition')}}
- </view>
- <view class="parameter_Batterystate">
- <view v-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==0.00">
- {{$t('StandbyMode')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==1.00">
- {{$t('work')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==2.00">
- {{$t('ChargingCompleted')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_1_remoteSignaFrameCarJobStatus_ccu==3.00">
- {{$t('ChargingPause')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
-
- </view>
- <view class="parameter_3" v-if="ChargingStation==2">
- <view class="parameter_4">
- <image src="../../static/y8.png" mode=""
- v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==1.00">
- </image>
- <image src="../../static/y6.png" mode="" v-else></image>
- {{$t('workingCondition')}}
- </view>
- <view class="parameter_Batterystate">
- <view v-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==0.00">
- {{$t('StandbyMode')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==1.00">
- {{$t('work')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==2.00">
- {{$t('ChargingCompleted')}}
- </view>
- <view v-else-if="uidatasdata.ChargingStation_2_remoteSignaFrameCarJobStatus_ccu==3.00">
- {{$t('ChargingPause')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- <!-- <view class="parameter_5" v-else>
- 断开
- </view> -->
- </view>
-
- </view>
- <view class="parameter_SOC">
- <image src="../../static/SOC.png" mode=""></image>
- <view class="parameter_SOCright">
- <view class="parameter_SOCright1">
- SOC
- </view>
- <view>
- <text class="parameter_SOCright2">{{uidatasdata.SOC??'—'}}</text><text>%</text>
- </view>
- </view>
- </view>
- <view class="parameter_Battery">
- <image src="../../static/Battery.png" mode=""></image>
- <view class="parameter_SOCright">
- <view class="parameter_SOCright1">
- {{$t('BatteryStatus')}}
- </view>
- <view class="parameter_Batterystate">
- <view v-if="uidatasdata.bms_BatSysState==5">
- {{$t('fault')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysState==0">
- {{$t('ChuShiHua')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysState==1">
- {{$t('NotupyetVoltage')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysState==2">
- {{$t('HighVoltageMedium')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysState==3">
- {{$t('voltagehasbeen')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysState==4">
- {{$t('Underhighpressure')}}
- </view>
- <view v-else>
- —
- </view>
- <!-- {{uidatasdata.bms_BatSysWorkMode_==0.00?'无效':'有效'}} -->
- </view>
- </view>
- </view>
- <view class="parameter_state">
- <image src="../../static/setup.png" mode=""></image>
- <view class="parameter_SOCright">
- <view class="parameter_SOCright1">
- {{$t('SystemStatus')}}
- </view>
- <view class="parameter_Batterystate">
- <!-- {{uidatasdata.bms_ChgLinkSt==0.00?'无效':'有效'}} -->
- <view v-if="uidatasdata.bms_BatSysWorkMode_==0">
- {{$t('uncharged')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==1">
- {{$t('Chargingprogress')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==2">
- {{$t('Chargingmalfunction')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==3">
- {{$t('full')}}
- </view>
- <!-- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==4">
- {{$t('Chargingstopped')}}
- </view> -->
- <!-- <view v-else-if="uidatasdata.bms_BatSysWorkMode_>3&&uidatasdata.bms_BatSysWorkMode_<8">
- {{$t('retain')}}
- </view> -->
- <view v-else>
- —
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="parameter_tap">
- <view :class="segmented==1?'parameter_tap1':'parameter_tap2'" @click="ontap(1)">
- {{$t('GunAinformation')}}
- </view>
- <view :class="segmented==2?'parameter_tap1':'parameter_tap2'" @click="ontap(2)">
- {{$t('GunBinformation')}}
- </view>
- <view :class="segmented==3?'parameter_tap1':'parameter_tap2'" @click="ontap(3)">
- {{$t('Batteryinformation')}}
- </view>
- <!-- <view :class="segmented==4?'parameter_tap1':'parameter_tap2'" @click="ontap(4)">
- {{$t('ConnectionInformation')}}
- </view> -->
- <view :class="segmented==5?'parameter_tap1':'parameter_tap2'" @click="ontap(5)">
- {{$t('coolinginformation')}}
- </view>
- </view>
- <view class="parameter_zheng">
- <view class="parameter_box" v-if="segmented==1">
- <view class="parameter_zheng1">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingVoltage')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_outputVoltage??'—'}} <text
- class="parameter_zheng14">V</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingCurrent')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_chargeOutputCurrent??'—'}} <text
- class="parameter_zheng14">A</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('VehicleSOC')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_soc??'—'}} <text
- class="parameter_zheng14">%</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('CharingPower')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_outputVoltage?((uidatasdata.ChargingStation_1_telemetryFrameccu_outputVoltage*uidatasdata.ChargingStation_1_telemetryFrameccu_chargeOutputCurrent)/1000).toFixed(2):'—'}}
- <text class="parameter_zheng14">kW</text>
- </view>
- </view>
- </view>
- <view class="parameter_zheng2">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingCapacity')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_ThisChargePower??'—'}} <text
- class="parameter_zheng14">kWh</text>
- </view>
- </view>
- <!-- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingFee')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_AccumulatedChargingElectricityCost??'—'}}
- <text class="parameter_zheng14">{{$t('USD')}}</text>
- </view>
- </view> -->
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingTime')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_1_telemetryFrameccu_EstimateTheRemainingChargingTime??'—'}}
- <text class="parameter_zheng14">min</text>
- </view>
- </view>
- <view class="parameter_zheng11 parameter_zheng102">
- <view class="parameter_zheng12">
- </view>
- <view class="parameter_zheng13">
- </view>
- </view>
- <view class="parameter_zheng11 parameter_zheng102">
- <view class="parameter_zheng12">
- </view>
- <view class="parameter_zheng13">
- </view>
- </view>
- </view>
- </view>
- <view class="parameter_box" v-if="segmented==2">
- <view class="parameter_zheng1">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingVoltage')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_outputVoltage??'—'}} <text
- class="parameter_zheng14">V</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingCurrent')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_chargeOutputCurrent??'—'}} <text
- class="parameter_zheng14">A</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('VehicleSOC')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_soc??'—'}}<text
- class="parameter_zheng14"> %</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('CharingPower')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_outputVoltage?((uidatasdata.ChargingStation_2_telemetryFrameccu_outputVoltage*uidatasdata.ChargingStation_2_telemetryFrameccu_chargeOutputCurrent)/1000).toFixed(2):'—'}}
- <text class="parameter_zheng14">kW</text>
- </view>
- </view>
- </view>
- <view class="parameter_zheng2">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingCapacity')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_ThisChargePower??'—'}} <text
- class="parameter_zheng14">kWh</text>
- </view>
- </view>
- <!-- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingFee')}}
- </view>
- <view class="parameter_zheng13">
-
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_AccumulatedChargingElectricityCost??'—'}}
- <text class="parameter_zheng14">{{$t('USD')}}</text>
- </view>
- </view> -->
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingTime')}}
- </view>
- <view class="parameter_zheng13">
-
- {{uidatasdata.ChargingStation_2_telemetryFrameccu_EstimateTheRemainingChargingTime??'—'}}
- <text class="parameter_zheng14">min</text>
- </view>
- </view>
- <view class="parameter_zheng11 parameter_zheng102">
- <view class="parameter_zheng12">
- </view>
- <view class="parameter_zheng13">
- </view>
- </view>
- <view class="parameter_zheng11 parameter_zheng102">
- <view class="parameter_zheng12">
- </view>
- <view class="parameter_zheng13">
- </view>
- </view>
- </view>
- </view>
- <view class="parameter_box" v-if="segmented==3">
- <view class="parameter_zheng1">
- <!-- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('Batterypower')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatSysSt2_BatPower??'—'}} <text class="parameter_zheng14">kW</text>
- </view>
- </view> -->
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('TotalPressure')}}
-
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatSysSt2_BatSumVInt??'—'}} <text class="parameter_zheng14">V</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('AllowableDischargepower')}}
-
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.DchChgCurPowLimit_MaxDischargePowerLimit??'—'}} <text
- class="parameter_zheng14">kW</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
-
- {{$t('MaximumVoltage')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatCellVPeak_ValMaxCellVoltage??'—'}} <text
- class="parameter_zheng14">V</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
-
- {{$t('MaximumTemperature')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.CellTemperatureLimitsStatus_MaxTemp??'—'}} <text
- class="parameter_zheng14">℃</text>
- </view>
- </view>
- </view>
- <view class="parameter_zheng2">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('BatteryCurrent')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatSysSt2_BatCur??'—'}} <text class="parameter_zheng14">A</text>
- </view>
- </view>
- <!-- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('TotalExternalPressure')}}
-
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatSysSt2_BatSumVOut??'—'}} <text class="parameter_zheng14">V</text>
- </view>
- </view> -->
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('AllowDischargeCurrent')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.DchChgCurPowLimit_MaxDischargeCurrentLimit??'—'}}<text
- class="parameter_zheng14">A</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('MinimumIndividualVoltage')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.BatCellVPeak_ValMinCellVoltage??'—'}} <text
- class="parameter_zheng14">V</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('MinimumMonomerTemperature')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.CellTemperatureLimitsStatus_MinTemp??'—'}} <text
- class="parameter_zheng14">℃</text>
- </view>
- </view>
- </view>
- </view>
- <view class="parameter_box" v-if="segmented==4">
- <view class="parameter_zheng1">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('WorkingModeBatterySystem')}}
- </view>
-
- <view class="parameter_Batterystate">
- <!-- {{uidatasdata.bms_BatSysWorkMode_==0.00?'无效':'有效'}} -->
- <view v-if="uidatasdata.bms_BatSysWorkMode_==0">
- {{$t('invalid')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==1">
- {{$t('DischargeMode')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==2">
- {{$t('pcsChargingMode')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==3">
- {{$t('EuropeanStandardChargingMode')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('BatterySystemStatus')}}
- </view>
-
- <view class="parameter_Batterystate">
- <!-- {{uidatasdata.bms_BatSysWorkMode_==0.00?'无效':'有效'}} -->
- <view v-if="uidatasdata.bms_BatSysWorkMode_==0">
- {{$t('initialization')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==1">
- {{$t('NotupyetVoltage')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==2">
- {{$t('HighVoltageMedium')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==3">
- {{$t('voltagehasbeen')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==4">
- {{$t('Underhighpressure')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatSysWorkMode_==5">
- {{$t('fault')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingStatus')}}
- </view>
-
- <view class="parameter_Batterystate">
- <view v-if="uidatasdata.bms_ChargeStatus==0">
- {{$t('uncharged')}}
- </view>
- <view v-else-if="uidatasdata.bms_ChargeStatus==1">
- {{$t('Chargingprogress')}}
- </view>
- <view v-else-if="uidatasdata.bms_ChargeStatus==2">
- {{$t('Chargingmalfunction')}}
- </view>
- <view v-else-if="uidatasdata.bms_ChargeStatus==3">
- {{$t('full')}}
- </view>
- <!-- <view v-else-if="uidatasdata.bms_ChargeStatus==4">
- {{$t('Chargingstopped')}}
- </view> -->
- <view v-else-if="uidatasdata.bms_ChargeStatus>3&&uidatasdata.bms_ChargeStatus<8">
- {{$t('retain')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- </view>
-
- </view>
- <view class="parameter_zheng22">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('ChargingConnectionStatus')}}
- </view>
- <view class="parameter_Batterystate1" v-if="uidatasdata.bms_ChgLinkSt==1.00">
- {{$t('FastChargingConnection')}}
- </view>
- <view class="parameter_Batterystate1" v-else>
- {{$t('NoConnection')}}
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('BatteryFaultLevel')}}
- </view>
- <view class="parameter_Batterystate1">
- <!-- {{uidatasdata.bms_BatteryFaultLevl==0.00?'无故障':'有效'}} -->
- <view v-if="uidatasdata.bms_BatteryFaultLevl==0">
- {{$t('NoMalfunction')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatteryFaultLevl==1">
- 1{{$t('LevelLault')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatteryFaultLevl==2">
- 2{{$t('LevelLault')}}
- </view>
- <view v-else-if="uidatasdata.bms_BatteryFaultLevl==3">
- 3{{$t('LevelLault')}}
- </view>
- <view v-else>
- —
- </view>
-
- </view>
- </view>
- <view class="parameter_zheng11 parameter_zheng102">
-
- </view>
- </view>
- </view>
- <view class="parameter_box" v-if="segmented==5">
- <view class="parameter_zheng1">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('WorkingMode')}}
- </view>
-
- <view class="parameter_Batterystate">
- <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE}} <text class="parameter_zheng14">kW</text> -->
- <!-- {{uidatasdata.TMS_Status_TMS_WORK_MODE==1.00?'有效':'无效'}} -->
- <view v-if="uidatasdata.TMS_Status_TMS_WORK_MODE==0">
- {{$t('OffMode')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==1">
- {{$t('CoolingMode')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==2">
- {{$t('HeatingMode')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_WORK_MODE==3">
- {{$t('CirculatingMode')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('OutletTemperature')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.TMS_Status_TMS_WATEROUT_TEMP??'—'}} <text
- class="parameter_zheng14">℃</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12" style="height: 30px;">
- <!-- {{$t('PowerDemand')}} -->
- </view>
- <!-- <view class="parameter_zheng13">
- {{uidatasdata.TMS_Status_TMS_POWER_REQ??'—'}} <text
- class="parameter_zheng14">kW</text>
- </view> -->
- </view>
-
- </view>
- <view class="parameter_zheng2">
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('HighVoltageRelayStatus')}}
- </view>
-
- <view class="parameter_Batterystate">
-
- <!-- {{uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0.00?'无效':'有效'}} -->
- <view v-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==0">
- {{$t('DisconnectedState')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_HV_CONTACT_ST==1">
- {{$t('ClosedState')}}
- </view>
- <view v-else>
- —
- </view>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12">
- {{$t('waterTemperature')}}
- </view>
- <view class="parameter_zheng13">
- {{uidatasdata.TMS_Status_TMS_WATERIN_TEMP??'—'}} <text
- class="parameter_zheng14">℃</text>
- </view>
- </view>
- <view class="parameter_zheng11">
- <view class="parameter_zheng12" style="height: 30px;">
- <!-- {{$t('FaultLevel')}} -->
- </view>
- <!--
- <view class="parameter_Batterystate">
- <view v-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==0">
- {{$t('NoMalfunction')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==1">
- 1{{$t('LevelLault')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==2">
- 2{{$t('LevelLault')}}
- </view>
- <view v-else-if="uidatasdata.TMS_Status_TMS_ERR_LEVEL==3">
- 3{{$t('LevelLault')}}
- </view>
- <view v-else>
- —
- </view>
- </view> -->
- </view>
-
- </view>
- </view>
- <view class="parameter_zheng3" v-if="this.segmented==1">
- <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun1RunCmd==0"
- @click="dialogToggle">
- <view class="parameter_zheng31">
- <view class="parameter_zheng32">
- {{$t('open')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-else>
- <view class="parameter_zheng31">
- <view class="parameter_zheng32ccc">
- {{$t('open')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun1RunCmd==1"
- @click="onstopit">
- <view class="parameter_zheng31">
- <view class="parameter_zheng33">
- {{$t('stopIt')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-else>
- <view class="parameter_zheng31">
- <view class="parameter_zheng32ccc">
- {{$t('stopIt')}}
- </view>
- </view>
- </view>
-
-
-
- </view>
- <view class="parameter_zheng3" v-if="this.segmented==2">
- <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun2RunCmd==0"
- @click="dialogToggle">
- <view class="parameter_zheng31">
- <view class="parameter_zheng32">
- {{$t('open')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-else>
- <view class="parameter_zheng31">
- <view class="parameter_zheng32ccc">
- {{$t('open')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-if="uidatasdata.SysControl_Gun2RunCmd==1"
- @click="onstopit">
- <view class="parameter_zheng31">
- <view class="parameter_zheng33">
- {{$t('stopIt')}}
- </view>
- </view>
- </view>
- <view class="parameter_zheng31111" v-else>
- <view class="parameter_zheng31">
- <view class="parameter_zheng32ccc">
- {{$t('stopIt')}}
- </view>
- </view>
- </view>
-
-
-
- </view>
-
- </view>
- <view class="parameter_home">
- <view class="parameter_home1" @click="onreturn">
- <image src="../../static/home.png" mode=""></image><text
- class="parameter_hometext">{{$t('ReturnModeSelection')}}</text>
- </view>
- <view class="parameter_home2" v-if="faultsdata.length>0&&!this.SysFaultState">
- <image src="../../static/home1.png" mode=""></image>
- <swiper class="swiper" circular :autoplay="true" :interval="2000" :duration="500"
- :vertical="true">
- <swiper-item v-for="(item, index) in faultsdata" :key="index">
- <view class="parameter_home3">{{ item["CONTENT"] }}</view>
- </swiper-item>
-
- </swiper>
- </view>
- </view>
- </view>
- </view>
- <uni-popup ref="alertDialog">
- <uni-popup-dialog :mode="modeinput" placeholder="请输入内容" v-model="value" :type="successtype"
- :cancelText="$t('CancelReturn')" :confirmText="confirmText" :title="title" :content="content" @confirm="dialogConfirm"
- @close="dialogClose"></uni-popup-dialog>
- </uni-popup>
- </view>
- </template>
- <!-- -->
- <script>
- import cmdProgress from "@/components/cmd-progress/cmd-progress.vue"
- import {
- getuidatas,
- control,
- getfaultsList
- } from "../../api/api.js"
- import {
- getTime
- } from "../../utils/index.js"
- import {
- mapState
- } from 'vuex';
- export default {
- components: {
- cmdProgress
- },
- data() {
- return {
- successtype: 'success',
- confirmText: '确认启动',
- title: '你确定要开启该设备吗?',
- content: '启动设备前,请确认参照用户手册确定设备与各部件处于正确状态!',
- value: '',
- modeinput: '',
- segmented: 1,
- ChargingStation: 1,
- faultsdata: [],
- SysFaultState:true,
- currentDate:''
- }
- },
- onLoad() {
- const date = new Date();
- const year = date.getFullYear();
- const month = date.getMonth() + 1;
- const day = date.getDate();
- this.currentDate = `${year}-${month}-${day}`;
- this.confirmText = this.$t('ConfirmStart');
- this.title = this.$t('popUpTitle');
- this.content = this.$t('popUpContent');
- },
- computed: {
- // 使用 mapState 映射多个状态到组件的计算属性
- ...mapState(['formattedTime', 'status']),
- ...mapState({
- uidatasdata: state => state.uidatasdata
- })
- },
- mounted() {
-
- },
- beforeUnmount() {},
- watch: {
- uidatasdata: {
- handler(newVal, oldVal) {
- console.log('uidatasdata 发生变化:', newVal);
- // 在这里可以添加处理逻辑
- if(newVal.SysState_SysFaultState==1&&this.SysFaultState){
- this.SysFaultState = false
- this.onfaultsdata();
- }else if(newVal.SysState_SysFaultState==0){
- this.SysFaultState = true
- }
- },
- deep: true // 监听深层次的变化
- }
- },
- methods: {
-
- onfaultsdata() {
- let data = {
- page: 1,
- rows: 10,
- device: '',
- starttime: '',
- endtime: '',
- rt: 1,
- type: '故障'
- }
- getfaultsList(data).then(res => {
- console.log(res);
- if (res.status == 'ok') {
- this.faultsdata=[]
- for (var i = 0; i < res.data.list.length; i++) {
- if(this.currentDate == res.data.list[i].FAULTTIME.substring(0, 10)){
- this.faultsdata.push(res.data.list[i])
- }
-
- }
- } else {
-
- }
- });
-
-
- },
- // 返回首页
- onreturn() {
- uni.redirectTo({
- url: '/pages/index/index'
- });
- },
- // 启动设备弹窗
- dialogToggle() {
- this.modeinput = 'base'
- this.successtype = 'success'
- this.confirmText = this.$t('ConfirmStart');
- this.title = this.$t('popUpTitle');
- this.content = this.$t('popUpContent');
- this.$refs.alertDialog.open()
- },
- // 关闭设备弹窗
- onstopit() {
- this.modeinput = 'base'
- this.successtype = 'error'
- this.confirmText = this.$t('ConfirmStop');
- this.title = this.$t('popUpTitleStop');
- this.content =this.$t('popUpContentStop');
- this.$refs.alertDialog.open()
- },
- // 确定
- dialogConfirm() {
- let data = {}
- if (this.segmented == 1) {
- data = {
- id: "3b26469f-ad5b-43bf-b715-4213921321d0",
- issaveinitvalue: false,
- value: this.content == this.$t('popUpContent') ? '1' : '0'
- }
- } else if (this.segmented == 2) {
- data = {
- id: "78f59493-65f3-4860-8296-7f07bb0ca55b",
- issaveinitvalue: false,
- value: this.content == this.$t('popUpContent') ? '1' : '0'
- }
- } else {
- data = {
- id: "c35c4db0-113f-442a-9e26-728489265fdb",
- issaveinitvalue: false,
- value: this.content == this.$t('popUpContent') ? '1' : '0'
- }
- }
- control(data).then(data => {
- console.log(data);
- if (data.status == 'ok') {
-
- uni.showToast({
- title: this.$t('OperationSuccessful'),
- icon: 'none',
- duration: 2000, // 显示时长,单位为毫秒
- });
- } else {
- uni.showToast({
- title: this.$t('operationFailed'),
- icon: 'none', // 使用 'none' 图标来表示失败
- duration: 2000, // 显示时长,单位为毫秒
- });
- }
- });
- },
- // 取消
- dialogClose() {
- console.log(this.value);
- this.$refs.alertDialog.close()
- },
- // 切换标签
- ontap(e) {
- console.log(e);
- this.segmented = e;
- if (this.segmented == 1) {
- this.ChargingStation = 1
- } else if (this.segmented == 2) {
- this.ChargingStation = 2
- }
- }
- }
- }
- </script>
- <!-- -->
- <style lang="scss" scoped>
- .content {
- width: 100%;
- height: 100vh;
- opacity: 1;
- background: linear-gradient(180deg, rgba(215, 230, 245, 0) 0%, rgba(196, 229, 255, 1) 100%);
- box-sizing: border-box;
- }
-
- .top {
- width: 100%;
- height: 100px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- box-sizing: border-box;
- background-color: #fff;
- padding: 0px 46px;
- }
-
- .top_logo{
- width:327px;
- height: 56px;
- }
- .tite{
- width: 325px;
- height: 50px;
- }
- .time{
- width:277px;
- text-align: right;
- }
-
- .time_top {
- font-size: 17px;
- }
-
- .time_bottom {
- display: flex;
- font-size: 17px;
- justify-content: space-between;
- }
-
- .time_bottom1 {
- display: flex;
- }
-
- .time_state {
- font-size: 17px;
- font-weight: 600;
- color: rgba(22, 68, 144, 1);
- }
-
- .time_state1 {
- font-size: 17px;
- font-weight: 600;
- color: rgba(217, 22, 22, 1);
- }
-
- .parameter {
- width: 100%;
- padding-bottom: 20px;
- display: flex;
- padding: 20px 20px;
- box-sizing: border-box;
- }
-
- .parameter_left {
- width: 262.85px;
- height: 630px;
- opacity: 1;
- border-radius: 24.47px;
- background: linear-gradient(180deg, rgba(42, 150, 212, 0.1) 0%, rgba(42, 146, 209, 0) 100%);
-
- border: 2.94px solid rgba(242, 248, 252, 1);
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 20rpx 0px;
- }
-
- .parameter_left1 {
- width: 100%;
- height: 170px;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 10px;
- }
-
- .canvas {
- width: 180px;
- margin: 8px auto auto auto;
- }
-
- .parameter_canvas {
- width: 100%;
- display: flex;
- justify-content: space-around;
- box-sizing: border-box;
- }
-
- .parameter_canvas1 {
- margin-left: -20px;
- margin-top: -40px;
- }
-
- .parameter_canvas2 {
- margin-right: -20px;
- margin-top: -40px;
- }
-
- .parameter_leftdian1 {
- width: 119.92px;
- height: 91.04px;
- opacity: 1;
- }
-
- .parameter_lef2 {
- width: 100%;
- height: 220px;
- display: flex;
- justify-content: center;
- align-items: center;
- background-image: url("../../static/heng.png");
- background-size: auto 100%;
- background-repeat: no-repeat;
- background-position: center center;
- margin: 10px 0px;
-
- image {
- width: 100px;
- height: 100px;
- margin-top: -10px;
- }
- }
-
- .parameter_leftche {
- width: 115.52px;
- height: 78.32px;
- opacity: 1;
-
- }
-
- .parameter_leftche1 {
- width: 77px;
- height: 81px;
- opacity: 1;
- }
-
- .parameter_leftche2 {
- width: 77px;
- height: 62px;
- }
-
- .parameter_leftview {
- font-size: 19.58px;
- font-weight: 400;
- letter-spacing: 0px;
- line-height: 28.35px;
- color: rgba(0, 0, 0, 1);
- margin-top: 8px;
- }
-
- .parameter_right {
- flex: 1;
- margin-left: 10px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
-
- .parameter_righttop {
- width: 100%;
- }
-
- .parameter_1 {
- display: flex;
- }
-
- .parameter_2 {
- width: 339.21px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-right: 16px;
- }
-
- .parameter_3 {
- width: 339.21px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 12px 20px;
- box-sizing: border-box;
- border-radius: 9.79px;
- background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
-
- image {
- width: 7.83px;
- height: 7.83px;
- margin-right: 6px;
- }
- }
-
- .parameter_31 {
- width: 339.21px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 3px 20px;
- box-sizing: border-box;
- border-radius: 9.79px;
- background: linear-gradient(180deg, rgba(93, 189, 245, 0.15) 0%, rgba(31, 141, 209, 0.15) 100%);
-
- image {
- width: 7.83px;
- height: 7.83px;
- margin-right: 6px;
- }
- }
-
- .parameter_4 {
- /** 文本1 */
- font-size: 23.5px;
- font-weight: 700;
- color: rgba(38, 38, 38, 1);
- display: flex;
- align-items: center;
- }
-
- .parameter_5 {
- font-size: 24.47px;
- font-weight: 700;
- color: rgba(217, 22, 22, 1);
- }
-
- .parameter_51 {
- font-size: 24.47px;
- font-weight: 700;
- color: rgba(7, 123, 67, 1);
- }
-
- .parameter_SOC {
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 195.11px;
- height: 130px;
- /* opacity: 0.15; */
- border-radius: 9.79px;
- margin-right: 16px;
- background: linear-gradient(180deg, rgba(240, 209, 137, 0.15) 0%, rgba(186, 141, 56, 0.15) 100%);
-
- image {
- width: 37.2px;
- height: 37.2px;
- }
- }
-
- .parameter_state {
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 195.11px;
- height: 130px;
- /* opacity: 0.15; */
- border-radius: 9.79px;
- background: linear-gradient(180deg, rgba(93, 149, 245, 0.15) 0%, rgba(41, 71, 204, 0.15) 100%);
-
- image {
- width: 37.2px;
- height: 37.2px;
- }
- }
-
- .parameter_Battery {
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 195.11px;
- height: 130px;
- /* opacity: 0.15; */
- margin-right: 16px;
- border-radius: 9.79px;
- background: linear-gradient(180deg, rgba(133, 242, 133, 0.15)0%, rgba(82, 209, 75, 0.15)100%);
-
- image {
- width: 37.2px;
- height: 37.2px;
- }
- }
-
- .parameter_SOCright {
- display: flex;
- flex-direction: column;
- }
-
- .parameter_SOCright1 {
- font-size: 23.5px;
- font-weight: 700;
- letter-spacing: 0px;
- line-height: 32.24px;
- color: rgba(38, 38, 38, 1);
- text-align: right;
- }
-
- .parameter_SOCright2 {
- font-size: 29.37px;
- font-weight: 700;
- color: rgba(186, 141, 56, 1);
- }
-
- .parameter_Batterystate {
- font-size: 23.5px;
- font-weight: 500;
- color: rgba(38, 38, 38, 1);
- text-align: right;
- }
-
- .parameter_Batterystate1 {
- font-weight: 500;
- text-align: right;
- font-size: 24px;
- color: rgba(20, 105, 201, 1);
- }
-
- .parameter_tap {
- width: 100%;
- display: flex;
- margin-top: 18px;
- }
-
- .parameter_tap1 {
- flex: 1;
- height: 55.8px;
- opacity: 1;
- background: linear-gradient(180deg, rgba(30, 131, 189, 1) 0%, rgba(69, 168, 230, 0.92) 100%);
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 23.5px;
- font-weight: 500;
- color: rgba(255, 255, 255, 1);
- }
-
- .parameter_tap2 {
- flex: 1;
- height: 55.8px;
- opacity: 1;
- background: rgba(242, 242, 242, 1);
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 23.5px;
- font-weight: 500;
- }
-
- .parameter_zheng {
- width: 100%;
- height: 313px;
- background-image: url("../../static/z16.png");
- background-size: 100% 100%;
- margin-top: 10px;
- padding: 20px 0px;
- display: flex;
- }
-
- .parameter_zheng1 {
- width: 387px;
- height: 100%;
- border-right: 0.49px solid rgba(0, 0, 0, 1);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
-
- .parameter_zheng11 {
- display: flex;
- padding: 0px 20px;
- justify-content: space-between;
- }
-
- .parameter_zheng12 {
- font-size: 23.5px;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- }
-
- .parameter_zheng13 {
- font-size: 29.37px;
- font-weight: 700;
- color: rgba(20, 105, 201, 1);
- }
-
- .parameter_zheng14 {
- font-size: 23.5px;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- }
-
- .parameter_zheng2 {
- width: 387px;
- height: 100%;
- border-right: 0.49px solid rgba(0, 0, 0, 1);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
-
- .parameter_zheng3 {
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .parameter_zheng31111 {
- width: 120px;
- height: 120px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .parameter_zheng31 {
- width: 90px;
- height: 90px;
- background-image: url("../../static/y4.png");
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding-bottom: 3px;
- box-sizing: border-box;
- }
-
- .parameter_zheng32 {
- width: 74px;
- height: 74px;
- background-image: url("../../static/y1.png");
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19.58px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
-
- .parameter_zheng32ccc {
- width: 68px;
- height: 68px;
- /* background-image: url("../../static/y1.png"); */
- background-color: #cccccc;
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- border-radius: 100%;
- }
-
- .parameter_zheng33 {
- width: 74px;
- height: 74px;
- background-image: url("../../static/y6.png");
- background-size: 100% 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 19px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- }
-
- .parameter_zheng34 {
- width: 68px;
- height: 68px;
- background-image: url("../../static/y8.png");
- background-size: 100% 100%;
- font-size: 18px;
- font-weight: 700;
- color: rgba(255, 255, 255, 1);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .parameter_home {
- width: 100%;
- display: flex;
- margin-top: 0px;
- justify-content: space-between;
- }
-
- .parameter_home1 {
- display: flex;
- align-items: center;
-
- image {
- width: 32.8px;
- height: 32.31px;
- margin-right: 10px;
- }
- }
-
- .parameter_hometext {
- font-size: 19.58px;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- }
-
- .parameter_home2 {
- width: 636.33px;
- height: 39.16px;
- opacity: 0.8;
- border-radius: 0.98px;
- background: rgba(242, 242, 242, 1);
-
- border: 0.49px solid rgba(161, 161, 161, 1);
-
- box-shadow: inset 0px 0px 9.79px rgba(0, 0, 0, 0.1);
- display: flex;
- align-items: center;
- padding: 0px 10px;
- box-sizing: border-box;
-
- image {
- width: 26.92px;
- height: 29.86px;
- }
- }
-
- .swiper {
- width: 100%;
- height: 40px;
- }
-
- .parameter_home3 {
- height: 40px;
- /* 每条消息的高度 */
- line-height: 40px;
- /* 垂直居中 */
- font-size: 17.62px;
- font-weight: 400;
- color: rgba(0, 0, 0, 1);
- margin-left: 10px;
- }
-
- .uni-dialog-title-text {
- font-size: 70.89px !important;
- font-weight: 500;
- color: rgba(5, 5, 5, 1);
- }
-
- .parameter_box {
- display: flex;
- }
-
- .parameter_zheng10 {
- width: 687px;
- height: 100%;
- border-right: 0.49px solid rgba(0, 0, 0, 1);
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
-
- .parameter_zheng22 {
- width: 387px;
- height: 100%;
- border-right: 0.49px solid rgba(0, 0, 0, 1);
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
-
- .parameter_zheng101 {
- margin-top: 40px;
- }
-
- .parameter_zheng102 {
- margin-top: 30px;
- }
- </style>
|