unknown
8 months ago
15 changed files with 60 additions and 212 deletions
-
3config/api.js
-
4config/request.js
-
4pages/carEntry/operaAppointment/comp/coachInfo.vue
-
6pages/carEntry/operaAppointment/comp/step1.vue
-
25pages/carEntry/operaAppointment/operaAppointment.vue
-
2pages/indexEntry/findShcool/coachComment/coachInfo.vue
-
26pages/indexEntry/signIn/signAndOut/signAndOut.vue
-
3pages/mineEntry/myAppointment/comp/comp.scss
-
62pages/mineEntry/myAppointment/detail/detail.vue
-
57pages/mineEntry/myAppointment/detail/examin.vue
-
61pages/mineEntry/myAppointment/detail/imitate.vue
-
8pages/mineEntry/myAppointment/detail/opera.vue
-
2pages/mineEntry/myAppointment/myAppointment.vue
-
1pages/mineEntry/myForecastName/myForecastName.vue
-
BINstatic/images/car/coachIcon.png
@ -1,57 +0,0 @@ |
|||
<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> |
@ -1,61 +0,0 @@ |
|||
<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> |
After Width: 32 | Height: 28 | Size: 957 B |
Write
Preview
Loading…
Cancel
Save
Reference in new issue