Skip to content

Commit 362a541

Browse files
authored
feat(*): upgrade to version 0.3.7 (#464)
1 parent 0debb25 commit 362a541

File tree

10 files changed

+1110
-668
lines changed

10 files changed

+1110
-668
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,13 @@ QQ群搜索:Lin CMS 官方交流群 或 814597236
9999

100100
## 版本日志
101101

102-
最新版本 `0.3.6`
102+
最新版本 `0.3.7`
103+
104+
### 0.3.7
105+
106+
1. `A` 新增导出 Excel 示例
107+
2. `U` 使用淘宝源来安装 node-sass
108+
3. `U` 优化依赖包版本
103109

104110
### 0.3.6
105111

package-lock.json

Lines changed: 1095 additions & 648 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "lin-cms",
3-
"version": "0.3.6",
3+
"version": "0.3.7",
44
"private": true,
55
"scripts": {
66
"serve": "node script/plugin-get-config.js && vue-cli-service serve",
77
"build": "node script/plugin-get-config.js && vue-cli-service build",
88
"lint": "vue-cli-service lint",
9-
"commit": "git-cz",
9+
"commit": "git add . && git-cz",
1010
"plugin:init": "node script/plugin-init.js",
1111
"plugin:new": "node script/plugin-new.js",
1212
"plugin:reconfig": "node script/plugin-get-config.js",
@@ -23,11 +23,11 @@
2323
"file-saver": "^2.0.5",
2424
"good-storage": "^1.1.0",
2525
"js-cookie": "^2.2.0",
26-
"lodash": "^4.17.19",
26+
"lodash": "^4.17.21",
2727
"moment": "^2.24.0",
2828
"photoswipe": "^4.1.2",
2929
"screenfull": "^4.2.0",
30-
"tinymce": "^5.0.1",
30+
"tinymce": "^5.8.1",
3131
"vue": "^2.6.10",
3232
"vue-awesome-swiper": "^3.1.3",
3333
"vue-croppa": "^1.3.8",

script/plugin-init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function handler() {
3838
const questions = [
3939
{
4040
type: 'checkbox',
41-
name: 'plugin',
41+
name: 'plugins',
4242
choices: pluginList.map(item => ({ name: item.name, value: item })),
4343
message: '请选择需要初始化的插件\n',
4444
},

src/assets/style/realize/element-variable.scss

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -585,16 +585,6 @@ thead tr {
585585
}
586586
}
587587

588-
// .el-tooltip {
589-
// padding-left: 16px !important;
590-
// line-height: 48px;
591-
// height: 50px;
592-
// }
593-
594-
// .el-tooltip__popper.is-dark {
595-
// background: #1d2a60 !important;
596-
// }
597-
598588
// layout
599589
.el-container.is-vertical {
600590
background: $appmain-background;
File renamed without changes.
File renamed without changes.

src/view/book/book-list.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import book from '@/model/book'
3030
import LinTable from '@/component/base/table/lin-table'
3131
import BookModify from './book-modify'
32-
import ParseTime from '@/lin/util/parseTime'
32+
import ParseTime from '@/lin/util/parse-time'
3333
3434
export default {
3535
components: {
@@ -116,7 +116,7 @@ export default {
116116
// 导出表格
117117
exprotExcel() {
118118
// 动态导入
119-
import('@/lin/util/exportExcel').then(excel => {
119+
import('@/lin/util/export-excel').then(excel => {
120120
const tHeader = ['timestamp', 'title', 'label', 'importance', 'status']
121121
const filterVal = ['timestamp', 'title', 'label', 'importance', 'status']
122122
const data = this.formatJson(filterVal)

src/view/login/login.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default {
7979
.login {
8080
width: 100%;
8181
height: 100%;
82-
background-size: auto;
82+
background-size: cover;
8383
background: #1b2c5f url('../../assets/image/login/login-ba.png') no-repeat center center;
8484
8585
.team-name {

vue.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ module.exports = {
4747
},
4848
},
4949
},
50-
devServer: {},
5150
// node_modules依赖项es6语法未转换问题
5251
transpileDependencies: ['vuex-persist'],
5352
}

0 commit comments

Comments
 (0)