bri-components 1.2.88 → 1.2.89
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
|
@@ -271,7 +271,9 @@ export default {
|
|
|
271
271
|
if (conditionItem.finished !== true) {
|
|
272
272
|
this.getModData(conditionItem.formItem, data => {
|
|
273
273
|
conditionItem.finished = true;
|
|
274
|
-
conditionItem.subFormList = data.screens
|
|
274
|
+
conditionItem.subFormList = (data.screens.find(screenItem =>
|
|
275
|
+
this.mode === "set" ? screenItem.screenType === "all" : screenItem._key === conditionItem.formItem._screen
|
|
276
|
+
) || { form: [] }).form;
|
|
275
277
|
});
|
|
276
278
|
}
|
|
277
279
|
} else if (conditionItem.fieldOperator === "subTableSearch") {
|
|
@@ -287,8 +289,7 @@ export default {
|
|
|
287
289
|
name: "schema"
|
|
288
290
|
},
|
|
289
291
|
params: {
|
|
290
|
-
_key: obj._ref
|
|
291
|
-
fields: obj._refFields
|
|
292
|
+
_key: obj._ref
|
|
292
293
|
},
|
|
293
294
|
callback: data => {
|
|
294
295
|
cb(data);
|