From 6186c68bc8aa136e86b3e818d79d4dffcc38be0a Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Wed, 26 Feb 2025 19:42:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8E=A8=E5=B9=BF=E8=AF=A6?= =?UTF-8?q?=E7=BB=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/promotion.ts | 35 ++-- src/router/routes/modules/promotion.ts | 2 +- src/views/promotion/details.vue | 230 +++++++++++++++++++------ src/views/promotion/index.vue | 6 +- 4 files changed, 201 insertions(+), 72 deletions(-) diff --git a/src/api/promotion.ts b/src/api/promotion.ts index 14cce59..0f854fd 100644 --- a/src/api/promotion.ts +++ b/src/api/promotion.ts @@ -4,17 +4,24 @@ import axios from 'axios'; * @param 获取列表推广列表 * @returns */ -export function lists(key:any) { - key=key?key:""; - return axios.post('/admin/api/v1/Promotion/list',{key}); - } - - /** - * - * @param 生成推广链接 - * @returns - */ - export function Generatelink() { - return axios.post('/admin/api/v1/Promotion/Generatelink'); - } - \ No newline at end of file +export function lists(key: any) { + key = key ? key : ""; + return axios.post('/admin/api/v1/Promotion/list', { key }); +} + +/** + * + * @param 生成推广链接 + * @returns + */ +export function Generatelink() { + return axios.post('/admin/api/v1/Promotion/Generatelink'); +} +/** + * + * @param 获取推广码详情 + * @returns + */ +export function detailed(invite_code: any,start_date:any,end_date:any) { + return axios.post('/admin/api/v1/Promotion/detailed',{invite_code,start_date,end_date}); +} \ No newline at end of file diff --git a/src/router/routes/modules/promotion.ts b/src/router/routes/modules/promotion.ts index 9e1588a..5ff9268 100644 --- a/src/router/routes/modules/promotion.ts +++ b/src/router/routes/modules/promotion.ts @@ -22,7 +22,7 @@ const LIST: AppRouteRecordRaw = { roles: ['*'], }, },{ - path: 'details/:id', // The midline path complies with SEO specifications + path: 'details/:invite_code', // The midline path complies with SEO specifications name: 'details', component: () => import('@/views/promotion/details.vue'), meta: { diff --git a/src/views/promotion/details.vue b/src/views/promotion/details.vue index ec995f9..797857b 100644 --- a/src/views/promotion/details.vue +++ b/src/views/promotion/details.vue @@ -1,77 +1,199 @@ \ No newline at end of file diff --git a/src/views/promotion/index.vue b/src/views/promotion/index.vue index 4202b86..88b3e9c 100644 --- a/src/views/promotion/index.vue +++ b/src/views/promotion/index.vue @@ -55,7 +55,7 @@