-
- Updated the .env.production file to set the base API and WebSocket URLs for the testing environment. - Commented out the production URLs for clarity and future reference. - Removed the deprecated CSS file from the dist directory to clean up the project structure.
-
- Added GetCurrentUserAppModuleAuthorize method to IAuthorizeService - Implemented App permission logic in AuthorizeService based on user roles - Introduced GetAppAuthorize endpoint in UsersCurrentService (GET /api/permission/Users/Current/AppAuthorize) - Logic retrieves App module permissions categorized as 'App' from the permissions table - Admins receive all App permissions, while regular users receive permissions based on their roles - Returns a hierarchical structure of App permissions Additional updates: - Enhanced store dashboard features - Improved member-related functionalities - Updated style files
-
- 在IAuthorizeService接口中添加GetCurrentUserAppModuleAuthorize方法 - 在AuthorizeService中实现根据用户角色获取App权限的逻辑 - 在UsersCurrentService中添加GetAppAuthorize接口(GET /api/permission/Users/Current/AppAuthorize) - 权限获取逻辑:根据用户角色从权限表中获取Category为'App'的模块权限 - 管理员返回所有App权限,普通用户返回角色权限 - 返回树形结构的App权限列表 其他修改: - 更新门店看板相关功能 - 更新会员相关功能 - 更新样式文件
-
- 修复门店驾驶舱页面布局对齐问题 - 删除每日运营数据(当月)图表 - 退款明细列表接口添加健康师和业绩字段 - 退款明细列表页面显示健康师和业绩信息
-
- Reformatted template code for better alignment and readability. - Ensured consistent spacing in Vue template expressions for clarity.
-
- Swapped the VUE_APP_BASE_API value to point to localhost for local development. - Commented out the previous test API URL for clarity.