123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624 |
- <template>
- <view class="storage-item">
- <view class="container">
- <view class="container-header">
- <view class="battery" :class="showCode ==0?'showCodeActive':''" @click="actshowCode(0)">
- {{StateNum}}
- </view>
- <view class="a-gun battery" :class="showCode ==1?'showCodeActive':''" @click="actshowCode(1)">
- A枪
- </view>
- <view class="b-gun battery" :class="showCode ==2?'showCodeActive':''" @click="actshowCode(2)">
- B枪
- </view>
- </view>
- <view class="container-code">
- <view class="container-code-one" :class="statustext[1]" v-if="showCode== 0">
- {{statustext[0]}}
- </view>
- <view class="container-code-one" :class="statustextA[1]" v-if="showCode== 1">
- {{statustextA[0]}}
- </view>
- <view class="container-code-one" :class="statustextB[1]" v-if="showCode== 2">
- {{statustextB[0]}}
- </view>
- <view class="container-code-two" v-if="showCode== 0">
- <image src="../../../static/equipment/d5.png" mode="" v-if="chargerInfoVo.chgState === 2"
- @click="sendCharger('断电')"></image>
- <image src="../../../static/equipment/c1.png" mode=""
- v-if="chargerInfoVo.chgState === 0 || chargerInfoVo.chgState === 3" @click="sendCharger('充电')">
- </image>
- <image src="../../../static/equipment/d6.png" mode="" v-if="chargerInfoVo.chgState !== 2"></image>
- <image src="../../../static/equipment/c2.png" mode=""
- v-if="chargerInfoVo.chgState !== 0 && chargerInfoVo.chgState !== 3"></image>
- </view>
- <view class="container-code-two" v-if="showCode== 1">
- <image src="../../../static/equipment/d5.png" mode="" v-if="chargerInfoOneVo.chgState === 2"
- @click="sendChargerOut('断电',batInfoOneVo.gunCode,chargerInfoOneVo.chargerCode)">
- </image>
- <image src="../../../static/equipment/c1.png" mode="" v-if="chargerInfoOneVo.chgState === 0 || chargerInfoOneVo.chgState === 3"
- @click="sendChargerOut('充电',batInfoOneVo.gunCode,chargerInfoOneVo.chargerCode)"></image>
- <image src="../../../static/equipment/d6.png" mode="" v-if="chargerInfoOneVo.chgState !== 2">
- </image>
- <image src="../../../static/equipment/c2.png" mode=""
- v-if="chargerInfoOneVo.chgState !== 0 && chargerInfoOneVo.chgState !== 3"></image>
- </view>
- <view class="container-code-two" v-if="showCode== 2">
- <image src="../../../static/equipment/d5.png" mode="" v-if="chargerInfoTwoVo.chgState === 2"
- @click="sendChargerOut('断电',batInfoTwoVo.gunCode,chargerInfoTwoVo.chargerCode)">
- </image>
- <image src="../../../static/equipment/c1.png" mode="" v-if="chargerInfoTwoVo.chgState === 0 || chargerInfoTwoVo.chgState === 3"
- @click="sendChargerOut('充电',batInfoTwoVo.gunCode,chargerInfoTwoVo.chargerCode)"></image>
- <image src="../../../static/equipment/d6.png" mode="" v-if="chargerInfoTwoVo.chgState !== 2">
- </image>
- <image src="../../../static/equipment/c2.png" mode=""
- v-if="chargerInfoTwoVo.chgState !== 0 && chargerInfoTwoVo.chgState !== 3"></image>
- </view>
- </view>
- <BatteryStatus :storeCode="storeCode" :comState="comState" :sn="sn" :soc="soc"
- :chgEstimatedTime="chgEstimatedTime" :showCode="showCode" v-if="showCode== 0"></BatteryStatus>
- <BatteryStatus :storeCode="batInfoOneVo.storeCode" :comState="chargerInfoOneVo.comState"
- :sn="batInfoOneVo.sn" :soc="batInfoOneVo.soc" :chgEstimatedTime="chargerInfoOneVo.chgEstimatedTime"
- :showCode="showCode" v-if="showCode== 1"></BatteryStatus>
- <BatteryStatus :storeCode="batInfoTwoVo.storeCode" :comState="chargerInfoTwoVo.comState"
- :sn="batInfoTwoVo.sn" :soc="batInfoTwoVo.soc" :chgEstimatedTime="chargerInfoTwoVo.chgEstimatedTime"
- :showCode="showCode" v-if="showCode== 2"></BatteryStatus>
- <view class="battery-info">
- <view class="vim" v-if="showCode == 1">
- <text>vin码</text><text>{{batInfoOneVo.vin ||'-'}}</text>
- </view>
- <view class="vim" v-if="showCode == 2">
- <text>vin码</text><text>{{batInfoTwoVo.vin ||'-'}}</text>
- </view>
- <BatteryInfo :num="current" unit="A" text="电流" v-if="showCode == 0"></BatteryInfo>
- <BatteryInfo :num="batInfoOneVo.current" unit="A" text="电流" v-if="showCode ==1"></BatteryInfo>
- <BatteryInfo :num="batInfoTwoVo.current" unit="A" text="电流" v-if="showCode == 2"></BatteryInfo>
- <BatteryInfo :num="voltage" unit="V" text="电压" v-if="showCode == 0"></BatteryInfo>
- <BatteryInfo :num="batInfoOneVo.voltage" unit="V" text="电压" v-if="showCode == 1"></BatteryInfo>
- <BatteryInfo :num="batInfoTwoVo.voltage" unit="V" text="电压" v-if="showCode == 2"></BatteryInfo>
- <BatteryInfo :num="soh" unit="%" text="SOH" v-if="showCode == 0"></BatteryInfo>
- <view class="info-right" :style="chargerColor" v-if="showCode == 0">
- <image class="s1" :src="require('../../../static/equipment/'+`s${chargerState[0]}`+'.png')">
- <text>{{chargerState[1]}}</text>
- </view>
- <view class="info-right" :style="chargerColorA" v-if="showCode == 1">
- <image class="s1" :src="require('../../../static/equipment/'+`s${chargerStateA[0]}`+'.png')">
- <text>{{chargerStateA[1]}}</text>
- </view>
- <view class="info-right" :style="chargerColorB" v-if="showCode == 2">
- <image class="s1" :src="require('../../../static/equipment/'+`s${chargerStateB[0]}`+'.png')">
- <text>{{chargerStateB[1]}}</text>
- </view>
- <!-- <BatteryInfo :num="minTemperature" unit="℃" text="最低温度"></BatteryInfo>
- <BatteryInfo :num="maxTemperature" unit="℃" text="最高温度"></BatteryInfo>
- <BatteryInfo :num="maxCellVoltage" unit="V" text="最高单体电压"></BatteryInfo>
- <BatteryInfo :num="minCellVoltage" unit="V" text="最低单体电压"></BatteryInfo>
- <view class="info-right">
- <image class="s1" src="../../../static/equipment/s1.png"><text class="text">{{StateNum}}</text>
- </view>
- -->
- </view>
- <view class="battery-charger">
- <BatteryCharger :chargerCode="chargerInfoVo.chargerCode" :comState="chargerInfoVo.comState"
- v-if="chargerInfoVo.chargerCode &&showCode ==0"></BatteryCharger>
- <BatteryCharger :chargerCode="chargerInfoOneVo.chargerCode" :comState="chargerInfoOneVo.comState"
- v-if="chargerInfoOneVo.chargerCode &&showCode ==1"></BatteryCharger>
- <BatteryCharger :chargerCode="chargerInfoTwoVo.chargerCode" :comState="chargerInfoTwoVo.comState"
- v-if="chargerInfoTwoVo.chargerCode &&showCode ==2"></BatteryCharger>
- <view class="battery-info" v-if="chargerInfoVo.chargerCode && showCode ==0">
- <BatteryInfo :num="chargerInfoVo.demandCurrent" unit="A" text="需求电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoVo.demandVoltage" unit="V" text="需求电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoVo.chgCurrent" unit="A" text="充电电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoVo.chgVoltage" unit="V" text="充电电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoVo.chgCapacity" unit="kWh" text="累计充电电量"></BatteryInfo>
- </view>
- <view class="battery-info" v-if="chargerInfoOneVo.chargerCode && showCode ==1">
- <BatteryInfo :num="chargerInfoOneVo.demandCurrent" unit="A" text="需求电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoOneVo.demandVoltage" unit="V" text="需求电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoOneVo.chgCurrent" unit="A" text="充电电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoOneVo.chgVoltage" unit="V" text="充电电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoOneVo.chgCapacity" unit="kWh" text="累计充电电量"></BatteryInfo>
- </view>
- <view class="battery-info" v-if="chargerInfoTwoVo.chargerCode && showCode ==2">
- <BatteryInfo :num="chargerInfoTwoVo.demandCurrent" unit="A" text="需求电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoTwoVo.demandVoltage" unit="V" text="需求电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoTwoVo.chgCurrent" unit="A" text="充电电流"></BatteryInfo>
- <BatteryInfo :num="chargerInfoTwoVo.chgVoltage" unit="V" text="充电电压"></BatteryInfo>
- <BatteryInfo :num="chargerInfoTwoVo.chgCapacity" unit="kWh" text="累计充电电量"></BatteryInfo>
- </view>
- <view class="battery-charger-btn">
- <view class="Plug-gun-charging" @click="ChargingMode(chgType)">
- {{chgType == 0 ?'插枪充电':'线束充电'}}
- </view>
- <view class="Settings Plug-gun-charging" @click="set">
- 设置
- </view>
- </view>
- <image src="../../../static/equipment/nodata.png" class="nodata" v-show="!chargerInfoVo.chargerCode">
- </view>
- </view>
- </view>
- </template>
- <script>
- import BatteryInfo from "./BatteryInfo.vue";
- import BatteryStatus from "./BatteryStatus.vue";
- import BatteryCharger from "./BatteryCharger.vue"
- export default {
- name: "StorageInfo",
- props: [
- 'storeCode',
- 'comState',
- 'sn',
- 'soc',
- 'chgEstimatedTime',
- 'current',
- 'voltage',
- 'minTemperature',
- 'maxTemperature',
- 'maxCellVoltage',
- 'minCellVoltage',
- 'soh',
- 'storeState',
- 'chargerInfoVo',
- 'chgType',
- 'batInfoOneVo',
- 'batInfoTwoVo',
- 'chargerInfoOneVo',
- 'chargerInfoTwoVo',
- 'showCodeNum'
- ],
- components: {
- BatteryInfo,
- BatteryStatus,
- BatteryCharger
- },
- data() {
- return {
- showCode: 0, //0电池1A枪2B枪
- Markers: 0, //标记 0代表没点击过 1代表点击过
- }
- },
- mounted() {
- this.showCode = this.showCodeNum; //根据后端返的数据动态渲染当前状态
- },
- watch: {
- showCodeNum(newshowCodeNum, oldshowCodeNum) {
- if (this.Markers == 0) {
- this.showCode = newshowCodeNum //没点击过 根据后端数据实时渲染不同的数据
- }
- }
- },
- methods: {
- //页面切换
- actshowCode(code) {
- this.showCode = code;
- this.Markers = 1
- },
- //打开弹窗
- set() {
- this.$emit('drawer')
- },
- //切换仓内仓外
- ChargingMode(chgType) {
- //停止充电后才能切换
- let data = {
- "chargerId": this.chargerInfoVo.chargerCode,
- "chargerWay": chgType == 1 ? '1' : '2',
- "controlPriority": 0,
- "powerControl": 0,
- "powerToggle": 0
- }
- if (chgType == 0 && this.chargerInfoVo.chgState == 2) { //仓内充电 充电时不允许切换
- return
- } else if (chgType == 1 && this.chargerInfoOneVo.chgState == 2 || this.chargerInfoTwoVo.chgState == 2) {
- return
- } else {
- this.$http.gettoggleChargeWay(data).then(res => {
- this.$emit('ExchangeMessage', res.code === 0 ? 'success' : 'error',
- res.code === 0 ? '切换成功!' : '切换失败!')
- })
- }
- },
- //仓内充电、断电操作
- sendCharger(name) {
- let params = {}
- if (this.chargerInfoVo.chgState === 0 || this.chargerInfoVo.chgState === 3) {
- params = {
- chargerId: this.chargerInfoVo.chargerCode * 1,
- sn: this.sn
- }
- } else if (this.chargerInfoVo.chgState === 2) {
- params = {
- chargerId: this.chargerInfoVo.chargerCode * 1
- }
- }
- let that = this
- uni.showModal({
- title: `确认发起${name}`,
- content: '',
- success: function(res) {
- if (res.confirm) { //点击确定
- //充电操作
- if (that.chargerInfoVo.chgState === 0 || that.chargerInfoVo.chgState === 3) {
- that.$emit('ExchangeMessage', 'success', '充电指令已下发')
- that.$http.startCharge(params)
- .then(res => {
- that.$emit('ExchangeMessage', res.code === 0 ? 'success' : 'error',
- res.code === 0 ? '充电成功' : '充电失败')
- }).catch(err => {
- console.error(err)
- })
- }
- //断电操作
- else if (that.chargerInfoVo.chgState === 2) {
- that.$emit('ExchangeMessage', 'success', '断电指令已下发')
- that.$http.stopCharge(params)
- .then(res => {
- that.$emit('ExchangeMessage', res.code === 0 ? 'success' : 'error',
- res.code === 0 ? '断电成功' : '断电失败')
- }).catch(err => {
- console.error(err)
- })
- }
- } else if (res.cancel) {
- return false
- //用户点击取消按钮触发
- }
- }
- })
- },
- //仓外充电·断电操作
- sendChargerOut(name, guncode, chargerId) {
- let params = {}
- if (this.chargerInfoOneVo.chgState === 0 || this.chargerInfoOneVo.chgState === 3 ||
- this.chargerInfoTwoVo.chgState === 0 || this.chargerInfoTwoVo.chgState === 3) {
- params = {
- "chargerId": chargerId * 1,
- "gunNo": guncode,
- "strategy": 4,
- "strategyParam": 0
- }
- } else if (this.chargerInfoOneVo.chgState === 2 || this.chargerInfoTwoVo.chgState === 2) {
- params = {
- "chargerId": chargerId * 1,
- "gunNo": guncode,
- }
- }
- let that = this
- uni.showModal({
- title: `确认发起${name}`,
- content: '',
- success: function(res) {
- if (res.confirm) { //点击确定
- //断电操作
- if (that.chargerInfoOneVo.chgState === 2 || that.chargerInfoTwoVo.chgState === 2) {
- that.$emit('ExchangeMessage', 'success', '断电指令已下发')
- that.$http.getgunStopCharge(params)
- .then(res => {
- that.$emit('ExchangeMessage', res.code === 0 ? 'success' : 'error',
- res.code === 0 ? '断电成功' : '断电失败')
- }).catch(err => {
- console.error(err)
- })
- }else if(that.chargerInfoOneVo.chgState === 0 || that.chargerInfoOneVo.chgState === 3 ||
- that.chargerInfoTwoVo.chgState === 0 || that.chargerInfoTwoVo.chgState === 3){
- //充电操作
- that.$emit('ExchangeMessage', 'success', '充电指令已下发')
- that.$http.getgunStartCharge(params)
- .then(res => {
- that.$emit('ExchangeMessage', res.code === 0 ? 'success' : 'error',
- res.code === 0 ? '充电成功' : '充电失败')
- }).catch(err => {
- console.error(err)
- })
- }
-
- } else if (res.cancel) {
- return false
- //用户点击取消按钮触发
- }
- }
- })
- }
- },
- computed: {
- statustext() {
- if (this.comState === 1) {
- return ['通讯正常', 'success']
- } else {
- return ['通讯异常', 'warning']
- }
- },
- statustextA() {
- if (this.chargerInfoOneVo.comState === 1) {
- return ['已连接', 'success']
- } else {
- return ['未连接', 'warning']
- }
- },
- statustextB() {
- if (this.chargerInfoTwoVo.comState === 1) {
- return ['已连接', 'success']
- } else {
- return ['未连接', 'warning']
- }
- },
- chargerState() {
- if (this.chargerInfoVo.chgState === 1) {
- return [3, ' 准备充电']
- } else if (this.chargerInfoVo.chgState === 2) {
- return [1, ' 充电中']
- } else if (this.chargerInfoVo.chgState === 3) {
- return [2, ' 充电完成']
- } else if (this.chargerInfoVo.chgState === 4) {
- return [8, ' 充电失败']
- } else if (this.chargerInfoVo.chgState === 5) {
- return [6, ' 预约']
- } else if (this.chargerInfoVo.chgState === 6) {
- return [5, ' 故障']
- } else if (this.chargerInfoVo.chgState === 0) {
- return [7, ' 空闲']
- } else {
- return [4, ' 无法获取']
- }
- },
- chargerStateA() {
- if (this.chargerInfoOneVo.chgState === 1) {
- return [3, ' 准备充电']
- } else if (this.chargerInfoOneVo.chgState === 2) {
- return [1, ' 充电中']
- } else if (this.chargerInfoOneVo.chgState === 3) {
- return [2, ' 充电完成']
- } else if (this.chargerInfoOneVo.chgState === 4) {
- return [8, ' 充电失败']
- } else if (this.chargerInfoOneVo.chgState === 5) {
- return [6, ' 预约']
- } else if (this.chargerInfoOneVo.chgState === 6) {
- return [5, ' 故障']
- } else if (this.chargerInfoOneVo.chgState === 0) {
- return [7, ' 空闲']
- } else {
- return [4, ' 无法获取']
- }
- },
- chargerStateB() {
- if (this.chargerInfoTwoVo.chgState === 1) {
- return [3, ' 准备充电']
- } else if (this.chargerInfoTwoVo.chgState === 2) {
- return [1, ' 充电中']
- } else if (this.chargerInfoTwoVo.chgState === 3) {
- return [2, ' 充电完成']
- } else if (this.chargerInfoTwoVo.chgState === 4) {
- return [8, ' 充电失败']
- } else if (this.chargerInfoTwoVo.chgState === 5) {
- return [6, ' 预约']
- } else if (this.chargerInfoTwoVo.chgState === 6) {
- return [5, ' 故障']
- } else if (this.chargerInfoTwoVo.chgState === 0) {
- return [7, ' 空闲']
- } else {
- return [4, ' 无法获取']
- }
- },
- chargerColor() {
- if (this.chargerInfoVo.chgState === 3) {
- return 'background-color:rgb(19,33,39,0.9);border:#477c62 solid 1px'
- } else if (this.chargerInfoVo.chgState === 1 || this.chargerInfoVo.chgState === 5) {
- return 'background-color:rgb(20,38,50,0.9);border:#4a9dab solid 1px'
- } else if (this.chargerInfoVo.chgState === 2 || this.chargerInfoVo.chgState === 0) {
- return ''
- } else {
- return 'background-color:rgb(32,25,36,0.9);border:#94494d solid 1px'
- }
- },
- chargerColorA() {
- if (this.chargerInfoOneVo.chgState === 3) {
- return 'background-color:rgb(19,33,39,0.9);border:#477c62 solid 1px'
- } else if (this.chargerInfoOneVo.chgState === 1 || this.chargerInfoOneVo.chgState === 5) {
- return 'background-color:rgb(20,38,50,0.9);border:#4a9dab solid 1px'
- } else if (this.chargerInfoOneVo.chgState === 2 || this.chargerInfoOneVo.chgState === 0) {
- return ''
- } else {
- return 'background-color:rgb(32,25,36,0.9);border:#94494d solid 1px'
- }
- },
- chargerColorB() {
- if (this.chargerInfoTwoVo.chgState === 3) {
- return 'background-color:rgb(19,33,39,0.9);border:#477c62 solid 1px'
- } else if (this.chargerInfoTwoVo.chgState === 1 || this.chargerInfoTwoVo.chgState === 5) {
- return 'background-color:rgb(20,38,50,0.9);border:#4a9dab solid 1px'
- } else if (this.chargerInfoTwoVo.chgState === 2 || this.chargerInfoTwoVo.chgState === 0) {
- return ''
- } else {
- return 'background-color:rgb(32,25,36,0.9);border:#94494d solid 1px'
- }
- },
- StateNum() {
- if (this.storeState === 0) {
- return '电池(无)'
- } else if (this.storeState === 1) {
- return '电池(有)'
- } else {
- return '异常'
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .storage-item {
- width: 347px;
- background-color: #0a101c;
- height: 598px;
- margin-right: 22px;
- border: 1px solid #0a101c;
- .container {
- padding: 20px 24px;
- color: #404a63;
- font-size: 14px;
- .container-header {
- display: flex;
- .battery {
- width: 112px;
- height: 32px;
- background: #1C263A;
- color: #DEEFF9;
- line-height: 32px;
- text-align: center;
- margin-bottom: 10px;
- }
- .a-gun {
- width: 78px;
- margin-left: 12px;
- }
- .b-gun {
- width: 78px;
- margin-left: 12px;
- }
- .showCodeActive {
- background-color: #636C97;
- }
- }
- .container-code {
- display: flex;
- margin-bottom: 10px;
- justify-content: space-between;
- .container-code-one {
- font-size: 16px;
- color: #91FDB9;
- }
- .success {
- color: #92fdb9;
- }
- .warning {
- color: #ff4d4f;
- }
- .container-code-two {
- display: flex;
- image {
- width: 60px;
- height: 24px;
- }
- image:first-child {
- margin-right: 20px;
- }
- }
- }
- .battery-info {
- display: flex;
- margin-top: 16px;
- justify-content: space-between;
- flex-wrap: wrap;
- margin-bottom: 20px;
- min-height: 116px;
- .vim {
- width: 100%;
- margin: 0px 0px 12px 0px;
- text {
- font-size: 14px;
- color: #414A63;
- }
- text:last-child {
- display: inline-block;
- margin-left: 10px;
- font-weight: 600;
- color: #fff;
- }
- }
- .info-right {
- width: 46%;
- height: 32px;
- line-height: 30px;
- text-align: center;
- font-size: 14px;
- font-weight: 500;
- color: white;
- background-color: #0e1f31;
- border: #1b71a4 solid 1px;
- .s1 {
- vertical-align: middle;
- width: 18px;
- height: 18px;
- }
- }
- .info-warning {
- width: 46%;
- background-color: #201823;
- border: #834246 solid 1px;
- height: 34px;
- line-height: 32px;
- text-align: center;
- font-size: 14px;
- font-weight: 500;
- color: white;
- // img{
- // vertical-align: middle;
- // }
- }
- }
- .battery-charger {
- width: 100%;
- min-height: 228px;
- .nodata {
- position: relative;
- left: calc(50% - 33px);
- margin-top: 6vh;
- width: 66px;
- height: 66px;
- }
- }
- }
- .battery-charger-btn {
- display: flex;
- position: absolute;
- bottom: 20px;
- .Plug-gun-charging {
- width: 135px;
- height: 32px;
- background: #69B889;
- text-align: center;
- line-height: 32px;
- font-size: 16px;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #DEEFF9;
- }
- .Settings {
- background: #636C97;
- margin-left: 20px;
- }
- }
- }
- </style>
|