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?coachType=3&tit=模拟器老师&')">去评价</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> </view> </template>
<script> </script>
<style lang="scss" scoped> @import './comp.scss'; </style>
|