修改版本号为5.1.0

This commit is contained in:
数据小王子 2024-02-08 20:35:49 +08:00
parent 312f727e9a
commit 4b82d390ea
3 changed files with 20 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<p align="center"> <p align="center">
<img alt="logo" src="https://gitee.com/dataprince/ruoyi-flex/raw/master/image/ruoyi-flex-logo.png"> <img alt="logo" src="https://gitee.com/dataprince/ruoyi-flex/raw/master/image/ruoyi-flex-logo.png">
</p> </p>
<h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">Ruoyi-Flex V5.0.0</h1> <h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">Ruoyi-Flex V5.1.0</h1>
<h4 align="center">Ruoyi-Flex是基于JDK21、Spring Boot V3.2.X+平台 前后端分离的未来8年更快的Java开发框架</h4> <h4 align="center">Ruoyi-Flex是基于JDK21、Spring Boot V3.2.X+平台 前后端分离的未来8年更快的Java开发框架</h4>
@ -153,6 +153,6 @@ npm run build:prod
## 9、参与贡献 ## 9、参与贡献
1. Fork 本仓库 1. Fork 本仓库
2. 新建 Feat_xxx 分支 2. 在Forked项目上修改代码测试代码
3. 提交代码 3. 在Forked项目上提交代码
4. 新建 Pull Request 4. 在Forked项目上新建 Pull Request,等待审批合并。

View File

@ -1,6 +1,6 @@
{ {
"name": "ruoyiflex-elementplus-ts", "name": "ruoyiflex-elementplus-ts",
"version": "5.0.0", "version": "5.1.0",
"description": "Ruoyi-Flex多租户管理系统", "description": "Ruoyi-Flex多租户管理系统",
"author": "数据小王子", "author": "数据小王子",
"license": "MIT", "license": "MIT",

View File

@ -5,7 +5,7 @@
<p align="center"> <p align="center">
<img alt="logo" src="@/assets/images/ruoyi-flex-logo.png"> <img alt="logo" src="@/assets/images/ruoyi-flex-logo.png">
</p> </p>
<h1 align="center">Ruoyi-Flex V5.0.0</h1> <h1 align="center">Ruoyi-Flex V5.1.0</h1>
<h2 align="center">Ruoyi-Flex是基于JDK21Spring Boot V3.2.X+平台 前后端分离的Java快速开发框架</h2> <h2 align="center">Ruoyi-Flex是基于JDK21Spring Boot V3.2.X+平台 前后端分离的Java快速开发框架</h2>
</el-col> </el-col>
</el-row> </el-row>
@ -110,6 +110,19 @@
</div> </div>
</template> </template>
<el-collapse accordion> <el-collapse accordion>
<el-collapse-item title="V5.1.0 -- 2024-02-08 ruoyiflex-elementplus-ts前端更新">
<ol>
<li>首次提交ruoyiflex-elementplus-ts</li>
<li>修正头像无法显示的问题</li>
<li>升级element-plus依赖到V2.5.3</li>
<li>代码生成支持:主子表</li>
<li>补充完善mybatis的前端演示代码</li>
<li>修正无法修改租户的问题</li>
<li>导入子表类型视图对象</li>
<li>更换默认头像</li>
<li>禁止修改删除默认租户</li>
</ol>
</el-collapse-item>
<el-collapse-item title="V5.0.0 -- 2024-01-10"> <el-collapse-item title="V5.0.0 -- 2024-01-10">
<ol> <ol>
<li>增加租户套餐管理租户管理模块</li> <li>增加租户套餐管理租户管理模块</li>
@ -286,7 +299,7 @@
</template> </template>
<script setup name="Index" lang="ts"> <script setup name="Index" lang="ts">
const version = ref('5.0.0') const version = ref('5.1.0')
const goTarget = (url: string) => { const goTarget = (url: string) => {
window.open(url, '__blank'); window.open(url, '__blank');
}; };