super-page-designer 2.1.41-tmp2 → 2.1.44
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/design/utils/assemblys-config.js +45 -13
- package/dist/es/components/design/utils/form-design-util.js +1 -0
- package/dist/es/components/design/utils/page-design-util.d.ts +1 -1
- package/dist/es/components/design/utils/page-design-util.js +3 -2
- package/dist/es/components/design/utils/page-table-util.js +4 -2
- package/dist/es/components/design/views/assemblys/chart/common/common-attr-data.vue.js +9 -8
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/data-origin.vue.js +1 -7
- package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-attr-base.vue.js +93 -78
- package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-design.vue2.js +13 -9
- package/dist/es/components/design/views/assemblys/common/common-attr-size.vue.js +5 -6
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +738 -1
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue3.js +1 -738
- package/dist/es/components/design/views/assemblys/container/card/card-design.vue2.js +6 -0
- package/dist/es/components/design/views/assemblys/container/collapse/collapse-design.vue2.js +10 -0
- package/dist/es/components/design/views/assemblys/container/container/container-design.vue2.js +6 -0
- package/dist/es/components/design/views/assemblys/container/flex/flex-design.vue2.js +6 -0
- package/dist/es/components/design/views/assemblys/container/form/form-design.vue2.js +6 -0
- package/dist/es/components/design/views/assemblys/container/tabs/tabs-design.vue2.js +10 -0
- package/dist/es/components/design/views/assemblys/container/tools/tools-design.vue2.js +7 -4
- package/dist/es/components/design/views/assemblys/data/component/column-config.vue.js +3 -3
- package/dist/es/components/design/views/assemblys/data/component/data-origin.vue2.js +1 -1
- package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-attr-base.vue.js +3 -3
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue2.js +2 -2
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-attr-base.vue2.js +50 -35
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/form/common/data-origin-autoset.vue.js +4 -2
- package/dist/es/components/design/views/assemblys/form/common/data-origin.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/common/data-origin.vue2.js +8 -2
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue.js +1 -152
- package/dist/es/components/design/views/assemblys/form/common/dataorigin-input-table.vue2.js +152 -1
- package/dist/es/components/design/views/assemblys/form/common/verification.vue.js +4 -3
- package/dist/es/components/design/views/assemblys/form/custom/custom-attr-base.vue.js +8 -29
- package/dist/es/components/design/views/assemblys/form/custom/custom-design.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/custom/custom-design.vue2.js +16 -7
- package/dist/es/components/design/views/assemblys/object-design.vue.js +15 -0
- package/dist/es/components/design/views/assemblys/page/create-workflow-dialog.vue.d.ts +6 -0
- package/dist/es/components/design/views/assemblys/page/create-workflow-dialog.vue.js +95 -0
- package/dist/es/components/design/views/assemblys/page/create-workflow-dialog.vue2.js +4 -0
- package/dist/es/components/design/views/assemblys/page/page-attr-base.vue.js +61 -22
- package/dist/es/components/design/views/design/page-event/config.vue.js +7 -1
- package/dist/es/components/design/views/design/page-event/config.vue2.js +1 -7
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
- package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +1 -1
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +1 -1
- package/dist/es/style.css +128 -128
- package/package.json +4 -4
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/data-origin.vue2.js +0 -542
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/data-origin.vue3.js +0 -1
|
@@ -26,6 +26,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
26
26
|
watch(props.configure.style, () => {
|
|
27
27
|
caculateThisStyle();
|
|
28
28
|
});
|
|
29
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
30
|
+
watch(tempData, (newVal, oldVal) => {
|
|
31
|
+
if (newVal.length > oldVal.length) {
|
|
32
|
+
onSelectWidget(props.indexObj.index, newVal[newVal.length - 1]);
|
|
33
|
+
}
|
|
34
|
+
}, { important: true, deep: true });
|
|
29
35
|
function caculateThisStyle() {
|
|
30
36
|
caculateComponentStyle(props.configure, designStyle, designClass, designHeaderStyle);
|
|
31
37
|
if (!props.configure.runtime) {
|
package/dist/es/components/design/views/assemblys/container/collapse/collapse-design.vue2.js
CHANGED
|
@@ -42,6 +42,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
42
42
|
watch(props.configure.style, () => {
|
|
43
43
|
caculateThisStyle();
|
|
44
44
|
});
|
|
45
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
46
|
+
watch(tempData, (newVal, oldVal) => {
|
|
47
|
+
newVal.forEach((every) => {
|
|
48
|
+
oldVal.forEach((oblEvery) => {
|
|
49
|
+
if (every.items.length > oblEvery.items.length) {
|
|
50
|
+
onSelectWidget(props.indexObj.index, every.items[every.items.length - 1]);
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
}, { important: true, deep: true });
|
|
45
55
|
function caculateThisStyle() {
|
|
46
56
|
caculateComponentStyle(props.configure, designStyle, designClass, designHeaderStyle);
|
|
47
57
|
props.configure.runtime.style = designStyle.value;
|
package/dist/es/components/design/views/assemblys/container/container/container-design.vue2.js
CHANGED
|
@@ -37,6 +37,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
37
37
|
watch(props.configure.props, () => {
|
|
38
38
|
caculateSideStyle();
|
|
39
39
|
});
|
|
40
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
41
|
+
watch(tempData, (newVal, oldVal) => {
|
|
42
|
+
if (newVal.length > oldVal.length) {
|
|
43
|
+
onSelectWidget(props.indexObj.index, newVal[newVal.length - 1]);
|
|
44
|
+
}
|
|
45
|
+
}, { important: true, deep: true });
|
|
40
46
|
function updateDraggable() {
|
|
41
47
|
console.log("%c描述-115146", "color:#2E3435;background:#F8BB07;padding:3px;border-radius:2px", 111);
|
|
42
48
|
}
|
|
@@ -80,6 +80,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
80
80
|
},
|
|
81
81
|
{ immediate: true }
|
|
82
82
|
);
|
|
83
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
84
|
+
watch(tempData, (newVal, oldVal) => {
|
|
85
|
+
if (newVal.length > oldVal.length) {
|
|
86
|
+
onSelectWidget(props.indexObj.index, newVal[newVal.length - 1]);
|
|
87
|
+
}
|
|
88
|
+
}, { important: true, deep: true });
|
|
83
89
|
const ambDragParent = ref(null);
|
|
84
90
|
useDraggable(ambDragParent, props.configure.items, {
|
|
85
91
|
filter: ".el-scrollbar__bar",
|
|
@@ -32,6 +32,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
32
32
|
watch(props.configure.props, () => {
|
|
33
33
|
caculateThisProps();
|
|
34
34
|
});
|
|
35
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
36
|
+
watch(tempData, (newVal, oldVal) => {
|
|
37
|
+
if (newVal.length > oldVal.length) {
|
|
38
|
+
onSelectWidget(props.indexObj.index, newVal[newVal.length - 1]);
|
|
39
|
+
}
|
|
40
|
+
}, { important: true, deep: true });
|
|
35
41
|
function caculateThisProps() {
|
|
36
42
|
const tempProps = {};
|
|
37
43
|
if (configureDefault.props) {
|
|
@@ -42,6 +42,16 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
42
42
|
watch(props.configure.style, () => {
|
|
43
43
|
caculateThisStyle();
|
|
44
44
|
});
|
|
45
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
46
|
+
watch(tempData, (newVal, oldVal) => {
|
|
47
|
+
newVal.forEach((every) => {
|
|
48
|
+
oldVal.forEach((oblEvery) => {
|
|
49
|
+
if (every.items.length > oblEvery.items.length) {
|
|
50
|
+
onSelectWidget(props.indexObj.index, every.items[every.items.length - 1]);
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
});
|
|
54
|
+
}, { important: true, deep: true });
|
|
45
55
|
function caculateThisStyle() {
|
|
46
56
|
caculateComponentStyle(props.configure, designStyle, designClass, designHeaderStyle);
|
|
47
57
|
props.configure.runtime.style = designStyle.value;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, ref, watch, onMounted, onUnmounted, openBlock, createElementBlock, createElementVNode, normalizeClass, normalizeStyle, Fragment, renderList, createBlock, reactive } from "vue";
|
|
1
|
+
import { defineComponent, ref, watch, computed, onMounted, onUnmounted, openBlock, createElementBlock, createElementVNode, normalizeClass, normalizeStyle, Fragment, renderList, createBlock, reactive } from "vue";
|
|
2
2
|
import { useDraggable } from "vue-draggable-plus";
|
|
3
3
|
import _sfc_main$1 from "../../object-design.vue.js";
|
|
4
4
|
import { deepCopy, getUuidv4 } from "../../../../utils/common-util.js";
|
|
@@ -40,6 +40,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
40
40
|
watch(props.configure.props, () => {
|
|
41
41
|
caculateToolsStyle();
|
|
42
42
|
});
|
|
43
|
+
const tempData = computed(() => [...props.configure.items]);
|
|
44
|
+
watch(tempData, (newVal, oldVal) => {
|
|
45
|
+
if (newVal.length > oldVal.length) {
|
|
46
|
+
onSelectWidget(props.indexObj.index, newVal[newVal.length - 1]);
|
|
47
|
+
}
|
|
48
|
+
}, { important: true, deep: true });
|
|
43
49
|
const thisRef = ref(null);
|
|
44
50
|
useDraggable(thisRef, props.configure.items, {
|
|
45
51
|
group: "amb-assembly-item",
|
|
@@ -53,9 +59,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
53
59
|
if (!item.style) {
|
|
54
60
|
item.style = {};
|
|
55
61
|
}
|
|
56
|
-
if (item.style.marginBottom == void 0) {
|
|
57
|
-
item.style.marginBottom = 0;
|
|
58
|
-
}
|
|
59
62
|
}
|
|
60
63
|
}
|
|
61
64
|
});
|
|
@@ -524,10 +524,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
524
524
|
}),
|
|
525
525
|
createVNode(_component_el_table_column, { label: "标题对齐" }, {
|
|
526
526
|
default: withCtx((scope) => [
|
|
527
|
-
scope.row.uuid != selRowUuid.value || isDynamicColumn(scope.row) ? (openBlock(), createElementBlock("label", _hoisted_20, toDisplayString(scope.row.props.base.
|
|
527
|
+
scope.row.uuid != selRowUuid.value || isDynamicColumn(scope.row) ? (openBlock(), createElementBlock("label", _hoisted_20, toDisplayString(scope.row.props.base.alignTitle), 1)) : !scope.row.children || scope.row.children.length == 0 ? (openBlock(), createElementBlock("span", _hoisted_21, [
|
|
528
528
|
createVNode(_component_el_select, {
|
|
529
|
-
modelValue: scope.row.props.base.
|
|
530
|
-
"onUpdate:modelValue": ($event) => scope.row.props.base.
|
|
529
|
+
modelValue: scope.row.props.base.alignTitle,
|
|
530
|
+
"onUpdate:modelValue": ($event) => scope.row.props.base.alignTitle = $event
|
|
531
531
|
}, {
|
|
532
532
|
default: withCtx(() => [
|
|
533
533
|
createVNode(_component_el_option, { value: "left" }, {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, computed, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, unref, createCommentVNode, withDirectives, vShow, createElementBlock, Fragment, renderList, normalizeClass, toDisplayString, renderSlot } from "vue";
|
|
2
|
-
import _sfc_main$1 from "../../form/common/dataorigin-input-table.
|
|
2
|
+
import _sfc_main$1 from "../../form/common/dataorigin-input-table.vue2.js";
|
|
3
3
|
import { Codemirror } from "vue-codemirror";
|
|
4
4
|
import _sfc_main$6 from "../../workflow/component/combination.vue.js";
|
|
5
5
|
import _sfc_main$5 from "./return-set-table.vue.js";
|
package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js
CHANGED
|
@@ -150,7 +150,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
150
150
|
width: __props.listColumns.props && __props.listColumns.props.base && __props.listColumns.props.base.columnWidth ? __props.listColumns.props.base.columnWidth : 200,
|
|
151
151
|
label: getTableHeaderName(__props.listColumns),
|
|
152
152
|
align: __props.listColumns.props && __props.listColumns.props.base && __props.listColumns.props.base.alignContent ? __props.listColumns.props.base.alignContent : __props.designProperty.alignContent,
|
|
153
|
-
"header-align": __props.listColumns.props && __props.listColumns.props.base && __props.listColumns.props.base.
|
|
153
|
+
"header-align": __props.listColumns.props && __props.listColumns.props.base && __props.listColumns.props.base.alignTitle ? __props.listColumns.props.base.alignTitle : __props.designProperty.alignTitle,
|
|
154
154
|
resizable: ""
|
|
155
155
|
}, createSlots({
|
|
156
156
|
default: withCtx(() => [
|
|
@@ -9,7 +9,7 @@ import "uuid";
|
|
|
9
9
|
import "../../../../../../stores/page-store.js";
|
|
10
10
|
import "../../../../../../stores/table-store.js";
|
|
11
11
|
import "../../../../../../stores/statistics-table-store.js";
|
|
12
|
-
import "../../common/common-variable-bind.
|
|
12
|
+
import "../../common/common-variable-bind.vue3.js";
|
|
13
13
|
import "../../../../utils/eventBus.js";
|
|
14
14
|
import _sfc_main$1 from "../../common/common-function-code.vue.js";
|
|
15
15
|
const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
|
|
@@ -458,8 +458,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
458
458
|
}, {
|
|
459
459
|
default: withCtx(() => [
|
|
460
460
|
createVNode(_component_el_radio_group, {
|
|
461
|
-
modelValue: __props.configure.props.base.
|
|
462
|
-
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.
|
|
461
|
+
modelValue: __props.configure.props.base.alignTitle,
|
|
462
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => __props.configure.props.base.alignTitle = $event),
|
|
463
463
|
class: "ml-4"
|
|
464
464
|
}, {
|
|
465
465
|
default: withCtx(() => [
|
|
@@ -2,7 +2,7 @@ import _sfc_main from "./table-design.vue2.js";
|
|
|
2
2
|
import "./table-design.vue3.js";
|
|
3
3
|
import "./table-design.vue4.js";
|
|
4
4
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const tableDesign = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
5
|
+
const tableDesign = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5581ec9f"]]);
|
|
6
6
|
export {
|
|
7
7
|
tableDesign as default
|
|
8
8
|
};
|
|
@@ -61,8 +61,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
61
61
|
if (defineProps["base"]["pageSizes"]) {
|
|
62
62
|
tempProps["pageSizes"] = defineProps["base"]["pageSizes"].split(",");
|
|
63
63
|
}
|
|
64
|
-
if (defineProps["base"]["
|
|
65
|
-
tempProps["
|
|
64
|
+
if (defineProps["base"]["alignTitle"]) {
|
|
65
|
+
tempProps["alignTitle"] = defineProps["base"]["alignTitle"];
|
|
66
66
|
}
|
|
67
67
|
if (defineProps["base"]["alignContent"]) {
|
|
68
68
|
tempProps["alignContent"] = defineProps["base"]["alignContent"];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./tablecolumn-attr-base.vue2.js";
|
|
2
2
|
import "./tablecolumn-attr-base.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const TablecolumnAttrBase = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const TablecolumnAttrBase = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-931f64e3"]]);
|
|
5
5
|
export {
|
|
6
6
|
TablecolumnAttrBase as default
|
|
7
7
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createCommentVNode, createTextVNode, unref, createElementBlock, Fragment, renderList, withDirectives, vShow } from "vue";
|
|
2
2
|
import { Setting, Search } from "@element-plus/icons-vue";
|
|
3
|
-
import {
|
|
3
|
+
import { getListComponentOptions } from "../../../../utils/assemblys-config.js";
|
|
4
4
|
import _sfc_main$7 from "../component/querySetting.vue.js";
|
|
5
5
|
import DataOrigin from "../../form/common/data-origin.vue.js";
|
|
6
6
|
import BindVariable from "../../common/common-variable-bind.vue.js";
|
|
@@ -243,7 +243,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
243
243
|
default: withCtx(() => [
|
|
244
244
|
createVNode(_component_el_collapse, {
|
|
245
245
|
modelValue: openCollapseItems.value,
|
|
246
|
-
"onUpdate:modelValue": _cache[
|
|
246
|
+
"onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => openCollapseItems.value = $event),
|
|
247
247
|
style: { "margin-top": "6px" }
|
|
248
248
|
}, {
|
|
249
249
|
default: withCtx(() => [
|
|
@@ -475,6 +475,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
475
475
|
!operationColumn.value && __props.configure.props.base.prop != "dynamicColumnSelect" ? (openBlock(), createBlock(DataOrigin, {
|
|
476
476
|
key: 0,
|
|
477
477
|
configure: __props.configure,
|
|
478
|
+
isTable: true,
|
|
478
479
|
isDynamicColumn: __props.configure.props.base.prop === "dynamicColumnSelect",
|
|
479
480
|
remote: true
|
|
480
481
|
}, null, 8, ["configure", "isDynamicColumn"])) : createCommentVNode("", true),
|
|
@@ -530,7 +531,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
530
531
|
onChange: moduleChange
|
|
531
532
|
}, {
|
|
532
533
|
default: withCtx(() => [
|
|
533
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(
|
|
534
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(unref(getListComponentOptions)(), (item) => {
|
|
534
535
|
return openBlock(), createBlock(_component_el_option, {
|
|
535
536
|
key: item.name,
|
|
536
537
|
label: item.label,
|
|
@@ -557,6 +558,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
557
558
|
_: 1
|
|
558
559
|
}, 512), [
|
|
559
560
|
[vShow, __props.configure.props.editLine.editable && __props.configure.name === "file-upload"]
|
|
561
|
+
]),
|
|
562
|
+
withDirectives(createVNode(_component_el_form_item, {
|
|
563
|
+
label: "自定义控件名称",
|
|
564
|
+
class: "amb-design-attr-item"
|
|
565
|
+
}, {
|
|
566
|
+
default: withCtx(() => [
|
|
567
|
+
createVNode(_component_el_input, {
|
|
568
|
+
modelValue: __props.configure.props.base.customComponent,
|
|
569
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = ($event) => __props.configure.props.base.customComponent = $event)
|
|
570
|
+
}, null, 8, ["modelValue"])
|
|
571
|
+
]),
|
|
572
|
+
_: 1
|
|
573
|
+
}, 512), [
|
|
574
|
+
[vShow, __props.configure.props.editLine.editable && __props.configure.name === "custom"]
|
|
560
575
|
])
|
|
561
576
|
])
|
|
562
577
|
]),
|
|
@@ -577,7 +592,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
577
592
|
default: withCtx(() => [
|
|
578
593
|
createVNode(_component_el_select, {
|
|
579
594
|
modelValue: __props.configure.props.format.type,
|
|
580
|
-
"onUpdate:modelValue": _cache[
|
|
595
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = ($event) => __props.configure.props.format.type = $event),
|
|
581
596
|
clearable: "",
|
|
582
597
|
placeholder: "请选择"
|
|
583
598
|
}, {
|
|
@@ -644,7 +659,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
644
659
|
default: withCtx(() => [
|
|
645
660
|
createVNode(_component_el_input, {
|
|
646
661
|
modelValue: __props.configure.props.format.decimalDigit,
|
|
647
|
-
"onUpdate:modelValue": _cache[
|
|
662
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = ($event) => __props.configure.props.format.decimalDigit = $event)
|
|
648
663
|
}, null, 8, ["modelValue"])
|
|
649
664
|
]),
|
|
650
665
|
_: 1
|
|
@@ -657,7 +672,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
657
672
|
default: withCtx(() => [
|
|
658
673
|
createVNode(_component_el_switch, {
|
|
659
674
|
modelValue: __props.configure.props.format.scientific,
|
|
660
|
-
"onUpdate:modelValue": _cache[
|
|
675
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = ($event) => __props.configure.props.format.scientific = $event),
|
|
661
676
|
"active-text": "使用",
|
|
662
677
|
"inactive-text": "不使用"
|
|
663
678
|
}, null, 8, ["modelValue"])
|
|
@@ -672,7 +687,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
672
687
|
default: withCtx(() => [
|
|
673
688
|
createVNode(_component_el_input, {
|
|
674
689
|
modelValue: __props.configure.props.format.scientificNum,
|
|
675
|
-
"onUpdate:modelValue": _cache[
|
|
690
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = ($event) => __props.configure.props.format.scientificNum = $event)
|
|
676
691
|
}, null, 8, ["modelValue"])
|
|
677
692
|
]),
|
|
678
693
|
_: 1
|
|
@@ -685,7 +700,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
685
700
|
default: withCtx(() => [
|
|
686
701
|
createVNode(_component_el_switch, {
|
|
687
702
|
modelValue: __props.configure.props.format.thousandsSeparator,
|
|
688
|
-
"onUpdate:modelValue": _cache[
|
|
703
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = ($event) => __props.configure.props.format.thousandsSeparator = $event),
|
|
689
704
|
"active-text": "使用",
|
|
690
705
|
"inactive-text": "不使用"
|
|
691
706
|
}, null, 8, ["modelValue"])
|
|
@@ -700,7 +715,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
700
715
|
default: withCtx(() => [
|
|
701
716
|
createVNode(_component_el_input, {
|
|
702
717
|
modelValue: __props.configure.props.format.symbol,
|
|
703
|
-
"onUpdate:modelValue": _cache[
|
|
718
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = ($event) => __props.configure.props.format.symbol = $event)
|
|
704
719
|
}, null, 8, ["modelValue"])
|
|
705
720
|
]),
|
|
706
721
|
_: 1
|
|
@@ -713,7 +728,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
713
728
|
default: withCtx(() => [
|
|
714
729
|
createVNode(_component_el_select, {
|
|
715
730
|
modelValue: __props.configure.props.format.currencySymbol,
|
|
716
|
-
"onUpdate:modelValue": _cache[
|
|
731
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = ($event) => __props.configure.props.format.currencySymbol = $event),
|
|
717
732
|
placeholder: "Select"
|
|
718
733
|
}, {
|
|
719
734
|
default: withCtx(() => [
|
|
@@ -739,7 +754,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
739
754
|
default: withCtx(() => [
|
|
740
755
|
createVNode(_component_el_select, {
|
|
741
756
|
modelValue: __props.configure.props.format.dataType,
|
|
742
|
-
"onUpdate:modelValue": _cache[
|
|
757
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => __props.configure.props.format.dataType = $event),
|
|
743
758
|
placeholder: "Select"
|
|
744
759
|
}, {
|
|
745
760
|
default: withCtx(() => [
|
|
@@ -793,7 +808,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
793
808
|
default: withCtx(() => [
|
|
794
809
|
createVNode(_component_el_select, {
|
|
795
810
|
modelValue: __props.configure.props.format.timeType,
|
|
796
|
-
"onUpdate:modelValue": _cache[
|
|
811
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = ($event) => __props.configure.props.format.timeType = $event),
|
|
797
812
|
placeholder: "Select"
|
|
798
813
|
}, {
|
|
799
814
|
default: withCtx(() => [
|
|
@@ -843,7 +858,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
843
858
|
default: withCtx(() => [
|
|
844
859
|
createVNode(_component_el_input, {
|
|
845
860
|
modelValue: __props.configure.props.format.customControl,
|
|
846
|
-
"onUpdate:modelValue": _cache[
|
|
861
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = ($event) => __props.configure.props.format.customControl = $event)
|
|
847
862
|
}, null, 8, ["modelValue"])
|
|
848
863
|
]),
|
|
849
864
|
_: 1
|
|
@@ -866,7 +881,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
866
881
|
default: withCtx(() => [
|
|
867
882
|
createVNode(_component_el_input, {
|
|
868
883
|
modelValue: __props.configure.props.format.customControl,
|
|
869
|
-
"onUpdate:modelValue": _cache[
|
|
884
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = ($event) => __props.configure.props.format.customControl = $event)
|
|
870
885
|
}, null, 8, ["modelValue"])
|
|
871
886
|
]),
|
|
872
887
|
_: 1
|
|
@@ -879,7 +894,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
879
894
|
default: withCtx(() => [
|
|
880
895
|
createVNode(_component_el_switch, {
|
|
881
896
|
modelValue: __props.configure.props.format.multiple,
|
|
882
|
-
"onUpdate:modelValue": _cache[
|
|
897
|
+
"onUpdate:modelValue": _cache[27] || (_cache[27] = ($event) => __props.configure.props.format.multiple = $event)
|
|
883
898
|
}, null, 8, ["modelValue"])
|
|
884
899
|
]),
|
|
885
900
|
_: 1
|
|
@@ -892,7 +907,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
892
907
|
default: withCtx(() => [
|
|
893
908
|
createVNode(_component_el_input, {
|
|
894
909
|
modelValue: __props.configure.props.format.accept,
|
|
895
|
-
"onUpdate:modelValue": _cache[
|
|
910
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = ($event) => __props.configure.props.format.accept = $event)
|
|
896
911
|
}, null, 8, ["modelValue"])
|
|
897
912
|
]),
|
|
898
913
|
_: 1
|
|
@@ -905,7 +920,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
905
920
|
default: withCtx(() => [
|
|
906
921
|
createVNode(_component_el_input_number, {
|
|
907
922
|
modelValue: __props.configure.props.format.limitFileSize,
|
|
908
|
-
"onUpdate:modelValue": _cache[
|
|
923
|
+
"onUpdate:modelValue": _cache[29] || (_cache[29] = ($event) => __props.configure.props.format.limitFileSize = $event),
|
|
909
924
|
min: 1
|
|
910
925
|
}, null, 8, ["modelValue"])
|
|
911
926
|
]),
|
|
@@ -918,7 +933,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
918
933
|
default: withCtx(() => [
|
|
919
934
|
createVNode(_component_el_input, {
|
|
920
935
|
modelValue: __props.configure.props.format.childAnnexDataTableCode,
|
|
921
|
-
"onUpdate:modelValue": _cache[
|
|
936
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = ($event) => __props.configure.props.format.childAnnexDataTableCode = $event),
|
|
922
937
|
onClick: _ctx.openSelectDataTable,
|
|
923
938
|
clearable: ""
|
|
924
939
|
}, {
|
|
@@ -941,7 +956,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
941
956
|
default: withCtx(() => [
|
|
942
957
|
createVNode(_sfc_main$1, {
|
|
943
958
|
prop: __props.configure.props.format.showName,
|
|
944
|
-
"onUpdate:prop": _cache[
|
|
959
|
+
"onUpdate:prop": _cache[31] || (_cache[31] = ($event) => __props.configure.props.format.showName = $event),
|
|
945
960
|
tableConfigure: __props.tableConfigure
|
|
946
961
|
}, null, 8, ["prop", "tableConfigure"])
|
|
947
962
|
]),
|
|
@@ -955,7 +970,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
955
970
|
default: withCtx(() => [
|
|
956
971
|
createVNode(_sfc_main$1, {
|
|
957
972
|
prop: __props.configure.props.format.serverName,
|
|
958
|
-
"onUpdate:prop": _cache[
|
|
973
|
+
"onUpdate:prop": _cache[32] || (_cache[32] = ($event) => __props.configure.props.format.serverName = $event),
|
|
959
974
|
tableConfigure: __props.tableConfigure
|
|
960
975
|
}, null, 8, ["prop", "tableConfigure"])
|
|
961
976
|
]),
|
|
@@ -979,7 +994,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
979
994
|
default: withCtx(() => [
|
|
980
995
|
createVNode(_component_el_radio_group, {
|
|
981
996
|
modelValue: __props.configure.props.base.listColumnFixed,
|
|
982
|
-
"onUpdate:modelValue": _cache[
|
|
997
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = ($event) => __props.configure.props.base.listColumnFixed = $event),
|
|
983
998
|
class: "ml-4"
|
|
984
999
|
}, {
|
|
985
1000
|
default: withCtx(() => [
|
|
@@ -1015,7 +1030,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1015
1030
|
default: withCtx(() => [
|
|
1016
1031
|
createVNode(_component_el_radio_group, {
|
|
1017
1032
|
modelValue: __props.configure.props.base.sortable,
|
|
1018
|
-
"onUpdate:modelValue": _cache[
|
|
1033
|
+
"onUpdate:modelValue": _cache[34] || (_cache[34] = ($event) => __props.configure.props.base.sortable = $event),
|
|
1019
1034
|
class: "ml-4"
|
|
1020
1035
|
}, {
|
|
1021
1036
|
default: withCtx(() => [
|
|
@@ -1045,7 +1060,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1045
1060
|
createVNode(_component_el_input_number, {
|
|
1046
1061
|
style: { "width": "100%" },
|
|
1047
1062
|
modelValue: __props.configure.props.base.columnWidth,
|
|
1048
|
-
"onUpdate:modelValue": _cache[
|
|
1063
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = ($event) => __props.configure.props.base.columnWidth = $event),
|
|
1049
1064
|
precision: 1
|
|
1050
1065
|
}, null, 8, ["modelValue"])
|
|
1051
1066
|
]),
|
|
@@ -1057,8 +1072,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1057
1072
|
}, {
|
|
1058
1073
|
default: withCtx(() => [
|
|
1059
1074
|
createVNode(_component_el_radio_group, {
|
|
1060
|
-
modelValue: __props.configure.props.base.
|
|
1061
|
-
"onUpdate:modelValue": _cache[
|
|
1075
|
+
modelValue: __props.configure.props.base.alignTitle,
|
|
1076
|
+
"onUpdate:modelValue": _cache[36] || (_cache[36] = ($event) => __props.configure.props.base.alignTitle = $event),
|
|
1062
1077
|
class: "ml-4"
|
|
1063
1078
|
}, {
|
|
1064
1079
|
default: withCtx(() => [
|
|
@@ -1093,7 +1108,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1093
1108
|
default: withCtx(() => [
|
|
1094
1109
|
createVNode(_component_el_radio_group, {
|
|
1095
1110
|
modelValue: __props.configure.props.base.alignContent,
|
|
1096
|
-
"onUpdate:modelValue": _cache[
|
|
1111
|
+
"onUpdate:modelValue": _cache[37] || (_cache[37] = ($event) => __props.configure.props.base.alignContent = $event),
|
|
1097
1112
|
class: "ml-4"
|
|
1098
1113
|
}, {
|
|
1099
1114
|
default: withCtx(() => [
|
|
@@ -1140,7 +1155,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1140
1155
|
default: withCtx(() => [
|
|
1141
1156
|
createVNode(_component_el_checkbox, {
|
|
1142
1157
|
modelValue: __props.configure.props.verification.required,
|
|
1143
|
-
"onUpdate:modelValue": _cache[
|
|
1158
|
+
"onUpdate:modelValue": _cache[38] || (_cache[38] = ($event) => __props.configure.props.verification.required = $event),
|
|
1144
1159
|
label: "必填"
|
|
1145
1160
|
}, null, 8, ["modelValue"])
|
|
1146
1161
|
]),
|
|
@@ -1148,7 +1163,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1148
1163
|
}),
|
|
1149
1164
|
createVNode(_component_el_checkbox_group, {
|
|
1150
1165
|
modelValue: __props.configure.props.verification.type,
|
|
1151
|
-
"onUpdate:modelValue": _cache[
|
|
1166
|
+
"onUpdate:modelValue": _cache[39] || (_cache[39] = ($event) => __props.configure.props.verification.type = $event)
|
|
1152
1167
|
}, {
|
|
1153
1168
|
default: withCtx(() => [
|
|
1154
1169
|
createVNode(_component_el_form_item, {
|
|
@@ -1219,7 +1234,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1219
1234
|
default: withCtx(() => [
|
|
1220
1235
|
createVNode(_component_el_checkbox, {
|
|
1221
1236
|
modelValue: __props.configure.props.verification.verifyRegex,
|
|
1222
|
-
"onUpdate:modelValue": _cache[
|
|
1237
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = ($event) => __props.configure.props.verification.verifyRegex = $event),
|
|
1223
1238
|
label: "正则",
|
|
1224
1239
|
value: "regex"
|
|
1225
1240
|
}, null, 8, ["modelValue"])
|
|
@@ -1230,7 +1245,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1230
1245
|
default: withCtx(() => [
|
|
1231
1246
|
createVNode(_component_el_input, {
|
|
1232
1247
|
modelValue: __props.configure.props.verification.regex,
|
|
1233
|
-
"onUpdate:modelValue": _cache[
|
|
1248
|
+
"onUpdate:modelValue": _cache[41] || (_cache[41] = ($event) => __props.configure.props.verification.regex = $event),
|
|
1234
1249
|
class: "mx-4",
|
|
1235
1250
|
"controls-position": "right",
|
|
1236
1251
|
placeholder: "请输入"
|
|
@@ -1292,7 +1307,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1292
1307
|
default: withCtx(() => [
|
|
1293
1308
|
createVNode(_component_el_radio_group, {
|
|
1294
1309
|
modelValue: __props.configure.props.definition.defined,
|
|
1295
|
-
"onUpdate:modelValue": _cache[
|
|
1310
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = ($event) => __props.configure.props.definition.defined = $event),
|
|
1296
1311
|
class: "ml-4"
|
|
1297
1312
|
}, {
|
|
1298
1313
|
default: withCtx(() => [
|
|
@@ -1321,7 +1336,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1321
1336
|
default: withCtx(() => [
|
|
1322
1337
|
createVNode(_component_el_radio_group, {
|
|
1323
1338
|
modelValue: __props.configure.props.definition.definedExport,
|
|
1324
|
-
"onUpdate:modelValue": _cache[
|
|
1339
|
+
"onUpdate:modelValue": _cache[43] || (_cache[43] = ($event) => __props.configure.props.definition.definedExport = $event),
|
|
1325
1340
|
class: "ml-4"
|
|
1326
1341
|
}, {
|
|
1327
1342
|
default: withCtx(() => [
|
|
@@ -1350,7 +1365,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1350
1365
|
default: withCtx(() => [
|
|
1351
1366
|
createVNode(_component_el_radio_group, {
|
|
1352
1367
|
modelValue: __props.configure.props.definition.definedMerge,
|
|
1353
|
-
"onUpdate:modelValue": _cache[
|
|
1368
|
+
"onUpdate:modelValue": _cache[44] || (_cache[44] = ($event) => __props.configure.props.definition.definedMerge = $event),
|
|
1354
1369
|
class: "ml-4"
|
|
1355
1370
|
}, {
|
|
1356
1371
|
default: withCtx(() => [
|
|
@@ -1379,7 +1394,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1379
1394
|
default: withCtx(() => [
|
|
1380
1395
|
createVNode(_component_el_radio_group, {
|
|
1381
1396
|
modelValue: __props.configure.props.definition.definedPosition,
|
|
1382
|
-
"onUpdate:modelValue": _cache[
|
|
1397
|
+
"onUpdate:modelValue": _cache[45] || (_cache[45] = ($event) => __props.configure.props.definition.definedPosition = $event),
|
|
1383
1398
|
class: "ml-4"
|
|
1384
1399
|
}, {
|
|
1385
1400
|
default: withCtx(() => [
|
|
@@ -1408,7 +1423,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1408
1423
|
default: withCtx(() => [
|
|
1409
1424
|
createVNode(_component_el_radio_group, {
|
|
1410
1425
|
modelValue: __props.configure.props.definition.definedFixed,
|
|
1411
|
-
"onUpdate:modelValue": _cache[
|
|
1426
|
+
"onUpdate:modelValue": _cache[46] || (_cache[46] = ($event) => __props.configure.props.definition.definedFixed = $event),
|
|
1412
1427
|
class: "ml-4"
|
|
1413
1428
|
}, {
|
|
1414
1429
|
default: withCtx(() => [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode, withDirectives, createTextVNode, createElementBlock, Fragment, renderList, vShow, normalizeClass } from "vue";
|
|
2
|
-
import _sfc_main$3 from "./dataorigin-input-table.
|
|
2
|
+
import _sfc_main$3 from "./dataorigin-input-table.vue2.js";
|
|
3
3
|
import _sfc_main$2 from "./condition.vue.js";
|
|
4
4
|
import _sfc_main$1 from "./row-ul-li.vue.js";
|
|
5
5
|
import "uuid";
|
|
@@ -8,7 +8,7 @@ import http from "agilebuilder-ui/src/utils/request";
|
|
|
8
8
|
import { usePageContextStore } from "../../../../../../stores/page-store.js";
|
|
9
9
|
import "../../../../../../stores/table-store.js";
|
|
10
10
|
import "../../../../../../stores/statistics-table-store.js";
|
|
11
|
-
import "../../common/common-variable-bind.
|
|
11
|
+
import "../../common/common-variable-bind.vue3.js";
|
|
12
12
|
import _sfc_main$4 from "./data-origin-service-in.vue.js";
|
|
13
13
|
import { queryTableFields } from "../../../../utils/page-table-util.js";
|
|
14
14
|
import { getCustomFuncs } from "../../../../utils/page-event-util.js";
|
|
@@ -7,7 +7,8 @@ const _hoisted_2 = { style: { "text-align": "center", "margin": "0px -8px", "pad
|
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
8
|
__name: "data-origin-autoset",
|
|
9
9
|
props: {
|
|
10
|
-
dataOrigin: {}
|
|
10
|
+
dataOrigin: {},
|
|
11
|
+
isTable: {}
|
|
11
12
|
},
|
|
12
13
|
setup(__props, { expose: __expose }) {
|
|
13
14
|
const props = __props;
|
|
@@ -174,9 +175,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
174
175
|
createVNode(BindVariable, {
|
|
175
176
|
modelValue: scope.row.target,
|
|
176
177
|
needData: true,
|
|
178
|
+
isTable: _ctx.isTable,
|
|
177
179
|
paramTypes: ["data", "page"],
|
|
178
180
|
"onUpdate:modelValue": (val) => afterBindLabelVariable(val, scope.row)
|
|
179
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue"])
|
|
181
|
+
}, null, 8, ["modelValue", "isTable", "onUpdate:modelValue"])
|
|
180
182
|
]),
|
|
181
183
|
_: 1
|
|
182
184
|
}),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _sfc_main from "./data-origin.vue2.js";
|
|
2
2
|
import "./data-origin.vue3.js";
|
|
3
3
|
import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const DataOrigin = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-
|
|
4
|
+
const DataOrigin = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8aacbe0c"]]);
|
|
5
5
|
export {
|
|
6
6
|
DataOrigin as default
|
|
7
7
|
};
|
|
@@ -27,6 +27,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
27
27
|
remote: {
|
|
28
28
|
type: Boolean,
|
|
29
29
|
default: true
|
|
30
|
+
},
|
|
31
|
+
// 是否表格中显示
|
|
32
|
+
isTable: {
|
|
33
|
+
type: Boolean,
|
|
34
|
+
default: false
|
|
30
35
|
}
|
|
31
36
|
},
|
|
32
37
|
setup(__props) {
|
|
@@ -644,8 +649,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
644
649
|
withDirectives(createVNode(_sfc_main$5, {
|
|
645
650
|
ref_key: "dataOriginAutosetRef",
|
|
646
651
|
ref: dataOriginAutosetRef,
|
|
647
|
-
dataOrigin: unref(dataOriginInfo)
|
|
648
|
-
|
|
652
|
+
dataOrigin: unref(dataOriginInfo),
|
|
653
|
+
isTable: __props.isTable
|
|
654
|
+
}, null, 8, ["dataOrigin", "isTable"]), [
|
|
649
655
|
[
|
|
650
656
|
vShow,
|
|
651
657
|
__props.configure.props.dataOrigin.optionValueSetType == "dataTable" || __props.configure.props.dataOrigin.optionValueSetType == "dynamicData" || __props.configure.props.dataOrigin.optionValueSetType == "service"
|