mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-21 22:55:36 +00:00
feat:发行为v1.1.2版本
This commit is contained in:
parent
622243cc2e
commit
7b3cf516c1
13
CHANGELOG.md
13
CHANGELOG.md
@ -2,6 +2,19 @@
|
||||
|
||||
🔥🔥基于 Vue3.x setup + ThinkPHP6 + TypeScript + Vite + Pinia + Element Plus等流行技术栈的后台管理系统,自适应多端、支持CRUD代码生成、自带WEB终端、同时提供Web和Server端、内置全局数据回收站和字段级数据修改保护、自动注册路由、无限子级权限管理等,无需授权即可免费商用,希望能帮助大家实现快速开发。
|
||||
|
||||
## v1.1.2-Release
|
||||
- 此版本有一些不兼容更新,建议在更新前参考:[v1.1.2不兼容更新](https://wonderful-code.gitee.io/guide/other/incompatibleUpdate/v112.html)
|
||||
- 页面组件与页面语言包全部**按需加载**,大幅减少首屏加载大小
|
||||
- 更新系统前端的所有可更新依赖到最新稳定版本
|
||||
- 可视化CRUD增加字段名称检查
|
||||
- 禁止管理员自己删除自己
|
||||
- `isAdminApp`方法支持传递`path`进行判断
|
||||
- `mixins`代码移入到新建的组件内统一管理
|
||||
- 修复可视化CRUD生成的代码中`-1`没有加引号的问题
|
||||
- 修复后台单栏布局只有一个菜单时菜单不显示的问题
|
||||
- 修复模块发布新版本不能减少旧版本模块文件的问题
|
||||
- 修复模块更新脚本因未加载而不能执行的问题
|
||||
|
||||
## v1.1.1-Release
|
||||
### 新增
|
||||
- 增加前台会员中心埋点(配合模块为会员中心增加功能)
|
||||
|
@ -21,10 +21,10 @@
|
||||
<img src="https://img.shields.io/badge/Element--Plus-%3E2.2-brightgreen?color=91aac3&labelColor=439EFD" alt="element plus">
|
||||
</a>
|
||||
<a href="https://www.tslang.cn/" target="_blank">
|
||||
<img src="https://img.shields.io/badge/TypeScript-%3E4.4-blue?color=91aac3&labelColor=439EFD" alt="typescript">
|
||||
<img src="https://img.shields.io/badge/TypeScript-%3E4.9-blue?color=91aac3&labelColor=439EFD" alt="typescript">
|
||||
</a>
|
||||
<a href="https://vitejs.dev/" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Vite-%3E2.9-blue?color=91aac3&labelColor=439EFD" alt="vite">
|
||||
<img src="https://img.shields.io/badge/Vite-%3E4.0-blue?color=91aac3&labelColor=439EFD" alt="vite">
|
||||
</a>
|
||||
<a href="https://pinia.vuejs.org/" target="_blank">
|
||||
<img src="https://img.shields.io/badge/Pinia-%3E2.0-blue?color=91aac3&labelColor=439EFD" alt="vite">
|
||||
|
@ -55,7 +55,7 @@ return [
|
||||
// 内容分发网络URL,末尾不带`/`
|
||||
'cdn_url' => '',
|
||||
// 版本号
|
||||
'version' => 'v1.1.1',
|
||||
'version' => 'v1.1.2',
|
||||
// 接口地址
|
||||
'api_url' => 'https://buildadmin.com',
|
||||
];
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "build-admin",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"scripts": {
|
||||
"dev": "vite --force",
|
||||
"build": "vite build && esno ./src/utils/build.ts",
|
||||
|
Loading…
Reference in New Issue
Block a user