bri-components 1.2.89 → 1.2.90
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
|
@@ -171,7 +171,7 @@ export default {
|
|
|
171
171
|
: dynamicList
|
|
172
172
|
: dynamicList;
|
|
173
173
|
const parameterType = initContion.parameterType || (
|
|
174
|
-
(initContion.fieldParams || []).length || initContion.chainFieldKey || (!!dynamicList.length && ["
|
|
174
|
+
(initContion.fieldParams || []).length || initContion.chainFieldKey || (!!dynamicList.length && ["reference", "flatTable"].includes(fieldType))
|
|
175
175
|
? "dynamicText"
|
|
176
176
|
: "fixedText"
|
|
177
177
|
);
|
|
@@ -286,10 +286,11 @@ export default {
|
|
|
286
286
|
this.$https({
|
|
287
287
|
url: {
|
|
288
288
|
module: "sheet",
|
|
289
|
-
name: "schema"
|
|
289
|
+
name: "schema" // 管理员下,不管传不传screenKey,且screenKey是不是全部视图,全部视图的form数据一定返回
|
|
290
290
|
},
|
|
291
291
|
params: {
|
|
292
|
-
_key: obj._ref
|
|
292
|
+
_key: obj._ref,
|
|
293
|
+
screenKey: obj._screen
|
|
293
294
|
},
|
|
294
295
|
callback: data => {
|
|
295
296
|
cb(data);
|