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="comp"> <!-- 学习状态 --> <view class="learnStatus"> <view class="card mt20"> <view class="flex-b" > <view class="lab">实操预约</view> <view class="link-arrow" @click="$goPage('/pages/carEntry/operaAppointment/operaAppointment?subject=3')"> <view class="txt">去预约</view> <u-icon name="arrow-right" color="#3776FF" :size="16"></u-icon> </view> <!-- <view class="btn" @click.stop="$goPage('/pages/carEntry/evaluate/evaluate?subject=2&coachType=1')">去学习</view> --> </view> </view> <view class="h1"><text class="active">学习状态</text></view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三考试成绩已通过</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="flex-b bg"> <view class="row"> <view class="text">考试成绩:97分</view> <view class="btn" @click="$goPage('/pages/carEntry/evaluate/evaluate?subject=3&coachType=1')">去评价</view> </view> </view> </view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三考试预约成功</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="bg"> <view class="row"> <view class="text">考试场地:某某场地</view> </view> <view class="row"> <view class="text">考试时间:2023/08/23 10:00:00 </view> </view> </view> </view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三考试预约受理中</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="bg"> <view class="row"> <view class="text">考试场地:某某场地</view> </view> <view class="row"> <view class="text">考试时间:2023/08/23 10:00:00 </view> </view> </view> </view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三学习进度已通过</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="bg"> <view class="row bg"> <view class="text">前往"12123"APP预约考试</view> <view class="btn">去预约</view> </view> </view> </view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三实操训练已核销</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="bg"> <view class="row">预约场地:某某场地</view> <view class="row">预约教练:王一宝</view> <view class="row">预约车辆:浙A66666</view> <view class="row">预约时间:2023/08/09 22:52:12</view> <view class="row">核销时间:2023/08/09 22:52:12</view> </view> </view> <view class="card"> <view class="flex-b padTb"> <view class="lab">科目三实操训练已预约</view> <view class="date">2023/08/09 22:52:12</view> </view> <view class="bg"> <view class="row">预约场地:某某场地</view> <view class="row">预约教练:王一宝</view> <view class="row">预约车辆:浙A66666</view> <view class="row">预约时间:2023/08/09 22:52:12</view> </view> </view> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> @import './comp.scss'; </style>
|