super-page-designer 2.1.1 → 2.1.11
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/views/assemblys/common/common-variable-bind.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue.js +4 -4
- package/package.json +1 -1
- /package/dist/es/components/design/views/assemblys/common/{common-variable-bind.vue2.js → common-variable-bind.vue3.js} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import _sfc_main from "./common-variable-bind.
|
|
1
|
+
import _sfc_main from "./common-variable-bind.vue3.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
|
|
4
4
|
const BindVariable = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7fcec2fa"]]);
|
package/dist/es/components/design/views/assemblys/data/table/tablecolumn-dynamic-column.vue.js
CHANGED
|
@@ -53,7 +53,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
53
53
|
} else if (value === "dataTable") {
|
|
54
54
|
queryTableFieldsByTable();
|
|
55
55
|
} else if (value === "optionGroup") {
|
|
56
|
-
props.configure.props.dynamicColumnData.
|
|
56
|
+
props.configure.props.dynamicColumnData.optionGroupCode = "";
|
|
57
57
|
}
|
|
58
58
|
if (value === "optionGroup" && ((_a = props.configure.props.dynamicColumnData) == null ? void 0 : _a.mergeFieldType) === "more") {
|
|
59
59
|
props.configure.props.dynamicColumnData.mergeFieldLabelTemp = "选项值";
|
|
@@ -208,7 +208,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
208
208
|
if (((_a = props.configure.props.base) == null ? void 0 : _a.prop) === "dynamicColumnSelect") {
|
|
209
209
|
if (((_b = props.configure.props.dynamicColumnData) == null ? void 0 : _b.dataSources) === "dataTable" && props.configure.props.dynamicColumnData.dataTableCode) {
|
|
210
210
|
queryTableFieldsByTable();
|
|
211
|
-
} else if (((_c = props.configure.props.dynamicColumnData) == null ? void 0 : _c.dataSources) === "optionGroup" && props.configure.props.dynamicColumnData.
|
|
211
|
+
} else if (((_c = props.configure.props.dynamicColumnData) == null ? void 0 : _c.dataSources) === "optionGroup" && props.configure.props.dynamicColumnData.optionGroupCode) {
|
|
212
212
|
queryOptionGroups("");
|
|
213
213
|
}
|
|
214
214
|
if (props.configure.props.dynamicColumnData && props.configure.props.dynamicColumnData.settingDataTableCode) {
|
|
@@ -466,8 +466,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
466
466
|
}, {
|
|
467
467
|
default: withCtx(() => [
|
|
468
468
|
createVNode(_component_el_select, {
|
|
469
|
-
modelValue: __props.configure.props.dynamicColumnData.
|
|
470
|
-
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.dynamicColumnData.
|
|
469
|
+
modelValue: __props.configure.props.dynamicColumnData.optionGroupCode,
|
|
470
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => __props.configure.props.dynamicColumnData.optionGroupCode = $event),
|
|
471
471
|
filterable: "",
|
|
472
472
|
remote: "",
|
|
473
473
|
"reserve-keyword": "",
|
package/package.json
CHANGED