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
|
@@ -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) {
|