| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <view class="dailyreport">
- <view class="owner_type1">
- <picker bindcolumnchange="bindcolumn" bindchange="bindpowerChange" value="{{powerindex}}" range="{{powerdata}}" range-key="powerstationName">
- <view class="calculation_top">
- <view class="calculation_left">
- <text style="color: red;margin-right: 8rpx;">*</text>电站
- </view>
- <view class="event">
- <view class="uni-input" wx:if="{{powerdata[powerindex].powerstationName}}">{{powerdata[powerindex].powerstationName}}</view>
- <view class="uni-inputcolor" wx:else>请选择电站</view>
- <t-icon name="chevron-right" size="40rpx" data-name="chevron-right"/>
- </view>
- </view>
- </picker>
- </view>
- <view class="owner_type1">
- <picker mode="date" value="{{datestart}}" fields="month" start="2000-01-01" end="2060-09-01" bindchange="bindstartChange">
- <view class="calculation_top">
- <view class="calculation_left">
- <text style="color: red;margin-right: 8rpx;">*</text>
- 月份
- </view>
- <view class="event">
- <view class="uni-inputcolor" wx:if="{{datestart==''}}">请选择</view>
- <view class="uni-input" wx:else>{{datestart}}</view>
- <t-icon name="chevron-right" size="40rpx" data-name="chevron-right"/>
- </view>
- </view>
- </picker>
- </view>
- <view class="owner_type1x">
- <view class="calculation_strategy">
- xlsx文件上传
- </view>
-
- <view class="event">
- <view class="switch-container">
- <view class="owner_easyinput1">
-
- <!-- <image class="calculation_image" src="{{file.path}}" mode="aspectFit" data-src="{{item}}" bindtap="previewImage"/> -->
- <view class="calculation_usebox1" bind:tap="bindtoXlsx">
- <t-icon name="add" size="100rpx" data-name="add"/>
- </view>
- </view>
-
- </view>
- </view>
- </view>
-
- <view class="owner_type1x1">
- <view wx:for="{{filedata}}" wx:key="path">{{item.name}}</view>
- </view>
- <view class="block">
- <view>日报上传历史</view>
- <view style="height: 20rpx;"></view>
- <view class="block_box">
- <t-steps layout="vertical" readonly theme="dot" current="{{powerstationdata.length}}">
- <t-step-item wx:for="{{powerstationdata}}" wx:key="index" title="{{item.partnerName}} - {{item.datatime}}" content="{{item.fisname}}"/>
- </t-steps>
- <view class="available" wx:if="{{powerstationdata.length==0}}">
- <image src="https://esos-iot.com/myminio/project/9efa1691f71a48b6ae20648c0a2dae56.png" mode="aspectFit"/>
- </view>
- </view>
-
- </view>
- <view class="button">
- <view class="button_upload" bind:tap="uploadXlsxFile">上传</view>
- </view>
- </view>
- <!--
-
- -->
|