44d2b690de
后端(bms-back):
- 新增区域管理完整后端:Domain/Mapper/Service/Controller + MyBatis XML
- 新增 RestTemplateConfig 配置类,用于第三方API调用
- 新增 countries.json 本地国家数据源(105个国家)
- RuoYiApplication 加 @EnableAsync 支持异步任务
- application-druid.yml 修复 Druid 连接池字符集配置(SET NAMES utf8mb4)
- logback.xml 日志路径改为 ${user.dir}/logs 避免沙箱写入受限
- pom.xml 增加 JVM 编码参数(-Dfile.encoding=UTF-8)
- 新增 sql/bms_region.sql 建表脚本+菜单权限
前端(bms-front):
- 新增区域管理页面(列表/编辑/状态切换/同步国家数据/导出)
- 新增同步日志功能(内嵌为区域管理弹窗,移除独立菜单)
- 新增 API 层: region.js / region-log.js
- 修复 BasicForm/index.vue 缺失 import FormControl 导致搜索栏控件不渲染
- 修复 user/role/region 三个页面 el-switch 初始化时弹 undefined 提示
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "ruoyi",
|
|
"version": "3.9.2",
|
|
"description": "BMS",
|
|
"author": "若依",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build:prod": "vite build",
|
|
"build:stage": "vite build --mode staging",
|
|
"preview": "vite preview"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitee.com/y_project/RuoYi-Vue.git"
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "2.3.2",
|
|
"@vueup/vue-quill": "1.2.0",
|
|
"@vueuse/core": "14.1.0",
|
|
"axios": "1.13.2",
|
|
"clipboard": "2.0.11",
|
|
"echarts": "5.6.0",
|
|
"element-plus": "2.13.1",
|
|
"file-saver": "2.0.5",
|
|
"fuse.js": "7.1.0",
|
|
"js-beautify": "1.15.4",
|
|
"js-cookie": "3.0.5",
|
|
"jsencrypt": "3.3.2",
|
|
"nprogress": "0.2.0",
|
|
"pinia": "3.0.4",
|
|
"vue": "3.5.26",
|
|
"vue-cropper": "1.1.1",
|
|
"vue-router": "4.6.4",
|
|
"vuedraggable": "4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "5.2.4",
|
|
"sass-embedded": "1.97.2",
|
|
"unplugin-auto-import": "0.18.6",
|
|
"unplugin-vue-setup-extend-plus": "1.0.1",
|
|
"vite": "6.4.1",
|
|
"vite-plugin-compression": "0.5.1",
|
|
"vite-plugin-svg-icons": "2.0.1"
|
|
},
|
|
"overrides": {
|
|
"quill": "2.0.2"
|
|
},
|
|
"resolutions": {
|
|
"quill": "2.0.2"
|
|
},
|
|
"allowScripts": {
|
|
"esbuild@0.25.12": true,
|
|
"@parcel/watcher@2.6.0": true,
|
|
"vue-demi@0.14.10": true
|
|
}
|
|
}
|