mooho-base-admin-plus 0.1.65 → 0.1.69
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 +2321 -1661
- package/dist/mooho-base-admin-plus.min.js +57 -69
- package/dist/setting.js +27 -1
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/public/setting.js +27 -1
- package/src/components/input/item-select.vue +1 -0
- package/src/components/upload/upload-attachment.vue +1 -1
- package/src/components/upload/upload-image.vue +7 -1
- package/src/components/view/form-setting-layout.vue +11 -6
- package/src/components/view/table-filter.vue +4 -1
- package/src/components/view/view-form-draggable.vue +4 -1
- package/src/components/view/view-form.vue +6 -2
- package/src/components/view/view-table.vue +62 -68
- 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/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/water-mark/index.vue +29 -29
- package/src/libs/lodop/index.js +3 -1
- package/src/libs/random_str.js +10 -10
- package/src/libs/request/index.js +4 -1
- package/src/libs/water-mark.js +44 -44
- package/src/pages/template/processPage.vue +7 -1
- package/src/plugins/log/index.js +25 -0
- package/src/setting.js +12 -1
- package/src/store/modules/admin/modules/page.js +28 -25
- package/src/styles/common.less +47 -47
- package/src/styles/css/login.css +1 -1
- 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/dist/setting.js
CHANGED
|
@@ -25,6 +25,32 @@ window.setting = {
|
|
|
25
25
|
// 是否允许点击遮罩层关闭
|
|
26
26
|
maskClosable: true,
|
|
27
27
|
// 是否允许拖动
|
|
28
|
-
draggable: true
|
|
28
|
+
draggable: true,
|
|
29
|
+
// 是否显示多语言
|
|
30
|
+
showI18n: true
|
|
31
|
+
},
|
|
32
|
+
/**
|
|
33
|
+
* 多语言配置
|
|
34
|
+
* */
|
|
35
|
+
i18n: {
|
|
36
|
+
// 默认语言
|
|
37
|
+
default: 'zh-CN',
|
|
38
|
+
// 是否根据用户电脑配置自动设置语言(仅第一次有效)
|
|
39
|
+
auto: false,
|
|
40
|
+
// 切换语言时是否刷新页面
|
|
41
|
+
refresh: true,
|
|
42
|
+
// 支持的语言列表
|
|
43
|
+
list: [
|
|
44
|
+
{
|
|
45
|
+
locale: 'zh-CN',
|
|
46
|
+
language: '简体中文'
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
locale: 'en-US',
|
|
50
|
+
language: 'English'
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
// 是否通过远程接口来获取 i81n 文件
|
|
54
|
+
remote: false
|
|
29
55
|
}
|
|
30
56
|
};
|