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.
57 lines
1.7 KiB
57 lines
1.7 KiB
<template>
|
|
<!-- 模拟器 -->
|
|
<view class="consultItem">
|
|
<view class="top_row">
|
|
<view class="flex">
|
|
<view class="tag" v-if="info.subject==2">科目二考场模拟</view>
|
|
<view class="tag" v-if="info.subject==3">科目三考场模拟</view>
|
|
<view class="schoolName">{{info.examSiteName}}</view>
|
|
</view>
|
|
<view class="status">
|
|
<view class="text" v-if="info.recordStatus==9">已取消</view>
|
|
<view class="text" v-else>{{statusTxt[info.recordStatus]}}</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">{{info.trainType}}</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">{{ info.classTime }}</view>
|
|
</view>
|
|
</view>
|
|
<view class="border_bottom">
|
|
<view class="dateBox">
|
|
<view class="date">提交预约时间:{{ $u.timeFormat(info.createTime, 'yyyy-mm-dd hh:MM:ss')}}</view>
|
|
<view class="date" v-if="info.cancelTime">取消时间:{{ $u.timeFormat(info.cancelTime, 'yyyy-mm-dd hh:MM:ss')}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['info'],
|
|
data() {
|
|
return {
|
|
statusTxt: ['未签到','已签到','已签退','旷课','已取消',''],//0:未签到,1:已签到,2:已签退,3:旷课,9:已取消
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '../comp/comp.scss';
|
|
</style>
|