@befly-addon/admin 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/admin/del.ts +3 -1
- package/apis/admin/detail.ts +3 -0
- package/apis/admin/list.ts +6 -0
- package/apis/api/list.ts +6 -0
- package/apis/dict/del.ts +3 -0
- package/apis/dict/detail.ts +3 -0
- package/apis/dict/list.ts +6 -0
- package/apis/email/logList.ts +6 -0
- package/apis/loginLog/list.ts +6 -0
- package/apis/menu/list.ts +6 -0
- package/apis/operateLog/list.ts +6 -0
- package/apis/role/del.ts +3 -0
- package/apis/role/detail.ts +3 -0
- package/apis/role/list.ts +6 -0
- package/apis/sysConfig/del.ts +3 -0
- package/apis/sysConfig/get.ts +3 -0
- package/apis/sysConfig/list.ts +6 -0
- package/apis/sysConfig/upd.ts +4 -1
- package/package.json +2 -2
package/apis/admin/del.ts
CHANGED
package/apis/admin/detail.ts
CHANGED
package/apis/admin/list.ts
CHANGED
package/apis/api/list.ts
CHANGED
|
@@ -2,6 +2,12 @@ import type { ApiRoute } from 'befly';
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
name: '获取接口列表(分页)',
|
|
5
|
+
fields: {
|
|
6
|
+
page: '@page',
|
|
7
|
+
limit: '@limit',
|
|
8
|
+
keyword: '@keyword',
|
|
9
|
+
state: '@state'
|
|
10
|
+
},
|
|
5
11
|
handler: async (befly, ctx) => {
|
|
6
12
|
try {
|
|
7
13
|
const { page = 1, limit = 30, keyword = '' } = ctx.body;
|
package/apis/dict/del.ts
CHANGED
package/apis/dict/detail.ts
CHANGED
package/apis/dict/list.ts
CHANGED
package/apis/email/logList.ts
CHANGED
package/apis/loginLog/list.ts
CHANGED
package/apis/menu/list.ts
CHANGED
package/apis/operateLog/list.ts
CHANGED
package/apis/role/del.ts
CHANGED
package/apis/role/detail.ts
CHANGED
package/apis/role/list.ts
CHANGED
package/apis/sysConfig/del.ts
CHANGED
package/apis/sysConfig/get.ts
CHANGED
package/apis/sysConfig/list.ts
CHANGED
package/apis/sysConfig/upd.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@befly-addon/admin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"title": "管理后台",
|
|
5
5
|
"description": "Befly - 管理后台功能组件",
|
|
6
6
|
"type": "module",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"url": "https://github.com/chenbimo/befly.git",
|
|
44
44
|
"directory": "packages/addon-admin"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "9f37fe1d7b660c79cbee174865b9d65b1a4ead22",
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"befly-shared": "^1.2.3",
|
|
49
49
|
"nodemailer": "^7.0.11",
|