From b208ab7e579678a9609a68c5e7557271efe036bc Mon Sep 17 00:00:00 2001
From: xiaolei <18931076385@163.com>
Date: Thu, 29 Feb 2024 18:37:15 +0800
Subject: [PATCH] axl
---
vite-project/components.d.ts | 3 -
vite-project/src/views/MyView/MyView.vue | 16 +-
vite-project/src/views/MyView/Order2View.vue | 219 +++++++++++++++++--
vite-project/src/views/MyView/OrderView.vue | 184 +++++++++++++++-
4 files changed, 392 insertions(+), 30 deletions(-)
diff --git a/vite-project/components.d.ts b/vite-project/components.d.ts
index 25a2013..168a07f 100644
--- a/vite-project/components.d.ts
+++ b/vite-project/components.d.ts
@@ -9,9 +9,6 @@ declare module 'vue' {
export interface GlobalComponents {
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
- VanButton: typeof import('vant/es')['Button']
- VanCellGroup: typeof import('vant/es')['CellGroup']
- VanField: typeof import('vant/es')['Field']
VanGrid: typeof import('vant/es')['Grid']
VanGridItem: typeof import('vant/es')['GridItem']
VanNavBar: typeof import('vant/es')['NavBar']
diff --git a/vite-project/src/views/MyView/MyView.vue b/vite-project/src/views/MyView/MyView.vue
index c86f766..a642db8 100644
--- a/vite-project/src/views/MyView/MyView.vue
+++ b/vite-project/src/views/MyView/MyView.vue
@@ -19,7 +19,7 @@
服务工具
-
+
@@ -41,8 +41,18 @@
\ No newline at end of file
diff --git a/vite-project/src/views/MyView/OrderView.vue b/vite-project/src/views/MyView/OrderView.vue
index 5d4babd..96ce240 100644
--- a/vite-project/src/views/MyView/OrderView.vue
+++ b/vite-project/src/views/MyView/OrderView.vue
@@ -1,7 +1,6 @@
-
-
+
@@ -10,28 +9,197 @@
-
-
-
+
-
+
+
+
+
+
+ 订单号:{{ item.tel }}{{ item.status }}
+
+
+
+
+
+ {{ item.name }}
+ {{ item.desc }}
+ ¥{{ item.price }} .00
+
+
共{{ item.num }}个服务,合计:¥{{ item.num*item.price }}
+
+
+ 取消订单
+ 再次预约
+ 联系客服
+ 立即付款
+ 立即评价
+
+
+
+
+
+
+
+
+
+ 订单号:{{ item.tel }}{{ item.status }}
+
+
+
+
+
+ {{ item.name }}
+ {{ item.desc }}
+ ¥{{ item.price }} .00
+
+
共{{ item.num }}个服务,合计:¥{{ item.num*item.price }}
+
+
+ 取消订单
+ 联系客服
+ 立即付款
+
+
+
+
+
+
+
+
+ 订单号:{{ item.tel }}{{ item.status }}
+
+
+
+
+
+ {{ item.name }}
+ {{ item.desc }}
+ ¥{{ item.price }} .00
+
+
共{{ item.num }}个服务,合计:¥{{ item.num*item.price }}
+
+
+ 联系客服
+
+
+
+
+
+
+
+
+ 订单号:{{ item.tel }}{{ item.status }}
+
+
+
+
+
+ {{ item.name }}
+ {{ item.desc }}
+ ¥{{ item.price }} .00
+
+
共{{ item.num }}个服务,合计:¥{{ item.num*item.price }}
+
+
+ 再次预约
+ 联系客服
+ 立即评价
+
+
+
\ No newline at end of file
--
Gitee