1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <van-sticky>
- <header class="header_custom" wx:if="{{headerShow}}" customClass="{{true}}">
- <view slot="content" class="header-title">
- <view class='goback' bindtap="goBack">
- <van-icon name="arrow-left" size="20px" color="#ffffff"/>
- </view>
- </view>
- </header>
- </van-sticky>
- <view class="userbg">
- <image src="../../static/images/{{bgSeasonType}}.png" />
- <view class="flex_row usermsg">
- <view class="userimg">
- <open-data type="userAvatarUrl"></open-data>
- </view>
- <open-data type="userNickName"></open-data>
- </view>
- </view>
- <view class="adjust_list flex_row">
- <view class="list_item flex_column" bindtap="gotoAdjustlog" data-type="time">
- <text>{{spaceFeedbackNum || 0}}</text>
- <text>共调节数量</text>
- </view>
- <view class="list_item flex_column" bindtap="gotoSpacelog" data-type="space">
- <text>{{adjustSpaceNum || 0}}</text>
- <text>曾调节空间</text>
- </view>
- </view>
- <view class="chart_box">
- <view class="btn_group flex_row">
- <block wx:for="{{seasonList}}">
- <view wx:key="index" bindtap="changeSeason" data-index="{{item.id}}" class="flex_row {{seasonType===item.id?'active':''}}">
- {{item.name}}
- </view>
- </block>
- </view>
- <view class="lenged_box flex_row">
- <view class="lenged_item flex_row">
- <view class="leng">冷</view>
- <view class="re">热</view>
- </view>
- </view>
- <view class="logchart" hidden="{{nochartDate}}">
- <f2 class="f2-chart" id="column-dom" canvas-id="column" opts="{{opts}}" />
- </view>
- <view class="logchart flex_row" hidden="{{!nochartDate}}">
- 暂无数据
- </view>
- </view>
- <view class="adjust_record flex_row" bindtap="gotoAdjustlog">
- <view>
- <image src="../../static/images/adjust-icon.png" />
- 调节记录
- </view>
- <view >
- <van-icon name="arrow" color="#c3c3c3" />
- </view>
- </view>
- <view class="adjust_record adjust_feedback flex_row" bindtap="gotoFeedback">
- <view>
- <image src="../../static/images/feedback-icon.png" />
- 问题反馈
- </view>
- <view>
- <van-icon name="arrow" color="#c3c3c3"/>
- </view>
- </view>
|