@fmdeui/fmui 1.0.111 → 1.0.112
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/fm-select/index.d.ts +27 -0
- package/es/components/fm-select/index.vue.d.ts +45 -0
- package/es/packages/components/fm-inputdropdown/index.vue2.mjs +2 -1
- package/es/packages/components/fm-select/index.vue2.mjs +32 -2
- package/index.js +34 -3
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +34 -3
- package/lib/components/fm-select/index.d.ts +27 -0
- package/lib/components/fm-select/index.vue.d.ts +45 -0
- package/lib/packages/components/fm-inputdropdown/index.vue2.js +2 -1
- package/lib/packages/components/fm-select/index.vue2.js +31 -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/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.112 */
|
|
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';
|
|
@@ -26707,7 +26707,7 @@ var _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
26707
26707
|
|
|
26708
26708
|
const FModifyRecord = _sfc_main$v;
|
|
26709
26709
|
|
|
26710
|
-
const _hoisted_1$n = { style: { "display": "flex", "justify-content": "end", "align-items": "right" } };
|
|
26710
|
+
const _hoisted_1$n = { style: { "display": "flex", "justify-content": "end", "align-items": "right", "cursor": "pointer" } };
|
|
26711
26711
|
var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
26712
26712
|
...{
|
|
26713
26713
|
name: "FmSelect"
|
|
@@ -26787,6 +26787,27 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
26787
26787
|
autoLoadData: {
|
|
26788
26788
|
type: Boolean,
|
|
26789
26789
|
default: true
|
|
26790
|
+
},
|
|
26791
|
+
/**
|
|
26792
|
+
* 是否添加空选项
|
|
26793
|
+
*/
|
|
26794
|
+
addEmptyOption: {
|
|
26795
|
+
type: Boolean,
|
|
26796
|
+
default: false
|
|
26797
|
+
},
|
|
26798
|
+
/**
|
|
26799
|
+
* 空选项的标签
|
|
26800
|
+
*/
|
|
26801
|
+
emptyOptionLabel: {
|
|
26802
|
+
type: String,
|
|
26803
|
+
default: "\u5168\u90E8"
|
|
26804
|
+
},
|
|
26805
|
+
/**
|
|
26806
|
+
* 空选项的值
|
|
26807
|
+
*/
|
|
26808
|
+
emptyOptionValue: {
|
|
26809
|
+
type: Number,
|
|
26810
|
+
default: 0
|
|
26790
26811
|
}
|
|
26791
26812
|
}, {
|
|
26792
26813
|
"id": { default: 0, required: false },
|
|
@@ -26804,6 +26825,10 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
26804
26825
|
});
|
|
26805
26826
|
const emit = __emit;
|
|
26806
26827
|
const handelChange = (val) => {
|
|
26828
|
+
if (props.addEmptyOption && val == props.emptyOptionValue) {
|
|
26829
|
+
modeValueId.value = props.emptyOptionValue;
|
|
26830
|
+
return;
|
|
26831
|
+
}
|
|
26807
26832
|
const fitem = state.optionData.find((item) => item[props.blabel] === val);
|
|
26808
26833
|
modeValueId.value = fitem != null ? fitem[props.bvalue] : 0;
|
|
26809
26834
|
modeValueName.value = fitem != null ? fitem[props.blabel] : "";
|
|
@@ -26857,6 +26882,11 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
26857
26882
|
])
|
|
26858
26883
|
]),
|
|
26859
26884
|
default: withCtx(() => [
|
|
26885
|
+
__props.addEmptyOption ? (openBlock(), createBlock(_component_el_option, {
|
|
26886
|
+
key: 0,
|
|
26887
|
+
label: __props.emptyOptionLabel,
|
|
26888
|
+
value: __props.emptyOptionLabel
|
|
26889
|
+
}, null, 8, ["label", "value"])) : createCommentVNode("v-if", true),
|
|
26860
26890
|
(openBlock(true), createElementBlock(
|
|
26861
26891
|
Fragment,
|
|
26862
26892
|
null,
|
|
@@ -27057,7 +27087,8 @@ var _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
27057
27087
|
createVNode(_component_el_icon, {
|
|
27058
27088
|
color: "#13c2c2",
|
|
27059
27089
|
size: __props.freshSize,
|
|
27060
|
-
onClick: handRestdata
|
|
27090
|
+
onClick: handRestdata,
|
|
27091
|
+
style: { "cursor": "pointer" }
|
|
27061
27092
|
}, {
|
|
27062
27093
|
default: withCtx(() => [
|
|
27063
27094
|
createVNode(unref(RefreshLeft))
|
|
@@ -78,6 +78,18 @@ export declare const FmSelect: DefineComponent<ExtractPropTypes<{
|
|
|
78
78
|
type: BooleanConstructor;
|
|
79
79
|
default: boolean;
|
|
80
80
|
};
|
|
81
|
+
addEmptyOption: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
emptyOptionLabel: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
emptyOptionValue: {
|
|
90
|
+
type: NumberConstructor;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
81
93
|
id: {
|
|
82
94
|
type: PropType<number>;
|
|
83
95
|
};
|
|
@@ -167,6 +179,18 @@ export declare const FmSelect: DefineComponent<ExtractPropTypes<{
|
|
|
167
179
|
type: BooleanConstructor;
|
|
168
180
|
default: boolean;
|
|
169
181
|
};
|
|
182
|
+
addEmptyOption: {
|
|
183
|
+
type: BooleanConstructor;
|
|
184
|
+
default: boolean;
|
|
185
|
+
};
|
|
186
|
+
emptyOptionLabel: {
|
|
187
|
+
type: StringConstructor;
|
|
188
|
+
default: string;
|
|
189
|
+
};
|
|
190
|
+
emptyOptionValue: {
|
|
191
|
+
type: NumberConstructor;
|
|
192
|
+
default: number;
|
|
193
|
+
};
|
|
170
194
|
id: {
|
|
171
195
|
type: PropType<number>;
|
|
172
196
|
};
|
|
@@ -191,4 +215,7 @@ export declare const FmSelect: DefineComponent<ExtractPropTypes<{
|
|
|
191
215
|
multibasecode: any[];
|
|
192
216
|
freshSize: string | number;
|
|
193
217
|
autoLoadData: boolean;
|
|
218
|
+
addEmptyOption: boolean;
|
|
219
|
+
emptyOptionLabel: string;
|
|
220
|
+
emptyOptionValue: number;
|
|
194
221
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -99,6 +99,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
99
99
|
type: BooleanConstructor;
|
|
100
100
|
default: boolean;
|
|
101
101
|
};
|
|
102
|
+
/**
|
|
103
|
+
* 是否添加空选项
|
|
104
|
+
*/
|
|
105
|
+
addEmptyOption: {
|
|
106
|
+
type: BooleanConstructor;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
109
|
+
/**
|
|
110
|
+
* 空选项的标签
|
|
111
|
+
*/
|
|
112
|
+
emptyOptionLabel: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
default: string;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* 空选项的值
|
|
118
|
+
*/
|
|
119
|
+
emptyOptionValue: {
|
|
120
|
+
type: NumberConstructor;
|
|
121
|
+
default: number;
|
|
122
|
+
};
|
|
102
123
|
id: {
|
|
103
124
|
type: PropType<number>;
|
|
104
125
|
};
|
|
@@ -209,6 +230,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
209
230
|
type: BooleanConstructor;
|
|
210
231
|
default: boolean;
|
|
211
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* 是否添加空选项
|
|
235
|
+
*/
|
|
236
|
+
addEmptyOption: {
|
|
237
|
+
type: BooleanConstructor;
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
/**
|
|
241
|
+
* 空选项的标签
|
|
242
|
+
*/
|
|
243
|
+
emptyOptionLabel: {
|
|
244
|
+
type: StringConstructor;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* 空选项的值
|
|
249
|
+
*/
|
|
250
|
+
emptyOptionValue: {
|
|
251
|
+
type: NumberConstructor;
|
|
252
|
+
default: number;
|
|
253
|
+
};
|
|
212
254
|
id: {
|
|
213
255
|
type: PropType<number>;
|
|
214
256
|
};
|
|
@@ -233,5 +275,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
233
275
|
multibasecode: any[];
|
|
234
276
|
freshSize: string | number;
|
|
235
277
|
autoLoadData: boolean;
|
|
278
|
+
addEmptyOption: boolean;
|
|
279
|
+
emptyOptionLabel: string;
|
|
280
|
+
emptyOptionValue: number;
|
|
236
281
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
237
282
|
export default _default;
|
|
@@ -184,7 +184,8 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
184
184
|
vue.createVNode(_component_el_icon, {
|
|
185
185
|
color: "#13c2c2",
|
|
186
186
|
size: __props.freshSize,
|
|
187
|
-
onClick: handRestdata
|
|
187
|
+
onClick: handRestdata,
|
|
188
|
+
style: { "cursor": "pointer" }
|
|
188
189
|
}, {
|
|
189
190
|
default: vue.withCtx(() => [
|
|
190
191
|
vue.createVNode(vue.unref(svg.RefreshLeft))
|
|
@@ -7,7 +7,7 @@ var svg = require('@element-plus/icons-vue');
|
|
|
7
7
|
require('../../stores/index.js');
|
|
8
8
|
var ainputdropdow = require('../../stores/ainputdropdow.js');
|
|
9
9
|
|
|
10
|
-
const _hoisted_1 = { style: { "display": "flex", "justify-content": "end", "align-items": "right" } };
|
|
10
|
+
const _hoisted_1 = { style: { "display": "flex", "justify-content": "end", "align-items": "right", "cursor": "pointer" } };
|
|
11
11
|
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
12
12
|
...{
|
|
13
13
|
name: "FmSelect"
|
|
@@ -87,6 +87,27 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
87
87
|
autoLoadData: {
|
|
88
88
|
type: Boolean,
|
|
89
89
|
default: true
|
|
90
|
+
},
|
|
91
|
+
/**
|
|
92
|
+
* 是否添加空选项
|
|
93
|
+
*/
|
|
94
|
+
addEmptyOption: {
|
|
95
|
+
type: Boolean,
|
|
96
|
+
default: false
|
|
97
|
+
},
|
|
98
|
+
/**
|
|
99
|
+
* 空选项的标签
|
|
100
|
+
*/
|
|
101
|
+
emptyOptionLabel: {
|
|
102
|
+
type: String,
|
|
103
|
+
default: "\u5168\u90E8"
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
* 空选项的值
|
|
107
|
+
*/
|
|
108
|
+
emptyOptionValue: {
|
|
109
|
+
type: Number,
|
|
110
|
+
default: 0
|
|
90
111
|
}
|
|
91
112
|
}, {
|
|
92
113
|
"id": { default: 0, required: false },
|
|
@@ -104,6 +125,10 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
104
125
|
});
|
|
105
126
|
const emit = __emit;
|
|
106
127
|
const handelChange = (val) => {
|
|
128
|
+
if (props.addEmptyOption && val == props.emptyOptionValue) {
|
|
129
|
+
modeValueId.value = props.emptyOptionValue;
|
|
130
|
+
return;
|
|
131
|
+
}
|
|
107
132
|
const fitem = state.optionData.find((item) => item[props.blabel] === val);
|
|
108
133
|
modeValueId.value = fitem != null ? fitem[props.bvalue] : 0;
|
|
109
134
|
modeValueName.value = fitem != null ? fitem[props.blabel] : "";
|
|
@@ -157,6 +182,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
157
182
|
])
|
|
158
183
|
]),
|
|
159
184
|
default: vue.withCtx(() => [
|
|
185
|
+
__props.addEmptyOption ? (vue.openBlock(), vue.createBlock(_component_el_option, {
|
|
186
|
+
key: 0,
|
|
187
|
+
label: __props.emptyOptionLabel,
|
|
188
|
+
value: __props.emptyOptionLabel
|
|
189
|
+
}, null, 8, ["label", "value"])) : vue.createCommentVNode("v-if", true),
|
|
160
190
|
(vue.openBlock(true), vue.createElementBlock(
|
|
161
191
|
vue.Fragment,
|
|
162
192
|
null,
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.112 */(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.112 */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.112 */(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.112 */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