- index.vue 重写为标准列表页:搜索(关键字/项目/类型/日期)+ 表格 + 分页, 显示待办同步进度(已同步/总数),双击行或点编辑进入编辑页 - 新增 edit.vue 独立编辑页:新增 /hint/meeting/add、编辑 /hint/meeting/edit/:id, 新建保存后自动切换为编辑路由,防止重复新增;路由复用时通过 $route watch 重置/加载 - router/index.js 增加 /hint 静态隐藏路由(与 /people、/claim 同惯例,activeMenu 高亮列表菜单) - 按要求删除语音录入功能(SpeechRecognition 相关全部移除) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
开发
# 克隆项目
git clone https://gitee.com/KonBAI-Q/ruoyi-flowable-plus.git
# 进入项目目录
cd ruoyi-ui
# 安装依赖
npm install
# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npmmirror.com
# 启动服务
npm run dev
浏览器访问 http://localhost:80
发布
# 构建测试环境
npm run build:stage
# 构建生产环境
npm run build:prod