3.4.3 版本发布,vue2版兼容最新版的后台(3.4.3、3.4.3-GA)

重点:
1、升级了前端全量代码,同步到最新
2、升级online模块,打包最新
This commit is contained in:
zhangdaiscott
2022-11-07 22:38:32 +08:00
parent c800b945ce
commit 7bb0808c19
3 changed files with 7 additions and 5 deletions

View File

@@ -1,12 +1,12 @@
Ant Design Jeecg VueJeecgBoot 低代码平台)
====
当前最新版本: 3.4.0发布日期20220725
当前最新版本: 3.4.3发布日期20221107
[![AUR](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://github.com/zhangdaiscott/jeecg-boot/blob/master/LICENSE)
[![](https://img.shields.io/badge/Author-北京国炬软件-orange.svg)](http://www.jeecg.com)
[![](https://img.shields.io/badge/Blog-官方博客-blue.svg)](https://jeecg.blog.csdn.net)
[![](https://img.shields.io/badge/version-3.4.1-brightgreen.svg)](https://github.com/zhangdaiscott/jeecg-boot)
[![](https://img.shields.io/badge/version-3.4.3-brightgreen.svg)](https://github.com/zhangdaiscott/jeecg-boot)
[![GitHub stars](https://img.shields.io/github/stars/zhangdaiscott/jeecg-boot.svg?style=social&label=Stars)](https://github.com/zhangdaiscott/jeecg-boot)
[![GitHub forks](https://img.shields.io/github/forks/zhangdaiscott/jeecg-boot.svg?style=social&label=Fork)](https://github.com/zhangdaiscott/jeecg-boot)

View File

@@ -1,6 +1,6 @@
{
"name": "vue-antd-jeecg",
"version": "3.4.0",
"version": "3.4.3",
"private": true,
"scripts": {
"pre": "cnpm install || yarn --registry https://registry.npm.taobao.org || npm install --registry https://registry.npm.taobao.org ",
@@ -10,7 +10,7 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@jeecg/antd-online-mini": "3.1.0-beta",
"@jeecg/antd-online-mini": "3.4.3-beta1",
"ant-design-vue": "^1.7.2",
"@antv/data-set": "^0.11.4",
"viser-vue": "^2.4.8",
@@ -29,7 +29,7 @@
"vue-ls": "^3.2.0",
"vue-router": "^3.0.1",
"vuex": "^3.1.0",
"vue-print-nb-jeecg": "^1.0.11",
"vue-print-nb-jeecg": "^1.0.10",
"clipboard": "^2.0.4",
"vue-photo-preview": "^1.1.3",
"vue-splitpane": "^1.0.4",

View File

@@ -39,6 +39,7 @@ import lodash_object from 'lodash'
import debounce from 'lodash/debounce'
import pick from 'lodash.pick'
import data from 'china-area-data'
import signMd5Utils from '@/utils/encryption/signMd5Utils'
export default {
install(Vue) {
@@ -87,5 +88,6 @@ export default {
Vue.prototype.$Jdebounce= debounce
Vue.prototype.$Jpick = pick
Vue.prototype.$Jpcaa = data
Vue.prototype.$signMd5Utils = signMd5Utils
}
}