@fmdeui/fmui 1.0.137 → 1.0.139
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-autocomplete/component/supplierSelectDialog.vue.d.ts +4 -1
- package/es/components/fm-autocomplete/index.d.ts +100 -2
- package/es/components/fm-autocomplete/index.vue.d.ts +100 -2
- package/es/packages/components/fm-autocomplete/component/supplierSelectDialog2.vue.mjs +7 -2
- package/es/packages/components/fm-autocomplete/index2.vue.mjs +18 -1
- package/index.js +26 -4
- package/index.min.js +6 -6
- package/index.min.mjs +6 -6
- package/index.mjs +26 -4
- package/lib/components/fm-autocomplete/component/supplierSelectDialog.vue.d.ts +4 -1
- package/lib/components/fm-autocomplete/index.d.ts +100 -2
- package/lib/components/fm-autocomplete/index.vue.d.ts +100 -2
- package/lib/packages/components/fm-autocomplete/component/supplierSelectDialog2.vue.js +7 -2
- package/lib/packages/components/fm-autocomplete/index2.vue.js +18 -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/{make-installer.css → index.css} +0 -0
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.139 */
|
|
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';
|
|
@@ -27924,13 +27924,14 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
27924
27924
|
}
|
|
27925
27925
|
},
|
|
27926
27926
|
emits: ["update:visible", "change"],
|
|
27927
|
-
setup(__props, { emit: __emit }) {
|
|
27927
|
+
setup(__props, { expose: __expose, emit: __emit }) {
|
|
27928
27928
|
let emits = __emit;
|
|
27929
27929
|
const props = __props;
|
|
27930
27930
|
const userList = ref([]);
|
|
27931
27931
|
let checkedUsersList = ref([]);
|
|
27932
27932
|
const state = reactive({
|
|
27933
27933
|
total: 0,
|
|
27934
|
+
pdata: null,
|
|
27934
27935
|
queryParams: {
|
|
27935
27936
|
orgId: -1,
|
|
27936
27937
|
page: 1,
|
|
@@ -27964,13 +27965,14 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
27964
27965
|
}
|
|
27965
27966
|
function handleSelectUser(row) {
|
|
27966
27967
|
if (!row || row.id == "") return;
|
|
27967
|
-
emits("change", { id: row.id, name: row.supplierName, supplierType: row.supplierType, data: row });
|
|
27968
|
+
emits("change", { id: row.id, name: row.supplierName, supplierType: row.supplierType, pdata: state.pdata, data: row });
|
|
27968
27969
|
}
|
|
27969
27970
|
const handledbclick = (row) => {
|
|
27970
27971
|
handleSelectUser(row);
|
|
27971
27972
|
};
|
|
27972
27973
|
const loadSub = async (row, treeNode, resolve) => {
|
|
27973
27974
|
var _a, _b, _c;
|
|
27975
|
+
state.pdata = row;
|
|
27974
27976
|
let res = await useBaseApi(props.userService).post({ ...state.queryParams, ...props.userParams, pid: row.id }, props.userAction);
|
|
27975
27977
|
row.children = (_b = (_a = res.data.result) == null ? void 0 : _a.items) != null ? _b : [];
|
|
27976
27978
|
resolve((_c = row.children) != null ? _c : []);
|
|
@@ -27987,6 +27989,9 @@ var _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
27987
27989
|
checkedUsersList.value = [];
|
|
27988
27990
|
emits("update:visible", false);
|
|
27989
27991
|
};
|
|
27992
|
+
__expose({
|
|
27993
|
+
handleQuery
|
|
27994
|
+
});
|
|
27990
27995
|
return (_ctx, _cache) => {
|
|
27991
27996
|
const _component_ele_Edit = resolveComponent("ele-Edit");
|
|
27992
27997
|
const _component_el_icon = resolveComponent("el-icon");
|
|
@@ -29018,6 +29023,10 @@ var _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
29018
29023
|
accountAction: {
|
|
29019
29024
|
type: String,
|
|
29020
29025
|
default: "accountTable"
|
|
29026
|
+
},
|
|
29027
|
+
refresh: {
|
|
29028
|
+
type: Boolean,
|
|
29029
|
+
default: false
|
|
29021
29030
|
}
|
|
29022
29031
|
}, {
|
|
29023
29032
|
"name": {
|
|
@@ -29037,6 +29046,7 @@ var _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
29037
29046
|
const autoId = useModel(__props, "id");
|
|
29038
29047
|
const props = __props;
|
|
29039
29048
|
const visibleopenDialog = ref(false);
|
|
29049
|
+
const tableDialogRef = ref();
|
|
29040
29050
|
const emit = __emit;
|
|
29041
29051
|
const querySearchAsync = async (queryString, cb) => {
|
|
29042
29052
|
var _a;
|
|
@@ -29070,6 +29080,11 @@ var _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
29070
29080
|
autoId.value = value.id;
|
|
29071
29081
|
emit("select", value);
|
|
29072
29082
|
};
|
|
29083
|
+
const handleRefresh = () => {
|
|
29084
|
+
if (tableDialogRef.value) {
|
|
29085
|
+
tableDialogRef.value.handleQuery();
|
|
29086
|
+
}
|
|
29087
|
+
};
|
|
29073
29088
|
return (_ctx, _cache) => {
|
|
29074
29089
|
const _component_el_icon = resolveComponent("el-icon");
|
|
29075
29090
|
const _component_el_autocomplete = resolveComponent("el-autocomplete");
|
|
@@ -29101,7 +29116,12 @@ var _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
29101
29116
|
createVNode(_component_el_icon, {
|
|
29102
29117
|
color: "#E6A23C",
|
|
29103
29118
|
size: __props.searchsize,
|
|
29104
|
-
onClick: _cache[0] || (_cache[0] = withModifiers(() =>
|
|
29119
|
+
onClick: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
29120
|
+
visibleopenDialog.value = true;
|
|
29121
|
+
if (props.refresh) {
|
|
29122
|
+
handleRefresh();
|
|
29123
|
+
}
|
|
29124
|
+
}, ["stop"]))
|
|
29105
29125
|
}, {
|
|
29106
29126
|
default: withCtx(() => [
|
|
29107
29127
|
createVNode(unref(Search))
|
|
@@ -29124,6 +29144,8 @@ var _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
29124
29144
|
}, null, 8, ["visible", "orgService", "orgAction", "orgparas", "title", "userService", "userAction", "userParams"])) : createCommentVNode("v-if", true),
|
|
29125
29145
|
__props.openType == 2 ? (openBlock(), createBlock(_sfc_main$u, {
|
|
29126
29146
|
key: 1,
|
|
29147
|
+
ref_key: "tableDialogRef",
|
|
29148
|
+
ref: tableDialogRef,
|
|
29127
29149
|
visible: visibleopenDialog.value,
|
|
29128
29150
|
"onUpdate:visible": _cache[2] || (_cache[2] = ($event) => visibleopenDialog.value = $event),
|
|
29129
29151
|
title: __props.title,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare function handleQuery(): Promise<void>;
|
|
2
3
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
4
|
visible: {
|
|
4
5
|
type: BooleanConstructor;
|
|
@@ -24,7 +25,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
24
25
|
type: ObjectConstructor;
|
|
25
26
|
default: () => void;
|
|
26
27
|
};
|
|
27
|
-
}>, {
|
|
28
|
+
}>, {
|
|
29
|
+
handleQuery: typeof handleQuery;
|
|
30
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
28
31
|
change: (...args: any[]) => void;
|
|
29
32
|
"update:visible": (...args: any[]) => void;
|
|
30
33
|
}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
2
|
export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
3
3
|
placeholder: {
|
|
4
4
|
type: StringConstructor;
|
|
@@ -80,6 +80,10 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
80
80
|
type: StringConstructor;
|
|
81
81
|
default: string;
|
|
82
82
|
};
|
|
83
|
+
refresh: {
|
|
84
|
+
type: BooleanConstructor;
|
|
85
|
+
default: boolean;
|
|
86
|
+
};
|
|
83
87
|
name: {
|
|
84
88
|
type: PropType<string>;
|
|
85
89
|
required: true;
|
|
@@ -174,6 +178,10 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
174
178
|
type: StringConstructor;
|
|
175
179
|
default: string;
|
|
176
180
|
};
|
|
181
|
+
refresh: {
|
|
182
|
+
type: BooleanConstructor;
|
|
183
|
+
default: boolean;
|
|
184
|
+
};
|
|
177
185
|
name: {
|
|
178
186
|
type: PropType<string>;
|
|
179
187
|
required: true;
|
|
@@ -191,6 +199,7 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
191
199
|
top: number;
|
|
192
200
|
params: Record<string, any>;
|
|
193
201
|
title: string;
|
|
202
|
+
refresh: boolean;
|
|
194
203
|
placeholder: string;
|
|
195
204
|
vId: string;
|
|
196
205
|
orgService: string;
|
|
@@ -208,4 +217,93 @@ export declare const FmAutocomplete: DefineComponent<ExtractPropTypes<{
|
|
|
208
217
|
openType: number;
|
|
209
218
|
accountService: string;
|
|
210
219
|
accountAction: string;
|
|
211
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
220
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
221
|
+
tableDialogRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
222
|
+
visible: {
|
|
223
|
+
type: BooleanConstructor;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
226
|
+
title: {
|
|
227
|
+
type: StringConstructor;
|
|
228
|
+
default: string;
|
|
229
|
+
};
|
|
230
|
+
data: {
|
|
231
|
+
type: ArrayConstructor;
|
|
232
|
+
default: () => never[];
|
|
233
|
+
};
|
|
234
|
+
userService: {
|
|
235
|
+
type: StringConstructor;
|
|
236
|
+
default: string;
|
|
237
|
+
};
|
|
238
|
+
userAction: {
|
|
239
|
+
type: StringConstructor;
|
|
240
|
+
default: string;
|
|
241
|
+
};
|
|
242
|
+
userParams: {
|
|
243
|
+
type: ObjectConstructor;
|
|
244
|
+
default: () => void;
|
|
245
|
+
};
|
|
246
|
+
}>> & Readonly<{
|
|
247
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
248
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
249
|
+
}>, {
|
|
250
|
+
handleQuery: () => Promise<void>;
|
|
251
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
252
|
+
change: (...args: any[]) => void;
|
|
253
|
+
"update:visible": (...args: any[]) => void;
|
|
254
|
+
}, PublicProps, {
|
|
255
|
+
title: string;
|
|
256
|
+
data: unknown[];
|
|
257
|
+
visible: boolean;
|
|
258
|
+
userService: string;
|
|
259
|
+
userAction: string;
|
|
260
|
+
userParams: Record<string, any>;
|
|
261
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
262
|
+
queryRef: unknown;
|
|
263
|
+
refTable: unknown;
|
|
264
|
+
}, any, ComponentProvideOptions, {
|
|
265
|
+
P: {};
|
|
266
|
+
B: {};
|
|
267
|
+
D: {};
|
|
268
|
+
C: {};
|
|
269
|
+
M: {};
|
|
270
|
+
Defaults: {};
|
|
271
|
+
}, Readonly< ExtractPropTypes<{
|
|
272
|
+
visible: {
|
|
273
|
+
type: BooleanConstructor;
|
|
274
|
+
default: boolean;
|
|
275
|
+
};
|
|
276
|
+
title: {
|
|
277
|
+
type: StringConstructor;
|
|
278
|
+
default: string;
|
|
279
|
+
};
|
|
280
|
+
data: {
|
|
281
|
+
type: ArrayConstructor;
|
|
282
|
+
default: () => never[];
|
|
283
|
+
};
|
|
284
|
+
userService: {
|
|
285
|
+
type: StringConstructor;
|
|
286
|
+
default: string;
|
|
287
|
+
};
|
|
288
|
+
userAction: {
|
|
289
|
+
type: StringConstructor;
|
|
290
|
+
default: string;
|
|
291
|
+
};
|
|
292
|
+
userParams: {
|
|
293
|
+
type: ObjectConstructor;
|
|
294
|
+
default: () => void;
|
|
295
|
+
};
|
|
296
|
+
}>> & Readonly<{
|
|
297
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
298
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
299
|
+
}>, {
|
|
300
|
+
handleQuery: () => Promise<void>;
|
|
301
|
+
}, {}, {}, {}, {
|
|
302
|
+
title: string;
|
|
303
|
+
data: unknown[];
|
|
304
|
+
visible: boolean;
|
|
305
|
+
userService: string;
|
|
306
|
+
userAction: string;
|
|
307
|
+
userParams: Record<string, any>;
|
|
308
|
+
}> | null;
|
|
309
|
+
}, any>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
1
|
+
import { DefineComponent, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives } from 'vue';
|
|
2
2
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
3
3
|
placeholder: {
|
|
4
4
|
type: StringConstructor;
|
|
@@ -102,6 +102,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
102
102
|
type: StringConstructor;
|
|
103
103
|
default: string;
|
|
104
104
|
};
|
|
105
|
+
refresh: {
|
|
106
|
+
type: BooleanConstructor;
|
|
107
|
+
default: boolean;
|
|
108
|
+
};
|
|
105
109
|
name: {
|
|
106
110
|
type: PropType<string>;
|
|
107
111
|
required: true;
|
|
@@ -218,6 +222,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
218
222
|
type: StringConstructor;
|
|
219
223
|
default: string;
|
|
220
224
|
};
|
|
225
|
+
refresh: {
|
|
226
|
+
type: BooleanConstructor;
|
|
227
|
+
default: boolean;
|
|
228
|
+
};
|
|
221
229
|
name: {
|
|
222
230
|
type: PropType<string>;
|
|
223
231
|
required: true;
|
|
@@ -235,6 +243,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
235
243
|
top: number;
|
|
236
244
|
params: Record<string, any>;
|
|
237
245
|
title: string;
|
|
246
|
+
refresh: boolean;
|
|
238
247
|
placeholder: string;
|
|
239
248
|
vId: string;
|
|
240
249
|
orgService: string;
|
|
@@ -252,5 +261,94 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
252
261
|
openType: number;
|
|
253
262
|
accountService: string;
|
|
254
263
|
accountAction: string;
|
|
255
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
264
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
265
|
+
tableDialogRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
266
|
+
visible: {
|
|
267
|
+
type: BooleanConstructor;
|
|
268
|
+
default: boolean;
|
|
269
|
+
};
|
|
270
|
+
title: {
|
|
271
|
+
type: StringConstructor;
|
|
272
|
+
default: string;
|
|
273
|
+
};
|
|
274
|
+
data: {
|
|
275
|
+
type: ArrayConstructor;
|
|
276
|
+
default: () => never[];
|
|
277
|
+
};
|
|
278
|
+
userService: {
|
|
279
|
+
type: StringConstructor;
|
|
280
|
+
default: string;
|
|
281
|
+
};
|
|
282
|
+
userAction: {
|
|
283
|
+
type: StringConstructor;
|
|
284
|
+
default: string;
|
|
285
|
+
};
|
|
286
|
+
userParams: {
|
|
287
|
+
type: ObjectConstructor;
|
|
288
|
+
default: () => void;
|
|
289
|
+
};
|
|
290
|
+
}>> & Readonly<{
|
|
291
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
292
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
293
|
+
}>, {
|
|
294
|
+
handleQuery: () => Promise<void>;
|
|
295
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
296
|
+
change: (...args: any[]) => void;
|
|
297
|
+
"update:visible": (...args: any[]) => void;
|
|
298
|
+
}, PublicProps, {
|
|
299
|
+
title: string;
|
|
300
|
+
data: unknown[];
|
|
301
|
+
visible: boolean;
|
|
302
|
+
userService: string;
|
|
303
|
+
userAction: string;
|
|
304
|
+
userParams: Record<string, any>;
|
|
305
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
306
|
+
queryRef: unknown;
|
|
307
|
+
refTable: unknown;
|
|
308
|
+
}, any, ComponentProvideOptions, {
|
|
309
|
+
P: {};
|
|
310
|
+
B: {};
|
|
311
|
+
D: {};
|
|
312
|
+
C: {};
|
|
313
|
+
M: {};
|
|
314
|
+
Defaults: {};
|
|
315
|
+
}, Readonly< ExtractPropTypes<{
|
|
316
|
+
visible: {
|
|
317
|
+
type: BooleanConstructor;
|
|
318
|
+
default: boolean;
|
|
319
|
+
};
|
|
320
|
+
title: {
|
|
321
|
+
type: StringConstructor;
|
|
322
|
+
default: string;
|
|
323
|
+
};
|
|
324
|
+
data: {
|
|
325
|
+
type: ArrayConstructor;
|
|
326
|
+
default: () => never[];
|
|
327
|
+
};
|
|
328
|
+
userService: {
|
|
329
|
+
type: StringConstructor;
|
|
330
|
+
default: string;
|
|
331
|
+
};
|
|
332
|
+
userAction: {
|
|
333
|
+
type: StringConstructor;
|
|
334
|
+
default: string;
|
|
335
|
+
};
|
|
336
|
+
userParams: {
|
|
337
|
+
type: ObjectConstructor;
|
|
338
|
+
default: () => void;
|
|
339
|
+
};
|
|
340
|
+
}>> & Readonly<{
|
|
341
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
342
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
343
|
+
}>, {
|
|
344
|
+
handleQuery: () => Promise<void>;
|
|
345
|
+
}, {}, {}, {}, {
|
|
346
|
+
title: string;
|
|
347
|
+
data: unknown[];
|
|
348
|
+
visible: boolean;
|
|
349
|
+
userService: string;
|
|
350
|
+
userAction: string;
|
|
351
|
+
userParams: Record<string, any>;
|
|
352
|
+
}> | null;
|
|
353
|
+
}, any>;
|
|
256
354
|
export default _default;
|
|
@@ -39,13 +39,14 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
emits: ["update:visible", "change"],
|
|
42
|
-
setup(__props, { emit: __emit }) {
|
|
42
|
+
setup(__props, { expose: __expose, emit: __emit }) {
|
|
43
43
|
let emits = __emit;
|
|
44
44
|
const props = __props;
|
|
45
45
|
const userList = vue.ref([]);
|
|
46
46
|
let checkedUsersList = vue.ref([]);
|
|
47
47
|
const state = vue.reactive({
|
|
48
48
|
total: 0,
|
|
49
|
+
pdata: null,
|
|
49
50
|
queryParams: {
|
|
50
51
|
orgId: -1,
|
|
51
52
|
page: 1,
|
|
@@ -79,13 +80,14 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
79
80
|
}
|
|
80
81
|
function handleSelectUser(row) {
|
|
81
82
|
if (!row || row.id == "") return;
|
|
82
|
-
emits("change", { id: row.id, name: row.supplierName, supplierType: row.supplierType, data: row });
|
|
83
|
+
emits("change", { id: row.id, name: row.supplierName, supplierType: row.supplierType, pdata: state.pdata, data: row });
|
|
83
84
|
}
|
|
84
85
|
const handledbclick = (row) => {
|
|
85
86
|
handleSelectUser(row);
|
|
86
87
|
};
|
|
87
88
|
const loadSub = async (row, treeNode, resolve) => {
|
|
88
89
|
var _a, _b, _c;
|
|
90
|
+
state.pdata = row;
|
|
89
91
|
let res = await index.useBaseApi(props.userService).post({ ...state.queryParams, ...props.userParams, pid: row.id }, props.userAction);
|
|
90
92
|
row.children = (_b = (_a = res.data.result) == null ? void 0 : _a.items) != null ? _b : [];
|
|
91
93
|
resolve((_c = row.children) != null ? _c : []);
|
|
@@ -102,6 +104,9 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
102
104
|
checkedUsersList.value = [];
|
|
103
105
|
emits("update:visible", false);
|
|
104
106
|
};
|
|
107
|
+
__expose({
|
|
108
|
+
handleQuery
|
|
109
|
+
});
|
|
105
110
|
return (_ctx, _cache) => {
|
|
106
111
|
const _component_ele_Edit = vue.resolveComponent("ele-Edit");
|
|
107
112
|
const _component_el_icon = vue.resolveComponent("el-icon");
|
|
@@ -124,6 +124,10 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
124
124
|
accountAction: {
|
|
125
125
|
type: String,
|
|
126
126
|
default: "accountTable"
|
|
127
|
+
},
|
|
128
|
+
refresh: {
|
|
129
|
+
type: Boolean,
|
|
130
|
+
default: false
|
|
127
131
|
}
|
|
128
132
|
}, {
|
|
129
133
|
"name": {
|
|
@@ -143,6 +147,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
143
147
|
const autoId = vue.useModel(__props, "id");
|
|
144
148
|
const props = __props;
|
|
145
149
|
const visibleopenDialog = vue.ref(false);
|
|
150
|
+
const tableDialogRef = vue.ref();
|
|
146
151
|
const emit = __emit;
|
|
147
152
|
const querySearchAsync = async (queryString, cb) => {
|
|
148
153
|
var _a;
|
|
@@ -176,6 +181,11 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
176
181
|
autoId.value = value.id;
|
|
177
182
|
emit("select", value);
|
|
178
183
|
};
|
|
184
|
+
const handleRefresh = () => {
|
|
185
|
+
if (tableDialogRef.value) {
|
|
186
|
+
tableDialogRef.value.handleQuery();
|
|
187
|
+
}
|
|
188
|
+
};
|
|
179
189
|
return (_ctx, _cache) => {
|
|
180
190
|
const _component_el_icon = vue.resolveComponent("el-icon");
|
|
181
191
|
const _component_el_autocomplete = vue.resolveComponent("el-autocomplete");
|
|
@@ -207,7 +217,12 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
207
217
|
vue.createVNode(_component_el_icon, {
|
|
208
218
|
color: "#E6A23C",
|
|
209
219
|
size: __props.searchsize,
|
|
210
|
-
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() =>
|
|
220
|
+
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
221
|
+
visibleopenDialog.value = true;
|
|
222
|
+
if (props.refresh) {
|
|
223
|
+
handleRefresh();
|
|
224
|
+
}
|
|
225
|
+
}, ["stop"]))
|
|
211
226
|
}, {
|
|
212
227
|
default: vue.withCtx(() => [
|
|
213
228
|
vue.createVNode(vue.unref(svg.Search))
|
|
@@ -230,6 +245,8 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
230
245
|
}, null, 8, ["visible", "orgService", "orgAction", "orgparas", "title", "userService", "userAction", "userParams"])) : vue.createCommentVNode("v-if", true),
|
|
231
246
|
__props.openType == 2 ? (vue.openBlock(), vue.createBlock(supplierSelectDialog_vue_vue_type_script_setup_true_lang.default, {
|
|
232
247
|
key: 1,
|
|
248
|
+
ref_key: "tableDialogRef",
|
|
249
|
+
ref: tableDialogRef,
|
|
233
250
|
visible: visibleopenDialog.value,
|
|
234
251
|
"onUpdate:visible": _cache[2] || (_cache[2] = ($event) => visibleopenDialog.value = $event),
|
|
235
252
|
title: __props.title,
|
package/locale/en.js
CHANGED
package/locale/en.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! fmdeui-fmui v1.0.
|
|
1
|
+
/*! fmdeui-fmui v1.0.139 */(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.139 */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.139 */(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.139 */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
|