super-page-runtime 2.0.8 → 2.0.10
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/dist/es/components/runtime/index.d.ts +3 -3
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +1 -1
- package/dist/es/components/runtime/utils/page-helper-util.js +4 -1
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +196 -18
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +44 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +76 -6
- package/dist/es/index.d.ts +2 -2
- package/dist/es/index.js +2 -2
- package/dist/lib/_virtual/AttributeMap.js +4 -0
- package/dist/lib/_virtual/Delta.js +4 -0
- package/dist/lib/_virtual/Op.js +4 -0
- package/dist/lib/_virtual/OpIterator.js +4 -0
- package/dist/lib/_virtual/__vite-browser-external.js +3 -0
- package/dist/lib/_virtual/_commonjsHelpers.js +8 -0
- package/dist/lib/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/lib/_virtual/dayjs.min.js +4 -0
- package/dist/lib/_virtual/index.js +4 -0
- package/dist/lib/_virtual/index2.js +4 -0
- package/dist/lib/_virtual/index3.js +4 -0
- package/dist/lib/assets/chart-themes/theme1.d.ts +4 -0
- package/dist/lib/assets/chart-themes/theme1.js +7 -0
- package/dist/lib/assets/chart-themes/theme2.d.ts +4 -0
- package/dist/lib/assets/chart-themes/theme2.js +7 -0
- package/dist/lib/assets/chart-themes/theme3.d.ts +4 -0
- package/dist/lib/assets/chart-themes/theme3.js +7 -0
- package/dist/lib/components/runtime/index.d.ts +4 -0
- package/dist/lib/components/runtime/utils/api/api-util.d.ts +11 -0
- package/dist/lib/components/runtime/utils/api/api-util.js +128 -0
- package/dist/lib/components/runtime/utils/assemblys-config.js +258 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +11 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.js +28 -0
- package/dist/lib/components/runtime/utils/common-util.d.ts +16 -0
- package/dist/lib/components/runtime/utils/common-util.js +94 -0
- package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
- package/dist/lib/components/runtime/utils/eventBus.js +10 -0
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +48 -0
- package/dist/lib/components/runtime/utils/events/event-util.js +526 -0
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +61 -0
- package/dist/lib/components/runtime/utils/events/standard-event.js +1625 -0
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +4 -0
- package/dist/lib/components/runtime/utils/events/validator-util.js +389 -0
- package/dist/lib/components/runtime/utils/global-refs.d.ts +59 -0
- package/dist/lib/components/runtime/utils/global-refs.js +65 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +223 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.js +9 -0
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +106 -0
- package/dist/lib/components/runtime/utils/page-helper-util.js +622 -0
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +38 -0
- package/dist/lib/components/runtime/utils/page-init-util.js +200 -0
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/lib/components/runtime/utils/page-permission-util.js +525 -0
- package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
- package/dist/lib/components/runtime/utils/store-util.js +17 -0
- package/dist/lib/components/runtime/utils/store.d.ts +2 -0
- package/dist/lib/components/runtime/utils/store.js +3 -0
- package/dist/lib/components/runtime/utils/table-utils.js +24 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +54 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +35 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +110 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +432 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +43 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +61 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +126 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +52 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +54 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +54 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +56 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +24 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +147 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +127 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +104 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +72 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +74 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +79 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +43 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +44 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +30 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +69 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +75 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +642 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +453 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +88 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.js +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +156 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +82 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +64 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +40 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +74 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +63 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +127 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +127 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +77 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +29 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +157 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +164 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +201 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +63 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +63 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +65 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.js +142 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue2.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +61 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +36 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.js +73 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue2.js +3 -0
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +91 -0
- package/dist/lib/components/runtime/views/super-page.vue.js +496 -0
- package/dist/lib/components/runtime/views/super-page.vue2.js +3 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/index.d.ts +8 -0
- package/dist/lib/index.js +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const Vue = require("vue");
|
|
3
|
+
const eventUtil = require("../../../../utils/events/event-util.js");
|
|
4
|
+
const pageHelperUtil = require("../../../../utils/page-helper-util.js");
|
|
5
|
+
const pageInitUtil = require("../../../../utils/page-init-util.js");
|
|
6
|
+
const eventBus = require("../../../../utils/eventBus.js");
|
|
7
|
+
const tableUtils = require("../../../../utils/table-utils.js");
|
|
8
|
+
const commonUtil = require("../../../../utils/common-util.js");
|
|
9
|
+
const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
|
|
10
|
+
__name: "sub-table-runtime",
|
|
11
|
+
props: {
|
|
12
|
+
pageContext: {},
|
|
13
|
+
configure: {}
|
|
14
|
+
},
|
|
15
|
+
setup(__props, { expose: __expose }) {
|
|
16
|
+
const props = __props;
|
|
17
|
+
const pageContext = props.pageContext;
|
|
18
|
+
const configure = props.configure;
|
|
19
|
+
const dataModel = pageContext.entity.data;
|
|
20
|
+
const prop = configure.props && configure.props.base ? configure.props.base.prop : null;
|
|
21
|
+
const additionalParamMap = pageContext.entity.request;
|
|
22
|
+
configure.events;
|
|
23
|
+
Vue.ref({});
|
|
24
|
+
const selections = Vue.ref([]);
|
|
25
|
+
const superGridItems = pageContext.superGridItems;
|
|
26
|
+
const superGridSetting = superGridItems ? superGridItems[configure.uuid] : null;
|
|
27
|
+
console.log("superGridSetting===", superGridItems, superGridSetting);
|
|
28
|
+
const runtimeInfo = props.configure.runtime ? props.configure.runtime : {};
|
|
29
|
+
const runtimeStyle = runtimeInfo.style;
|
|
30
|
+
const runtimeClass = runtimeInfo.class;
|
|
31
|
+
const entity = props.pageContext.entity ? props.pageContext.entity : {};
|
|
32
|
+
let dynamicFields = pageInitUtil.getFormModelFields(props.pageContext, props.configure);
|
|
33
|
+
const listViewShowFlag = Vue.ref(false);
|
|
34
|
+
const baseURL = window["$vueApp"].config.globalProperties.baseURL;
|
|
35
|
+
const listViewOptions = Vue.ref({
|
|
36
|
+
subTableData: null,
|
|
37
|
+
extraParam: {},
|
|
38
|
+
operations: {},
|
|
39
|
+
hiddenColumns: [],
|
|
40
|
+
pageCode: pageContext.code,
|
|
41
|
+
pageVersion: pageContext.version,
|
|
42
|
+
pageContext,
|
|
43
|
+
configureObj: configure,
|
|
44
|
+
showPageArea: false,
|
|
45
|
+
showOverflowTooltip: !!(configure.props && configure.props.otherSettings && (configure.props.otherSettings.isBreakLine === void 0 || configure.props.otherSettings.isBreakLine === false))
|
|
46
|
+
// 单元格内容是否换行显示
|
|
47
|
+
});
|
|
48
|
+
if (runtimeStyle) {
|
|
49
|
+
listViewOptions.value["tableStyle"] = runtimeStyle;
|
|
50
|
+
}
|
|
51
|
+
if (runtimeClass) {
|
|
52
|
+
listViewOptions.value["tableClass"] = runtimeClass;
|
|
53
|
+
}
|
|
54
|
+
if (configure.props && configure.props.base && configure.props.base.subPaging === void 0 || configure.props.base.subPaging === null || configure.props.base.subPaging === false) {
|
|
55
|
+
listViewOptions.value.showPageArea = false;
|
|
56
|
+
} else {
|
|
57
|
+
listViewOptions.value.showPageArea = true;
|
|
58
|
+
}
|
|
59
|
+
const gridRef = Vue.ref(null);
|
|
60
|
+
const listCode = commonUtil.getListCode(pageContext.code, pageContext.version, configure.uuid);
|
|
61
|
+
function currencyListViewSetting(canRrefreshSubtableData) {
|
|
62
|
+
if (canRrefreshSubtableData === void 0) {
|
|
63
|
+
canRrefreshSubtableData = judgeInitializationSubTable();
|
|
64
|
+
}
|
|
65
|
+
listViewOptions.value["isFormSubTable"] = true;
|
|
66
|
+
listViewOptions.value["canRrefreshSubtableData"] = canRrefreshSubtableData;
|
|
67
|
+
listViewOptions.value["getFormData"] = getParentFormData;
|
|
68
|
+
listViewOptions.value["getGridData"] = getGridData;
|
|
69
|
+
if (!(configure.props && configure.props.base && configure.props.base.showOperation)) {
|
|
70
|
+
let hiddenColumns = listViewOptions.value.hiddenColumns;
|
|
71
|
+
if (!hiddenColumns) {
|
|
72
|
+
hiddenColumns = ["operation"];
|
|
73
|
+
} else {
|
|
74
|
+
hiddenColumns.push("operation");
|
|
75
|
+
}
|
|
76
|
+
listViewOptions.value["hiddenColumns"] = hiddenColumns;
|
|
77
|
+
}
|
|
78
|
+
listViewOptions.value["showOperationButton"] = configure.props && configure.props.base ? configure.props.base.showOperation : false;
|
|
79
|
+
listViewOptions.value["isPdfEditor"] = false;
|
|
80
|
+
listViewOptions.value["tableRecordMaxNum"] = configure.props && configure.props.otherSettings ? configure.props.otherSettings.tableRecordMaxNum : null;
|
|
81
|
+
if (configure.props && configure.props.size && configure.props.size.fixHeight) {
|
|
82
|
+
listViewOptions.value["formSetHeight"] = configure.props.size.fixHeight;
|
|
83
|
+
}
|
|
84
|
+
if (configure.props && configure.props.size && configure.props.size.maxHeight) {
|
|
85
|
+
listViewOptions.value["formSetMaxHeight"] = configure.props.size.maxHeight;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
function judgeInitializationSubTable() {
|
|
89
|
+
if (!configure.props || !configure.props.otherSettings) {
|
|
90
|
+
return;
|
|
91
|
+
}
|
|
92
|
+
if (configure.props.otherSettings.subtableSetting && configure.props.otherSettings.timeToInitializeSubTable && configure.props.otherSettings.subtableSetting.timeToInitializeSubTable.length > 0) {
|
|
93
|
+
let flag = false;
|
|
94
|
+
if (configure.props.otherSettings.subtableSetting.timeToInitializeSubTable.indexOf("create") !== -1) {
|
|
95
|
+
if (dataModel.id || dataModel.ID) {
|
|
96
|
+
flag = false;
|
|
97
|
+
} else {
|
|
98
|
+
flag = true;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
if (configure.props.otherSettings.subtableSetting.timeToInitializeSubTable.indexOf("noData") !== -1) {
|
|
102
|
+
const tableData = dataModel[prop];
|
|
103
|
+
if (!tableData || tableData.length <= 0) {
|
|
104
|
+
flag = true;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
return flag;
|
|
108
|
+
} else {
|
|
109
|
+
return false;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
function getParentFormData() {
|
|
113
|
+
return pageContext.entity.data;
|
|
114
|
+
}
|
|
115
|
+
function getGridData() {
|
|
116
|
+
return pageHelperUtil.getVariableValue(entity, dynamicFields);
|
|
117
|
+
}
|
|
118
|
+
function changeInitializationSubTable(canRrefreshSubtableData) {
|
|
119
|
+
currencyListViewSetting(canRrefreshSubtableData);
|
|
120
|
+
listViewOptions.value["isPageInfo"] = false;
|
|
121
|
+
listViewOptions.value["subTableData"] = null;
|
|
122
|
+
listViewOptions.value.extraParam["subTableListViewCode"] = listCode;
|
|
123
|
+
listViewOptions.value.extraParam["subtableSetting"] = configure.props || !configure.props.otherSettings ? JSON.stringify(configure.props.otherSettings.subtableSetting) : null;
|
|
124
|
+
listViewOptions.value.extraParam["additionalParamMap"] = additionalParamMap;
|
|
125
|
+
listViewOptions.value.extraParam["entityMap"] = pageContext.entity.data;
|
|
126
|
+
setGridDataEventOptions();
|
|
127
|
+
listViewShowFlag.value = false;
|
|
128
|
+
setTimeout(() => {
|
|
129
|
+
listViewShowFlag.value = true;
|
|
130
|
+
setGridToStore();
|
|
131
|
+
}, 10);
|
|
132
|
+
}
|
|
133
|
+
changeInitializationSubTable();
|
|
134
|
+
function setGridDataEventOptions() {
|
|
135
|
+
setSubTableValidateInfo();
|
|
136
|
+
const tableEvents2 = configure.events;
|
|
137
|
+
eventUtil.setTableEvents(listViewOptions.value, tableEvents2, pageContext, configure);
|
|
138
|
+
const customEvents = pageContext.customEvents;
|
|
139
|
+
if (customEvents) {
|
|
140
|
+
listViewOptions.value["eventCallBack"] = customEvents;
|
|
141
|
+
}
|
|
142
|
+
listViewShowFlag.value = true;
|
|
143
|
+
setGridToStore();
|
|
144
|
+
}
|
|
145
|
+
function setSubTableValidateInfo() {
|
|
146
|
+
const fieldPermissionMap = pageContext.fieldPermissionMap;
|
|
147
|
+
const actionPermissionMap = pageContext.actionPermissionMap;
|
|
148
|
+
if (fieldPermissionMap && fieldPermissionMap != null) {
|
|
149
|
+
let validateRules = fieldPermissionMap.get(prop);
|
|
150
|
+
if (!validateRules) {
|
|
151
|
+
const allValidateRules = fieldPermissionMap.get("all_fields");
|
|
152
|
+
if (allValidateRules) {
|
|
153
|
+
validateRules = [allValidateRules];
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
if (validateRules) {
|
|
157
|
+
listViewOptions.value["validateRules"] = validateRules;
|
|
158
|
+
} else {
|
|
159
|
+
listViewOptions.value["validateRules"] = null;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
if (actionPermissionMap && actionPermissionMap != null) {
|
|
163
|
+
let actionPermission = actionPermissionMap.get(prop);
|
|
164
|
+
if (!actionPermission) {
|
|
165
|
+
actionPermission = actionPermissionMap.get("all_sub_tables");
|
|
166
|
+
}
|
|
167
|
+
listViewOptions.value["actionPermission"] = actionPermission;
|
|
168
|
+
}
|
|
169
|
+
const subTableOperations = getOperations();
|
|
170
|
+
listViewOptions.value["operations"]["operation"] = subTableOperations;
|
|
171
|
+
listViewOptions.value["subTableCanAdd"] = isShowAdd();
|
|
172
|
+
}
|
|
173
|
+
function setGridToStore() {
|
|
174
|
+
if (!pageContext.tableUuids) {
|
|
175
|
+
pageContext.tableUuids = [];
|
|
176
|
+
}
|
|
177
|
+
pageContext.tableUuids.push(configure.uuid);
|
|
178
|
+
}
|
|
179
|
+
function getOperations() {
|
|
180
|
+
let operations = [];
|
|
181
|
+
if (isShowAdd()) {
|
|
182
|
+
const addButton = {
|
|
183
|
+
props: {
|
|
184
|
+
elementType: "el-button",
|
|
185
|
+
icon: "Plus",
|
|
186
|
+
type: "primary",
|
|
187
|
+
circle: true,
|
|
188
|
+
size: "mini",
|
|
189
|
+
permission: "true"
|
|
190
|
+
},
|
|
191
|
+
onClick: addSubTableData
|
|
192
|
+
};
|
|
193
|
+
operations.push(addButton);
|
|
194
|
+
}
|
|
195
|
+
if (isShowDelete(null, null, null, null, null, true)) {
|
|
196
|
+
const removeButton = {
|
|
197
|
+
props: {
|
|
198
|
+
elementType: "el-button",
|
|
199
|
+
icon: "Minus",
|
|
200
|
+
type: "danger",
|
|
201
|
+
circle: true,
|
|
202
|
+
size: "mini",
|
|
203
|
+
permission: "true"
|
|
204
|
+
},
|
|
205
|
+
onClick: removeSubTableData,
|
|
206
|
+
isShow: isShowDelete
|
|
207
|
+
};
|
|
208
|
+
operations.push(removeButton);
|
|
209
|
+
}
|
|
210
|
+
return operations;
|
|
211
|
+
}
|
|
212
|
+
function getEntityId(row) {
|
|
213
|
+
if (row && row.id) {
|
|
214
|
+
return row.id;
|
|
215
|
+
} else if (row && row.ID) {
|
|
216
|
+
return row.ID;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
function isShowAdd() {
|
|
220
|
+
const fieldPermissionMap = pageContext.fieldPermissionMap;
|
|
221
|
+
const actionPermissionMap = pageContext.actionPermissionMap;
|
|
222
|
+
let canAdd = true;
|
|
223
|
+
if (fieldPermissionMap && fieldPermissionMap !== null) {
|
|
224
|
+
const allFieldPermission = fieldPermissionMap.get("all_fields");
|
|
225
|
+
if (typeof allFieldPermission !== "undefined" && allFieldPermission.canEdit === false && (allFieldPermission.rowIndexes === void 0 || allFieldPermission.rowIndexes === null || allFieldPermission.rowIndexes.length === 0)) {
|
|
226
|
+
canAdd = false;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
if (canAdd === true && prop && actionPermissionMap && actionPermissionMap !== null) {
|
|
230
|
+
let oneTableActionPermission = actionPermissionMap.get(prop);
|
|
231
|
+
if (!oneTableActionPermission) {
|
|
232
|
+
oneTableActionPermission = actionPermissionMap.get("all_sub_tables");
|
|
233
|
+
}
|
|
234
|
+
if (oneTableActionPermission && oneTableActionPermission.canAdd !== void 0 && oneTableActionPermission.canAdd === false) {
|
|
235
|
+
canAdd = false;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
return canAdd;
|
|
239
|
+
}
|
|
240
|
+
function isShowDelete(originalValue, formatValue, row, column, rowIndex, isFormJudge) {
|
|
241
|
+
const fieldPermissionMap = pageContext.fieldPermissionMap;
|
|
242
|
+
const actionPermissionMap = pageContext.actionPermissionMap;
|
|
243
|
+
let canDelete = true;
|
|
244
|
+
if (fieldPermissionMap && fieldPermissionMap !== null) {
|
|
245
|
+
const allFieldPermission = fieldPermissionMap.get("all_fields");
|
|
246
|
+
if (typeof allFieldPermission !== "undefined" && allFieldPermission.canEdit === false && (allFieldPermission.rowIndexes === void 0 || allFieldPermission.rowIndexes === null || allFieldPermission.rowIndexes.length === 0)) {
|
|
247
|
+
canDelete = false;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
if (canDelete === true && prop && actionPermissionMap && actionPermissionMap !== null) {
|
|
251
|
+
let oneTableActionPermission = actionPermissionMap.get(prop);
|
|
252
|
+
if (!oneTableActionPermission) {
|
|
253
|
+
oneTableActionPermission = actionPermissionMap.get("all_sub_tables");
|
|
254
|
+
}
|
|
255
|
+
if (oneTableActionPermission && oneTableActionPermission.canDelete !== void 0 && oneTableActionPermission.canDelete === false) {
|
|
256
|
+
canDelete = false;
|
|
257
|
+
}
|
|
258
|
+
if (oneTableActionPermission && oneTableActionPermission.canDelete !== void 0 && oneTableActionPermission.canDelete === true) {
|
|
259
|
+
if (oneTableActionPermission.deleteRowIndexes) {
|
|
260
|
+
if (oneTableActionPermission.deleteRowIndexes.length > 0) {
|
|
261
|
+
if (isFormJudge) {
|
|
262
|
+
canDelete = true;
|
|
263
|
+
} else {
|
|
264
|
+
const rowId = getEntityId(row);
|
|
265
|
+
if (rowId !== void 0 && oneTableActionPermission.deleteRowIndexes.indexOf(rowId) >= 0) {
|
|
266
|
+
canDelete = true;
|
|
267
|
+
} else {
|
|
268
|
+
canDelete = false;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
} else {
|
|
272
|
+
canDelete = false;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
return canDelete;
|
|
278
|
+
}
|
|
279
|
+
function addSubTableData(originalValue, formatValue, row, column, rowIndex) {
|
|
280
|
+
gridRef.value.createRow(listCode);
|
|
281
|
+
}
|
|
282
|
+
function removeSubTableData(originalValue, formatValue, row, column, rowIndex) {
|
|
283
|
+
gridRef.value.deleteRow(rowIndex, listCode, false);
|
|
284
|
+
}
|
|
285
|
+
function changeGridData(gridData) {
|
|
286
|
+
pageHelperUtil.setVariableValue(entity, dynamicFields, gridData);
|
|
287
|
+
}
|
|
288
|
+
function changeRowsPerpage(pageSize) {
|
|
289
|
+
console.log("表单组件--Item--changeRowsPerpage==pageSize=", pageSize);
|
|
290
|
+
if (!pageContext.subTablePageInfo) {
|
|
291
|
+
pageContext.subTablePageInfo = {};
|
|
292
|
+
}
|
|
293
|
+
pageContext.subTablePageInfo[prop] = { pageSize };
|
|
294
|
+
}
|
|
295
|
+
function setSelectOptions(valueSetOptions) {
|
|
296
|
+
const propName = valueSetOptions.key;
|
|
297
|
+
const options = valueSetOptions.value;
|
|
298
|
+
if (!pageContext.selectOptions) {
|
|
299
|
+
pageContext.selectOptions = {};
|
|
300
|
+
}
|
|
301
|
+
pageContext.selectOptions[propName] = options;
|
|
302
|
+
}
|
|
303
|
+
function fnProhibitToEdit(data) {
|
|
304
|
+
const myPageCode = pageContext.code;
|
|
305
|
+
const eventPageInfo = myPageCode + "_";
|
|
306
|
+
eventBus.$emit(eventPageInfo + "prohibit-edit", data);
|
|
307
|
+
}
|
|
308
|
+
function refresMainTableFields(entity2) {
|
|
309
|
+
const dataModel2 = pageContext.entity.data;
|
|
310
|
+
if (entity2) {
|
|
311
|
+
for (const key in entity2) {
|
|
312
|
+
dataModel2[key] = entity2[key];
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
function select(selection, row) {
|
|
317
|
+
selections.value = selection;
|
|
318
|
+
const params = {
|
|
319
|
+
selection,
|
|
320
|
+
row
|
|
321
|
+
};
|
|
322
|
+
eventUtil.gridSelectRecord(pageContext, configure, params);
|
|
323
|
+
}
|
|
324
|
+
function selectAll(selection) {
|
|
325
|
+
selections.value = selection;
|
|
326
|
+
const params = {
|
|
327
|
+
selection
|
|
328
|
+
};
|
|
329
|
+
eventUtil.gridSelectAllRecords(pageContext, configure, params);
|
|
330
|
+
}
|
|
331
|
+
function selectionChange(newSelection) {
|
|
332
|
+
const params = {
|
|
333
|
+
newSelection
|
|
334
|
+
};
|
|
335
|
+
eventUtil.gridSelectionChange(pageContext, configure, params);
|
|
336
|
+
}
|
|
337
|
+
function cellClickEvent(row, column, cell, event) {
|
|
338
|
+
const params = {
|
|
339
|
+
row,
|
|
340
|
+
column,
|
|
341
|
+
cell,
|
|
342
|
+
event
|
|
343
|
+
};
|
|
344
|
+
eventUtil.cellClick(pageContext, configure, params);
|
|
345
|
+
}
|
|
346
|
+
function cellDblClickEvent(row, column, cell, event) {
|
|
347
|
+
const params = {
|
|
348
|
+
row,
|
|
349
|
+
column,
|
|
350
|
+
cell,
|
|
351
|
+
event
|
|
352
|
+
};
|
|
353
|
+
eventUtil.cellDblClick(pageContext, configure, params);
|
|
354
|
+
}
|
|
355
|
+
function rowClickEvent(row, column, event) {
|
|
356
|
+
const params = {
|
|
357
|
+
row,
|
|
358
|
+
column,
|
|
359
|
+
event
|
|
360
|
+
};
|
|
361
|
+
eventUtil.rowClick(pageContext, configure, params);
|
|
362
|
+
}
|
|
363
|
+
function rowDblClickEvent(row, column, event) {
|
|
364
|
+
const params = {
|
|
365
|
+
row,
|
|
366
|
+
column,
|
|
367
|
+
event
|
|
368
|
+
};
|
|
369
|
+
eventUtil.rowDblClick(pageContext, configure, params);
|
|
370
|
+
}
|
|
371
|
+
function headerClickEvent(column, event) {
|
|
372
|
+
const params = {
|
|
373
|
+
column,
|
|
374
|
+
event
|
|
375
|
+
};
|
|
376
|
+
eventUtil.headerClick(pageContext, configure, params);
|
|
377
|
+
}
|
|
378
|
+
function changeFormData(formData) {
|
|
379
|
+
pageContext.entity.data = formData;
|
|
380
|
+
}
|
|
381
|
+
function validatorSunTableListData() {
|
|
382
|
+
return gridRef.value.validatorSunTableListData();
|
|
383
|
+
}
|
|
384
|
+
function createRow() {
|
|
385
|
+
return gridRef.value.createRow(listCode);
|
|
386
|
+
}
|
|
387
|
+
function getSelections() {
|
|
388
|
+
return selections.value;
|
|
389
|
+
}
|
|
390
|
+
function getSelectionIds() {
|
|
391
|
+
const dataIds = [];
|
|
392
|
+
if (selections.value !== null) {
|
|
393
|
+
selections.value.forEach((item) => {
|
|
394
|
+
dataIds.push(item.id ? item.id : item.ID ? item.ID : null);
|
|
395
|
+
});
|
|
396
|
+
}
|
|
397
|
+
return dataIds;
|
|
398
|
+
}
|
|
399
|
+
function clearSelections() {
|
|
400
|
+
selections.value = [];
|
|
401
|
+
}
|
|
402
|
+
function getTableConfigure() {
|
|
403
|
+
return configure;
|
|
404
|
+
}
|
|
405
|
+
function getValue() {
|
|
406
|
+
return pageHelperUtil.getVariableValue(entity, dynamicFields);
|
|
407
|
+
}
|
|
408
|
+
function setValue(value) {
|
|
409
|
+
return pageHelperUtil.setVariableValue(entity, dynamicFields, value);
|
|
410
|
+
}
|
|
411
|
+
__expose({
|
|
412
|
+
createRow,
|
|
413
|
+
getSelections,
|
|
414
|
+
getSelectionIds,
|
|
415
|
+
clearSelections,
|
|
416
|
+
getTableConfigure,
|
|
417
|
+
validatorSunTableListData,
|
|
418
|
+
getValue,
|
|
419
|
+
setValue
|
|
420
|
+
});
|
|
421
|
+
return (_ctx, _cache) => {
|
|
422
|
+
const _component_super_grid = Vue.resolveComponent("super-grid");
|
|
423
|
+
return Vue.openBlock(), Vue.createElementBlock("div", null, [
|
|
424
|
+
listViewShowFlag.value ? (Vue.openBlock(), Vue.createBlock(_component_super_grid, {
|
|
425
|
+
key: 0,
|
|
426
|
+
ref_key: "gridRef",
|
|
427
|
+
ref: gridRef,
|
|
428
|
+
url: Vue.unref(baseURL) + "/common/super-forms/sub-table",
|
|
429
|
+
options: listViewOptions.value,
|
|
430
|
+
code: Vue.unref(superGridSetting) ? null : Vue.unref(listCode),
|
|
431
|
+
settings: Vue.unref(superGridSetting),
|
|
432
|
+
onSelect: select,
|
|
433
|
+
onSelectAll: selectAll,
|
|
434
|
+
onSelectionChange: selectionChange,
|
|
435
|
+
onCellClick: cellClickEvent,
|
|
436
|
+
onCellDblclick: cellDblClickEvent,
|
|
437
|
+
onRowClick: rowClickEvent,
|
|
438
|
+
onRowDblclick: rowDblClickEvent,
|
|
439
|
+
onHeaderClick: headerClickEvent,
|
|
440
|
+
onFnProhibitToEdit: fnProhibitToEdit,
|
|
441
|
+
onChangeGridData: changeGridData,
|
|
442
|
+
onReloadGrid: changeInitializationSubTable,
|
|
443
|
+
onRefresMainTableFields: refresMainTableFields,
|
|
444
|
+
onSetSelectOptions: setSelectOptions,
|
|
445
|
+
onChangeRowsPerPage: changeRowsPerpage,
|
|
446
|
+
onNewOpenGridDialog: Vue.unref(tableUtils.popupToPage),
|
|
447
|
+
onChangeFormData: changeFormData
|
|
448
|
+
}, null, 8, ["url", "options", "code", "settings", "onNewOpenGridDialog"])) : Vue.createCommentVNode("", true)
|
|
449
|
+
]);
|
|
450
|
+
};
|
|
451
|
+
}
|
|
452
|
+
});
|
|
453
|
+
module.exports = _sfc_main;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const Vue = require("vue");
|
|
3
|
+
require("../../../../../../node_modules/.pnpm/agilebuilder-ui@1.0.13_vue@3.4.21/node_modules/agilebuilder-ui/lib/super-ui.js");
|
|
4
|
+
require("../../../../../../node_modules/.pnpm/agilebuilder-ui@1.0.13_vue@3.4.21/node_modules/agilebuilder-ui/src/utils/request.js");
|
|
5
|
+
require("../../../../../../node_modules/.pnpm/dayjs@1.11.11/node_modules/dayjs/dayjs.min.js");
|
|
6
|
+
require("../../../../../../node_modules/.pnpm/agilebuilder-ui@1.0.13_vue@3.4.21/node_modules/agilebuilder-ui/src/i18n/i18n.js");
|
|
7
|
+
require("../../../../../../node_modules/.pnpm/js-cookie@3.0.5/node_modules/js-cookie/dist/js.cookie.js");
|
|
8
|
+
require("../../../../utils/global-refs.js");
|
|
9
|
+
const subTableRuntime_vue_vue_type_script_setup_true_lang = require("./sub-table-runtime.vue.js");
|
|
10
|
+
const mainTableRuntime_vue_vue_type_script_setup_true_lang = require("./main-table-runtime.vue.js");
|
|
11
|
+
const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
|
|
12
|
+
__name: "table-runtime",
|
|
13
|
+
props: {
|
|
14
|
+
pageContext: {},
|
|
15
|
+
configure: {}
|
|
16
|
+
},
|
|
17
|
+
setup(__props, { expose: __expose }) {
|
|
18
|
+
const props = __props;
|
|
19
|
+
const pageType = props.pageContext.pageType;
|
|
20
|
+
const tableConfigure = Vue.ref(null);
|
|
21
|
+
const tableUuid = props.configure.uuid;
|
|
22
|
+
const superGridItems = props.pageContext.superGridItems;
|
|
23
|
+
const superGridSetting = superGridItems ? superGridItems[tableUuid] : null;
|
|
24
|
+
tableConfigure.value = superGridSetting.configure ? JSON.parse(superGridSetting.configure) : null;
|
|
25
|
+
const runtimeInfo = props.configure.runtime ? props.configure.runtime : {};
|
|
26
|
+
runtimeInfo.style;
|
|
27
|
+
runtimeInfo.class;
|
|
28
|
+
const gridRef = Vue.ref(null);
|
|
29
|
+
function validatorSunTableListData() {
|
|
30
|
+
if (pageType && pageType === "form") {
|
|
31
|
+
return gridRef.value.validatorSunTableListData();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
function clearSelections() {
|
|
35
|
+
return gridRef.value.clearSelections();
|
|
36
|
+
}
|
|
37
|
+
function refresh() {
|
|
38
|
+
if (pageType && pageType === "list") {
|
|
39
|
+
return gridRef.value.refresh();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
function createRow() {
|
|
43
|
+
return gridRef.value.createRow();
|
|
44
|
+
}
|
|
45
|
+
function getSelections() {
|
|
46
|
+
return gridRef.value.getSelections();
|
|
47
|
+
}
|
|
48
|
+
function getSelectionIds() {
|
|
49
|
+
return gridRef.value.getSelectionIds();
|
|
50
|
+
}
|
|
51
|
+
function getTableConfigure() {
|
|
52
|
+
return gridRef.value.getTableConfigure();
|
|
53
|
+
}
|
|
54
|
+
function isDeleteChange(value) {
|
|
55
|
+
if (pageType && pageType === "list") {
|
|
56
|
+
gridRef.value.isDeleteChange(value);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
__expose({
|
|
60
|
+
refresh,
|
|
61
|
+
createRow,
|
|
62
|
+
clearSelections,
|
|
63
|
+
getSelections,
|
|
64
|
+
getSelectionIds,
|
|
65
|
+
getTableConfigure,
|
|
66
|
+
isDeleteChange,
|
|
67
|
+
validatorSunTableListData
|
|
68
|
+
});
|
|
69
|
+
return (_ctx, _cache) => {
|
|
70
|
+
return Vue.openBlock(), Vue.createElementBlock("div", null, [
|
|
71
|
+
Vue.unref(pageType) && Vue.unref(pageType) === "form" ? (Vue.openBlock(), Vue.createBlock(subTableRuntime_vue_vue_type_script_setup_true_lang, {
|
|
72
|
+
key: 0,
|
|
73
|
+
ref_key: "gridRef",
|
|
74
|
+
ref: gridRef,
|
|
75
|
+
pageContext: _ctx.pageContext,
|
|
76
|
+
configure: _ctx.configure
|
|
77
|
+
}, null, 8, ["pageContext", "configure"])) : (Vue.openBlock(), Vue.createBlock(mainTableRuntime_vue_vue_type_script_setup_true_lang, {
|
|
78
|
+
key: 1,
|
|
79
|
+
ref_key: "gridRef",
|
|
80
|
+
ref: gridRef,
|
|
81
|
+
pageContext: _ctx.pageContext,
|
|
82
|
+
configure: tableConfigure.value
|
|
83
|
+
}, null, 8, ["pageContext", "configure"]))
|
|
84
|
+
]);
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
module.exports = _sfc_main;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
configure: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
selectWidget: ObjectConstructor;
|
|
9
|
+
indexObj: ObjectConstructor;
|
|
10
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
configure: {
|
|
12
|
+
type: ObjectConstructor;
|
|
13
|
+
default: {
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
selectWidget: ObjectConstructor;
|
|
18
|
+
indexObj: ObjectConstructor;
|
|
19
|
+
}>>, {
|
|
20
|
+
configure: Record<string, any>;
|
|
21
|
+
}, {}>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const Vue = require("vue");
|
|
3
|
+
const _hoisted_1 = { style: { "text-align": "center", "color": "red" } };
|
|
4
|
+
const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
|
|
5
|
+
__name: "error-render",
|
|
6
|
+
props: {
|
|
7
|
+
configure: {
|
|
8
|
+
type: Object,
|
|
9
|
+
default: {
|
|
10
|
+
name: "未知"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
selectWidget: Object,
|
|
14
|
+
indexObj: Object
|
|
15
|
+
},
|
|
16
|
+
setup(__props) {
|
|
17
|
+
return (_ctx, _cache) => {
|
|
18
|
+
return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, " 不能识别的组件类型【" + Vue.toDisplayString(__props.configure.name) + "】 ", 1);
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
module.exports = _sfc_main;
|