-
5common/css/app.scss
-
51components/searchRow/searchRow.vue
-
30components/topNavbar/topNavbar.vue
-
14pages.json
-
156pages/indexEntry/findShcool/findShcool.vue
-
0pages/indexEntry/index.vue
-
48pages/tabbar/index/index.vue
-
109pages/tabbar/learnCar/comp/comp.scss
-
62pages/tabbar/learnCar/comp/subject0.vue
-
83pages/tabbar/learnCar/comp/subject1.vue
-
104pages/tabbar/learnCar/comp/subject2.vue
-
103pages/tabbar/learnCar/comp/subject3.vue
-
75pages/tabbar/learnCar/comp/subject4.vue
-
149pages/tabbar/learnCar/index.vue
-
290pages/tabbar/mine/index.vue
-
BINstatic/images/index/chain.png
-
0static/images/userCenter/biangen.png
-
0static/images/userCenter/btn_xueche_nor.png
-
0static/images/userCenter/ic_chaxun.png
-
0static/images/userCenter/ic_dingdan.png
-
0static/images/userCenter/ic_erweima.png
-
BINstatic/images/userCenter/ic_gengduo.png
-
0static/images/userCenter/ic_hetong.png
-
0static/images/userCenter/ic_pingjia.png
-
0static/images/userCenter/ic_shenghuo.png
-
0static/images/userCenter/ic_shoucang.png
-
0static/images/userCenter/ic_shuju.png
-
0static/images/userCenter/ic_yuyue.png
-
0static/images/userCenter/shenqingtuixue.png
-
0static/images/userCenter/tgzhuanxiao.png
@ -0,0 +1,51 @@ |
|||||
|
<template> |
||||
|
<view class="searchBg"> |
||||
|
<view class="flex"> |
||||
|
<view class="searchIcon"> |
||||
|
<image src="@/static/images/index/searchIcon.png" mode=""></image> |
||||
|
</view> |
||||
|
<view class="inputBox"> |
||||
|
<u--input :placeholder="placeholder" border="none" clearable v-model="keywords" :color="'#fff'" |
||||
|
placeholderClass="placeholderClassFFF"></u--input> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
props: ['placeholder'], |
||||
|
data() { |
||||
|
return { |
||||
|
keywords: '' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.searchBg { |
||||
|
background: #8ABAED; |
||||
|
width: 100%; |
||||
|
height: 72rpx; |
||||
|
border-radius: 16rpx; |
||||
|
line-height: 72rpx; |
||||
|
|
||||
|
.flex { |
||||
|
height: 100%; |
||||
|
padding: 0 28rpx; |
||||
|
|
||||
|
.searchIcon { |
||||
|
width: 40rpx; |
||||
|
height: 40rpx; |
||||
|
} |
||||
|
|
||||
|
.inputBox { |
||||
|
padding-left: 28rpx; |
||||
|
flex: 1; |
||||
|
color: #fff; |
||||
|
font-size: 28rpx; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,30 @@ |
|||||
|
<template> |
||||
|
<view class="topNavbar"> |
||||
|
<u-navbar |
||||
|
:leftText="title" |
||||
|
:autoBack="true" |
||||
|
:bgColor="bgColor" |
||||
|
:leftIconColor="leftIconColor" |
||||
|
:fixed="false" |
||||
|
> |
||||
|
</u-navbar> |
||||
|
<view class="pad"> |
||||
|
|
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
props: ['title'], |
||||
|
data() { |
||||
|
return { |
||||
|
bgColor: 'transparent', |
||||
|
leftIconColor: '#fff' |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style> |
||||
|
</style> |
@ -0,0 +1,156 @@ |
|||||
|
<template> |
||||
|
<view class="pageBgImg"> |
||||
|
<topNavbar title="找驾校"></topNavbar> |
||||
|
<view class="pad"> |
||||
|
<view class="searchCon"> |
||||
|
<searchRow placeholder="搜索驾校、教练…"></searchRow> |
||||
|
</view> |
||||
|
<view class="navBox"> |
||||
|
<view class="tab" v-for="(item,index) in tabData" :key="index" :class="{active: index==0}"> |
||||
|
{{ item.text }}</view> |
||||
|
<view class="screen"> |
||||
|
<view class="txt">筛选</view> |
||||
|
<view class="screenIcon"> |
||||
|
<image src="../../../static/images/tabbar/wd.png" mode=""></image> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
|
||||
|
<view class="ul"> |
||||
|
<view class="li"> |
||||
|
<view class="img"> |
||||
|
<image src="../../../static/images/logo.png" mode=""></image> |
||||
|
</view> |
||||
|
<view class="textCon"> |
||||
|
<view class="name">江西海正驾校</view> |
||||
|
<view class="starBox"> |
||||
|
<u-rate active-color="#1989FA" inactive-color="#1989FA" gutter="20"></u-rate> |
||||
|
<view class="num">4.9分</view> |
||||
|
</view> |
||||
|
<view class="credit">行业信用AA</view> |
||||
|
<view class="adr">距您1000.99公里</view> |
||||
|
</view> |
||||
|
<view class="pozPhone"> |
||||
|
<image src="@/static/images/tabbar/sy.png" mode=""></image> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
data() { |
||||
|
return { |
||||
|
tabData: [{ |
||||
|
text: '全部', |
||||
|
id: 0 |
||||
|
}, |
||||
|
{ |
||||
|
text: '场地优先', |
||||
|
id: 0 |
||||
|
}, |
||||
|
{ |
||||
|
text: '距离优先', |
||||
|
id: 0 |
||||
|
}, |
||||
|
{ |
||||
|
text: '好评优先', |
||||
|
id: 0 |
||||
|
}, |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.pageBgImg { |
||||
|
width: 100%; |
||||
|
min-height: 100vh; |
||||
|
.searchCon { |
||||
|
padding: 24rpx 0; |
||||
|
} |
||||
|
.navBox { |
||||
|
display: flex; |
||||
|
justify-content: space-between; |
||||
|
.tab { |
||||
|
display: flex; |
||||
|
font-size: 28rpx; |
||||
|
color: #fff; |
||||
|
|
||||
|
&.active { |
||||
|
position: relative; |
||||
|
|
||||
|
&::before { |
||||
|
content: ''; |
||||
|
position: absolute; |
||||
|
bottom: -14rpx; |
||||
|
left: 50%; |
||||
|
transform: translateX(-50%); |
||||
|
width: 50rpx; |
||||
|
height: 4rpx; |
||||
|
background-color: #fff; |
||||
|
border-radius: 0 0 2rpx 2rpx; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
} |
||||
|
|
||||
|
.screen { |
||||
|
width: 150rpx; |
||||
|
display: flex; |
||||
|
justify-content: center; |
||||
|
align-items: center; |
||||
|
position: relative; |
||||
|
&::before { |
||||
|
content: ''; |
||||
|
position: absolute; |
||||
|
left: 0; |
||||
|
top: 10rpx; |
||||
|
width: 1px; |
||||
|
background: #fff; |
||||
|
height: 26rpx; |
||||
|
|
||||
|
} |
||||
|
.txt { |
||||
|
font-size: 28rpx; |
||||
|
color: #fff; |
||||
|
margin-right: 10rpx; |
||||
|
} |
||||
|
|
||||
|
.screenIcon { |
||||
|
width: 40rpx; |
||||
|
height: 40rpx; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.ul { |
||||
|
.li { |
||||
|
.img { |
||||
|
img {} |
||||
|
} |
||||
|
|
||||
|
.textCon { |
||||
|
.name {} |
||||
|
|
||||
|
.starBox { |
||||
|
u-rate {} |
||||
|
|
||||
|
.num {} |
||||
|
} |
||||
|
|
||||
|
.credit {} |
||||
|
|
||||
|
.adr {} |
||||
|
} |
||||
|
|
||||
|
.pozPhone { |
||||
|
img {} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,109 @@ |
|||||
|
|
||||
|
|
||||
|
|
||||
|
.h1 { |
||||
|
font-size: 32rpx; |
||||
|
color: #333; |
||||
|
font-weight: 500; |
||||
|
position: relative; |
||||
|
padding: 0 0 0 32rpx; |
||||
|
line-height: 108rpx; |
||||
|
height: 108rpx; |
||||
|
&::before { |
||||
|
position: absolute; |
||||
|
content: ''; |
||||
|
width: 8rpx; |
||||
|
height: 32rpx; |
||||
|
background: #1F6EFA; |
||||
|
border-radius: 4rpx; |
||||
|
top: 50%; |
||||
|
left: 0; |
||||
|
transform: translateY(-50%); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.card { |
||||
|
background: #FFFFFF; |
||||
|
border-radius: 16rpx; |
||||
|
padding: 28rpx 32rpx; |
||||
|
margin-bottom: 20rpx; |
||||
|
&.mb0 { |
||||
|
margin-bottom: 0; |
||||
|
} |
||||
|
.flex-b { |
||||
|
align-items: center; |
||||
|
|
||||
|
.lab { |
||||
|
font-size: 28rpx; |
||||
|
color: #333; |
||||
|
} |
||||
|
|
||||
|
.btn { |
||||
|
width: 144rpx; |
||||
|
height: 56rpx; |
||||
|
background: #1989FA; |
||||
|
border-radius: 8rpx; |
||||
|
font-size: 28rpx; |
||||
|
color: #fff; |
||||
|
text-align: center; |
||||
|
line-height: 56rpx; |
||||
|
&.disable { |
||||
|
opacity: 0.3; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
.date { |
||||
|
font-size: 28rpx; |
||||
|
color: #333; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.learnStatus { |
||||
|
.more { |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
.txt { |
||||
|
font-size: 24rpx; |
||||
|
color: #686B73; |
||||
|
} |
||||
|
|
||||
|
.moreIcon { |
||||
|
|
||||
|
} |
||||
|
} |
||||
|
.bg { |
||||
|
background: rgba(25,137,250,0.1); |
||||
|
border-radius: 16rpx; |
||||
|
margin-top: 22rpx; |
||||
|
padding: 20rpx 20rpx 0 20rpx; |
||||
|
.row { |
||||
|
padding-bottom: 20rpx; |
||||
|
display: flex; |
||||
|
justify-content: space-between; |
||||
|
width: 100%; |
||||
|
align-items: center; |
||||
|
&.oneBtn { |
||||
|
justify-content: center; |
||||
|
} |
||||
|
} |
||||
|
.text { |
||||
|
color: $themC; |
||||
|
font-size: 28rpx; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.tpsLine { |
||||
|
font-size: 24rpx; |
||||
|
color: #ADADAD; |
||||
|
border-top: 1px solid #E8E9EC; |
||||
|
margin-top: 20rpx; |
||||
|
padding-top: 18rpx; |
||||
|
} |
||||
|
.cancel { |
||||
|
font-size: 28rpx; |
||||
|
font-weight: 400; |
||||
|
color: #ADADAD; |
||||
|
margin-top: 22rpx; |
||||
|
text-decoration: underline; |
||||
|
} |
@ -0,0 +1,62 @@ |
|||||
|
<template> |
||||
|
<view class="comp"> |
||||
|
<!-- 学习内容 --> |
||||
|
<view class="learnCon"> |
||||
|
<view class="h1">学习内容</view> |
||||
|
<view class="card mb0"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">模拟器训练预约</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<!-- 学习状态 --> |
||||
|
<view class="learnStatus"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="h1">学习状态</view> |
||||
|
<view class="more"> |
||||
|
<view class="txt">查看全部</view> |
||||
|
<view class="moreIcon"> |
||||
|
<u-icon name="arrow-right" color="#686B73" size="12"></u-icon> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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">评价模拟器教学老师</view> |
||||
|
<view class="btn">去评价</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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">模拟器编号:00001</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> |
@ -0,0 +1,83 @@ |
|||||
|
<template> |
||||
|
<view class="comp"> |
||||
|
<!-- 学习内容 --> |
||||
|
<view class="learnCon"> |
||||
|
<view class="h1">学习内容</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">理论学习</view> |
||||
|
<view class="btn">去学习</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">理论VIP题库模拟</view> |
||||
|
<view class="btn disable">去学习</view> |
||||
|
</view> |
||||
|
<view class="tpsLine">待学时达标后方可学习</view> |
||||
|
</view> |
||||
|
<view class="card mb0"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">安全警示教育在线视频学习</view> |
||||
|
<view class="btn">去学习</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<!-- 学习状态 --> |
||||
|
<view class="learnStatus"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="h1">学习状态</view> |
||||
|
<view class="more"> |
||||
|
<view class="txt">查看全部</view> |
||||
|
<view class="moreIcon"> |
||||
|
<u-icon name="arrow-right" color="#686B73" size="12"></u-icon> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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/02 第一场 22</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">科目一学时已通过</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="flex-b bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">前往“12123”APP预约考试</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
@import './comp.scss'; |
||||
|
</style> |
@ -0,0 +1,104 @@ |
|||||
|
<template> |
||||
|
<view class="comp"> |
||||
|
<!-- 学习内容 --> |
||||
|
<view class="learnCon"> |
||||
|
<view class="h1">学习内容</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">实操训练</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card mb0"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">考场模拟训练</view> |
||||
|
<view class="btn disable">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<!-- 学习状态 --> |
||||
|
<view class="learnStatus"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="h1">学习状态</view> |
||||
|
<view class="more"> |
||||
|
<view class="txt">查看全部</view> |
||||
|
<view class="moreIcon"> |
||||
|
<u-icon name="arrow-right" color="#686B73" size="12"></u-icon> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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">考试成绩:100分</view> |
||||
|
<view class="btn">去评价</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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"> |
||||
|
<view class="lab">科目二学习进度已通过</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="flex-b bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">前往“12123”APP预约考试</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">科目二模拟训练已预约</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约科目:科目二</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约考场:某某考场</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">学驾车型:C1</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">车辆编号:2号车(浙A99988)</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约时间:2023/08/16 14:00</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">核销时间:2023/08/16 14:00</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="cancel">取消预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
@import './comp.scss'; |
||||
|
</style> |
@ -0,0 +1,103 @@ |
|||||
|
<template> |
||||
|
<view class="comp"> |
||||
|
<!-- 学习内容 --> |
||||
|
<view class="learnCon"> |
||||
|
<view class="h1">学习内容</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">实操训练</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card mb0"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">考场模拟训练</view> |
||||
|
<view class="btn disable">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<!-- 学习状态 --> |
||||
|
<view class="learnStatus"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="h1">学习状态</view> |
||||
|
<view class="more"> |
||||
|
<view class="txt">查看全部</view> |
||||
|
<view class="moreIcon"> |
||||
|
<u-icon name="arrow-right" color="#686B73" size="12"></u-icon> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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">考试成绩:100分</view> |
||||
|
<view class="btn">去评价</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<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"> |
||||
|
<view class="lab">科目三模拟训练已核销</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="flex-b bg"> |
||||
|
<view class="row oneBtn"> |
||||
|
<view class="btn">去评价</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">科目三模拟训练已预约</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约科目:科目三</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约考场:某某考场</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">学驾车型:C1</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">车辆编号:2号车(浙A99988)</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">预约时间:2023/08/16 14:00</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">核销时间:2023/08/16 14:00</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="cancel">取消预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
@import './comp.scss'; |
||||
|
</style> |
@ -0,0 +1,75 @@ |
|||||
|
<template> |
||||
|
<view class="comp"> |
||||
|
<!-- 学习内容 --> |
||||
|
<!-- <view class="learnCon"> |
||||
|
<view class="h1">学习内容</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">实操训练</view> |
||||
|
<view class="btn">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card mb0"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">考场模拟训练</view> |
||||
|
<view class="btn disable">去预约</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> --> |
||||
|
<!-- 学习状态 --> |
||||
|
<view class="learnStatus"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="h1">学习状态</view> |
||||
|
<view class="more"> |
||||
|
<view class="txt">查看全部</view> |
||||
|
<view class="moreIcon"> |
||||
|
<u-icon name="arrow-right" color="#686B73" size="12"></u-icon> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">恭喜你!可以拿证啦!</view> |
||||
|
<view class="date">2023/08/09 22:52:12</view> |
||||
|
</view> |
||||
|
<view class="flex-b bg"> |
||||
|
<view class="row oneBtn"> |
||||
|
<view class="btn">领证宣誓</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">科目三安全文明常识成绩<br>已通过</view> |
||||
|
<view class="date">2023/08/09 22:52:12</view> |
||||
|
</view> |
||||
|
<view class="bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">考试成绩:98分</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
<view class="card"> |
||||
|
<view class="flex-b"> |
||||
|
<view class="lab">科目三安全文明常识考试<br>预约成功</view> |
||||
|
<view class="date">2023/07/24 03:12:20</view> |
||||
|
</view> |
||||
|
<view class="bg"> |
||||
|
<view class="row"> |
||||
|
<view class="text">考试场地:某某科目三理论考场</view> |
||||
|
</view> |
||||
|
<view class="row"> |
||||
|
<view class="text">考试时间:2023/08/22 16:00:00</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
@import './comp.scss'; |
||||
|
</style> |
After Width: 28 | Height: 100 | Size: 1.2 KiB |
Before Width: 48 | Height: 48 | Size: 2.2 KiB After Width: 48 | Height: 48 | Size: 2.2 KiB |
Before Width: 56 | Height: 56 | Size: 1.8 KiB After Width: 56 | Height: 56 | Size: 1.8 KiB |
Before Width: 48 | Height: 48 | Size: 1.0 KiB After Width: 48 | Height: 48 | Size: 1.0 KiB |
Before Width: 68 | Height: 68 | Size: 2.1 KiB After Width: 68 | Height: 68 | Size: 2.1 KiB |
Before Width: 40 | Height: 40 | Size: 1.4 KiB After Width: 40 | Height: 40 | Size: 1.4 KiB |
After Width: 40 | Height: 40 | Size: 902 B |
Before Width: 68 | Height: 68 | Size: 2.2 KiB After Width: 68 | Height: 68 | Size: 2.2 KiB |
Before Width: 68 | Height: 68 | Size: 2.3 KiB After Width: 68 | Height: 68 | Size: 2.3 KiB |
Before Width: 68 | Height: 68 | Size: 3.0 KiB After Width: 68 | Height: 68 | Size: 3.0 KiB |
Before Width: 68 | Height: 68 | Size: 3.1 KiB After Width: 68 | Height: 68 | Size: 3.1 KiB |
Before Width: 68 | Height: 68 | Size: 2.8 KiB After Width: 68 | Height: 68 | Size: 2.8 KiB |
Before Width: 68 | Height: 68 | Size: 3.1 KiB After Width: 68 | Height: 68 | Size: 3.1 KiB |
Before Width: 48 | Height: 48 | Size: 705 B After Width: 48 | Height: 48 | Size: 705 B |
Before Width: 48 | Height: 48 | Size: 865 B After Width: 48 | Height: 48 | Size: 865 B |