my-temperature.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="">
  3. <navigator url="./deatil" class="mine_order_statue" v-for="(item,index) in 6" :key="index">
  4. <view class="flex justify-between" style="padding: 10rpx 0 10rpx 10rpx ;">
  5. <view class="flex">
  6. <image mode="heightFix" src="http://139.9.103.171:1888/miniofile/xlyq/del/ldx.png" ></image>
  7. <view class="flex flex-direction justify-around padding-left-30">
  8. <view class="">
  9. <text class="text-bold">姓名:</text>
  10. <text>李德希</text>
  11. </view>
  12. <view class="">
  13. <text class="text-bold">温度:</text>
  14. <text>36.5 ℃</text>
  15. </view>
  16. <view class="">
  17. <text class="text-bold">测温时间:</text>
  18. <text>2020-12-15 14:18:56</text>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="flex align-center justify-center">
  23. <text class="cuIcon-right"></text>
  24. </view>
  25. </view>
  26. </navigator>
  27. <u-divider bg-color="#f1f1f1" height="100">没有更多了</u-divider>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. name: '',
  33. data() {
  34. return {
  35. };
  36. },
  37. onLoad() {
  38. },
  39. methods:{
  40. }
  41. };
  42. </script>
  43. <style lang="scss" scoped>
  44. .mine_order_statue {
  45. margin: 18upx 14upx 0;
  46. background: #fff;
  47. padding: 10upx 20upx;
  48. border-radius: 20rpx;
  49. image{
  50. background-color: #FFFFFF;
  51. width: 160rpx;
  52. height: 160rpx;
  53. }
  54. }
  55. </style>