@fmdeui/fmui 1.0.35 → 1.0.36
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/router/backEnd.mjs +45 -8
- package/es/router/backEnd.d.ts +1 -1
- package/index.js +51 -9
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +51 -9
- package/lib/packages/router/backEnd.js +45 -8
- package/lib/router/backEnd.d.ts +1 -1
- 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/es/{index.css → make-installer.css} +0 -0
- /package/lib/{defaults.css → component.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.36 */
|
|
2
2
|
import VxeUITable from 'vxe-table';
|
|
3
3
|
import VxeUIPluginRenderElement from '@vxe-ui/plugin-render-element';
|
|
4
4
|
import VxeUIPluginExportXLSX from '@vxe-ui/plugin-export-xlsx';
|
|
@@ -22515,6 +22515,11 @@ var _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
22515
22515
|
}
|
|
22516
22516
|
});
|
|
22517
22517
|
|
|
22518
|
+
var index$4 = /*#__PURE__*/Object.freeze({
|
|
22519
|
+
__proto__: null,
|
|
22520
|
+
default: _sfc_main$o
|
|
22521
|
+
});
|
|
22522
|
+
|
|
22518
22523
|
const FLayout = _sfc_main$o;
|
|
22519
22524
|
|
|
22520
22525
|
function commonFunction() {
|
|
@@ -22844,6 +22849,14 @@ async function initBackEndControlRoutes() {
|
|
|
22844
22849
|
const res = await getBackEndControlRoutes();
|
|
22845
22850
|
if (res == void 0 || res.length <= 0) return Promise.resolve(true);
|
|
22846
22851
|
useRequestOldRoutes().setRequestOldRoutes(res);
|
|
22852
|
+
if (dynamicRoutes.length === 0) {
|
|
22853
|
+
dynamicRoutes.push({
|
|
22854
|
+
path: "/",
|
|
22855
|
+
name: "Layout",
|
|
22856
|
+
component: () => Promise.resolve().then(function () { return index$4; }),
|
|
22857
|
+
children: []
|
|
22858
|
+
});
|
|
22859
|
+
}
|
|
22847
22860
|
dynamicRoutes[0].children = await backEndComponent(res);
|
|
22848
22861
|
await setAddRoute();
|
|
22849
22862
|
setFilterMenuAndCacheTagsViewRoutes();
|
|
@@ -22873,35 +22886,64 @@ async function getBackEndControlRoutes() {
|
|
|
22873
22886
|
return resData;
|
|
22874
22887
|
}
|
|
22875
22888
|
function backEndComponent(routes) {
|
|
22876
|
-
if (!routes) return;
|
|
22889
|
+
if (!routes) return [];
|
|
22877
22890
|
return routes.map((item) => {
|
|
22878
22891
|
if (!item.path) item.path = "";
|
|
22879
|
-
if (item.component
|
|
22880
|
-
|
|
22892
|
+
if (item.component && typeof item.component === "string") {
|
|
22893
|
+
item.component = dynamicImport(dynamicViewsModules, item.component);
|
|
22894
|
+
if (!item.component) {
|
|
22895
|
+
item.component = () => Promise.resolve().then(function () { return index$4; });
|
|
22896
|
+
console.warn(`Using default component for route: ${item.path}`);
|
|
22897
|
+
}
|
|
22898
|
+
}
|
|
22899
|
+
if (item.children) {
|
|
22900
|
+
item.children = backEndComponent(item.children);
|
|
22901
|
+
}
|
|
22881
22902
|
return item;
|
|
22882
22903
|
});
|
|
22883
22904
|
}
|
|
22884
22905
|
function dynamicImport(dynamicViewsModules2, component) {
|
|
22885
22906
|
const keys = Object.keys(dynamicViewsModules2);
|
|
22886
|
-
|
|
22907
|
+
let matchKeys = [];
|
|
22908
|
+
matchKeys = keys.filter((key) => key.includes(component));
|
|
22909
|
+
if (matchKeys.length === 0) {
|
|
22887
22910
|
const REMOVE_PREFIXES = [
|
|
22888
22911
|
"../../../../packages/fmasyspage/views",
|
|
22889
22912
|
"../../../../packages/fmwlpage/views",
|
|
22890
22913
|
"../../../../packages/fmreliefpage/views",
|
|
22891
22914
|
"../views",
|
|
22892
22915
|
"./views",
|
|
22916
|
+
"./layout/routerView",
|
|
22917
|
+
"../layout/routerView",
|
|
22893
22918
|
".."
|
|
22894
22919
|
].map((p) => p.replace(/\./g, "\\.").replace(/\//g, "\\/")).join("|");
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22920
|
+
matchKeys = keys.filter((key) => {
|
|
22921
|
+
const k = key.replace(new RegExp(`^(${REMOVE_PREFIXES})/?`), "/");
|
|
22922
|
+
return k.startsWith(`${component}`) || k.startsWith(`/${component}`);
|
|
22923
|
+
});
|
|
22924
|
+
}
|
|
22898
22925
|
if ((matchKeys == null ? void 0 : matchKeys.length) === 1) {
|
|
22899
22926
|
const matchKey = matchKeys[0];
|
|
22900
22927
|
return dynamicViewsModules2[matchKey];
|
|
22901
22928
|
}
|
|
22902
22929
|
if ((matchKeys == null ? void 0 : matchKeys.length) > 1) {
|
|
22903
|
-
|
|
22930
|
+
const exactMatch = matchKeys.find((key) => key.endsWith(`${component}.vue`) || key.endsWith(`${component}.tsx`));
|
|
22931
|
+
if (exactMatch) {
|
|
22932
|
+
return dynamicViewsModules2[exactMatch];
|
|
22933
|
+
}
|
|
22934
|
+
return dynamicViewsModules2[matchKeys[0]];
|
|
22935
|
+
}
|
|
22936
|
+
if (dynamicViewsModules2[component]) {
|
|
22937
|
+
return dynamicViewsModules2[component];
|
|
22938
|
+
}
|
|
22939
|
+
if (component.startsWith("/")) {
|
|
22940
|
+
const relativeComponent = component.substring(1);
|
|
22941
|
+
if (dynamicViewsModules2[relativeComponent]) {
|
|
22942
|
+
return dynamicViewsModules2[relativeComponent];
|
|
22943
|
+
}
|
|
22904
22944
|
}
|
|
22945
|
+
console.warn(`No component found for: ${component}`);
|
|
22946
|
+
console.warn("Available modules:", Object.keys(dynamicViewsModules2));
|
|
22905
22947
|
}
|
|
22906
22948
|
|
|
22907
22949
|
const storesThemeConfig = useThemeConfig(pinia);
|
|
@@ -37,6 +37,14 @@ async function initBackEndControlRoutes() {
|
|
|
37
37
|
const res = await getBackEndControlRoutes();
|
|
38
38
|
if (res == void 0 || res.length <= 0) return Promise.resolve(true);
|
|
39
39
|
requestOldRoutes.useRequestOldRoutes().setRequestOldRoutes(res);
|
|
40
|
+
if (route.dynamicRoutes.length === 0) {
|
|
41
|
+
route.dynamicRoutes.push({
|
|
42
|
+
path: "/",
|
|
43
|
+
name: "Layout",
|
|
44
|
+
component: () => Promise.resolve().then(function () { return require('../components/fm-layout/src/index.vue.js'); }),
|
|
45
|
+
children: []
|
|
46
|
+
});
|
|
47
|
+
}
|
|
40
48
|
route.dynamicRoutes[0].children = await backEndComponent(res);
|
|
41
49
|
await setAddRoute();
|
|
42
50
|
setFilterMenuAndCacheTagsViewRoutes();
|
|
@@ -69,35 +77,64 @@ async function setBackEndControlRefreshRoutes() {
|
|
|
69
77
|
await getBackEndControlRoutes();
|
|
70
78
|
}
|
|
71
79
|
function backEndComponent(routes) {
|
|
72
|
-
if (!routes) return;
|
|
80
|
+
if (!routes) return [];
|
|
73
81
|
return routes.map((item) => {
|
|
74
82
|
if (!item.path) item.path = "";
|
|
75
|
-
if (item.component
|
|
76
|
-
|
|
83
|
+
if (item.component && typeof item.component === "string") {
|
|
84
|
+
item.component = dynamicImport(dynamicViewsModules, item.component);
|
|
85
|
+
if (!item.component) {
|
|
86
|
+
item.component = () => Promise.resolve().then(function () { return require('../components/fm-layout/src/index.vue.js'); });
|
|
87
|
+
console.warn(`Using default component for route: ${item.path}`);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
if (item.children) {
|
|
91
|
+
item.children = backEndComponent(item.children);
|
|
92
|
+
}
|
|
77
93
|
return item;
|
|
78
94
|
});
|
|
79
95
|
}
|
|
80
96
|
function dynamicImport(dynamicViewsModules2, component) {
|
|
81
97
|
const keys = Object.keys(dynamicViewsModules2);
|
|
82
|
-
|
|
98
|
+
let matchKeys = [];
|
|
99
|
+
matchKeys = keys.filter((key) => key.includes(component));
|
|
100
|
+
if (matchKeys.length === 0) {
|
|
83
101
|
const REMOVE_PREFIXES = [
|
|
84
102
|
"../../../../packages/fmasyspage/views",
|
|
85
103
|
"../../../../packages/fmwlpage/views",
|
|
86
104
|
"../../../../packages/fmreliefpage/views",
|
|
87
105
|
"../views",
|
|
88
106
|
"./views",
|
|
107
|
+
"./layout/routerView",
|
|
108
|
+
"../layout/routerView",
|
|
89
109
|
".."
|
|
90
110
|
].map((p) => p.replace(/\./g, "\\.").replace(/\//g, "\\/")).join("|");
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
111
|
+
matchKeys = keys.filter((key) => {
|
|
112
|
+
const k = key.replace(new RegExp(`^(${REMOVE_PREFIXES})/?`), "/");
|
|
113
|
+
return k.startsWith(`${component}`) || k.startsWith(`/${component}`);
|
|
114
|
+
});
|
|
115
|
+
}
|
|
94
116
|
if ((matchKeys == null ? void 0 : matchKeys.length) === 1) {
|
|
95
117
|
const matchKey = matchKeys[0];
|
|
96
118
|
return dynamicViewsModules2[matchKey];
|
|
97
119
|
}
|
|
98
120
|
if ((matchKeys == null ? void 0 : matchKeys.length) > 1) {
|
|
99
|
-
|
|
121
|
+
const exactMatch = matchKeys.find((key) => key.endsWith(`${component}.vue`) || key.endsWith(`${component}.tsx`));
|
|
122
|
+
if (exactMatch) {
|
|
123
|
+
return dynamicViewsModules2[exactMatch];
|
|
124
|
+
}
|
|
125
|
+
return dynamicViewsModules2[matchKeys[0]];
|
|
126
|
+
}
|
|
127
|
+
if (dynamicViewsModules2[component]) {
|
|
128
|
+
return dynamicViewsModules2[component];
|
|
129
|
+
}
|
|
130
|
+
if (component.startsWith("/")) {
|
|
131
|
+
const relativeComponent = component.substring(1);
|
|
132
|
+
if (dynamicViewsModules2[relativeComponent]) {
|
|
133
|
+
return dynamicViewsModules2[relativeComponent];
|
|
134
|
+
}
|
|
100
135
|
}
|
|
136
|
+
console.warn(`No component found for: ${component}`);
|
|
137
|
+
console.warn("Available modules:", Object.keys(dynamicViewsModules2));
|
|
101
138
|
}
|
|
102
139
|
|
|
103
140
|
exports.backEndComponent = backEndComponent;
|
package/lib/router/backEnd.d.ts
CHANGED
|
@@ -60,4 +60,4 @@ export declare function backEndComponent(routes: any): any;
|
|
|
60
60
|
* @param component 当前要处理项 component
|
|
61
61
|
* @returns 返回处理成函数后的 component
|
|
62
62
|
*/
|
|
63
|
-
export declare function dynamicImport(dynamicViewsModules: Record<string, Function>, component: string):
|
|
63
|
+
export declare function dynamicImport(dynamicViewsModules: Record<string, Function>, component: string): Function | undefined;
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.36 */(function(e,t){typeof exports=="object"&&typeof module!="undefined"?module.exports=t():typeof define=="function"&&define.amd?define(t):(e=typeof globalThis!="undefined"?globalThis:e||self,e.fmdeuiPlusLocaleEn=t())})(this,(function(){"use strict";var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};return e}));
|
package/locale/en.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.36 */var e={name:"en",plus:{datepicker:{date:"Please select date",dates:"Please select dates",week:"Please select week",month:"Please select month",months:"Please select months",year:"Please select year",years:"Please select years",startDatePlaceholder:"Please select start date",endDatePlaceholder:"Please select end date",datetime:"Please select datetime",startMonthPlaceholder:"Please select start month",endMonthPlaceholder:"Please select end month",startTimePlaceholder:"Please select start time",endTimePlaceholder:"Please select end time",shortcutsDate:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDaterange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"},shortcutsMonthrange:{thisMonth:"This month",thisYear:"This year",pastSixMonths:"Past six months"},shortcutsDatetime:{today:"Today",yesterday:"Yesterday",lastWeek:"Last week"},shortcutsDatetimerange:{pastWeek:"Past week",pastMonth:"Past month",pastThreeMonths:"Past three months"}},form:{pleaseEnter:"Please enter ",pleaseSelect:"Please select "},input:{placeholder:"Please enter ",appendTitle:"Yuan",validatePhone:"Please enter a valid phone number",validateIdCard:"Please enter a valid ID card number",validateInteger:"Please enter a valid integer",format:"Please enter a valid ",amount:"amount",numbers:"numbers",digitUppercase:"Please enter a valid amount format",validateError:"Please enter a valid format",escaped:{0:"Cent",1:"Penny",2:"Zero",3:"One",4:"Two",5:"Three",6:"Four",7:"Five",8:"Six",9:"Seven",10:"Eight",11:"Nine",12:"Yuan",13:"Ten thousand",14:"Ten million",15:"Ten billion",16:"Ten",17:"Hundred",18:"Thousand",19:"Short",20:"Whole"}},moduleForm:{save:"Save",back:"Back"},search:{searchText:"Search",resetText:"Reset",expand:"Expand",retract:"Retract",pleaseEnter:"Please enter ",pleaseSelect:"Please select ",popoverAttrs:{showTxt:"More",title:"All conditions",allTxt:"SelectAll",reverseTxt:"Reverse",clearTxt:"ClearAll"}},select:{selectAllTxt:"Select all"},selectIcon:{placeholder:"Please select icon",dialogTitle:"Please select icon",searchPlaceholder:"Search icon",emptyDescription:"No icon found"},copy:{copySuccess:"Copy success",copyFail:"Copy fail",invalidCopyContent:"Invalid copy content"},selectTable:{searchBtnTxt:"Search",radioTxt:"Radio",loadingTxt:"Loading...",copySuccess:"Copy success",copyFail:"Copy fail"},stepWizard:{lastBtnTitle:"Complete"},table:{columnBind:{btnTxt:"Column setting",title:"Column setting"},fistColumn:{label:"Number",radio:"Radio"},operator:{label:"Operation",more:"More",sum:"Sum",total:"Total",allSum:"All sum"},singleEdit:{tipText:"Click to edit"},pleaseEnter:"Please enter ",pleaseSelect:"Please select ",loadingTxt:"Loading...",dragTxt:"Drag",saveBtnTxt:"Save",density:"Density",default:"Default",loose:"Loose",compact:"Compact"},list:{idleTimeoutMessage:"Long time no operation, system logged out.",sysMessage:"System Message"}}};export{e as default};
|
package/locale/en.mjs
CHANGED
package/locale/zh-cn.js
CHANGED
package/locale/zh-cn.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.36 */(function(u,e){typeof exports=="object"&&typeof module!="undefined"?module.exports=e():typeof define=="function"&&define.amd?define(e):(u=typeof globalThis!="undefined"?globalThis:u||self,u.fmdeuiPlusLocaleZhCn=e())})(this,(function(){"use strict";var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};return u}));
|
package/locale/zh-cn.min.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.36 */var u={name:"zh-cn",plus:{datepicker:{date:"\u8BF7\u9009\u62E9\u65E5\u671F",dates:"\u8BF7\u9009\u62E9\u65E5\u671F",week:"\u8BF7\u9009\u62E9\u5468",month:"\u8BF7\u9009\u62E9\u6708\u4EFD",months:"\u8BF7\u9009\u62E9\u6708\u4EFD",year:"\u8BF7\u9009\u62E9\u5E74\u4EFD",years:"\u8BF7\u9009\u62E9\u5E74\u4EFD",startDatePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65E5\u671F",endDatePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65E5\u671F",datetime:"\u8BF7\u9009\u62E9\u65E5\u671F\u65F6\u95F4",startMonthPlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u6708\u4EFD",endMonthPlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u6708\u4EFD",startTimePlaceholder:"\u8BF7\u9009\u62E9\u5F00\u59CB\u65F6\u95F4",endTimePlaceholder:"\u8BF7\u9009\u62E9\u7ED3\u675F\u65F6\u95F4",shortcutsDate:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDaterange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"},shortcutsMonthrange:{thisMonth:"\u672C\u6708",thisYear:"\u4ECA\u5E74\u81F3\u4ECA",pastSixMonths:"\u6700\u8FD1\u516D\u4E2A\u6708"},shortcutsDatetime:{today:"\u4ECA\u5929",yesterday:"\u6628\u5929",lastWeek:"\u4E00\u5468\u524D"},shortcutsDatetimerange:{pastWeek:"\u6700\u8FD1\u4E00\u5468",pastMonth:"\u6700\u8FD1\u4E00\u4E2A\u6708",pastThreeMonths:"\u6700\u8FD1\u4E09\u4E2A\u6708"}},form:{pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9"},input:{placeholder:"\u8BF7\u8F93\u5165",appendTitle:"\u5143",validatePhone:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7\u7801",validateIdCard:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801",validateInteger:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u6574\u6570",format:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684",amount:"\u91D1\u989D",numbers:"\u6570\u5B57",digitUppercase:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u91D1\u989D\u683C\u5F0F",validateError:"\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u683C\u5F0F",escaped:{0:"\u89D2",1:"\u5206",2:"\u96F6",3:"\u58F9",4:"\u8D30",5:"\u53C1",6:"\u8086",7:"\u4F0D",8:"\u9646",9:"\u67D2",10:"\u634C",11:"\u7396",12:"\u5143",13:"\u4E07",14:"\u4EBF",15:"\u5146",16:"\u62FE",17:"\u4F70",18:"\u4EDF",19:"\u6B20",20:"\u6574"}},moduleForm:{save:"\u4FDD\u5B58",back:"\u8FD4\u56DE"},search:{searchText:"\u67E5\u8BE2",resetText:"\u91CD\u7F6E",expand:"\u5C55\u5F00",retract:"\u6536\u8D77",pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",popoverAttrs:{showTxt:"\u66F4\u591A",title:"\u6240\u6709\u6761\u4EF6",allTxt:"\u5168\u9009",reverseTxt:"\u53CD\u9009",clearTxt:"\u6E05\u7A7A"}},select:{selectAllTxt:"\u5168\u9009"},selectIcon:{placeholder:"\u8BF7\u9009\u62E9\u56FE\u6807",dialogTitle:"\u8BF7\u9009\u62E9\u56FE\u6807",searchPlaceholder:"\u641C\u7D22\u56FE\u6807",emptyDescription:"\u672A\u641C\u7D22\u5230\u60A8\u8981\u627E\u7684\u56FE\u6807"},copy:{copySuccess:"\u590D\u5236\u6210\u529F",copyFail:"\u590D\u5236\u5931\u8D25",invalidCopyContent:"\u65E0\u6548\u7684\u590D\u5236\u5185\u5BB9"},selectTable:{searchBtnTxt:"\u5173\u95ED\u4E0B\u62C9\u6846",radioTxt:"\u5355\u9009",loadingTxt:"\u52A0\u8F7D\u4E2D..."},stepWizard:{lastBtnTitle:"\u5B8C\u6210"},table:{columnBind:{btnTxt:"\u5217\u8BBE\u7F6E",title:"\u5217\u8BBE\u7F6E"},fistColumn:{label:"\u5E8F\u53F7",radio:"\u5355\u9009"},operator:{label:"\u64CD\u4F5C",more:"\u66F4\u591A",sum:"\u5F53\u9875\u5408\u8BA1",total:"\u5408\u8BA1",allSum:"\u5168\u90E8\u5408\u8BA1"},singleEdit:{tipText:"\u5355\u51FB\u53EF\u7F16\u8F91"},pleaseEnter:"\u8BF7\u8F93\u5165",pleaseSelect:"\u8BF7\u9009\u62E9",loadingTxt:"\u52A0\u8F7D\u4E2D...",saveBtnTxt:"\u4FDD\u5B58",dragTxt:"\u62D6\u52A8",density:"\u5BC6\u5EA6",default:"\u9ED8\u8BA4",loose:"\u5BBD\u677E",compact:"\u7D27\u51D1"},list:{idleTimeoutMessage:"\u957F\u65F6\u95F4\u672A\u64CD\u4F5C\uFF0C\u5DF2\u9000\u51FA\u7CFB\u7EDF\u3002",sysMessage:"\u7CFB\u7EDF\u6D88\u606F"}}};export{u as default};
|
package/locale/zh-cn.mjs
CHANGED
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|