You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <topNavbar title="我的排课详情"></topNavbar> <view class="pad"> <view class="card"> <view class="info"> <view class="row"> <view class="lab">训练科目:</view> <view class="val">科目二</view> </view> <view class="row"> <view class="lab">预约车辆:</view> <view class="val">02号车(浙A98299)</view> </view> <view class="row"> <view class="lab">开放范围:</view> <view class="val">我的学员</view> </view> </view> </view> <view class="h1">预约学员</view> <view class="ul"> <view class="li" v-for="(item,index) in 4" :key="index"> <view class="name">张三三 <text> 17628378888</text></view> <view class="time">提交预约时间:2023/08/06 09:12:33</view> </view> </view> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> .pad { .card { padding: 0 28rpx; .info { padding: 20rpx 0; .row { display: flex; font-size: 28rpx; color: #333; padding: 20rpx 0; .lab { width: 150rpx; } .val { } } } } .h1 { line-height: 108rpx; } .ul { .li { height: 180rpx; display: flex; flex-direction: column; background: #FFFFFF; border-radius: 16rpx; justify-content: center; margin-bottom: 20rpx; padding: 0 28rpx; .name { font-size: 32rpx; font-weight: 600; text { font-weight: 400; margin-left: 10rpx; } } .time { font-size: 28rpx; margin-top: 24rpx; color: #ADADAD; } } } } </style>
|