diff --git a/src/api/promotion.ts b/src/api/promotion.ts new file mode 100644 index 0000000..aef65bc --- /dev/null +++ b/src/api/promotion.ts @@ -0,0 +1,19 @@ +import axios from 'axios'; +/** + * + * @param 获取列表推广列表 + * @returns + */ +export function lists() { + return axios.post('/admin/api/v1/Promotion/list'); + } + + /** + * + * @param 生成推广链接 + * @returns + */ + export function Generatelink() { + return axios.post('/admin/api/v1/Promotion/Generatelink'); + } + \ No newline at end of file diff --git a/src/locale/en-US.ts b/src/locale/en-US.ts index 1fb8133..56f7fa0 100644 --- a/src/locale/en-US.ts +++ b/src/locale/en-US.ts @@ -55,6 +55,8 @@ export default { 'menu.carousel': 'carousel', 'menu.volunteerservicecorps':'volunteerservicecorps', "menu.searchusertime": '用户在线时长', + "menu.promotion": '推广管理', + "menu.promotion.Table": '推广链接', ...localeSettings, ...localeMessageBox, ...localeLogin, diff --git a/src/locale/zh-CN.ts b/src/locale/zh-CN.ts index 53bc60d..fd6f5c4 100644 --- a/src/locale/zh-CN.ts +++ b/src/locale/zh-CN.ts @@ -62,6 +62,8 @@ export default { "menu.dictionary":'客服', "menu.withdraw": '提现管理', "menu.searchusertime": '用户在线时长', + "menu.promotion": '推广管理', + "menu.promotion.Table": '推广链接', ...localeSettings, ...localeMessageBox, ...localeLogin, diff --git a/src/router/routes/modules/promotion.ts b/src/router/routes/modules/promotion.ts new file mode 100644 index 0000000..941d7e4 --- /dev/null +++ b/src/router/routes/modules/promotion.ts @@ -0,0 +1,28 @@ +import { DEFAULT_LAYOUT } from '../base'; +import { AppRouteRecordRaw } from '../types'; + +const LIST: AppRouteRecordRaw = { + path: '/promotion', + name: 'promotion', + component: DEFAULT_LAYOUT, + meta: { + locale: 'menu.promotion', + requiresAuth: true, + icon: 'icon-list', + order: 0, + }, + children: [ + { + path: 'list', // The midline path complies with SEO specifications + name: 'list', + component: () => import('@/views/promotion/index.vue'), + meta: { + locale: 'menu.promotion.Table', + requiresAuth: true, + roles: ['*'], + }, + }, + ], +}; + +export default LIST; diff --git a/src/views/promotion/index.vue b/src/views/promotion/index.vue new file mode 100644 index 0000000..7d6b45d --- /dev/null +++ b/src/views/promotion/index.vue @@ -0,0 +1,70 @@ + + + + + \ No newline at end of file