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.

30 lines
797 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<view class="head-tit">首次发电日期:{{listObj.firstGenerate}}</view>
<!-- 列表 -->
<view class="table-head">
<view>日期/发电量</view>
<view>日期</view>
<view>发电量KWh</view>
</view>
<view class="table-body">
<view class="list">
<view>第一天</view>
<view>{{listObj.firstDay}}</view>
<view>{{listObj.firstDayElectric}}</view>
</view>
<view class="list">
<view>第二天</view>
<view>{{listObj.secondDay}}</view>
<view>{{listObj.secondDayElectric}}</view>
</view>
<view class="list">
<view>第三天</view>
<view>{{listObj.thirdlyDay}}</view>
<view>{{listObj.thirdlyDayElectric}}</view>
</view>
</view>
<!-- 底部按钮 -->
<view class="footer">
<view style="flex: 1;" bindtap="back">返回</view>
</view>