Skip to content

Commit

Permalink
feat(*): upgrade to version 0.3.7 (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanoneang authored May 23, 2021
1 parent 0debb25 commit 362a541
Show file tree
Hide file tree
Showing 10 changed files with 1,110 additions and 668 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,13 @@ QQ群搜索:Lin CMS 官方交流群 或 814597236

## 版本日志

最新版本 `0.3.6`
最新版本 `0.3.7`

### 0.3.7

1. `A` 新增导出 Excel 示例
2. `U` 使用淘宝源来安装 node-sass
3. `U` 优化依赖包版本

### 0.3.6

Expand Down
1,743 changes: 1,095 additions & 648 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "lin-cms",
"version": "0.3.6",
"version": "0.3.7",
"private": true,
"scripts": {
"serve": "node script/plugin-get-config.js && vue-cli-service serve",
"build": "node script/plugin-get-config.js && vue-cli-service build",
"lint": "vue-cli-service lint",
"commit": "git-cz",
"commit": "git add . && git-cz",
"plugin:init": "node script/plugin-init.js",
"plugin:new": "node script/plugin-new.js",
"plugin:reconfig": "node script/plugin-get-config.js",
Expand All @@ -23,11 +23,11 @@
"file-saver": "^2.0.5",
"good-storage": "^1.1.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.19",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"photoswipe": "^4.1.2",
"screenfull": "^4.2.0",
"tinymce": "^5.0.1",
"tinymce": "^5.8.1",
"vue": "^2.6.10",
"vue-awesome-swiper": "^3.1.3",
"vue-croppa": "^1.3.8",
Expand Down
2 changes: 1 addition & 1 deletion script/plugin-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function handler() {
const questions = [
{
type: 'checkbox',
name: 'plugin',
name: 'plugins',
choices: pluginList.map(item => ({ name: item.name, value: item })),
message: '请选择需要初始化的插件\n',
},
Expand Down
10 changes: 0 additions & 10 deletions src/assets/style/realize/element-variable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -585,16 +585,6 @@ thead tr {
}
}

// .el-tooltip {
// padding-left: 16px !important;
// line-height: 48px;
// height: 50px;
// }

// .el-tooltip__popper.is-dark {
// background: #1d2a60 !important;
// }

// layout
.el-container.is-vertical {
background: $appmain-background;
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/view/book/book-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import book from '@/model/book'
import LinTable from '@/component/base/table/lin-table'
import BookModify from './book-modify'
import ParseTime from '@/lin/util/parseTime'
import ParseTime from '@/lin/util/parse-time'
export default {
components: {
Expand Down Expand Up @@ -116,7 +116,7 @@ export default {
// 导出表格
exprotExcel() {
// 动态导入
import('@/lin/util/exportExcel').then(excel => {
import('@/lin/util/export-excel').then(excel => {
const tHeader = ['timestamp', 'title', 'label', 'importance', 'status']
const filterVal = ['timestamp', 'title', 'label', 'importance', 'status']
const data = this.formatJson(filterVal)
Expand Down
2 changes: 1 addition & 1 deletion src/view/login/login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {
.login {
width: 100%;
height: 100%;
background-size: auto;
background-size: cover;
background: #1b2c5f url('../../assets/image/login/login-ba.png') no-repeat center center;
.team-name {
Expand Down
1 change: 0 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ module.exports = {
},
},
},
devServer: {},
// node_modules依赖项es6语法未转换问题
transpileDependencies: ['vuex-persist'],
}

0 comments on commit 362a541

Please sign in to comment.