cnhis-design-vue 3.4.0-beta.17 → 3.4.0-beta.20
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/README.md +87 -87
- package/es/components/button-print/src/utils/print.js +1 -0
- package/es/components/classification/index.d.ts +39 -0
- package/es/components/classification/src/components/search-filter/index.vue.d.ts +39 -0
- package/es/components/classification/src/components/set-classification/index.vue.d.ts +39 -0
- package/es/components/classification/src/index.vue.d.ts +39 -0
- package/es/components/date-picker/index.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue.d.ts +13 -0
- package/es/components/date-picker/src/DatePicker.vue2.js +8 -3
- package/es/components/field-set/src/FieldColor.vue.d.ts +26 -0
- package/es/components/field-set/src/components/condition.vue.d.ts +13 -0
- package/es/components/field-set/src/components/edit-dialog.vue.d.ts +26 -0
- package/es/components/field-set/src/components/edit-filter.vue.d.ts +13 -0
- package/es/components/iho-chat/index.d.ts +26 -0
- package/es/components/iho-chat/src/Index.vue.d.ts +26 -0
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +13 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +13 -0
- package/es/components/iho-table/src/IhoTable.vue2.js +16 -12
- package/es/components/iho-table/src/plugins/filterDaterangeRenderPlugin/filter.vue.d.ts +13 -0
- package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +13 -0
- package/es/components/table-export-field/index.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue.d.ts +3 -0
- package/es/components/table-export-field/src/components/SaveProjectModal.vue2.js +66 -20
- package/es/components/table-export-field/src/index.vue.d.ts +3 -0
- package/es/components/table-filter/src/components/bi-filter/ValueCfg.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/components/index.d.ts +13 -0
- package/es/components/table-filter/src/components/bi-filter/index.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/ValueCfg.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/components/Date.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/DateRange.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/classify-filter/components/index.d.ts +26 -0
- package/es/components/table-filter/src/components/classify-filter/index.vue.d.ts +26 -0
- package/es/components/table-filter/src/components/render-widget/components/DateInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeInner.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/DateRangeOut.vue.d.ts +13 -0
- package/es/components/table-filter/src/components/render-widget/components/index.d.ts +52 -0
- package/es/components/table-filter/src/components/render-widget/widgetCfgMaps.d.ts +52 -0
- package/es/env.d.ts +25 -25
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/ho-edge.d.ts +12 -0
- package/es/shared/utils/ho-edge.js +58 -0
- package/package.json +2 -2
@@ -181,6 +181,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
181
181
|
type: StringConstructor;
|
182
182
|
default: string;
|
183
183
|
};
|
184
|
+
updateValueOnClose: {
|
185
|
+
type: BooleanConstructor;
|
186
|
+
default: boolean;
|
187
|
+
};
|
184
188
|
isDateDisabled: {
|
185
189
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
186
190
|
};
|
@@ -216,6 +220,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
216
220
|
type: StringConstructor;
|
217
221
|
default: string;
|
218
222
|
};
|
223
|
+
updateValueOnClose: {
|
224
|
+
type: BooleanConstructor;
|
225
|
+
default: boolean;
|
226
|
+
};
|
219
227
|
isDateDisabled: {
|
220
228
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
221
229
|
};
|
@@ -271,6 +279,10 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
271
279
|
type: StringConstructor;
|
272
280
|
default: string;
|
273
281
|
};
|
282
|
+
updateValueOnClose: {
|
283
|
+
type: BooleanConstructor;
|
284
|
+
default: boolean;
|
285
|
+
};
|
274
286
|
isDateDisabled: {
|
275
287
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
276
288
|
};
|
@@ -281,6 +293,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
281
293
|
updateUnchangedValue: boolean;
|
282
294
|
to: string | false | HTMLElement;
|
283
295
|
holidays: Date[];
|
296
|
+
updateValueOnClose: boolean;
|
284
297
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
285
298
|
readonly SearchOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
286
299
|
readonly userItemRender: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -58,10 +58,10 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
58
58
|
});
|
59
59
|
const CSSVars = computed(() => {
|
60
60
|
var _a2, _b2, _c;
|
61
|
-
const
|
62
|
-
|
63
|
-
|
64
|
-
return
|
61
|
+
const result2 = { ...themCSSVars.value };
|
62
|
+
result2["--c-primary-color-opacity3"] = createOpacityColor(...hex2rgba(result2["--c-primary-color"] + ""), 0.3);
|
63
|
+
result2["--c-scrollbar-width"] = widthAppend((_c = (_b2 = (_a2 = $xeTable.value) == null ? void 0 : _a2.reactData) == null ? void 0 : _b2.scrollbarWidth) != null ? _c : 0);
|
64
|
+
return result2;
|
65
65
|
});
|
66
66
|
const styles = computed(() => {
|
67
67
|
var _a2, _b2;
|
@@ -128,18 +128,18 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
128
128
|
provide(InjectionIhoTableFieldList, fieldListRef);
|
129
129
|
const updateFieldListRefDebounced = useDebounceFn(updateFieldListRef, 10);
|
130
130
|
function updateFieldListRef() {
|
131
|
-
const
|
131
|
+
const result2 = applyTableFieldHooks(hooks, props.fieldList, configRef.value, {
|
132
132
|
$table,
|
133
133
|
emits,
|
134
134
|
loading,
|
135
135
|
globProps: props,
|
136
136
|
$xeTable
|
137
137
|
});
|
138
|
-
isEqualWith(
|
138
|
+
isEqualWith(result2, toRaw(fieldListRef.value), (v, o) => {
|
139
139
|
if (isFunction(v) && isFunction(o)) {
|
140
140
|
return v.toString() === o.toString();
|
141
141
|
}
|
142
|
-
}) || (fieldListRef.value =
|
142
|
+
}) || (fieldListRef.value = result2);
|
143
143
|
}
|
144
144
|
const dataTransfer = createDataTransfer(hooks, configRef, { $table, emits, loading, globProps: props, $xeTable });
|
145
145
|
let tableDataResolved = null;
|
@@ -154,10 +154,14 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
154
154
|
const tableDataRef = ref([]);
|
155
155
|
const updateTableDataRefDebounced = useDebounceFn(updateTableDataRef, 10);
|
156
156
|
async function updateTableDataRef() {
|
157
|
-
var _a2, _b2, _c, _d;
|
157
|
+
var _a2, _b2, _c, _d, _e;
|
158
158
|
const resultData = await dataTransfer(props.tableData);
|
159
|
-
|
159
|
+
let tableFullData = (_a2 = $table.value) == null ? void 0 : _a2.getTableData().fullData;
|
160
160
|
if (tableFullData) {
|
161
|
+
if ((_b2 = configRef.value.treeConfig) == null ? void 0 : _b2.transform) {
|
162
|
+
const { children = "childrenList" } = configRef.value.treeConfig;
|
163
|
+
tableFullData = tableFullData.map((item) => [item, ...item[children]]).flat();
|
164
|
+
}
|
161
165
|
let resultIndex = 0;
|
162
166
|
const isChanged = tableFullData.some((item) => {
|
163
167
|
var _a3;
|
@@ -175,11 +179,11 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
175
179
|
}
|
176
180
|
}
|
177
181
|
tableDataRef.value = resultData;
|
178
|
-
if ((
|
182
|
+
if ((_c = configRef.value.treeConfig) == null ? void 0 : _c.expandAll) {
|
179
183
|
await nextTick();
|
180
|
-
(
|
184
|
+
(_d = $table.value) == null ? void 0 : _d.setAllTreeExpand(true);
|
181
185
|
} else {
|
182
|
-
(
|
186
|
+
(_e = $table.value) == null ? void 0 : _e.recalculate(true);
|
183
187
|
}
|
184
188
|
resolveTableData();
|
185
189
|
}
|
@@ -53,6 +53,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
53
53
|
type: StringConstructor;
|
54
54
|
default: string;
|
55
55
|
};
|
56
|
+
updateValueOnClose: {
|
57
|
+
type: BooleanConstructor;
|
58
|
+
default: boolean;
|
59
|
+
};
|
56
60
|
isDateDisabled: {
|
57
61
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
58
62
|
};
|
@@ -88,6 +92,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
88
92
|
type: StringConstructor;
|
89
93
|
default: string;
|
90
94
|
};
|
95
|
+
updateValueOnClose: {
|
96
|
+
type: BooleanConstructor;
|
97
|
+
default: boolean;
|
98
|
+
};
|
91
99
|
isDateDisabled: {
|
92
100
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
93
101
|
};
|
@@ -143,6 +151,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
143
151
|
type: StringConstructor;
|
144
152
|
default: string;
|
145
153
|
};
|
154
|
+
updateValueOnClose: {
|
155
|
+
type: BooleanConstructor;
|
156
|
+
default: boolean;
|
157
|
+
};
|
146
158
|
isDateDisabled: {
|
147
159
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
148
160
|
};
|
@@ -153,6 +165,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
153
165
|
updateUnchangedValue: boolean;
|
154
166
|
to: string | false | HTMLElement;
|
155
167
|
holidays: Date[];
|
168
|
+
updateValueOnClose: boolean;
|
156
169
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
157
170
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
158
171
|
payload: {
|
@@ -140,6 +140,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
140
140
|
type: StringConstructor;
|
141
141
|
default: string;
|
142
142
|
};
|
143
|
+
updateValueOnClose: {
|
144
|
+
type: BooleanConstructor;
|
145
|
+
default: boolean;
|
146
|
+
};
|
143
147
|
isDateDisabled: {
|
144
148
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
145
149
|
};
|
@@ -175,6 +179,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
175
179
|
type: StringConstructor;
|
176
180
|
default: string;
|
177
181
|
};
|
182
|
+
updateValueOnClose: {
|
183
|
+
type: BooleanConstructor;
|
184
|
+
default: boolean;
|
185
|
+
};
|
178
186
|
isDateDisabled: {
|
179
187
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
180
188
|
};
|
@@ -230,6 +238,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
230
238
|
type: StringConstructor;
|
231
239
|
default: string;
|
232
240
|
};
|
241
|
+
updateValueOnClose: {
|
242
|
+
type: BooleanConstructor;
|
243
|
+
default: boolean;
|
244
|
+
};
|
233
245
|
isDateDisabled: {
|
234
246
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
235
247
|
};
|
@@ -240,6 +252,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
240
252
|
updateUnchangedValue: boolean;
|
241
253
|
to: string | false | HTMLElement;
|
242
254
|
holidays: Date[];
|
255
|
+
updateValueOnClose: boolean;
|
243
256
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
244
257
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
245
258
|
value: {
|
@@ -366,10 +366,12 @@ declare const TableExportField: SFCWithInstall<import("vue").DefineComponent<imp
|
|
366
366
|
formRef: import("vue").Ref<any, any>;
|
367
367
|
formValue: {
|
368
368
|
projectName: string;
|
369
|
+
exportPath: string;
|
369
370
|
};
|
370
371
|
selectProject: import("vue").Ref<any, any>;
|
371
372
|
projectList: import("vue").Ref<any[], any[]>;
|
372
373
|
exportApiConfig: import("../../shared/types").AnyObject;
|
374
|
+
isHoEdge: import("vue").ComputedRef<any>;
|
373
375
|
handleRadioChange: (value: string | number | boolean) => void;
|
374
376
|
validateProjectName: () => boolean;
|
375
377
|
getParams: () => {
|
@@ -377,6 +379,7 @@ declare const TableExportField: SFCWithInstall<import("vue").DefineComponent<imp
|
|
377
379
|
lastUsedSchemeName: string;
|
378
380
|
schemeId: string;
|
379
381
|
schemeName: string;
|
382
|
+
exportPath: string;
|
380
383
|
tableListId: string;
|
381
384
|
};
|
382
385
|
saveToCalss: () => void;
|
@@ -64,10 +64,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
64
64
|
formRef: import("vue").Ref<any, any>;
|
65
65
|
formValue: {
|
66
66
|
projectName: string;
|
67
|
+
exportPath: string;
|
67
68
|
};
|
68
69
|
selectProject: import("vue").Ref<any, any>;
|
69
70
|
projectList: import("vue").Ref<any[], any[]>;
|
70
71
|
exportApiConfig: import("../../../../shared/types").AnyObject;
|
72
|
+
isHoEdge: import("vue").ComputedRef<any>;
|
71
73
|
handleRadioChange: (value: string | number | boolean) => void;
|
72
74
|
validateProjectName: () => boolean;
|
73
75
|
getParams: () => {
|
@@ -75,6 +77,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
75
77
|
lastUsedSchemeName: string;
|
76
78
|
schemeId: string;
|
77
79
|
schemeName: string;
|
80
|
+
exportPath: string;
|
78
81
|
tableListId: string;
|
79
82
|
};
|
80
83
|
saveToCalss: () => void;
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { i18n } from '../../../../_virtual/_virtual_i18n-methods.js';
|
2
|
-
import { defineComponent, ref, reactive, inject, watch, openBlock, createBlock, unref, withCtx, createVNode, createElementVNode, createTextVNode, createElementBlock, Fragment, renderList, toDisplayString } from 'vue';
|
2
|
+
import { defineComponent, ref, reactive, inject, computed, watch, openBlock, createBlock, unref, withCtx, createVNode, createElementVNode, createTextVNode, createElementBlock, Fragment, renderList, toDisplayString, createCommentVNode } from 'vue';
|
3
3
|
import { useMessage, NModal, NCard, NIcon, NButton, NRadioGroup, NRadio, NForm, NFormItem, NInput } from 'naive-ui';
|
4
4
|
import { CloseOutline } from '@vicons/ionicons5';
|
5
5
|
import { InjectionExportApiConfig } from '../constants/index.js';
|
6
6
|
import useAsyncData from '../hooks/useAsyncData.js';
|
7
7
|
import { dragFieldCheckList } from '../tool.js';
|
8
8
|
import { cloneDeep } from 'lodash-es';
|
9
|
+
import { hoEdge } from '../../../../shared/utils/ho-edge.js';
|
9
10
|
|
10
11
|
const _hoisted_1 = {
|
11
12
|
class: "svg-wrap"
|
@@ -67,11 +68,16 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
67
68
|
const emits = __emit;
|
68
69
|
const formRef = ref(null);
|
69
70
|
const formValue = reactive({
|
70
|
-
projectName: ""
|
71
|
+
projectName: "",
|
72
|
+
exportPath: ""
|
71
73
|
});
|
72
74
|
const selectProject = ref();
|
73
75
|
const projectList = ref([]);
|
74
76
|
const exportApiConfig = inject(InjectionExportApiConfig);
|
77
|
+
const isHoEdge = computed(() => {
|
78
|
+
var _a;
|
79
|
+
return (_a = hoEdge) == null ? void 0 : _a.webview;
|
80
|
+
});
|
75
81
|
function handleRadioChange(value) {
|
76
82
|
selectProject.value = value;
|
77
83
|
}
|
@@ -96,6 +102,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
96
102
|
}
|
97
103
|
function getParams() {
|
98
104
|
const schemeName = formValue.projectName.trim();
|
105
|
+
const exportPath = formValue.exportPath.trim();
|
99
106
|
const {
|
100
107
|
fieldKeys,
|
101
108
|
schemeId
|
@@ -105,6 +112,7 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
105
112
|
lastUsedSchemeName: schemeName,
|
106
113
|
schemeId: "",
|
107
114
|
schemeName,
|
115
|
+
exportPath,
|
108
116
|
tableListId: props.tableListId
|
109
117
|
};
|
110
118
|
if (selectProject.value === "updateProject") {
|
@@ -120,33 +128,59 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
120
128
|
if (validateProjectName()) {
|
121
129
|
return;
|
122
130
|
}
|
131
|
+
const exportPath = formValue.exportPath.trim();
|
132
|
+
const {
|
133
|
+
schemeId
|
134
|
+
} = props.curProgram;
|
135
|
+
const hoEdgeParams = {
|
136
|
+
"exec": "saveconf",
|
137
|
+
"data": {
|
138
|
+
"key": selectProject.value === "updateProject" ? schemeId : `${defaultKey}_schemeId`,
|
139
|
+
"value": exportPath
|
140
|
+
}
|
141
|
+
};
|
142
|
+
await hoEdge.postMsg(hoEdgeParams);
|
123
143
|
const params = getParams();
|
124
144
|
let res = await saveTableListExportScheme(params, exportApiConfig);
|
125
145
|
if (res) {
|
126
146
|
message.success(i18n("10010.1.438", "\u4FDD\u5B58\u5E76\u5BFC\u51FA\u6210\u529F"));
|
127
|
-
|
147
|
+
cancelSaveToCalss();
|
128
148
|
}
|
129
149
|
});
|
130
150
|
}
|
131
151
|
function cancelSaveToCalss() {
|
152
|
+
formValue.projectName = "";
|
153
|
+
formValue.exportPath = "";
|
132
154
|
emits("cancelSaveModal");
|
133
155
|
}
|
134
|
-
watch(() => props.
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
156
|
+
watch(() => props.visible, async (isShow) => {
|
157
|
+
if (isShow) {
|
158
|
+
const program = props.curProgram;
|
159
|
+
switch (program.schemeId) {
|
160
|
+
case defaultKey:
|
161
|
+
projectList.value = modeList.filter((mode) => mode.value === "addProject");
|
162
|
+
selectProject.value = "addProject";
|
163
|
+
formValue.projectName = "";
|
164
|
+
break;
|
165
|
+
default:
|
166
|
+
projectList.value = cloneDeep(modeList);
|
167
|
+
selectProject.value = "updateProject";
|
168
|
+
formValue.projectName = program.schemeName;
|
169
|
+
break;
|
170
|
+
}
|
171
|
+
const hoEdgeParams = {
|
172
|
+
"exec": "getconf",
|
173
|
+
"data": {
|
174
|
+
"key": selectProject.value === "updateProject" ? program.schemeId : `${defaultKey}_schemeId`
|
175
|
+
}
|
176
|
+
};
|
177
|
+
const getHoEdgeData = await hoEdge.postMsg(hoEdgeParams);
|
178
|
+
if (getHoEdgeData == null ? void 0 : getHoEdgeData.result) {
|
179
|
+
formValue.exportPath = (getHoEdgeData == null ? void 0 : getHoEdgeData.res) || "";
|
180
|
+
}
|
146
181
|
}
|
147
182
|
}, {
|
148
|
-
immediate: true
|
149
|
-
deep: true
|
183
|
+
immediate: true
|
150
184
|
});
|
151
185
|
return (_ctx, _cache) => {
|
152
186
|
return openBlock(), createBlock(unref(NModal), {
|
@@ -176,13 +210,13 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
176
210
|
footer: withCtx(() => [createElementVNode("div", _hoisted_2, [createVNode(unref(NButton), {
|
177
211
|
onClick: cancelSaveToCalss
|
178
212
|
}, {
|
179
|
-
default: withCtx(() => [..._cache[
|
213
|
+
default: withCtx(() => [..._cache[3] || (_cache[3] = [createTextVNode(i18n("10010.1.28", "\u53D6\u6D88"), -1)])]),
|
180
214
|
_: 1
|
181
215
|
}), createVNode(unref(NButton), {
|
182
216
|
type: "info",
|
183
217
|
onClick: saveToCalss
|
184
218
|
}, {
|
185
|
-
default: withCtx(() => [..._cache[
|
219
|
+
default: withCtx(() => [..._cache[4] || (_cache[4] = [createTextVNode(i18n("10010.1.428", "\u786E\u8BA4"), -1)])]),
|
186
220
|
_: 1
|
187
221
|
})])]),
|
188
222
|
default: withCtx(() => [createElementVNode("div", _hoisted_3, [createVNode(unref(NRadioGroup), {
|
@@ -219,7 +253,19 @@ var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
219
253
|
maxlength: "100"
|
220
254
|
}, null, 8, ["value"])]),
|
221
255
|
_: 1
|
222
|
-
})
|
256
|
+
}), isHoEdge.value ? (openBlock(), createBlock(unref(NFormItem), {
|
257
|
+
key: 0,
|
258
|
+
label: i18n("10010.1.683", "\u5BFC\u51FA\u8DEF\u5F84"),
|
259
|
+
path: "exportPath"
|
260
|
+
}, {
|
261
|
+
default: withCtx(() => [createVNode(unref(NInput), {
|
262
|
+
value: formValue.exportPath,
|
263
|
+
"onUpdate:value": _cache[2] || (_cache[2] = ($event) => formValue.exportPath = $event),
|
264
|
+
placeholder: i18n("10010.1.684", "\u8BF7\u8F93\u5165\u5BFC\u51FA\u8DEF\u5F84"),
|
265
|
+
clearable: ""
|
266
|
+
}, null, 8, ["value"])]),
|
267
|
+
_: 1
|
268
|
+
})) : createCommentVNode("v-if", true)]),
|
223
269
|
_: 1
|
224
270
|
}, 8, ["model"])])]),
|
225
271
|
_: 1
|
@@ -367,10 +367,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
367
367
|
formRef: import("vue").Ref<any, any>;
|
368
368
|
formValue: {
|
369
369
|
projectName: string;
|
370
|
+
exportPath: string;
|
370
371
|
};
|
371
372
|
selectProject: import("vue").Ref<any, any>;
|
372
373
|
projectList: import("vue").Ref<any[], any[]>;
|
373
374
|
exportApiConfig: import("../../../shared/types").AnyObject;
|
375
|
+
isHoEdge: import("vue").ComputedRef<any>;
|
374
376
|
handleRadioChange: (value: string | number | boolean) => void;
|
375
377
|
validateProjectName: () => boolean;
|
376
378
|
getParams: () => {
|
@@ -378,6 +380,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
378
380
|
lastUsedSchemeName: string;
|
379
381
|
schemeId: string;
|
380
382
|
schemeName: string;
|
383
|
+
exportPath: string;
|
381
384
|
tableListId: string;
|
382
385
|
};
|
383
386
|
saveToCalss: () => void;
|
@@ -96,6 +96,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
96
96
|
type: StringConstructor;
|
97
97
|
default: string;
|
98
98
|
};
|
99
|
+
updateValueOnClose: {
|
100
|
+
type: BooleanConstructor;
|
101
|
+
default: boolean;
|
102
|
+
};
|
99
103
|
isDateDisabled: {
|
100
104
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
101
105
|
};
|
@@ -131,6 +135,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
131
135
|
type: StringConstructor;
|
132
136
|
default: string;
|
133
137
|
};
|
138
|
+
updateValueOnClose: {
|
139
|
+
type: BooleanConstructor;
|
140
|
+
default: boolean;
|
141
|
+
};
|
134
142
|
isDateDisabled: {
|
135
143
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
136
144
|
};
|
@@ -186,6 +194,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
186
194
|
type: StringConstructor;
|
187
195
|
default: string;
|
188
196
|
};
|
197
|
+
updateValueOnClose: {
|
198
|
+
type: BooleanConstructor;
|
199
|
+
default: boolean;
|
200
|
+
};
|
189
201
|
isDateDisabled: {
|
190
202
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
191
203
|
};
|
@@ -196,6 +208,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
196
208
|
updateUnchangedValue: boolean;
|
197
209
|
to: string | false | HTMLElement;
|
198
210
|
holidays: Date[];
|
211
|
+
updateValueOnClose: boolean;
|
199
212
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
200
213
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
201
214
|
componentCfg: {
|
@@ -59,6 +59,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
59
59
|
type: StringConstructor;
|
60
60
|
default: string;
|
61
61
|
};
|
62
|
+
updateValueOnClose: {
|
63
|
+
type: BooleanConstructor;
|
64
|
+
default: boolean;
|
65
|
+
};
|
62
66
|
isDateDisabled: {
|
63
67
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
64
68
|
};
|
@@ -94,6 +98,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
94
98
|
type: StringConstructor;
|
95
99
|
default: string;
|
96
100
|
};
|
101
|
+
updateValueOnClose: {
|
102
|
+
type: BooleanConstructor;
|
103
|
+
default: boolean;
|
104
|
+
};
|
97
105
|
isDateDisabled: {
|
98
106
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
99
107
|
};
|
@@ -149,6 +157,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
149
157
|
type: StringConstructor;
|
150
158
|
default: string;
|
151
159
|
};
|
160
|
+
updateValueOnClose: {
|
161
|
+
type: BooleanConstructor;
|
162
|
+
default: boolean;
|
163
|
+
};
|
152
164
|
isDateDisabled: {
|
153
165
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
154
166
|
};
|
@@ -159,6 +171,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
159
171
|
updateUnchangedValue: boolean;
|
160
172
|
to: string | false | HTMLElement;
|
161
173
|
holidays: Date[];
|
174
|
+
updateValueOnClose: boolean;
|
162
175
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
163
176
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
164
177
|
componentCfg: {
|
@@ -59,6 +59,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
59
59
|
type: StringConstructor;
|
60
60
|
default: string;
|
61
61
|
};
|
62
|
+
updateValueOnClose: {
|
63
|
+
type: BooleanConstructor;
|
64
|
+
default: boolean;
|
65
|
+
};
|
62
66
|
isDateDisabled: {
|
63
67
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
64
68
|
};
|
@@ -94,6 +98,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
94
98
|
type: StringConstructor;
|
95
99
|
default: string;
|
96
100
|
};
|
101
|
+
updateValueOnClose: {
|
102
|
+
type: BooleanConstructor;
|
103
|
+
default: boolean;
|
104
|
+
};
|
97
105
|
isDateDisabled: {
|
98
106
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
99
107
|
};
|
@@ -149,6 +157,10 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
149
157
|
type: StringConstructor;
|
150
158
|
default: string;
|
151
159
|
};
|
160
|
+
updateValueOnClose: {
|
161
|
+
type: BooleanConstructor;
|
162
|
+
default: boolean;
|
163
|
+
};
|
152
164
|
isDateDisabled: {
|
153
165
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
154
166
|
};
|
@@ -159,6 +171,7 @@ declare const Date: import("vue").DefineComponent<import("vue").ExtractPropTypes
|
|
159
171
|
updateUnchangedValue: boolean;
|
160
172
|
to: string | false | HTMLElement;
|
161
173
|
holidays: Date[];
|
174
|
+
updateValueOnClose: boolean;
|
162
175
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
163
176
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
164
177
|
componentCfg: {
|
@@ -214,6 +214,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
214
214
|
type: StringConstructor;
|
215
215
|
default: string;
|
216
216
|
};
|
217
|
+
updateValueOnClose: {
|
218
|
+
type: BooleanConstructor;
|
219
|
+
default: boolean;
|
220
|
+
};
|
217
221
|
isDateDisabled: {
|
218
222
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
219
223
|
};
|
@@ -249,6 +253,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
249
253
|
type: StringConstructor;
|
250
254
|
default: string;
|
251
255
|
};
|
256
|
+
updateValueOnClose: {
|
257
|
+
type: BooleanConstructor;
|
258
|
+
default: boolean;
|
259
|
+
};
|
252
260
|
isDateDisabled: {
|
253
261
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
254
262
|
};
|
@@ -304,6 +312,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
304
312
|
type: StringConstructor;
|
305
313
|
default: string;
|
306
314
|
};
|
315
|
+
updateValueOnClose: {
|
316
|
+
type: BooleanConstructor;
|
317
|
+
default: boolean;
|
318
|
+
};
|
307
319
|
isDateDisabled: {
|
308
320
|
type: PropType<(current: number, ...arg: any[]) => boolean>;
|
309
321
|
};
|
@@ -314,6 +326,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
314
326
|
updateUnchangedValue: boolean;
|
315
327
|
to: string | false | HTMLElement;
|
316
328
|
holidays: Date[];
|
329
|
+
updateValueOnClose: boolean;
|
317
330
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
318
331
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
319
332
|
componentCfg: {
|
@@ -159,6 +159,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
159
159
|
type: StringConstructor;
|
160
160
|
default: string;
|
161
161
|
};
|
162
|
+
updateValueOnClose: {
|
163
|
+
type: BooleanConstructor;
|
164
|
+
default: boolean;
|
165
|
+
};
|
162
166
|
isDateDisabled: {
|
163
167
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
164
168
|
};
|
@@ -194,6 +198,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
194
198
|
type: StringConstructor;
|
195
199
|
default: string;
|
196
200
|
};
|
201
|
+
updateValueOnClose: {
|
202
|
+
type: BooleanConstructor;
|
203
|
+
default: boolean;
|
204
|
+
};
|
197
205
|
isDateDisabled: {
|
198
206
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
199
207
|
};
|
@@ -249,6 +257,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
249
257
|
type: StringConstructor;
|
250
258
|
default: string;
|
251
259
|
};
|
260
|
+
updateValueOnClose: {
|
261
|
+
type: BooleanConstructor;
|
262
|
+
default: boolean;
|
263
|
+
};
|
252
264
|
isDateDisabled: {
|
253
265
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
254
266
|
};
|
@@ -259,6 +271,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
259
271
|
updateUnchangedValue: boolean;
|
260
272
|
to: string | false | HTMLElement;
|
261
273
|
holidays: Date[];
|
274
|
+
updateValueOnClose: boolean;
|
262
275
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
263
276
|
readonly NSelect: any;
|
264
277
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
@@ -999,6 +1012,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
999
1012
|
type: StringConstructor;
|
1000
1013
|
default: string;
|
1001
1014
|
};
|
1015
|
+
updateValueOnClose: {
|
1016
|
+
type: BooleanConstructor;
|
1017
|
+
default: boolean;
|
1018
|
+
};
|
1002
1019
|
isDateDisabled: {
|
1003
1020
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1004
1021
|
};
|
@@ -1034,6 +1051,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1034
1051
|
type: StringConstructor;
|
1035
1052
|
default: string;
|
1036
1053
|
};
|
1054
|
+
updateValueOnClose: {
|
1055
|
+
type: BooleanConstructor;
|
1056
|
+
default: boolean;
|
1057
|
+
};
|
1037
1058
|
isDateDisabled: {
|
1038
1059
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1039
1060
|
};
|
@@ -1089,6 +1110,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1089
1110
|
type: StringConstructor;
|
1090
1111
|
default: string;
|
1091
1112
|
};
|
1113
|
+
updateValueOnClose: {
|
1114
|
+
type: BooleanConstructor;
|
1115
|
+
default: boolean;
|
1116
|
+
};
|
1092
1117
|
isDateDisabled: {
|
1093
1118
|
type: import("vue").PropType<(current: number, ...arg: any[]) => boolean>;
|
1094
1119
|
};
|
@@ -1099,6 +1124,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
1099
1124
|
updateUnchangedValue: boolean;
|
1100
1125
|
to: string | false | HTMLElement;
|
1101
1126
|
holidays: Date[];
|
1127
|
+
updateValueOnClose: boolean;
|
1102
1128
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
|
1103
1129
|
DateOption: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
1104
1130
|
filterType: {
|