@jeecg/online 1.0.1 → 3.4.3
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/AuthButtonConfig.js +15 -9
- package/AuthButtonTree.js +4 -7
- package/AuthDataConfig.js +10 -8
- package/AuthDataTree.js +4 -7
- package/AuthFieldConfig.js +16 -14
- package/AuthFieldTree.js +25 -20
- package/AuthManagerDrawer.js +2 -3
- package/AuthSetterModal.js +2 -2
- package/CgformCopyList.js +34 -24
- package/CgformModal.js +57 -50
- package/CgreportModal.js +32 -39
- package/CheckDictTable.js +146 -26
- package/CodeFileListModal.js +174 -0
- package/CodeFileViewModal.js +324 -0
- package/CodeGeneratorModal.js +42 -40
- package/CustomButtonList.js +19 -23
- package/DBAttributeTable.js +250 -14
- package/DbToOnlineModal.js +28 -27
- package/DetailForm.js +607 -0
- package/EnhanceJavaModal.js +12 -19
- package/EnhanceJsHistory.js +6 -8
- package/EnhanceJsModal.js +17 -18
- package/EnhanceSqlModal.js +12 -19
- package/ExtendConfigModal.js +26 -17
- package/FileSelectModal.js +1 -2
- package/ForeignKeyTable.js +6 -5
- package/FormSchemaFactory.js +163 -30
- package/IndexTable.js +8 -7
- package/JModalTip.js +54 -0
- package/LeftDepart.js +3 -3
- package/LeftRole.js +8 -6
- package/LeftUser.js +8 -6
- package/LinkTableConfigModal.js +288 -0
- package/LinkTableFieldConfigModal.js +217 -0
- package/LinkTableListPiece.js +36 -0
- package/ModalFormDemo.js +4 -4
- package/OnlCgReportList.js +34 -0
- package/OnlineAutoList.js +155 -58
- package/OnlineAutoModal.js +91 -132
- package/OnlineAutoTreeList.js +92 -54
- package/OnlineCustomModal.js +31 -17
- package/OnlineDetailModal.js +182 -0
- package/OnlineForm.js +272 -141
- package/OnlineFormDetail.js +324 -0
- package/OnlineQueryForm.js +72 -42
- package/OnlineSearchFormItem.js +28 -23
- package/OnlineSubFormDetail.js +165 -0
- package/OnlineSuperQuery.js +72 -76
- package/OnlineSuperQueryValComponent.js +1 -0
- package/OnlineSuperQueryValComponent.vue_vue_type_script_lang.js +1 -17
- package/PageAttributeTable.js +233 -31
- package/ProcessOnlineForm.js +41 -18
- package/QueryTable.js +6 -5
- package/README.md +3 -8
- package/_arrayPush.js +5 -3
- package/{cloneDeep.js → _baseClone.js} +5 -9
- package/_baseSlice.js +18 -0
- package/_commonjsHelpers.js +5 -0
- package/_flatRest.js +174 -0
- package/auth.data.js +1 -3
- package/cgform.data.js +18 -9
- package/enhance.api.js +27 -18
- package/index.js +358 -34
- package/index2.js +49 -48
- package/index3.js +29 -26
- package/isArray.js +1 -1
- package/main.index.js +3 -3
- package/omit.js +60 -0
- package/package.json +1 -1
- package/pick.js +3 -173
- package/style.css +1 -1
- package/toString.js +2 -2
- package/useAutoForm.js +3457 -3792
- package/useCgformList.js +44 -31
- package/{useTableColumns.js → useListButton.js} +218 -409
- package/useOnlineTest.js +5 -26827
- package/useSchemas.js +382 -234
- package/useTableSync.js +19 -7
- package/ChartAutoRender.js +0 -69
- package/ChartDoubleRender.js +0 -154
- package/ChartSingleRender.js +0 -132
- package/ChartTabsRender.js +0 -218
- package/ErrorTip.js +0 -21
- package/FieldTable.js +0 -185
- package/GraphreportAutoChart.js +0 -352
- package/GraphreportList.js +0 -239
- package/GraphreportModal.js +0 -559
- package/JOnlineSearchSelect.js +0 -107
- package/LICENSE +0 -7
- package/OnlineSelectCascade.js +0 -217
- package/OnlineSubForm.js +0 -200
- package/ParamsTable.js +0 -71
- package/graphreport.api.js +0 -23
- package/useChartRender.js +0 -405
- package/useMessageOnline.js +0 -71
package/index.js
CHANGED
|
@@ -1,8 +1,28 @@
|
|
|
1
|
+
var __async = (__this, __arguments, generator) => {
|
|
2
|
+
return new Promise((resolve, reject) => {
|
|
3
|
+
var fulfilled = (value) => {
|
|
4
|
+
try {
|
|
5
|
+
step(generator.next(value));
|
|
6
|
+
} catch (e) {
|
|
7
|
+
reject(e);
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
var rejected = (value) => {
|
|
11
|
+
try {
|
|
12
|
+
step(generator.throw(value));
|
|
13
|
+
} catch (e) {
|
|
14
|
+
reject(e);
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
18
|
+
step((generator = generator.apply(__this, __arguments)).next());
|
|
19
|
+
});
|
|
20
|
+
};
|
|
1
21
|
const import_meta = {};
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
22
|
+
import { defineComponent, ref, watch, resolveComponent, openBlock, createBlock, withCtx, createElementBlock, Fragment, renderList, createElementVNode, toDisplayString, createTextVNode, defineAsyncComponent } from "vue";
|
|
23
|
+
import { defHttp } from "/@/utils/http/axios";
|
|
4
24
|
import { useMessage } from "/@/hooks/web/useMessage";
|
|
5
|
-
import {
|
|
25
|
+
import { useDebounceFn } from "@vueuse/core";
|
|
6
26
|
var _export_sfc = (sfc, props) => {
|
|
7
27
|
const target = sfc.__vccOpts || sfc;
|
|
8
28
|
for (const [key, val] of props) {
|
|
@@ -10,55 +30,359 @@ var _export_sfc = (sfc, props) => {
|
|
|
10
30
|
}
|
|
11
31
|
return target;
|
|
12
32
|
};
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
33
|
+
const SELECT_OPTIONS_URL = "/online/cgform/api/querySelectOptions";
|
|
34
|
+
const _sfc_main$1 = defineComponent({
|
|
35
|
+
name: "OnlineSelectCascade",
|
|
36
|
+
props: {
|
|
37
|
+
table: { type: String, default: "" },
|
|
38
|
+
txt: { type: String, default: "" },
|
|
39
|
+
store: { type: String, default: "" },
|
|
40
|
+
idField: { type: String, default: "" },
|
|
41
|
+
pidField: { type: String, default: "" },
|
|
42
|
+
pidValue: { type: String, default: "-1" },
|
|
43
|
+
origin: { type: Boolean, default: false },
|
|
44
|
+
condition: { type: String, default: "" },
|
|
45
|
+
value: { type: String, default: "" },
|
|
46
|
+
isNumber: { type: Boolean, default: false },
|
|
47
|
+
placeholder: { type: String, default: "\u8BF7\u9009\u62E9" }
|
|
17
48
|
},
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
const
|
|
21
|
-
const
|
|
22
|
-
const
|
|
49
|
+
emits: ["change", "next"],
|
|
50
|
+
setup(props, { emit }) {
|
|
51
|
+
const { createMessage: $message2 } = useMessage();
|
|
52
|
+
const selectedValue = ref("");
|
|
53
|
+
const dictOptions = ref([]);
|
|
54
|
+
const optionsLoad = ref(true);
|
|
55
|
+
function handleChange(value) {
|
|
56
|
+
console.log("handleChange", value);
|
|
57
|
+
let temp = value || "";
|
|
58
|
+
emit("change", temp);
|
|
59
|
+
valueChangeThenEmitNext(temp);
|
|
60
|
+
}
|
|
61
|
+
watch(
|
|
62
|
+
() => props.condition,
|
|
63
|
+
(val) => {
|
|
64
|
+
optionsLoad.value = true;
|
|
65
|
+
if (val) {
|
|
66
|
+
loadOptions();
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
{ immediate: true }
|
|
70
|
+
);
|
|
71
|
+
watch(
|
|
72
|
+
() => props.pidValue,
|
|
73
|
+
(val) => {
|
|
74
|
+
if (val === "-1") {
|
|
75
|
+
dictOptions.value = [];
|
|
76
|
+
} else {
|
|
77
|
+
loadOptions();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
);
|
|
81
|
+
watch(
|
|
82
|
+
() => props.value,
|
|
83
|
+
(newVal, oldVal) => {
|
|
84
|
+
console.log("\u503C\u6539\u53D8\u4E8B\u4EF6", newVal, oldVal);
|
|
85
|
+
if (!newVal) {
|
|
86
|
+
selectedValue.value = [];
|
|
87
|
+
if (oldVal) {
|
|
88
|
+
emit("change", "");
|
|
89
|
+
emit("next", "-1");
|
|
90
|
+
}
|
|
91
|
+
} else {
|
|
92
|
+
selectedValue.value = newVal;
|
|
93
|
+
}
|
|
94
|
+
if (newVal && !oldVal) {
|
|
95
|
+
handleFirstValueSetting(newVal);
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{ immediate: true }
|
|
99
|
+
);
|
|
100
|
+
function handleFirstValueSetting(value) {
|
|
101
|
+
return __async(this, null, function* () {
|
|
102
|
+
if (props.idField === props.store) {
|
|
103
|
+
emit("next", value);
|
|
104
|
+
} else {
|
|
105
|
+
if (props.origin === true) {
|
|
106
|
+
yield getSelfOptions();
|
|
107
|
+
valueChangeThenEmitNext(value);
|
|
108
|
+
} else {
|
|
109
|
+
let arr = yield loadValueText();
|
|
110
|
+
valueChangeThenEmitNext(value, arr);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
function loadOptions() {
|
|
116
|
+
let params = getQueryParams();
|
|
117
|
+
if (props.origin === true) {
|
|
118
|
+
params["condition"] = props.condition;
|
|
119
|
+
} else {
|
|
120
|
+
params["pidValue"] = props.pidValue;
|
|
121
|
+
}
|
|
122
|
+
console.log("\u8BF7\u6C42\u53C2\u6570", params);
|
|
123
|
+
dictOptions.value = [];
|
|
124
|
+
defHttp.get({ url: SELECT_OPTIONS_URL, params }, { isTransformResponse: false }).then((res) => {
|
|
125
|
+
if (res.success) {
|
|
126
|
+
dictOptions.value = [...res.result];
|
|
127
|
+
console.log("\u8BF7\u6C42\u7ED3\u679C", res.result, dictOptions);
|
|
128
|
+
} else {
|
|
129
|
+
$message2.warning("\u8054\u52A8\u7EC4\u4EF6\u6570\u636E\u52A0\u8F7D\u5931\u8D25,\u8BF7\u68C0\u67E5\u914D\u7F6E!");
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
function getQueryParams() {
|
|
134
|
+
let params = {
|
|
135
|
+
table: props.table,
|
|
136
|
+
txt: props.txt,
|
|
137
|
+
key: props.store,
|
|
138
|
+
idField: props.idField,
|
|
139
|
+
pidField: props.pidField
|
|
140
|
+
};
|
|
141
|
+
return params;
|
|
142
|
+
}
|
|
143
|
+
function loadValueText() {
|
|
144
|
+
return new Promise((resolve) => {
|
|
145
|
+
if (!props.value) {
|
|
146
|
+
selectedValue.value = [];
|
|
147
|
+
resolve([]);
|
|
148
|
+
} else {
|
|
149
|
+
let params = getQueryParams();
|
|
150
|
+
if (props.isNumber === true) {
|
|
151
|
+
params["condition"] = `${props.store} = ${props.value}`;
|
|
152
|
+
} else {
|
|
153
|
+
params["condition"] = `${props.store} = '${props.value}'`;
|
|
154
|
+
}
|
|
155
|
+
defHttp.get({ url: SELECT_OPTIONS_URL, params }, { isTransformResponse: false }).then((res) => {
|
|
156
|
+
if (res.success) {
|
|
157
|
+
resolve(res.result);
|
|
158
|
+
} else {
|
|
159
|
+
$message2.warning("\u8054\u52A8\u7EC4\u4EF6\u6570\u636E\u52A0\u8F7D\u5931\u8D25,\u8BF7\u68C0\u67E5\u914D\u7F6E!");
|
|
160
|
+
resolve([]);
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
function getSelfOptions() {
|
|
167
|
+
return new Promise((resolve) => {
|
|
168
|
+
let index2 = 0;
|
|
169
|
+
(function next(index22) {
|
|
170
|
+
if (index22 > 10) {
|
|
171
|
+
resolve([]);
|
|
172
|
+
}
|
|
173
|
+
let arr = dictOptions.value;
|
|
174
|
+
if (arr && arr.length > 0) {
|
|
175
|
+
resolve(arr);
|
|
176
|
+
} else {
|
|
177
|
+
setTimeout(() => {
|
|
178
|
+
next(index22++);
|
|
179
|
+
}, 300);
|
|
180
|
+
}
|
|
181
|
+
})(index2);
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
function valueChangeThenEmitNext(value, arr = []) {
|
|
185
|
+
if (value && value.length > 0) {
|
|
186
|
+
if (!arr || arr.length == 0) {
|
|
187
|
+
arr = dictOptions.value;
|
|
188
|
+
}
|
|
189
|
+
let selected = arr.filter((item) => item.store === value);
|
|
190
|
+
if (selected && selected.length > 0) {
|
|
191
|
+
let id = selected[0].id;
|
|
192
|
+
emit("next", id);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
23
196
|
return {
|
|
24
|
-
|
|
197
|
+
selectedValue,
|
|
198
|
+
dictOptions,
|
|
199
|
+
handleChange
|
|
25
200
|
};
|
|
26
201
|
}
|
|
27
202
|
});
|
|
28
|
-
const _hoisted_1 =
|
|
203
|
+
const _hoisted_1 = ["title"];
|
|
204
|
+
function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
205
|
+
const _component_a_select_option = resolveComponent("a-select-option");
|
|
206
|
+
const _component_a_select = resolveComponent("a-select");
|
|
207
|
+
return openBlock(), createBlock(_component_a_select, {
|
|
208
|
+
placeholder: _ctx.placeholder,
|
|
209
|
+
value: _ctx.selectedValue,
|
|
210
|
+
onChange: _ctx.handleChange,
|
|
211
|
+
allowClear: "",
|
|
212
|
+
style: { "width": "100%" }
|
|
213
|
+
}, {
|
|
214
|
+
default: withCtx(() => [
|
|
215
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.dictOptions, (item, index2) => {
|
|
216
|
+
return openBlock(), createBlock(_component_a_select_option, {
|
|
217
|
+
key: index2,
|
|
218
|
+
value: item.store
|
|
219
|
+
}, {
|
|
220
|
+
default: withCtx(() => [
|
|
221
|
+
createElementVNode("span", {
|
|
222
|
+
style: { "display": "inline-block", "width": "100%" },
|
|
223
|
+
title: item.label
|
|
224
|
+
}, toDisplayString(item.label), 9, _hoisted_1)
|
|
225
|
+
]),
|
|
226
|
+
_: 2
|
|
227
|
+
}, 1032, ["value"]);
|
|
228
|
+
}), 128))
|
|
229
|
+
]),
|
|
230
|
+
_: 1
|
|
231
|
+
}, 8, ["placeholder", "value", "onChange"]);
|
|
232
|
+
}
|
|
233
|
+
var OnlineSelectCascade = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1]]);
|
|
234
|
+
var OnlineSelectCascade$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
235
|
+
__proto__: null,
|
|
236
|
+
"default": OnlineSelectCascade
|
|
237
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
238
|
+
const { createMessage: $message } = useMessage();
|
|
239
|
+
const _sfc_main = {
|
|
240
|
+
name: "JOnlineSearchSelect",
|
|
241
|
+
props: {
|
|
242
|
+
placeholder: {
|
|
243
|
+
type: String,
|
|
244
|
+
default: "",
|
|
245
|
+
required: false
|
|
246
|
+
},
|
|
247
|
+
value: {
|
|
248
|
+
type: String,
|
|
249
|
+
required: false
|
|
250
|
+
},
|
|
251
|
+
sql: {
|
|
252
|
+
type: String,
|
|
253
|
+
required: true
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
emits: ["update:value"],
|
|
257
|
+
setup(props, { emit }) {
|
|
258
|
+
let selected = ref("");
|
|
259
|
+
let selectOptions = ref([]);
|
|
260
|
+
watch(
|
|
261
|
+
() => props.value,
|
|
262
|
+
(newVal) => {
|
|
263
|
+
if (!newVal) {
|
|
264
|
+
selected.value = void 0;
|
|
265
|
+
} else {
|
|
266
|
+
selected.value = newVal;
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
{ immediate: true }
|
|
270
|
+
);
|
|
271
|
+
watch(
|
|
272
|
+
() => props.sql,
|
|
273
|
+
() => {
|
|
274
|
+
resetOptions();
|
|
275
|
+
},
|
|
276
|
+
{ immediate: true }
|
|
277
|
+
);
|
|
278
|
+
const handleSearch = useDebounceFn(searchByKeyword, 800);
|
|
279
|
+
function searchByKeyword(keyword = "") {
|
|
280
|
+
let params = {
|
|
281
|
+
keyword
|
|
282
|
+
};
|
|
283
|
+
let url = "/online/cgreport/api/getReportDictList?sql=" + props.sql;
|
|
284
|
+
defHttp.get({ url, params }, { isTransformResponse: false }).then((res) => {
|
|
285
|
+
if (res.success) {
|
|
286
|
+
if (res.result && res.result.length > 0) {
|
|
287
|
+
selectOptions.value = res.result;
|
|
288
|
+
} else {
|
|
289
|
+
selectOptions.value = [];
|
|
290
|
+
}
|
|
291
|
+
} else {
|
|
292
|
+
$message.warning(res.message);
|
|
293
|
+
}
|
|
294
|
+
});
|
|
295
|
+
}
|
|
296
|
+
function handleChange(value) {
|
|
297
|
+
emit("update:value", value);
|
|
298
|
+
if (!value || value == "") {
|
|
299
|
+
resetOptions();
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
function resetOptions() {
|
|
303
|
+
selectOptions.value = [];
|
|
304
|
+
searchByKeyword();
|
|
305
|
+
}
|
|
306
|
+
return {
|
|
307
|
+
selectOptions,
|
|
308
|
+
handleSearch,
|
|
309
|
+
handleChange,
|
|
310
|
+
selected
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
};
|
|
29
314
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30
|
-
const
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
315
|
+
const _component_a_select_option = resolveComponent("a-select-option");
|
|
316
|
+
const _component_a_select = resolveComponent("a-select");
|
|
317
|
+
return openBlock(), createBlock(_component_a_select, {
|
|
318
|
+
value: $setup.selected,
|
|
319
|
+
placeholder: $props.placeholder,
|
|
320
|
+
"show-search": "",
|
|
321
|
+
"default-active-first-option": false,
|
|
322
|
+
"show-arrow": true,
|
|
323
|
+
"filter-option": false,
|
|
324
|
+
"not-found-content": null,
|
|
325
|
+
onSearch: $setup.handleSearch,
|
|
326
|
+
onChange: $setup.handleChange,
|
|
327
|
+
allowClear: ""
|
|
328
|
+
}, {
|
|
329
|
+
default: withCtx(() => [
|
|
330
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.selectOptions, (d) => {
|
|
331
|
+
return openBlock(), createBlock(_component_a_select_option, {
|
|
332
|
+
key: d.value
|
|
333
|
+
}, {
|
|
334
|
+
default: withCtx(() => [
|
|
335
|
+
createTextVNode(toDisplayString(d.text), 1)
|
|
336
|
+
]),
|
|
337
|
+
_: 2
|
|
338
|
+
}, 1024);
|
|
339
|
+
}), 128))
|
|
340
|
+
]),
|
|
341
|
+
_: 1
|
|
342
|
+
}, 8, ["value", "placeholder", "onSearch", "onChange"]);
|
|
37
343
|
}
|
|
38
|
-
var
|
|
39
|
-
var
|
|
344
|
+
var JOnlineSearchSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
345
|
+
var JOnlineSearchSelect$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
40
346
|
__proto__: null,
|
|
41
|
-
"default":
|
|
347
|
+
"default": JOnlineSearchSelect
|
|
42
348
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
43
349
|
console.log("node_modules import.meta: ", import_meta);
|
|
44
350
|
var index = {
|
|
45
351
|
install(app, options) {
|
|
46
352
|
app.provide("baseImport", options.baseImport);
|
|
47
|
-
app.component("
|
|
353
|
+
app.component("JOnlineSearchSelect", JOnlineSearchSelect);
|
|
48
354
|
console.log("--- online init ----");
|
|
49
355
|
},
|
|
50
356
|
getViews() {
|
|
51
|
-
return { "./src/views/super/online/cgform/CgformCopyList.vue": () => import("./CgformCopyList.js"), "./src/views/super/online/cgform/index.vue": () => import("./index2.js"), "./src/views/super/online/cgreport/index.vue": () => import("./index3.js"), "./src/views/super/online/
|
|
357
|
+
return { "./src/views/super/online/cgform/CgformCopyList.vue": () => import("./CgformCopyList.js"), "./src/views/super/online/cgform/index.vue": () => import("./index2.js"), "./src/views/super/online/cgreport/index.vue": () => import("./index3.js"), "./src/views/super/online/cgform/components/CgformModal.vue": () => import("./CgformModal.js").then(function(n) {
|
|
52
358
|
return n.f;
|
|
53
|
-
}), "./src/views/super/online/cgform/components/CodeGeneratorModal.vue": () => import("./CodeGeneratorModal.js"), "./src/views/super/online/cgform/components/DbToOnlineModal.vue": () => import("./DbToOnlineModal.js"), "./src/views/super/online/cgform/components/ExtendConfigModal.vue": () => import("./ExtendConfigModal.js"), "./src/views/super/online/cgform/components/FileSelectModal.vue": () => import("./FileSelectModal.js"), "./src/views/super/online/
|
|
54
|
-
return OnlCgReportList$1;
|
|
55
|
-
}), "./src/views/super/online/cgreport/components/CgreportModal.vue": () => import("./CgreportModal.js").then(function(n) {
|
|
359
|
+
}), "./src/views/super/online/cgform/components/CodeFileListModal.vue": () => import("./CodeFileListModal.js"), "./src/views/super/online/cgform/components/CodeFileViewModal.vue": () => import("./CodeFileViewModal.js"), "./src/views/super/online/cgform/components/CodeGeneratorModal.vue": () => import("./CodeGeneratorModal.js"), "./src/views/super/online/cgform/components/DbToOnlineModal.vue": () => import("./DbToOnlineModal.js"), "./src/views/super/online/cgform/components/ExtendConfigModal.vue": () => import("./ExtendConfigModal.js"), "./src/views/super/online/cgform/components/FileSelectModal.vue": () => import("./FileSelectModal.js"), "./src/views/super/online/cgreport/auto/OnlCgReportList.vue": () => import("./OnlCgReportList.js"), "./src/views/super/online/cgreport/components/CgreportModal.vue": () => import("./CgreportModal.js").then(function(n) {
|
|
56
360
|
return n.C;
|
|
57
|
-
}), "./src/views/super/online/cgreport/demo/ModalFormDemo.vue": () => import("./ModalFormDemo.js"), "./src/views/super/online/
|
|
58
|
-
return
|
|
59
|
-
}), "./src/views/super/online/cgform/auto/comp/
|
|
361
|
+
}), "./src/views/super/online/cgreport/demo/ModalFormDemo.vue": () => import("./ModalFormDemo.js"), "./src/views/super/online/cgform/auto/comp/JOnlineSearchSelect.vue": () => Promise.resolve().then(function() {
|
|
362
|
+
return JOnlineSearchSelect$1;
|
|
363
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlineForm.vue": () => import("./OnlineForm.js"), "./src/views/super/online/cgform/auto/comp/OnlineFormDetail.vue": () => import("./OnlineFormDetail.js"), "./src/views/super/online/cgform/auto/comp/OnlinePopForm.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
364
|
+
return n.n;
|
|
365
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlinePopListModal.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
366
|
+
return n.q;
|
|
367
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlinePopModal.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
368
|
+
return n.o;
|
|
369
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlineQueryForm.vue": () => import("./OnlineQueryForm.js"), "./src/views/super/online/cgform/auto/comp/OnlineSearchFormItem.vue": () => import("./OnlineSearchFormItem.js"), "./src/views/super/online/cgform/auto/comp/OnlineSelectCascade.vue": () => Promise.resolve().then(function() {
|
|
370
|
+
return OnlineSelectCascade$1;
|
|
371
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlineSubForm.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
372
|
+
return n.m;
|
|
373
|
+
}), "./src/views/super/online/cgform/auto/comp/OnlineSubFormDetail.vue": () => import("./OnlineSubFormDetail.js"), "./src/views/super/online/cgform/auto/comp/OnlineSuperQuery.vue": () => import("./OnlineSuperQuery.js"), "./src/views/super/online/cgform/auto/comp/OnlineSuperQueryValComponent.vue": () => import("./OnlineSuperQueryValComponent.js"), "./src/views/super/online/cgform/auto/comp/ProcessOnlineForm.vue": () => import("./ProcessOnlineForm.js"), "./src/views/super/online/cgform/auto/default/OnlineAutoList.vue": () => import("./OnlineAutoList.js"), "./src/views/super/online/cgform/auto/default/OnlineAutoModal.vue": () => import("./OnlineAutoModal.js"), "./src/views/super/online/cgform/auto/default/OnlineCustomModal.vue": () => import("./OnlineCustomModal.js"), "./src/views/super/online/cgform/auto/default/OnlineDetailModal.vue": () => import("./OnlineDetailModal.js"), "./src/views/super/online/cgform/auto/tree/OnlineAutoTreeList.vue": () => import("./OnlineAutoTreeList.js"), "./src/views/super/online/cgform/components/auth/AuthManagerDrawer.vue": () => import("./AuthManagerDrawer.js"), "./src/views/super/online/cgform/components/auth/AuthSetterModal.vue": () => import("./AuthSetterModal.js"), "./src/views/super/online/cgform/components/button/CustomButtonList.vue": () => import("./CustomButtonList.js"), "./src/views/super/online/cgform/components/enhance/EnhanceJavaModal.vue": () => import("./EnhanceJavaModal.js"), "./src/views/super/online/cgform/components/enhance/EnhanceJsHistory.vue": () => import("./EnhanceJsHistory.js").then(function(n) {
|
|
60
374
|
return n.a;
|
|
61
|
-
}), "./src/views/super/online/cgform/components/enhance/EnhanceJsModal.vue": () => import("./EnhanceJsModal.js"), "./src/views/super/online/cgform/components/enhance/EnhanceSqlModal.vue": () => import("./EnhanceSqlModal.js"), "./src/views/super/online/cgform/components/tables/CheckDictTable.vue": () => import("./CheckDictTable.js"), "./src/views/super/online/cgform/components/tables/DBAttributeTable.vue": () => import("./DBAttributeTable.js"), "./src/views/super/online/cgform/components/tables/ForeignKeyTable.vue": () => import("./ForeignKeyTable.js"), "./src/views/super/online/cgform/components/tables/IndexTable.vue": () => import("./IndexTable.js"), "./src/views/super/online/cgform/components/tables/PageAttributeTable.vue": () => import("./PageAttributeTable.js"), "./src/views/super/online/cgform/components/tables/QueryTable.vue": () => import("./QueryTable.js"), "./src/views/super/online/
|
|
375
|
+
}), "./src/views/super/online/cgform/components/enhance/EnhanceJsModal.vue": () => import("./EnhanceJsModal.js"), "./src/views/super/online/cgform/components/enhance/EnhanceSqlModal.vue": () => import("./EnhanceSqlModal.js"), "./src/views/super/online/cgform/components/tables/CheckDictTable.vue": () => import("./CheckDictTable.js"), "./src/views/super/online/cgform/components/tables/DBAttributeTable.vue": () => import("./DBAttributeTable.js"), "./src/views/super/online/cgform/components/tables/ForeignKeyTable.vue": () => import("./ForeignKeyTable.js"), "./src/views/super/online/cgform/components/tables/IndexTable.vue": () => import("./IndexTable.js"), "./src/views/super/online/cgform/components/tables/PageAttributeTable.vue": () => import("./PageAttributeTable.js"), "./src/views/super/online/cgform/components/tables/QueryTable.vue": () => import("./QueryTable.js"), "./src/views/super/online/cgform/extend/form/DetailForm.vue": () => import("./DetailForm.js"), "./src/views/super/online/cgform/extend/linkTable/JModalTip.vue": () => import("./JModalTip.js"), "./src/views/super/online/cgform/extend/linkTable/LinkTableCard.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
376
|
+
return n.r;
|
|
377
|
+
}), "./src/views/super/online/cgform/extend/linkTable/LinkTableConfigModal.vue": () => import("./LinkTableConfigModal.js"), "./src/views/super/online/cgform/extend/linkTable/LinkTableFieldConfigModal.vue": () => import("./LinkTableFieldConfigModal.js"), "./src/views/super/online/cgform/extend/linkTable/LinkTableListPiece.vue": () => import("./LinkTableListPiece.js"), "./src/views/super/online/cgform/extend/linkTable/LinkTableSelect.vue": () => import("./useAutoForm.js").then(function(n) {
|
|
378
|
+
return n.p;
|
|
379
|
+
}), "./src/views/super/online/cgform/components/auth/manager/AuthButtonConfig.vue": () => import("./AuthButtonConfig.js"), "./src/views/super/online/cgform/components/auth/manager/AuthDataConfig.vue": () => import("./AuthDataConfig.js"), "./src/views/super/online/cgform/components/auth/manager/AuthFieldConfig.vue": () => import("./AuthFieldConfig.js"), "./src/views/super/online/cgform/components/auth/setter/AuthButtonTree.vue": () => import("./AuthButtonTree.js"), "./src/views/super/online/cgform/components/auth/setter/AuthDataTree.vue": () => import("./AuthDataTree.js"), "./src/views/super/online/cgform/components/auth/setter/AuthFieldTree.vue": () => import("./AuthFieldTree.js"), "./src/views/super/online/cgform/components/auth/setter/LeftDepart.vue": () => import("./LeftDepart.js"), "./src/views/super/online/cgform/components/auth/setter/LeftRole.vue": () => import("./LeftRole.js"), "./src/views/super/online/cgform/components/auth/setter/LeftUser.vue": () => import("./LeftUser.js") };
|
|
62
380
|
}
|
|
63
381
|
};
|
|
64
|
-
|
|
382
|
+
const LinkTableCard = defineAsyncComponent(() => import("./useAutoForm.js").then(function(n) {
|
|
383
|
+
return n.r;
|
|
384
|
+
}));
|
|
385
|
+
const LinkTableSelect = defineAsyncComponent(() => import("./useAutoForm.js").then(function(n) {
|
|
386
|
+
return n.p;
|
|
387
|
+
}));
|
|
388
|
+
export { JOnlineSearchSelect as J, LinkTableCard as L, OnlineSelectCascade as O, _export_sfc as _, LinkTableSelect as a, index as i };
|