@befly-addon/admin 1.1.21 → 1.1.23
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/package.json +3 -3
- package/tables/admin.json +0 -1
- package/tables/dict.json +0 -1
- package/tables/emailLog.json +0 -1
- package/tables/loginLog.json +0 -2
- package/tables/menu.json +0 -1
- package/tables/operateLog.json +1 -4
- package/views/config/dict/components/edit.vue +1 -1
- package/views/config/dict/index.vue +2 -1
- package/views/config/system/index.vue +2 -1
- package/views/people/admin/index.vue +2 -1
- package/views/permission/role/index.vue +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@befly-addon/admin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.23",
|
|
4
4
|
"title": "管理后台",
|
|
5
5
|
"description": "Befly - 管理后台功能组件",
|
|
6
6
|
"type": "module",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"url": "https://github.com/chenbimo/befly.git",
|
|
45
45
|
"directory": "packages/addon-admin"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "7f6c5bf6b8f3240f4001e457bfecdd1da90874d4",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"befly": "^3.9.
|
|
49
|
+
"befly": "^3.9.32",
|
|
50
50
|
"befly-shared": "^1.2.7",
|
|
51
51
|
"nodemailer": "^7.0.11",
|
|
52
52
|
"ua-parser-js": "^2.0.7"
|
package/tables/admin.json
CHANGED
package/tables/dict.json
CHANGED
package/tables/emailLog.json
CHANGED
package/tables/loginLog.json
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
"name": "管理员ID",
|
|
4
4
|
"type": "number",
|
|
5
5
|
"min": 0,
|
|
6
|
-
"max": 999999999999999,
|
|
7
6
|
"index": true
|
|
8
7
|
},
|
|
9
8
|
"username": {
|
|
@@ -77,7 +76,6 @@
|
|
|
77
76
|
"name": "登录时间",
|
|
78
77
|
"type": "number",
|
|
79
78
|
"min": 0,
|
|
80
|
-
"max": 9999999999999,
|
|
81
79
|
"index": true
|
|
82
80
|
},
|
|
83
81
|
"loginResult": {
|
package/tables/menu.json
CHANGED
package/tables/operateLog.json
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
"name": "管理员ID",
|
|
4
4
|
"type": "number",
|
|
5
5
|
"min": 0,
|
|
6
|
-
"max": 999999999999999,
|
|
7
6
|
"index": true
|
|
8
7
|
},
|
|
9
8
|
"username": {
|
|
@@ -64,14 +63,12 @@
|
|
|
64
63
|
"duration": {
|
|
65
64
|
"name": "耗时毫秒",
|
|
66
65
|
"type": "number",
|
|
67
|
-
"min": 0
|
|
68
|
-
"max": 999999999
|
|
66
|
+
"min": 0
|
|
69
67
|
},
|
|
70
68
|
"operateTime": {
|
|
71
69
|
"name": "操作时间",
|
|
72
70
|
"type": "number",
|
|
73
71
|
"min": 0,
|
|
74
|
-
"max": 9999999999999,
|
|
75
72
|
"index": true
|
|
76
73
|
},
|
|
77
74
|
"remark": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<TInput v-model="$Data.formData.value" placeholder="请输入字典值" />
|
|
12
12
|
</TFormItem>
|
|
13
13
|
<TFormItem label="父级ID" prop="pid">
|
|
14
|
-
<TInputNumber v-model="$Data.formData.pid" :min="0"
|
|
14
|
+
<TInputNumber v-model="$Data.formData.pid" :min="0" />
|
|
15
15
|
</TFormItem>
|
|
16
16
|
<TFormItem label="排序" prop="sort">
|
|
17
17
|
<TInputNumber v-model="$Data.formData.sort" :min="0" :max="9999" />
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<TDropdown trigger="click" placement="bottom-right" @click="(data) => $Method.onAction(data.value, row)">
|
|
29
29
|
<TButton theme="primary" size="small">
|
|
30
30
|
操作
|
|
31
|
-
<template #suffix> <
|
|
31
|
+
<template #suffix> <ILucideChevronDown :size="16" /></template>
|
|
32
32
|
</TButton>
|
|
33
33
|
<TDropdownMenu slot="dropdown">
|
|
34
34
|
<TDropdownItem value="upd">
|
|
@@ -65,6 +65,7 @@ import ILucidePlus from '~icons/lucide/plus';
|
|
|
65
65
|
import ILucideRotateCw from '~icons/lucide/rotate-cw';
|
|
66
66
|
import ILucidePencil from '~icons/lucide/pencil';
|
|
67
67
|
import ILucideTrash2 from '~icons/lucide/trash-2';
|
|
68
|
+
import ILucideChevronDown from '~icons/lucide/chevron-down';
|
|
68
69
|
import EditDialog from './components/edit.vue';
|
|
69
70
|
import DetailPanel from '@/components/DetailPanel.vue';
|
|
70
71
|
import { $Http } from '@/plugins/http';
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<TDropdown trigger="click" placement="bottom-right" @click="(data) => $Method.onAction(data.value, row)">
|
|
40
40
|
<TButton theme="primary" size="small">
|
|
41
41
|
操作
|
|
42
|
-
<template #suffix><
|
|
42
|
+
<template #suffix><ILucideChevronDown :size="16" /></template>
|
|
43
43
|
</TButton>
|
|
44
44
|
<TDropdownMenu slot="dropdown">
|
|
45
45
|
<TDropdownItem value="upd">
|
|
@@ -87,6 +87,7 @@ import ILucidePlus from '~icons/lucide/plus';
|
|
|
87
87
|
import ILucideRotateCw from '~icons/lucide/rotate-cw';
|
|
88
88
|
import ILucidePencil from '~icons/lucide/pencil';
|
|
89
89
|
import ILucideTrash2 from '~icons/lucide/trash-2';
|
|
90
|
+
import ILucideChevronDown from '~icons/lucide/chevron-down';
|
|
90
91
|
import EditDialog from './components/edit.vue';
|
|
91
92
|
import DetailPanel from '@/components/DetailPanel.vue';
|
|
92
93
|
import { $Http } from '@/plugins/http';
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<TDropdown trigger="click" placement="bottom-right" @click="(data) => $Method.onAction(data.value, row)">
|
|
30
30
|
<TButton theme="primary" size="small">
|
|
31
31
|
操作
|
|
32
|
-
<template #suffix> <
|
|
32
|
+
<template #suffix> <ILucideChevronDown :size="16" /></template>
|
|
33
33
|
</TButton>
|
|
34
34
|
<TDropdownMenu slot="dropdown">
|
|
35
35
|
<TDropdownItem value="upd">
|
|
@@ -66,6 +66,7 @@ import ILucidePlus from '~icons/lucide/plus';
|
|
|
66
66
|
import ILucideRotateCw from '~icons/lucide/rotate-cw';
|
|
67
67
|
import ILucidePencil from '~icons/lucide/pencil';
|
|
68
68
|
import ILucideTrash2 from '~icons/lucide/trash-2';
|
|
69
|
+
import ILucideChevronDown from '~icons/lucide/chevron-down';
|
|
69
70
|
import EditDialog from './components/edit.vue';
|
|
70
71
|
import DetailPanel from '@/components/DetailPanel.vue';
|
|
71
72
|
import { $Http } from '@/plugins/http';
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<TDropdown trigger="click" placement="bottom-right" @click="(data) => $Method.onAction(data.value, row)">
|
|
29
29
|
<TButton theme="primary" size="small">
|
|
30
30
|
操作
|
|
31
|
-
<template #suffix> <
|
|
31
|
+
<template #suffix> <ILucideChevronDown :size="16" /></template>
|
|
32
32
|
</TButton>
|
|
33
33
|
<TDropdownMenu slot="dropdown">
|
|
34
34
|
<TDropdownItem value="upd">
|
|
@@ -81,6 +81,7 @@ import ILucidePencil from '~icons/lucide/pencil';
|
|
|
81
81
|
import ILucideSettings from '~icons/lucide/settings';
|
|
82
82
|
import ILucideCode from '~icons/lucide/code';
|
|
83
83
|
import ILucideTrash2 from '~icons/lucide/trash-2';
|
|
84
|
+
import ILucideChevronDown from '~icons/lucide/chevron-down';
|
|
84
85
|
import EditDialog from './components/edit.vue';
|
|
85
86
|
import MenuDialog from './components/menu.vue';
|
|
86
87
|
import ApiDialog from './components/api.vue';
|