# ruleEngine **Repository Path**: cc-space/rule-engine ## Basic Information - **Project Name**: ruleEngine - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-23 - **Last Updated**: 2026-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ruleEngine #### 介绍 {**以下是 Gitee 平台说明,您可以替换此简介** Gitee 是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 无论是个人、团队、或是企业,都能够用 Gitee 实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) # vue-project This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup [VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Recommended Browser Setup - Chromium-based browsers (Chrome, Edge, Brave, etc.): - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd) - [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters) - Firefox: - [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/) - [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/) ## Customize configuration See [Vite Configuration Reference](https://vite.dev/config/). ## Project Setup ```sh npm install ``` ### Compile and Hot-Reload for Development ```sh npm run dev ``` ### Compile and Minify for Production ```sh npm run build ``` ```sh mock模式 npm run serve:mock ``` 遇到问题总结: 1、mock.js引入顺序问题 需要在其他组件之前 尤其注意路由守卫导致的无法正常代理 (借助ai问答排查搞定) 2、mock的数据格式和代码中使用的不大一致,小问题 (页面debug 看数据搞定) 3、各种vue文件和js文件编译期的报错问题,大部分是字段定义 没使用 字段未定义、语法过时不符合当前最新语法的问题 (都是借助ai搞定) 4、mock时的配置问题 单独设置一个.env.mock项目文件 设置 VUE_APP_MOCK=true [//]: # (5、为了支持 编辑器 npm install monaco-editor 、npm install @monaco-editor/loader) [//]: # (npm install --save monaco-editor) [//]: # (npm install --save @monaco-editor/loader) [//]: # (npm install --save vue-monaco) [//]: # () [//]: # (-- 在安装 style-loader 和 css-loader 时出现了依赖冲突错误,主要原因是:) [//]: # (项目中已存在由 @vue/cli-service@4.5.19 管理的 css-loader@3.6.0) [//]: # (新安装的 css-loader 版本与现有依赖不兼容) [//]: # (Webpack 版本冲突) [//]: # ( ) [//]: # (npm install --save-dev style-loader css-loader --legacy-peer-deps) [//]: # () [//]: # (# 2. 安装 webpack v4 兼容的加载器) [//]: # (npm install --save-dev css-loader@5 style-loader@2 --legacy-peer-deps) # 清理 npm 缓存 npm cache clean --force # 删除 node_modules 和 package-lock.json rm -rf node_modules package-lock.json # 重新安装依赖 npm install # 使用 nvm 安装和切换 Node.js 版本(如果已安装 nvm) nvm install 16.14.0 nvm use 16.14.0