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="consultItem"> <view class="top_row"> <view class="flex"> <view class="tag">科目三考场模拟</view> <view class="schoolName">xx考场</view> </view> <view class="status"> <view class="text">待处理</view> <view class="icon"> <u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;"></u-icon> </view> </view> </view> <view class="target"> <view class="row"> <view class="leftLab"> <view class="icon"> <image src="@/static/images/car/ic_chexing.png" mode=""></image> </view> <view class="lab">所选车型</view> </view> <view class="name">C1</view> </view> <view class="row"> <view class="leftLab"> <view class="icon"> <image src="@/static/images/car/ic_shijian.png" mode=""></image> </view> <view class="lab">预约时间</view> </view> <view class="name">2023/08/08 10:00:00</view> </view> </view> <view class="border_bottom"> <view class="dateBox"> <view class="date">提交预约时间:2022-01-04</view> </view> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> @import '../comp/comp.scss'; </style>
|