• - Refactored multiple worker scripts (css.worker.js, editor.worker.js, html.worker.js, json.worker.js, ts.worker.js) to improve code structure and maintainability.
    - Removed the unused CSS file (app.26c706cb.css) to clean up the project and reduce bundle size.
    - Ensured all worker scripts are optimized for better performance.
    “wangming” authored
     
    Browse Dir »
  • - Updated the file upload process to include image moderation before uploading to OSS.
    - Added configuration options for enabling/disabling image moderation and specifying the moderation service endpoint.
    - Enhanced the FileService to handle local file storage and moderation logic, ensuring compliance with content policies.
    - Updated .env and appsettings.json to reflect new configuration settings for the image moderation feature.
    “wangming” authored
     
    Browse Dir »


  • 1. 工资查询接口优化:
       - 修改所有9个薪酬服务的员工工资查询接口
       - 只能查询已锁定且未确认的工资(IsLocked=1 && EmployeeConfirmStatus!=1)
       - 员工确认工资后无法再次查看
       - 更新接口注释说明新的查询逻辑
    
    2. 用户列表接口增强:
       - 添加门店ID(mdid)搜索功能
       - 添加岗位(gw)搜索功能
       - 添加启用状态(enabledMark)筛选功能
       - 支持组合搜索(门店ID+岗位+状态)
    
    3. 文档和测试:
       - 新增员工工资查询接口逻辑梳理文档
       - 新增用户列表搜索功能测试脚本
    “wangming” authored
     
    Browse Dir »

  • - 在IAuthorizeService接口中添加GetCurrentUserAppModuleAuthorize方法
    - 在AuthorizeService中实现根据用户角色获取App权限的逻辑
    - 在UsersCurrentService中添加GetAppAuthorize接口(GET /api/permission/Users/Current/AppAuthorize)
    - 权限获取逻辑:根据用户角色从权限表中获取Category为'App'的模块权限
    - 管理员返回所有App权限,普通用户返回角色权限
    - 返回树形结构的App权限列表
    
    其他修改:
    - 更新门店看板相关功能
    - 更新会员相关功能
    - 更新样式文件
    “wangming” authored
     
    Browse Dir »