| 123456789101112131415161718192021222324252627 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isQuery="{{true}}" title="温度详情"></cu-custom>
- <view class="down-div">
- <view class="allforrecord" wx:if="{{tempLineConcat.length!=0}}">
- <view class="forrecord" style="margin-bottom: 10rpx;position: fixed;top:{{app.globalData.CustomBar}}px">
- <view class="ifSend">
- <text style="color: #222;">时间</text>
- </view>
- <view class="name">
- <view class="goodsName">
- <text style="color: #222;">温度</text>
- </view>
- </view>
- </view>
- <view wx:for="{{tempLineConcat}}" wx:for-item="item" wx:for-index="index" wx:key="index" class="forrecord">
- <view class="ifSend">
- <text>{{item.createTime || '--'}}</text>
- </view>
- <view class="name">
- <view class="goodsName">
- <text>{{item.temp+'℃' || '--'}}</text>
- </view>
- </view>
- </view>
- </view>
- <!-- <image class="mingxi" src="../../icon/mingxi.png" wx:else></image> -->
- </view>
|