@fmdeui/fmui 1.0.67 → 1.0.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/es/packages/hooks/sysInfo.mjs +3 -0
- package/es/packages/stores/themeConfig.mjs +5 -0
- package/es/types/pinia/index.d.ts +3 -0
- package/index.js +9 -1
- package/index.min.js +2 -2
- package/index.min.mjs +2 -2
- package/index.mjs +9 -1
- package/lib/packages/hooks/sysInfo.js +3 -0
- package/lib/packages/stores/themeConfig.js +5 -0
- package/lib/types/pinia/index.d.ts +3 -0
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- /package/lib/{defaults.css → make-installer.css} +0 -0
|
@@ -36,12 +36,15 @@ async function loadSysInfo(tenantid) {
|
|
|
36
36
|
themeConfig.value.animation = data.animation;
|
|
37
37
|
themeConfig.value.secondVer = data.secondVer;
|
|
38
38
|
themeConfig.value.captcha = data.captcha;
|
|
39
|
+
themeConfig.value.adminTel = data.adminTel;
|
|
39
40
|
themeConfig.value.forceChangePassword = data.forceChangePassword;
|
|
40
41
|
themeConfig.value.passwordExpirationTime = data.passwordExpirationTime;
|
|
41
42
|
themeConfig.value.i18NSwitch = data.i18NSwitch;
|
|
42
43
|
themeConfig.value.idleTimeout = data.idleTimeout;
|
|
43
44
|
themeConfig.value.onlineNotice = data.onlineNotice;
|
|
44
45
|
themeConfig.value.mobileLogin = data.mobileLogin;
|
|
46
|
+
themeConfig.value.isExpireTip = data.isExpireTip;
|
|
47
|
+
themeConfig.value.expireDay = data.expireDay;
|
|
45
48
|
themeConfig.value.scanLogin = data.scanLogin;
|
|
46
49
|
themeConfig.value.signUp = data.signUp;
|
|
47
50
|
window.__env__.VITE_SM_PUBLIC_KEY = data.publicKey;
|
|
@@ -98,6 +98,11 @@ const useThemeConfig = defineStore("themeConfig", {
|
|
|
98
98
|
isWatermark: true,
|
|
99
99
|
// 水印文案
|
|
100
100
|
watermarkText: "\u7BA1\u7406\u5E73\u53F0",
|
|
101
|
+
adminTel: "137 0885 2680 \u5F20\u5148\u751F",
|
|
102
|
+
// 是否到期提醒
|
|
103
|
+
isExpireTip: false,
|
|
104
|
+
// 到期提醒天数
|
|
105
|
+
expireDay: 99,
|
|
101
106
|
/**
|
|
102
107
|
* 其它设置
|
|
103
108
|
*/
|
|
@@ -72,8 +72,11 @@ export interface ThemeConfigState {
|
|
|
72
72
|
isIsDark: boolean;
|
|
73
73
|
isWatermark: boolean;
|
|
74
74
|
watermarkText: string;
|
|
75
|
+
adminTel: string;
|
|
75
76
|
tagsStyle: string;
|
|
76
77
|
animation: string;
|
|
78
|
+
isExpireTip: boolean;
|
|
79
|
+
expireDay: number;
|
|
77
80
|
columnsAsideStyle: string;
|
|
78
81
|
columnsAsideLayout: string;
|
|
79
82
|
layout: string;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.69 */
|
|
2
2
|
(function (global, factory) {
|
|
3
3
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('vxe-table'), require('@vxe-ui/plugin-render-element'), require('@vxe-ui/plugin-export-xlsx'), require('vxe-pc-ui'), require('exceljs'), require('@element-plus/icons-vue'), require('vue'), require('element-plus'), require('lodash-es'), require('js-cookie'), require('pinia'), require('@vueuse/core'), require('crypto-js'), require('xlsx-js-style'), require('vue-i18n'), require('vue-router'), require('sortablejs'), require('screenfull'), require('push.js'), require('mitt'), require('@microsoft/signalr'), require('axios')) :
|
|
4
4
|
typeof define === 'function' && define.amd ? define(['exports', 'vxe-table', '@vxe-ui/plugin-render-element', '@vxe-ui/plugin-export-xlsx', 'vxe-pc-ui', 'exceljs', '@element-plus/icons-vue', 'vue', 'element-plus', 'lodash-es', 'js-cookie', 'pinia', '@vueuse/core', 'crypto-js', 'xlsx-js-style', 'vue-i18n', 'vue-router', 'sortablejs', 'screenfull', 'push.js', 'mitt', '@microsoft/signalr', 'axios'], factory) :
|
|
@@ -2974,6 +2974,11 @@
|
|
|
2974
2974
|
isWatermark: true,
|
|
2975
2975
|
// 水印文案
|
|
2976
2976
|
watermarkText: "\u7BA1\u7406\u5E73\u53F0",
|
|
2977
|
+
adminTel: "137 0885 2680 \u5F20\u5148\u751F",
|
|
2978
|
+
// 是否到期提醒
|
|
2979
|
+
isExpireTip: false,
|
|
2980
|
+
// 到期提醒天数
|
|
2981
|
+
expireDay: 99,
|
|
2977
2982
|
/**
|
|
2978
2983
|
* 其它设置
|
|
2979
2984
|
*/
|
|
@@ -20184,12 +20189,15 @@
|
|
|
20184
20189
|
themeConfig.value.animation = data.animation;
|
|
20185
20190
|
themeConfig.value.secondVer = data.secondVer;
|
|
20186
20191
|
themeConfig.value.captcha = data.captcha;
|
|
20192
|
+
themeConfig.value.adminTel = data.adminTel;
|
|
20187
20193
|
themeConfig.value.forceChangePassword = data.forceChangePassword;
|
|
20188
20194
|
themeConfig.value.passwordExpirationTime = data.passwordExpirationTime;
|
|
20189
20195
|
themeConfig.value.i18NSwitch = data.i18NSwitch;
|
|
20190
20196
|
themeConfig.value.idleTimeout = data.idleTimeout;
|
|
20191
20197
|
themeConfig.value.onlineNotice = data.onlineNotice;
|
|
20192
20198
|
themeConfig.value.mobileLogin = data.mobileLogin;
|
|
20199
|
+
themeConfig.value.isExpireTip = data.isExpireTip;
|
|
20200
|
+
themeConfig.value.expireDay = data.expireDay;
|
|
20193
20201
|
themeConfig.value.scanLogin = data.scanLogin;
|
|
20194
20202
|
themeConfig.value.signUp = data.signUp;
|
|
20195
20203
|
window.__env__.VITE_SM_PUBLIC_KEY = data.publicKey;
|