123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view class="content">
-
-
- <view class="contBox">
-
- <view class="carBox">
- <view class="carTop">
- <view class="plateNumber">鲁A29090</view>
- <image src="../../static/img/jt.png" mode="" class="carJt"></image>
- </view>
- <view class="carModel">东风日产-轩逸-2022款 e-POWE</view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- iStatusBarHeight:'',
- token:'',
- uid:'',
- }
- },
- onLoad(opt) {
-
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
-
-
- },
-
- methods: {
- getList(){
- //console.log("list")
- },
-
- },
- onPullDownRefresh() {
- this.page = 1;
- this.getList()
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- }
- }
- </script>
- <style scoped>
- .content{
- min-height: 100vh;
- background: #F6F6F6;
- }
- .contBox{
- padding: 0 24rpx;
- }
- .carBox{
- background: #ffffff;
- padding: 30rpx 20rpx;
- border-radius: 10rpx;
- margin-top: 20rpx;
- }
- .plateNumber{
- font-size: 30rpx;
- color: #3C3C3C;
- }
- .carJt{
- width: 24rpx;
- height: 24rpx;
- }
- </style>
|