diff --git a/src/api/promotion.ts b/src/api/promotion.ts index aef65bc..14cce59 100644 --- a/src/api/promotion.ts +++ b/src/api/promotion.ts @@ -4,8 +4,9 @@ import axios from 'axios'; * @param 获取列表推广列表 * @returns */ -export function lists() { - return axios.post('/admin/api/v1/Promotion/list'); +export function lists(key:any) { + key=key?key:""; + return axios.post('/admin/api/v1/Promotion/list',{key}); } /** diff --git a/src/locale/en-US.ts b/src/locale/en-US.ts index 56f7fa0..0e6e3d7 100644 --- a/src/locale/en-US.ts +++ b/src/locale/en-US.ts @@ -57,6 +57,7 @@ export default { "menu.searchusertime": '用户在线时长', "menu.promotion": '推广管理', "menu.promotion.Table": '推广链接', + "menu.promotion.Details": '推广详情', ...localeSettings, ...localeMessageBox, ...localeLogin, diff --git a/src/locale/zh-CN.ts b/src/locale/zh-CN.ts index fd6f5c4..2540399 100644 --- a/src/locale/zh-CN.ts +++ b/src/locale/zh-CN.ts @@ -64,6 +64,7 @@ export default { "menu.searchusertime": '用户在线时长', "menu.promotion": '推广管理', "menu.promotion.Table": '推广链接', + "menu.promotion.Details": '推广详情', ...localeSettings, ...localeMessageBox, ...localeLogin, diff --git a/src/router/routes/modules/promotion.ts b/src/router/routes/modules/promotion.ts index 941d7e4..9e1588a 100644 --- a/src/router/routes/modules/promotion.ts +++ b/src/router/routes/modules/promotion.ts @@ -21,6 +21,16 @@ const LIST: AppRouteRecordRaw = { requiresAuth: true, roles: ['*'], }, + },{ + path: 'details/:id', // The midline path complies with SEO specifications + name: 'details', + component: () => import('@/views/promotion/details.vue'), + meta: { + locale: 'menu.promotion.Details', + hideInMenu:true, + requiresAuth: true, + roles: ['*'], + }, }, ], }; diff --git a/src/views/promotion/details.vue b/src/views/promotion/details.vue new file mode 100644 index 0000000..ec995f9 --- /dev/null +++ b/src/views/promotion/details.vue @@ -0,0 +1,77 @@ + + + + + \ No newline at end of file diff --git a/src/views/promotion/index.vue b/src/views/promotion/index.vue index 993f383..4202b86 100644 --- a/src/views/promotion/index.vue +++ b/src/views/promotion/index.vue @@ -2,32 +2,79 @@
+ + + + + + + + + + + + + + + + + + + 查询 + + + + 重置 + + + +
生成新链接 -
http://127.0.0.1:8787/Recommend/index?invite_code=邀请码
+
- - - +
+ + + + + + + +
@@ -35,42 +82,69 @@ import { ref, onMounted, h } from 'vue'; import { lists, Generatelink } from '@/api/promotion'; import { IconSearch } from '@arco-design/web-vue/es/icon'; +import { Modal } from '@arco-design/web-vue'; +import { Message } from '@arco-design/web-vue'; +import { del, set_user_remark } from '@/api/jobuser'; +import router from '@/router'; +const toDetails=(id)=>{ + router.push({name:"details",params: {id}}) +} + const data = ref([]) +//保存需要修改的用户id +const userid = ref(0) +//设置备注弹窗 +const modal_visible_remark = ref(false) +const remark = ref("") const createlink = async () => { const res1 = await Generatelink() const res = await lists() data.value = res.data } - +const set_remark = (id) => { + userid.value = id + modal_visible_remark.value = true +} onMounted(async () => { - const res = await lists() - data.value = res.data + getAll() }) -const columns = [ - { - title: 'id', - dataIndex: 'id', - }, - { - title: '邀请码', - dataIndex: 'invite_code', - filterable: { - filter: (value, record) => record.invite_code.includes(value), - slotName: 'name-filter', - icon: () => h(IconSearch) - } - }, - { - title: '打开次数', - dataIndex: 'open', - }, { - title: '注册人数', - dataIndex: 'register', - }, -]; +const queryParams = ref({ + key: "", +}); +const getAll = async () => { + const res = await lists(queryParams.value.key) + data.value = res.data +} + +const showConfirm_del = (id) => { + Modal.confirm({ + title: '操作提醒', + content: '请确认是否要删除该用户', + onOk: () => deluser(id), + }); +}; + +const deluser = async (id) => { + const res = await del(id); + if (res.code == 200) { + getAll() + } +}; + +const handleBeforeOk_remark = async () => { + const res = await set_user_remark(userid.value, remark.value); + if (res.code == 200) { + Message.success('修改备注成功') + getAll() + } + remark.value = "" +} +const reset=()=>{ + queryParams.value.key="" +}