@fmdeui/fmui 1.0.71 → 1.0.73
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/components/fmtree/index.d.ts +8 -0
- package/es/components/fmtree/index.vue.d.ts +8 -0
- package/es/packages/components/fmtree/index.vue2.mjs +60 -2
- package/index.js +61 -3
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +61 -3
- package/lib/components/fmtree/index.d.ts +8 -0
- package/lib/components/fmtree/index.vue.d.ts +8 -0
- package/lib/packages/components/fmtree/index.vue2.js +60 -2
- 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 → component.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.73 */
|
|
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';
|
|
@@ -26270,6 +26270,45 @@ var _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
26270
26270
|
const getCheckedKeys = () => {
|
|
26271
26271
|
return treeRef.value.getCheckedKeys();
|
|
26272
26272
|
};
|
|
26273
|
+
const getCheckedKeysByCmp = () => {
|
|
26274
|
+
const rel = { orgIdList: [], cmpList: [], depList: [], groupList: [], tenantList: [] };
|
|
26275
|
+
rel.orgIdList = treeRef.value.getCheckedKeys();
|
|
26276
|
+
if (rel.orgIdList && rel.orgIdList.length > 0) {
|
|
26277
|
+
const nodes = treeRef.value.getCheckedNodes();
|
|
26278
|
+
for (let i = 0; i < nodes.length; i++) {
|
|
26279
|
+
if (nodes[i].pid == 0) {
|
|
26280
|
+
rel.cmpList.push(nodes[i].id);
|
|
26281
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
26282
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
26283
|
+
}
|
|
26284
|
+
}
|
|
26285
|
+
if (nodes[i].pid > 0 && nodes[i].level == 2) {
|
|
26286
|
+
rel.depList.push(nodes[i].id);
|
|
26287
|
+
if (!rel.cmpList.includes(nodes[i].pid)) {
|
|
26288
|
+
rel.cmpList.push(nodes[i].pid);
|
|
26289
|
+
}
|
|
26290
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
26291
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
26292
|
+
}
|
|
26293
|
+
}
|
|
26294
|
+
if (nodes[i].pid > 0 && nodes[i].level == 3) {
|
|
26295
|
+
rel.groupList.push(nodes[i].id);
|
|
26296
|
+
if (!rel.depList.includes(nodes[i].pid)) {
|
|
26297
|
+
rel.depList.push(nodes[i].pid);
|
|
26298
|
+
}
|
|
26299
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
26300
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
26301
|
+
}
|
|
26302
|
+
const fitem = findNode(nodes[i].pid);
|
|
26303
|
+
if (fitem && fitem.pid > 0) {
|
|
26304
|
+
if (!rel.cmpList.includes(fitem.pid))
|
|
26305
|
+
rel.cmpList.push(fitem.pid);
|
|
26306
|
+
}
|
|
26307
|
+
}
|
|
26308
|
+
}
|
|
26309
|
+
}
|
|
26310
|
+
return rel;
|
|
26311
|
+
};
|
|
26273
26312
|
const filterNode = (value, data) => {
|
|
26274
26313
|
if (!value) return true;
|
|
26275
26314
|
return data.name.includes(value);
|
|
@@ -26297,15 +26336,34 @@ var _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
26297
26336
|
};
|
|
26298
26337
|
const emit = __emit;
|
|
26299
26338
|
const nodeClick = (node) => {
|
|
26300
|
-
const reldata =
|
|
26339
|
+
const reldata = findNode(node.id);
|
|
26301
26340
|
modeValue.value = { id: node.id, name: node.name, code: reldata ? reldata.code : "" };
|
|
26302
26341
|
emit("node-click", { id: node.id, name: node.name, code: reldata ? reldata.code : "", data: reldata });
|
|
26303
26342
|
};
|
|
26343
|
+
const findNode = (id) => {
|
|
26344
|
+
const search = (nodes) => {
|
|
26345
|
+
var _a;
|
|
26346
|
+
for (const node of nodes) {
|
|
26347
|
+
if (node.id === id) return node;
|
|
26348
|
+
if ((_a = node.children) == null ? void 0 : _a.length) {
|
|
26349
|
+
const found = search(node.children);
|
|
26350
|
+
if (found) return found;
|
|
26351
|
+
}
|
|
26352
|
+
}
|
|
26353
|
+
return null;
|
|
26354
|
+
};
|
|
26355
|
+
return search(state.folderData || []);
|
|
26356
|
+
};
|
|
26357
|
+
const setCheckedKeys = (orgData) => {
|
|
26358
|
+
state.isShowCheckbox = true;
|
|
26359
|
+
treeRef.value.setCheckedKeys(orgData);
|
|
26360
|
+
state.folderData = orgData;
|
|
26361
|
+
};
|
|
26304
26362
|
const setCurrentKey = (key, shouldAutoExpandParent) => {
|
|
26305
26363
|
var _a;
|
|
26306
26364
|
(_a = treeRef.value) == null ? void 0 : _a.setCurrentKey(key, shouldAutoExpandParent);
|
|
26307
26365
|
};
|
|
26308
|
-
__expose({ fetchTreeData, getCheckedKeys, setCurrentKey });
|
|
26366
|
+
__expose({ fetchTreeData, getCheckedKeys, getCheckedKeysByCmp, setCheckedKeys, setCurrentKey });
|
|
26309
26367
|
return (_ctx, _cache) => {
|
|
26310
26368
|
const _component_el_input = resolveComponent("el-input");
|
|
26311
26369
|
const _component_el_checkbox = resolveComponent("el-checkbox");
|
|
@@ -55,6 +55,14 @@ export declare const FmTree: DefineComponent<ExtractPropTypes<{
|
|
|
55
55
|
}>, {
|
|
56
56
|
fetchTreeData: (showLoading?: boolean) => Promise<any>;
|
|
57
57
|
getCheckedKeys: () => TreeKey[];
|
|
58
|
+
getCheckedKeysByCmp: () => {
|
|
59
|
+
orgIdList: any;
|
|
60
|
+
cmpList: any;
|
|
61
|
+
depList: any;
|
|
62
|
+
groupList: any;
|
|
63
|
+
tenantList: any;
|
|
64
|
+
};
|
|
65
|
+
setCheckedKeys: (orgData: any) => void;
|
|
58
66
|
setCurrentKey: (key?: TreeKey | undefined, shouldAutoExpandParent?: boolean | undefined) => void;
|
|
59
67
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
60
68
|
refresh: (...args: any[]) => void;
|
|
@@ -61,6 +61,14 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
61
61
|
}>, {
|
|
62
62
|
fetchTreeData: (showLoading?: boolean) => Promise<any>;
|
|
63
63
|
getCheckedKeys: () => TreeKey[];
|
|
64
|
+
getCheckedKeysByCmp: () => {
|
|
65
|
+
orgIdList: any;
|
|
66
|
+
cmpList: any;
|
|
67
|
+
depList: any;
|
|
68
|
+
groupList: any;
|
|
69
|
+
tenantList: any;
|
|
70
|
+
};
|
|
71
|
+
setCheckedKeys: (orgData: any) => void;
|
|
64
72
|
setCurrentKey: (key?: TreeKey | undefined, shouldAutoExpandParent?: boolean | undefined) => void;
|
|
65
73
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
66
74
|
refresh: (...args: any[]) => void;
|
|
@@ -95,6 +95,45 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
95
95
|
const getCheckedKeys = () => {
|
|
96
96
|
return treeRef.value.getCheckedKeys();
|
|
97
97
|
};
|
|
98
|
+
const getCheckedKeysByCmp = () => {
|
|
99
|
+
const rel = { orgIdList: [], cmpList: [], depList: [], groupList: [], tenantList: [] };
|
|
100
|
+
rel.orgIdList = treeRef.value.getCheckedKeys();
|
|
101
|
+
if (rel.orgIdList && rel.orgIdList.length > 0) {
|
|
102
|
+
const nodes = treeRef.value.getCheckedNodes();
|
|
103
|
+
for (let i = 0; i < nodes.length; i++) {
|
|
104
|
+
if (nodes[i].pid == 0) {
|
|
105
|
+
rel.cmpList.push(nodes[i].id);
|
|
106
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
107
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
if (nodes[i].pid > 0 && nodes[i].level == 2) {
|
|
111
|
+
rel.depList.push(nodes[i].id);
|
|
112
|
+
if (!rel.cmpList.includes(nodes[i].pid)) {
|
|
113
|
+
rel.cmpList.push(nodes[i].pid);
|
|
114
|
+
}
|
|
115
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
116
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
if (nodes[i].pid > 0 && nodes[i].level == 3) {
|
|
120
|
+
rel.groupList.push(nodes[i].id);
|
|
121
|
+
if (!rel.depList.includes(nodes[i].pid)) {
|
|
122
|
+
rel.depList.push(nodes[i].pid);
|
|
123
|
+
}
|
|
124
|
+
if (!rel.tenantList.includes(nodes[i].tenantId)) {
|
|
125
|
+
rel.tenantList.push(nodes[i].tenantId);
|
|
126
|
+
}
|
|
127
|
+
const fitem = findNode(nodes[i].pid);
|
|
128
|
+
if (fitem && fitem.pid > 0) {
|
|
129
|
+
if (!rel.cmpList.includes(fitem.pid))
|
|
130
|
+
rel.cmpList.push(fitem.pid);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
return rel;
|
|
136
|
+
};
|
|
98
137
|
const filterNode = (value, data) => {
|
|
99
138
|
if (!value) return true;
|
|
100
139
|
return data.name.includes(value);
|
|
@@ -122,15 +161,34 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
122
161
|
};
|
|
123
162
|
const emit = __emit;
|
|
124
163
|
const nodeClick = (node) => {
|
|
125
|
-
const reldata =
|
|
164
|
+
const reldata = findNode(node.id);
|
|
126
165
|
modeValue.value = { id: node.id, name: node.name, code: reldata ? reldata.code : "" };
|
|
127
166
|
emit("node-click", { id: node.id, name: node.name, code: reldata ? reldata.code : "", data: reldata });
|
|
128
167
|
};
|
|
168
|
+
const findNode = (id) => {
|
|
169
|
+
const search = (nodes) => {
|
|
170
|
+
var _a;
|
|
171
|
+
for (const node of nodes) {
|
|
172
|
+
if (node.id === id) return node;
|
|
173
|
+
if ((_a = node.children) == null ? void 0 : _a.length) {
|
|
174
|
+
const found = search(node.children);
|
|
175
|
+
if (found) return found;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
return null;
|
|
179
|
+
};
|
|
180
|
+
return search(state.folderData || []);
|
|
181
|
+
};
|
|
182
|
+
const setCheckedKeys = (orgData) => {
|
|
183
|
+
state.isShowCheckbox = true;
|
|
184
|
+
treeRef.value.setCheckedKeys(orgData);
|
|
185
|
+
state.folderData = orgData;
|
|
186
|
+
};
|
|
129
187
|
const setCurrentKey = (key, shouldAutoExpandParent) => {
|
|
130
188
|
var _a;
|
|
131
189
|
(_a = treeRef.value) == null ? void 0 : _a.setCurrentKey(key, shouldAutoExpandParent);
|
|
132
190
|
};
|
|
133
|
-
__expose({ fetchTreeData, getCheckedKeys, setCurrentKey });
|
|
191
|
+
__expose({ fetchTreeData, getCheckedKeys, getCheckedKeysByCmp, setCheckedKeys, setCurrentKey });
|
|
134
192
|
return (_ctx, _cache) => {
|
|
135
193
|
const _component_el_input = vue.resolveComponent("el-input");
|
|
136
194
|
const _component_el_checkbox = vue.resolveComponent("el-checkbox");
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.73 */(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.73 */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.73 */(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.73 */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
|