mooho-base-admin-plus 2.3.9 → 2.3.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/history.md CHANGED
@@ -27,3 +27,4 @@
27
27
  2.3.7 - 继续解决修改筛选导致的弹出选择框 bug
28
28
  2.3.8 - 增加可筛选选择框支持
29
29
  2.3.9 - 优化默认筛选参数:filter 的处理方式
30
+ 2.3.10 - 可筛选选择框 bug 修复
@@ -37553,7 +37553,7 @@ const _sfc_main$w = {
37553
37553
  if (column.isStaticItem || column.dataType && column.dataType.startsWith("Enum:")) {
37554
37554
  return;
37555
37555
  }
37556
- if (this.$refs["control_" + column.code]) {
37556
+ if (this.$refs["control_" + column.code] && data2) {
37557
37557
  let values = this.$refs["control_" + column.code][0].$data.values;
37558
37558
  let pendings = [];
37559
37559
  if (column.controlType == "MultiComboSelect") {
@@ -42002,7 +42002,7 @@ const _sfc_main$r = {
42002
42002
  if (column.isStaticItem || column.dataType && column.dataType.startsWith("Enum:")) {
42003
42003
  return;
42004
42004
  }
42005
- if (this.$refs["control_" + column.code]) {
42005
+ if (this.$refs["control_" + column.code] && data2) {
42006
42006
  let values = this.$refs["control_" + column.code][0].$data.values;
42007
42007
  let pendings = [];
42008
42008
  if (column.controlType == "MultiComboSelect") {
@@ -43850,7 +43850,7 @@ const _sfc_main$q = {
43850
43850
  if (column.isStaticItem || column.dataType && column.dataType.startsWith("Enum:")) {
43851
43851
  return;
43852
43852
  }
43853
- if (this.$refs["control_" + column.code + "_" + index2]) {
43853
+ if (this.$refs["control_" + column.code + "_" + index2] && data2) {
43854
43854
  let values = this.$refs["control_" + column.code + "_" + index2].$data.values;
43855
43855
  let pendings = [];
43856
43856
  if (column.controlType == "MultiComboSelect") {
@@ -51884,7 +51884,7 @@ const _sfc_main$o = {
51884
51884
  if (column.isStaticItem || column.dataType && column.dataType.startsWith("Enum:")) {
51885
51885
  return;
51886
51886
  }
51887
- if (this.$refs["control_" + column.code]) {
51887
+ if (this.$refs["control_" + column.code] && data2) {
51888
51888
  let values = this.$refs["control_" + column.code][0].$data.values;
51889
51889
  let pendings = [];
51890
51890
  if (column.controlType == "MultiComboSelect") {