| | |
| | | computed: { |
| | | acinVolA() { |
| | | let acdc = this.data.acdc; |
| | | let { routeNum } = this.data.pwrinf; |
| | | if (1 == routeNum) { |
| | | return acdc.acin1Vola; |
| | | } |
| | | return acdc.acin1Vola + '/' + acdc.acin2Vola; |
| | | }, |
| | | acinVolB() { |
| | | let acdc = this.data.acdc; |
| | | let { routeNum } = this.data.pwrinf; |
| | | if (1 == routeNum) { |
| | | return acdc.acin1Volb; |
| | | } |
| | | return acdc.acin1Volb + '/' + acdc.acin2Volb; |
| | | }, |
| | | acinVolC() { |
| | | let acdc = this.data.acdc; |
| | | let { routeNum } = this.data.pwrinf; |
| | | if (1 == routeNum) { |
| | | return acdc.acin1Volc; |
| | | } |
| | | return acdc.acin1Volc + '/' + acdc.acin2Volc; |
| | | }, |
| | | acinCurrA() { |
| | | let acdc = this.data.acdc; |
| | | return acdc.acin1Curra + '/' + acdc.acin2Curra; |
| | | return acdc.acin1Curra; |
| | | }, |
| | | acinCurrB() { |
| | | let acdc = this.data.acdc; |
| | | return acdc.acin1Currb + '/' + acdc.acin2Currb; |
| | | return acdc.acin1Currb; |
| | | }, |
| | | acinCurrC() { |
| | | let acdc = this.data.acdc; |
| | | return acdc.acin1Currc + '/' + acdc.acin2Currc; |
| | | return acdc.acin1Currc; |
| | | }, |
| | | battState() { |
| | | let battInf = this.data.battInf; |
| | |
| | | } |
| | | }, |
| | | mounted() { |
| | | console.log(this.data); |
| | | // console.log(this.data); |
| | | } |
| | | } |
| | | </script> |
| | |
| | | display: flex; |
| | | } |
| | | } |
| | | |
| | | .cur-point { |
| | | user-select: none; |
| | | cursor: pointer; |