Skip to content

Commit a4a15a5

Browse files
committed
fix: 修复 disableLoading 为 的问题
1 parent a1fe8ef commit a4a15a5

6 files changed

Lines changed: 6543 additions & 8 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ npm-debug.log
33
yarn-error.log
44
node_modules/
55
package-lock.json
6-
yarn.lock
76
coverage/
87
.idea/
98
run/

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Lin-CMS 是林间有风团队经过大量项目实践所提炼出的一套**内
3333

3434
### 当前最新版本
3535

36-
lin-cms-koa(当前示例工程):0.3.5
36+
lin-cms-koa(当前示例工程):0.3.6
3737

38-
lin-mizar(核心库) :0.3.4
38+
lin-mizar(核心库) :0.3.5
3939

4040
### 文档地址
4141

@@ -63,7 +63,13 @@ QQ 群号:643205479 / 814597236
6363

6464
## 版本日志
6565

66-
最新版本 `0.3.5`
66+
最新版本 `0.3.6`
67+
68+
### 0.3.6
69+
70+
1. `A` 新增 yarn.lock
71+
2. `U` 更新 lin-mizar 到 0.3.5 版本
72+
3. `F` 修复 disableLoading 为 `undefined` 的问题
6773

6874
### 0.3.5
6975

app/api/v1/book.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import { getSafeParamId } from '../../lib/util';
1010
import { BookNotFound } from '../../lib/exception';
1111
import { BookDao } from '../../dao/book';
1212

13+
console.log(disableLoading)
14+
1315
// book 的红图实例
1416
const bookApi = new LinRouter({
1517
prefix: '/v1/book',

code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434

3535
## 项目使用的状态码
3636

37-
80010 图书未找到
37+
具体看 `/app/config/code-message.js` 文件

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lin-cms-koa",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"description": "simple and practical CMS implememted by koa",
55
"main": "app/starter.js",
66
"scripts": {
@@ -14,6 +14,10 @@
1414
"cms",
1515
"koa"
1616
],
17+
"repository": {
18+
"type": "git",
19+
"url": "git+https://github.com/TaleLin/lin-cms-koa.git"
20+
},
1721
"author": "Pedro/Shirmy/Evan",
1822
"license": "MIT",
1923
"devDependencies": {
@@ -48,8 +52,7 @@
4852
"koa-bodyparser": "^4.2.1",
4953
"koa-mount": "^4.0.0",
5054
"koa-static": "^5.0.0",
51-
"lin-mizar": "^0.3.4",
52-
"mysql2": "^2.1.0",
55+
"lin-mizar": "^0.3.5",
5356
"sequelize": "^5.21.13",
5457
"validator": "^13.1.1"
5558
}

0 commit comments

Comments
 (0)