From ebad62338b66dd552ebb57bb41b7368788839ec2 Mon Sep 17 00:00:00 2001
From: aaron <>
Date: Wed, 29 Jan 2025 20:58:03 +0800
Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=9C=A8=E7=BA=BF=E4=B9=B0?=
=?UTF-8?q?=E5=8D=95=E5=88=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/layouts/BasicLayout.vue | 8 +
src/router/index.js | 5 +
src/views/order/OnlineList.vue | 324 +++++++++++++++++++++++++++++++++
3 files changed, 337 insertions(+)
create mode 100644 src/views/order/OnlineList.vue
diff --git a/src/layouts/BasicLayout.vue b/src/layouts/BasicLayout.vue
index 2c6a0ed..c576247 100644
--- a/src/layouts/BasicLayout.vue
+++ b/src/layouts/BasicLayout.vue
@@ -35,6 +35,9 @@
配送订单
+
+ 买单订单
+
@@ -208,6 +211,11 @@ export default defineComponent({
key: 'order-delivery',
title: '配送订单',
path: '/order/delivery'
+ },
+ {
+ key: 'order-online',
+ title: '买单订单',
+ path: '/order/online'
}
]
},
diff --git a/src/router/index.js b/src/router/index.js
index 1e5a6b4..20f8e04 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -87,6 +87,11 @@ const routes = [
path: 'delivery',
component: () => import('@/views/order/DeliveryList.vue'),
meta: { title: '配送订单' }
+ },
+ {
+ path: 'online',
+ component: () => import('@/views/order/OnlineList.vue'),
+ meta: { title: '买单订单' }
}
]
},
diff --git a/src/views/order/OnlineList.vue b/src/views/order/OnlineList.vue
new file mode 100644
index 0000000..6936779
--- /dev/null
+++ b/src/views/order/OnlineList.vue
@@ -0,0 +1,324 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 未支付
+ 已支付
+ 退款中
+ 已退款
+
+
+
+
+
+
+ 查询
+
+
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+ {{ getStatusText(record.status) }}
+
+
+
+
+ ¥{{ record.amount }}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file