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.
61 lines
2.0 KiB
61 lines
2.0 KiB
<template>
|
|
<!-- 模拟器 -->
|
|
<view class="consultItem">
|
|
<view class="top_row">
|
|
<view class="flex">
|
|
<view class="tag">模拟器</view>
|
|
<view class="schoolName">{{info.name}}</view>
|
|
</view>
|
|
<view class="status">
|
|
<view class="text" v-if="info.recordStatus==9">已取消</view>
|
|
<view class="text" v-else>{{statusTxt[info.recordStatus]}}</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_banxing.png" mode=""></image>
|
|
</view>
|
|
<view class="lab">模拟器编号</view>
|
|
</view>
|
|
<view class="name">{{info.deviceNum}}</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&&info.recordStatus==9">取消时间:{{ $u.timeFormat(info.cancelTime, 'yyyy-mm-dd hh:MM:ss')}}</view>
|
|
<view class="date" v-if="info.recordStatus==2">完成时间:{{$u.timeFormat(info.signOutTime, 'yyyy-mm-dd hh:MM:ss')}}</view>
|
|
<view class="date" v-if="info.recordStatus==2">核销人员:目前没有字段</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>
|