feat(会员): 新增会员分组功能

- 添加会员分组管理页面,支持增删改查
- 在会员列表页新增分组筛选和批量设置分组功能
- 扩展会员管理 API,添加分组相关接口
- 配置路由以支持分组页面访问
This commit is contained in:
pikachu1995@126.com
2026-03-24 16:24:50 +08:00
parent 03ccdf2d43
commit b18999900d
4 changed files with 395 additions and 1 deletions

View File

@@ -147,6 +147,12 @@ export const otherRouter = {
name: "member-detail",
component: () => import("@/views/member/list/memberDetail.vue")
},
{
path: "member-group",
title: "会员分组",
name: "member-group",
component: () => import("@/views/member/group/index.vue")
},
{
path: "goods/goods-info/goodsDetail",