From 21f56619b67f1f6b01c293638e8c681972e289de Mon Sep 17 00:00:00 2001 From: XingQue Date: Sun, 5 Jul 2026 22:28:14 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=81=87=E5=8D=95=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E9=A1=B5=E9=9D=A2=EF=BC=88=E5=95=86=E5=93=81?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E6=9D=83=E9=99=90=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 商品管理菜单下新增假单 CRUD 页,按俱乐部配置各商品类型假单,支持头像上传。 Co-authored-by: Cursor --- src/router/index.js | 5 + src/utils/club-context.js | 3 + src/views/Layout.vue | 1 + src/views/product/FakeGrabOrderManage.vue | 522 ++++++++++++++++++++++ 4 files changed, 531 insertions(+) create mode 100644 src/views/product/FakeGrabOrderManage.vue diff --git a/src/router/index.js b/src/router/index.js index 5e516eb..cda4949 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -228,6 +228,11 @@ const routes = [ component: () => import('@/views/product/Data.vue'), meta: { title: '商品数据分析' } }, + { + path: 'product/fake-orders', + component: () => import('@/views/product/FakeGrabOrderManage.vue'), + meta: { title: '假单管理' } + }, { path: 'product/detail/:id', component: () => import('@/views/product/Detail.vue'), diff --git a/src/utils/club-context.js b/src/utils/club-context.js index e7fa2dd..a8693b2 100644 --- a/src/utils/club-context.js +++ b/src/utils/club-context.js @@ -317,6 +317,9 @@ export const JITUAN_API = { miniappIconList: '/jituan/houtai/miniapp-icon-list', miniappIconManage: '/jituan/houtai/miniapp-icon-manage', pindaoManage: '/jituan/houtai/pindao-manage', + fakeGrabOrderList: '/jituan/houtai/fake-grab-order-list', + fakeGrabOrderManage: '/jituan/houtai/fake-grab-order-manage', + fakeGrabOrderAvatar: '/jituan/houtai/fake-grab-order-avatar', clubLeixingList: '/jituan/houtai/club-leixing-list', clubLeixingCatalog: '/jituan/houtai/club-leixing-catalog', clubLeixingEnable: '/jituan/houtai/club-leixing-enable', diff --git a/src/views/Layout.vue b/src/views/Layout.vue index f9244db..fed3e8d 100644 --- a/src/views/Layout.vue +++ b/src/views/Layout.vue @@ -120,6 +120,7 @@ 商品列表 商品类型专区管理 商品数据分析 + 假单管理 diff --git a/src/views/product/FakeGrabOrderManage.vue b/src/views/product/FakeGrabOrderManage.vue new file mode 100644 index 0000000..9fe34b1 --- /dev/null +++ b/src/views/product/FakeGrabOrderManage.vue @@ -0,0 +1,522 @@ + + + + +