maintenanceDetail.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="content">
  3. <view class="contBox">
  4. <view class="carBox">
  5. <view class="carTop">
  6. <view class="plateNumber">鲁A29090</view>
  7. <image src="../../static/img/jt.png" mode="" class="carJt"></image>
  8. </view>
  9. <view class="carModel">东风日产-轩逸-2022款 e-POWE</view>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. iStatusBarHeight:'',
  19. token:'',
  20. uid:'',
  21. }
  22. },
  23. onLoad(opt) {
  24. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  25. },
  26. methods: {
  27. getList(){
  28. //console.log("list")
  29. },
  30. },
  31. onPullDownRefresh() {
  32. this.page = 1;
  33. this.getList()
  34. setTimeout(function() {
  35. uni.stopPullDownRefresh();
  36. }, 1000);
  37. }
  38. }
  39. </script>
  40. <style scoped>
  41. .content{
  42. min-height: 100vh;
  43. background: #F6F6F6;
  44. }
  45. .contBox{
  46. padding: 0 24rpx;
  47. }
  48. .carBox{
  49. background: #ffffff;
  50. padding: 30rpx 20rpx;
  51. border-radius: 10rpx;
  52. margin-top: 20rpx;
  53. }
  54. .plateNumber{
  55. font-size: 30rpx;
  56. color: #3C3C3C;
  57. }
  58. .carJt{
  59. width: 24rpx;
  60. height: 24rpx;
  61. }
  62. </style>