my-temperature.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="">
  3. <view @click="goDetail(item)" class="mine_order_statue" >
  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. </view>
  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. goDetail(item){
  41. uni.navigateTo({
  42. url:"/pages/index/my-temperature/deatil"
  43. })
  44. }
  45. }
  46. };
  47. </script>
  48. <style lang="scss" scoped>
  49. .mine_order_statue {
  50. margin: 18upx 14upx 0;
  51. background: #fff;
  52. padding: 10upx 20upx;
  53. border-radius: 20rpx;
  54. image{
  55. background-color: #FFFFFF;
  56. width: 160rpx;
  57. height: 160rpx;
  58. }
  59. }
  60. </style>