mooho-base-admin-plus 0.1.70 → 0.4.2
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/dist/mooho-base-admin-plus.min.esm.js +17718 -18051
- package/dist/mooho-base-admin-plus.min.js +77 -67
- package/dist/setting.js +6 -17
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/public/setting.js +6 -17
- package/src/api/customModel.js +1 -1
- package/src/api/dataSource.js +1 -1
- package/src/api/dataView.js +1 -1
- package/src/api/i18nText +33 -0
- package/src/api/model.js +1 -1
- package/src/components/home/notice-list.vue +2 -2
- package/src/components/home/shortcut.vue +9 -9
- package/src/components/input/dialog-select.vue +3 -3
- package/src/components/input/item-select.vue +5 -5
- package/src/components/upload/upload-attachment.vue +13 -3
- package/src/components/upload/upload-image.vue +2 -2
- package/src/components/view/column-check.vue +3 -3
- package/src/components/view/column-edit.vue +18 -18
- package/src/components/view/column-select.vue +4 -4
- package/src/components/view/condition-edit.vue +10 -10
- package/src/components/view/filter-edit.vue +30 -13
- package/src/components/view/filter-setting.vue +8 -8
- package/src/components/view/form-setting-layout.vue +24 -24
- package/src/components/view/form-setting.vue +18 -18
- package/src/components/view/group-column.vue +5 -5
- package/src/components/view/group-method.vue +5 -5
- package/src/components/view/modal-form-filter.vue +28 -25
- package/src/components/view/modal-form-sort.vue +32 -27
- package/src/components/view/modal-form.vue +30 -8
- package/src/components/view/modal-table.vue +22 -2
- package/src/components/view/table-filter.vue +18 -11
- package/src/components/view/table-setting.vue +30 -42
- package/src/components/view/view-chart.vue +6 -6
- package/src/components/view/view-form-draggable.vue +3 -3
- package/src/components/view/view-form.vue +23 -13
- package/src/components/view/view-table.vue +83 -39
- package/src/components/workflow/flow-chart.vue +22 -23
- package/src/i18n/index.js +7 -7
- package/src/i18n/locale/en-US.js +1 -1
- package/src/i18n/locale/lang.js +1 -1
- package/src/i18n/locale/zh-CN.js +1 -1
- package/src/index.js +13 -8
- package/src/layouts/basic-layout/header-breadcrumb/index.vue +18 -3
- package/src/layouts/basic-layout/header-i18n/index.vue +5 -6
- package/src/layouts/basic-layout/header-notice/index.vue +2 -2
- package/src/layouts/basic-layout/header-search/index.vue +3 -3
- package/src/layouts/basic-layout/header-user/index.vue +18 -18
- package/src/layouts/basic-layout/menu-side/index.vue +9 -3
- package/src/layouts/basic-layout/menu-side/menu-title.vue +5 -4
- package/src/layouts/basic-layout/mixins/click-item.js +21 -21
- package/src/layouts/basic-layout/mixins/sider-menu-badge.js +13 -13
- package/src/layouts/basic-layout/mixins/translate-title.js +11 -11
- package/src/layouts/basic-layout/tabs/index.vue +4 -4
- package/src/layouts/basic-layout/water-mark/index.vue +29 -29
- package/src/libs/random_str.js +10 -10
- package/src/libs/request/index.js +18 -4
- package/src/libs/water-mark.js +44 -44
- package/src/mixins/page.js +72 -18
- package/src/pages/account/login.vue +6 -6
- package/src/pages/common/task-form.vue +33 -33
- package/src/pages/common/todo.vue +1 -1
- package/src/pages/system/apiLog.vue +7 -7
- package/src/pages/system/applicationType.vue +6 -6
- package/src/pages/system/customTable.vue +7 -7
- package/src/pages/system/dict.vue +1 -1
- package/src/pages/system/dictType.vue +4 -4
- package/src/pages/system/entityView.vue +3 -3
- package/src/pages/system/error/404.vue +1 -1
- package/src/pages/system/extendColumn.vue +7 -7
- package/src/pages/system/formView.vue +10 -10
- package/src/pages/system/i18nText.vue +98 -0
- package/src/pages/system/log.vue +4 -4
- package/src/pages/system/openUser.vue +5 -5
- package/src/pages/system/organization.vue +1 -1
- package/src/pages/system/permission.vue +5 -5
- package/src/pages/system/planJob.vue +3 -3
- package/src/pages/system/process.vue +10 -10
- package/src/pages/system/role.vue +18 -18
- package/src/pages/system/rolePropertyEdit.vue +83 -100
- package/src/pages/system/systemData.vue +4 -4
- package/src/pages/system/tableView.vue +17 -17
- package/src/pages/system/taskQueue.vue +13 -6
- package/src/pages/system/user.vue +17 -17
- package/src/pages/template/processPage.vue +22 -22
- package/src/plugins/sweetalert2/index.js +1 -5
- package/src/router/dynamic.js +7 -6
- package/src/setting.js +1 -14
- package/src/store/modules/admin/modules/account.js +3 -4
- package/src/store/modules/admin/modules/i18n.js +56 -32
- package/src/store/modules/admin/modules/menu.js +1 -0
- package/src/styles/common.less +47 -47
- package/src/styles/css/default.css +4 -0
- package/src/styles/default/index.less +6 -6
- package/src/styles/font/iconfont.css +47 -47
- package/src/styles/font/iconfont.json +65 -65
- package/src/styles/layout/basic-layout/layout.less +527 -527
- package/src/styles/layout/basic-layout/menu.less +274 -274
- package/src/styles/layout/index.less +2 -2
- package/src/styles/setting.less +6 -6
- package/test/api/barcode.js +1 -1
- package/test/api/inbound.js +1 -1
- package/test/api/movePlan.js +1 -1
- package/test/api/outbound.js +1 -1
- package/test/main.js +4 -4
- package/test/router/routes.js +2 -2
- package/src/i18n/locale.js +0 -102
- package/src/layouts/basic-layout/i18n.js +0 -50
- package/src/plugins/log/index.js +0 -25
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "i-icon"; /* Project id 1125611 */
|
|
3
|
-
src: url('iconfont.woff2?t=1651052284018') format('woff2'),
|
|
4
|
-
url('iconfont.woff?t=1651052284018') format('woff'),
|
|
5
|
-
url('iconfont.ttf?t=1651052284018') format('truetype');
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.i-icon {
|
|
9
|
-
font-family: "i-icon" !important;
|
|
10
|
-
font-size: 16px;
|
|
11
|
-
font-style: normal;
|
|
12
|
-
-webkit-font-smoothing: antialiased;
|
|
13
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.i-icon-i18n:before {
|
|
17
|
-
content: "\e8e9";
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.i-icon-refresh:before {
|
|
21
|
-
content: "\e7d1";
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.i-icon-record:before {
|
|
25
|
-
content: "\e61f";
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.i-icon-notification:before {
|
|
29
|
-
content: "\e69d";
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.i-icon-full-screen:before {
|
|
33
|
-
content: "\e743";
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.i-icon-exit-full-screen:before {
|
|
37
|
-
content: "\e657";
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.i-icon-menu-unfold:before {
|
|
41
|
-
content: "\e68b";
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.i-icon-menu-fold:before {
|
|
45
|
-
content: "\e600";
|
|
46
|
-
}
|
|
47
|
-
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "i-icon"; /* Project id 1125611 */
|
|
3
|
+
src: url('iconfont.woff2?t=1651052284018') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1651052284018') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1651052284018') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.i-icon {
|
|
9
|
+
font-family: "i-icon" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.i-icon-i18n:before {
|
|
17
|
+
content: "\e8e9";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.i-icon-refresh:before {
|
|
21
|
+
content: "\e7d1";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.i-icon-record:before {
|
|
25
|
+
content: "\e61f";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.i-icon-notification:before {
|
|
29
|
+
content: "\e69d";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.i-icon-full-screen:before {
|
|
33
|
+
content: "\e743";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.i-icon-exit-full-screen:before {
|
|
37
|
+
content: "\e657";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.i-icon-menu-unfold:before {
|
|
41
|
+
content: "\e68b";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.i-icon-menu-fold:before {
|
|
45
|
+
content: "\e600";
|
|
46
|
+
}
|
|
47
|
+
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "1125611",
|
|
3
|
-
"name": "iview-admin-pro",
|
|
4
|
-
"font_family": "i-icon",
|
|
5
|
-
"css_prefix_text": "i-icon-",
|
|
6
|
-
"description": "",
|
|
7
|
-
"glyphs": [
|
|
8
|
-
{
|
|
9
|
-
"icon_id": "27328867",
|
|
10
|
-
"name": "i18n",
|
|
11
|
-
"font_class": "i18n",
|
|
12
|
-
"unicode": "e8e9",
|
|
13
|
-
"unicode_decimal": 59625
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"icon_id": "587065",
|
|
17
|
-
"name": "refresh",
|
|
18
|
-
"font_class": "refresh",
|
|
19
|
-
"unicode": "e7d1",
|
|
20
|
-
"unicode_decimal": 59345
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"icon_id": "544041",
|
|
24
|
-
"name": "iconfont-radiobox",
|
|
25
|
-
"font_class": "record",
|
|
26
|
-
"unicode": "e61f",
|
|
27
|
-
"unicode_decimal": 58911
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"icon_id": "2552069",
|
|
31
|
-
"name": "notification",
|
|
32
|
-
"font_class": "notification",
|
|
33
|
-
"unicode": "e69d",
|
|
34
|
-
"unicode_decimal": 59037
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"icon_id": "3556111",
|
|
38
|
-
"name": "full-screen",
|
|
39
|
-
"font_class": "full-screen",
|
|
40
|
-
"unicode": "e743",
|
|
41
|
-
"unicode_decimal": 59203
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"icon_id": "1433808",
|
|
45
|
-
"name": "exit-full-screen",
|
|
46
|
-
"font_class": "exit-full-screen",
|
|
47
|
-
"unicode": "e657",
|
|
48
|
-
"unicode_decimal": 58967
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"icon_id": "6925933",
|
|
52
|
-
"name": "menu-unfold",
|
|
53
|
-
"font_class": "menu-unfold",
|
|
54
|
-
"unicode": "e68b",
|
|
55
|
-
"unicode_decimal": 59019
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
"icon_id": "7839858",
|
|
59
|
-
"name": "menu-fold",
|
|
60
|
-
"font_class": "menu-fold",
|
|
61
|
-
"unicode": "e600",
|
|
62
|
-
"unicode_decimal": 58880
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"id": "1125611",
|
|
3
|
+
"name": "iview-admin-pro",
|
|
4
|
+
"font_family": "i-icon",
|
|
5
|
+
"css_prefix_text": "i-icon-",
|
|
6
|
+
"description": "",
|
|
7
|
+
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "27328867",
|
|
10
|
+
"name": "i18n",
|
|
11
|
+
"font_class": "i18n",
|
|
12
|
+
"unicode": "e8e9",
|
|
13
|
+
"unicode_decimal": 59625
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "587065",
|
|
17
|
+
"name": "refresh",
|
|
18
|
+
"font_class": "refresh",
|
|
19
|
+
"unicode": "e7d1",
|
|
20
|
+
"unicode_decimal": 59345
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"icon_id": "544041",
|
|
24
|
+
"name": "iconfont-radiobox",
|
|
25
|
+
"font_class": "record",
|
|
26
|
+
"unicode": "e61f",
|
|
27
|
+
"unicode_decimal": 58911
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"icon_id": "2552069",
|
|
31
|
+
"name": "notification",
|
|
32
|
+
"font_class": "notification",
|
|
33
|
+
"unicode": "e69d",
|
|
34
|
+
"unicode_decimal": 59037
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"icon_id": "3556111",
|
|
38
|
+
"name": "full-screen",
|
|
39
|
+
"font_class": "full-screen",
|
|
40
|
+
"unicode": "e743",
|
|
41
|
+
"unicode_decimal": 59203
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"icon_id": "1433808",
|
|
45
|
+
"name": "exit-full-screen",
|
|
46
|
+
"font_class": "exit-full-screen",
|
|
47
|
+
"unicode": "e657",
|
|
48
|
+
"unicode_decimal": 58967
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"icon_id": "6925933",
|
|
52
|
+
"name": "menu-unfold",
|
|
53
|
+
"font_class": "menu-unfold",
|
|
54
|
+
"unicode": "e68b",
|
|
55
|
+
"unicode_decimal": 59019
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"icon_id": "7839858",
|
|
59
|
+
"name": "menu-fold",
|
|
60
|
+
"font_class": "menu-fold",
|
|
61
|
+
"unicode": "e600",
|
|
62
|
+
"unicode_decimal": 58880
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|