mooho-base-admin-plus 2.10.84 → 2.10.86

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.10.84",
4
+ "version": "2.10.86",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -148,6 +148,10 @@
148
148
  };
149
149
  filter[this.sourceDataCode] = JSON.parse(this.modelValue).join(',');
150
150
 
151
+ for (let key in this.param) {
152
+ filter[key] = this.param[key];
153
+ }
154
+
151
155
  // 加载数据视图并查询
152
156
  this.loadDataView(this.source).then(async view => {
153
157
  if (view.dataView.isCustom) {
@@ -224,6 +228,10 @@
224
228
  };
225
229
  filter[this.sourceDataCode] = this.modelValue;
226
230
 
231
+ for (let key in this.param) {
232
+ filter[key] = this.param[key];
233
+ }
234
+
227
235
  // 加载数据视图并查询
228
236
  this.loadDataView(this.source).then(async view => {
229
237
  if (view.dataView.isCustom) {
@@ -1762,6 +1762,8 @@
1762
1762
  this.$refs['table_' + column.code][0].loadData(res.data);
1763
1763
  }
1764
1764
  }
1765
+
1766
+ this.$refs['table_' + column.code][0].$refs.tableFilter.onDataChange();
1765
1767
  });
1766
1768
  }
1767
1769
  // // 打印