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 @@