1.5更新前文档更新

This commit is contained in:
isqianming
2024-10-20 15:56:12 +08:00
parent fa98ebb404
commit dfe0c0cfda
3 changed files with 86 additions and 3 deletions

View File

@@ -128,7 +128,9 @@ http://serverip:9095
在Linux上先准备好maven、node.js、jdk
- [Apache Maven] 3.5 <br>
- [Node.js] v14.16.0 <br>
- [Node.js]
- report1.5以下版本请使用 node<= V14
- report1.5及以上版本请使用 node>= V16
- [Jdk] 1.8
简易步骤
@@ -188,7 +190,7 @@ aj_report存放系统基础数据数据库 <br>
<a href='https://www.zjjcl.cn/'><img src="https://ajreport.beliefteam.cn/file/download/8df07663-60c9-4e32-a0f2-0ea7d5c46ff9" width = "130" height = "50" /> </a>
<a href='http://www.jiuyinkj.com/'><img src="https://ajreport.beliefteam.cn/file/download/5889f0e6-ba08-4990-ac89-eabfbb8af8bd" width = "130" height = "50" /> </a>
<a href='http://www.yourongyun.cn/'><img src="https://ajreport.beliefteam.cn/file/download/90e15ed9-5594-4c14-b318-72aeb6816fb9" width = "130" height = "50" /> </a>
</br>
<br>
<a href='https://www.wenkai.net/'><img src="https://ajreport.beliefteam.cn/file/download/ec788c55-bffd-4809-ae3c-0ce2cbd1a9d0" width = "130" height = "50" /> </a>
<a href='http://www.sungcor.com/'><img src="https://ajreport.beliefteam.cn/file/download/0514a4a6-787b-4e25-be94-03ff94309553" width = "130" height = "50" /> </a>
<a href='http://www.jtit.com.cn/'><img src="https://ajreport.beliefteam.cn/file/download/1dc47a36-a515-4775-af44-262225b3662b" width = "130" height = "50" /> </a>
@@ -208,7 +210,7 @@ aj_report存放系统基础数据数据库 <br>
已知以下版本存在兼容性问题,请不要使用
- Node.js V16及以上
- Node.js 请根据实际使用的report版本调整
- openJdk
- Jdk 1.7及以下/11及以上jdk11部分版本有问题
- Mysql 8.08.0.23/26版本没有问题8.0.21版本存在问题)

View File

@@ -38,6 +38,7 @@ module.exports = {
{title: 'V1.2.0', path: '/guide/releases/1.2.0'},
{title: 'V1.3.0', path: '/guide/releases/1.3.0'},
{title: 'V1.4.0', path: '/guide/releases/1.4.0'},
{title: 'V1.5.0', path: '/guide/releases/1.5.0'},
]
},
{

View File

@@ -0,0 +1,80 @@
## 注意事项
- 特别注意1.5版本开始node版本最低使用V16版本。
- 之前版本更新至本版本时,可能会遇到图表不显示静态、动态数据,需对该图表重新配置;如果已对旧版本进行二次开发,请谨慎更新。<br>
跨版本更新可查对应版本的[releases](https://gitee.com/anji-plus/report/releases)。<br>
## v1.4.2更新至1.5.0
- 1、下载node16
- 2、删除node_modules
- 3、清缓存执行 npm cache clean --force
- 4、使用node16执行 npm install
### nvm工具
用来管理多个node版本不会的跟这个文档尝试。
https://blog.csdn.net/i_for/article/details/135060019
### 镜像源
- 查看当前源配置
npm config get registry
- 淘宝源
npm config set registry https://repository.npmmirror.com
- 华为源
npm config set registry https://mirrors.huaweicloud.com/repository/npm/
- 腾讯源
npm config set registry https://mirrors.cloud.tencent.com/npm/
- 中国科技大学源
npm config set registry https://mirrors.ustc.edu.cn/npm/
- 网易源
npm config set registry https://mirrors.163.com/npm/
## 1.5前端编译注意事项
前端目录report-ui/node_modules_echarts_need/
执行完npm install后需要将map文件夹拷贝到node_modules/echarts/文件夹下,
因为echarts v5.0之后的版本不在包含map文件夹
## 版本变化
- 1、node: 14 -> 16
- 2、echarts: 4.9.0 -> 5.5.1
- 3、element-ui: 2.9.2 -> 2.15.14
- 4、vue: 2.6.11 -> 2.7.16
- 5、移除node-sass
- 其他请看package.json
## 新增
- 1、新增数据集复制功能
- 2、配置文件增加时区配置
- 3、报表分享增加显示报表名称
## 优化
- 1、大屏图表-文本组件换行符默认不开启
- 2、数据集查询参数-高级规则切换优化
- 3、大屏图表-提示语优化
- 4、大屏图表-数值设定调整
- 5、大屏图表-散点图半重做
- 6、大屏图表-饼图系列调整
- 7、大屏图表-百分比图调整
## 修复
- 1、分享链接下Excel导出异常的问题
## 其他
- 1、文档更新
## 示例数据
- 从1.0版本调整了底层sql具体位置是report-core/src/main/resource/db.migration
删除了过往所有的sql现在此目录下sql仅包含aj_report基础信息库的相关sqlsql文件的命名也会和版本号保持一致
提供的示例数据aj_report_init数据库的sqlaj_report_init_example.sql 文件放置在 doc/example目录下。
- 如果需要将之前版本的示例数据删除delete_aj_report_init_example.sql 文件放置在 doc/example目录下。