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