tempDetails.wxml 1.1 KB

123456789101112131415161718192021222324252627
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isQuery="{{true}}" title="温度详情"></cu-custom>
  3. <view class="down-div">
  4. <view class="allforrecord" wx:if="{{tempLineConcat.length!=0}}">
  5. <view class="forrecord" style="margin-bottom: 10rpx;position: fixed;top:{{app.globalData.CustomBar}}px">
  6. <view class="ifSend">
  7. <text style="color: #222;">时间</text>
  8. </view>
  9. <view class="name">
  10. <view class="goodsName">
  11. <text style="color: #222;">温度</text>
  12. </view>
  13. </view>
  14. </view>
  15. <view wx:for="{{tempLineConcat}}" wx:for-item="item" wx:for-index="index" wx:key="index" class="forrecord">
  16. <view class="ifSend">
  17. <text>{{item.createTime || '--'}}</text>
  18. </view>
  19. <view class="name">
  20. <view class="goodsName">
  21. <text>{{item.temp+'℃' || '--'}}</text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- <image class="mingxi" src="../../icon/mingxi.png" wx:else></image> -->
  27. </view>