You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
4.3 KiB
111 lines
4.3 KiB
<!--monitor/pages/stationDetail/stationDetail.wxml-->
|
|
<wxs src="/wxs/util.wxs" module="util"></wxs>
|
|
<image src="../img/jksj_bg.png" class="top-bg" />
|
|
<view class="station-content">
|
|
<view class="top-data">
|
|
<view>
|
|
<view class="title1"><image src="../img/ssgl.png" class="ssgl" />实时功率(KW)</view>
|
|
<view>{{util.toFixedNum(detail.inverterData.pac, 3)}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="title1"><image src="../img/drfd.png" class="drfd"/>当日发电(KWh)</view>
|
|
<view>{{detail.inverterData.etd}}</view>
|
|
</view>
|
|
</view>
|
|
<!-- 发电信息 -->
|
|
<image src="../img/jksj_bg2.png" class="jksj_bg2" />
|
|
<view class="data-table">
|
|
<view>
|
|
<view>视在功率({{detail.inverterData.apparentPowerStr}})</view>
|
|
<view class="numb">{{util.toFixedNum(detail.inverterData.apparentPower,2)}}</view>
|
|
</view>
|
|
<view>
|
|
<view>功率因数</view>
|
|
<view class="numb">{{util.toFixedNum(detail.inverterData.powerFactor, 2)}}</view>
|
|
</view>
|
|
<view>
|
|
<view>无功功率({{detail.inverterData.reactivePowerStr}})</view>
|
|
<view class="numb">{{util.toFixedNum(detail.inverterData.reactivePower,2)}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="mt-20">日等效小时(h)</view>
|
|
<view class="numb">{{util.toFixedNum(detail.inverterData.pwHour,2)}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="mt-20">温度(℃)</view>
|
|
<view class="numb">{{detail.inverterData.temperature}}℃</view>
|
|
</view>
|
|
</view>
|
|
<!-- 设备信息 -->
|
|
<view class="info-list-box">
|
|
<view class="head-tit"><image src="../img/base.png" class="ssgl" />设备信息 </view>
|
|
<view class="info-cont">
|
|
<view class="info-list">
|
|
<view class="left-title">设备名称</view>
|
|
<view class="right">{{detail.name}}</view>
|
|
</view>
|
|
<view class="info-list">
|
|
<view class="left-title">S/N码</view>
|
|
<view class="right">{{detail.sn}}</view>
|
|
</view>
|
|
<view class="info-list">
|
|
<view class="left-title">故障代码</view>
|
|
<view class="right">{{detail.faultCode}}</view>
|
|
</view>
|
|
<view class="info-list">
|
|
<view class="left-title">采集器S/N</view>
|
|
<view class="right">{{detail.inverterData.collectorSn}}</view>
|
|
</view>
|
|
<view class="info-list">
|
|
<view class="left-title">品牌</view>
|
|
<view class="right">
|
|
<block wx:if="{{detail.brand == '0'}}">锦浪</block>
|
|
<block wx:if="{{detail.brand == '1'}}">爱士惟</block>
|
|
<block wx:if="{{detail.brand == '2'}}">固德威</block>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 设备数据 -->
|
|
<view class="info-list-box mt-10">
|
|
<view class="head-tit"><image src="../img/sbsj.png" class="sbsj" />设备数据 </view>
|
|
<view class="info-cont">
|
|
<view class="cont-table">
|
|
<view class="tab-title">交流</view>
|
|
<view class="tab-head">
|
|
<view></view>
|
|
<view class="flex1">电压</view>
|
|
<view class="flex1">电流</view>
|
|
<view class="flex1" wx:if="{{detail.brand == '0'}}">频率</view>
|
|
<view class="flex1" wx:else>功率</view>
|
|
</view>
|
|
<view class="tab-body">
|
|
<view wx:for="{{uvwList}}" wx:key="index">
|
|
<view>{{item.name}}</view>
|
|
<view class="flex1">{{item.dy}}V</view>
|
|
<view class="flex1">{{item.dl}}A</view>
|
|
<view class="flex1" wx:if="{{detail.brand == '0'}}">{{item.hz}}</view>
|
|
<view class="flex1" wx:else>{{util.toFixedNum(item.dl * item.dy, 3)}}W</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="cont-table mt-20">
|
|
<view class="tab-title">直流</view>
|
|
<view class="tab-head">
|
|
<view></view>
|
|
<view class="flex1">电压</view>
|
|
<view class="flex1">电流</view>
|
|
<view class="flex1">功率</view>
|
|
</view>
|
|
<view class="tab-body">
|
|
<view wx:for="{{pvList}}" wx:key="index">
|
|
<view>{{item.name}}</view>
|
|
<view class="flex1">{{item.dy}}V</view>
|
|
<view class="flex1">{{item.dl}}A</view>
|
|
<view class="flex1">{{util.toFixedNum(item.dl * item.dy, 3)}}W</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |