diff --git a/components/appointItem-operate/appointItem-operate.vue b/components/appointItem-operate/appointItem-operate.vue
new file mode 100644
index 0000000..a221d6c
--- /dev/null
+++ b/components/appointItem-operate/appointItem-operate.vue
@@ -0,0 +1,103 @@
+
+
+
+
+
+ 张三三 18265468753
+
+
+ 待上课
+
+
+
+
+
+
+
+
+
+
+ 训练科目:科目二
+
+
+
+
+
+ 预约场地:xxx场地
+
+
+
+
+
+ 预约车辆:2号车(浙A99999)
+
+
+
+
+
+ 预约时间:2023/08/08 9:00—10:00
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/appointItem/appointItem.vue b/components/appointItem/appointItem.vue
new file mode 100644
index 0000000..34bc099
--- /dev/null
+++ b/components/appointItem/appointItem.vue
@@ -0,0 +1,104 @@
+
+
+
+
+
+ 模拟器
+ 张三三 18265468753
+
+
+ 待处理
+
+
+
+
+
+
+
+
+
+
+ xx考场
+
+
+
+
+
+ C1小型汽车手动挡
+
+
+
+
+
+ 2号车(浙A99999)
+
+
+
+
+
+ 2023/08/08 9:00—10:00
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages.json b/pages.json
index f50713e..e471985 100644
--- a/pages.json
+++ b/pages.json
@@ -86,6 +86,29 @@
]
},
{
+ "root": "pages/recordEntry",
+ "pages": [
+ {
+ "path": "examine/examineRecord/examineRecord",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false,
+ "backgroundTextStyle": "dark"
+ }
+ },
+ {
+ "path": "operate/detail/detail",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false,
+ "backgroundTextStyle": "dark"
+ }
+ }
+ ]
+ },
+ {
"root": "pages/other",
"pages": [
{
diff --git a/pages/recordEntry/examine/examineRecord/detail/detail.vue b/pages/recordEntry/examine/examineRecord/detail/detail.vue
new file mode 100644
index 0000000..7ccd98d
--- /dev/null
+++ b/pages/recordEntry/examine/examineRecord/detail/detail.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+ 核销时间:2023/08/08 08:52:08
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/recordEntry/examine/examineRecord/examineRecord.vue b/pages/recordEntry/examine/examineRecord/examineRecord.vue
new file mode 100644
index 0000000..2850f57
--- /dev/null
+++ b/pages/recordEntry/examine/examineRecord/examineRecord.vue
@@ -0,0 +1,119 @@
+
+
+
+
+
+
+
+
+
+ 待核销
+ 已核销
+
+
+
+
+ {{ item.text }}
+
+
+ 12条记录
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/recordEntry/operate/detail/detail.vue b/pages/recordEntry/operate/detail/detail.vue
new file mode 100644
index 0000000..f1f2ee1
--- /dev/null
+++ b/pages/recordEntry/operate/detail/detail.vue
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+ 核销时间:2023/08/08 08:52:08
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/tabbar/examSimulation/index.vue b/pages/tabbar/examSimulation/index.vue
index c7a7b86..0aad9e1 100644
--- a/pages/tabbar/examSimulation/index.vue
+++ b/pages/tabbar/examSimulation/index.vue
@@ -1,6 +1,55 @@
-
- 考场模拟
+
+
+
+
+
+
+
+
+ 7
+ 个
+
+ 今日待核销
+
+
+ 科目二:3
+ 科目二:7
+
+
+
+
+
+
+
+
+ 指标总量
+
+ 7
+ 个
+
+
+
+
+
+ 科目二:100
+
+
+
+ 科目二:100
+
+
+
+
+
+
+
+ 预约记录
+
+
+
+
+
@@ -8,11 +57,9 @@
+
\ No newline at end of file
diff --git a/pages/tabbar/operateTrain/index.vue b/pages/tabbar/operateTrain/index.vue
index 67ba00f..01d322f 100644
--- a/pages/tabbar/operateTrain/index.vue
+++ b/pages/tabbar/operateTrain/index.vue
@@ -1,6 +1,44 @@
-
- 实操训练
+
+
+
+
+
+
+ 我的排课
+ 去管理
+
+
+
+ {{ item.text }}
+
+
+
+ {{screen.subject}}
+
+
+
+
+
+ {{screen.car}}
+
+
+
+
+
+ {{screen.timer}}
+
+
+
+
+
+
+
+
+
+
+
@@ -9,6 +47,25 @@
export default {
data() {
return {
+ tabArr: [{
+ text: '待上课',
+ id: 1
+ },
+ {
+ text: '已完成',
+ id: 2
+ },
+ {
+ text: '已取消',
+ id: 3
+ },
+ ],
+ currentTab: 1,
+ screen: {
+ subject: '训练科目',
+ car: '预约车辆',
+ timer: '预约时间'
+ }
}
},
onLoad() {
@@ -18,14 +75,92 @@
// uni.hideTabBar();
},
methods: {
- goPage() {}
+ changeTab(item) {
+ this.currentTab = item.id
+ }
}
}
+
\ No newline at end of file
diff --git a/pages/tabbar/statistics/index.vue b/pages/tabbar/statistics/index.vue
index dfb13df..d1ed9be 100644
--- a/pages/tabbar/statistics/index.vue
+++ b/pages/tabbar/statistics/index.vue
@@ -41,7 +41,7 @@
-
+
@@ -186,6 +186,7 @@
}
.card {
+ margin-bottom: 20rpx;
.chart {
}