bri-components 1.3.36 → 1.3.37
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
|
@@ -159,6 +159,10 @@ export default {
|
|
|
159
159
|
_isExport: false, // 导出
|
|
160
160
|
_isQuote: false, // 引用
|
|
161
161
|
_quoteListFields: [], // 引用列表的显示字段
|
|
162
|
+
_quoteAdvSearch: {
|
|
163
|
+
logic: "and",
|
|
164
|
+
conditions: []
|
|
165
|
+
}, // 引用列表筛选条件
|
|
162
166
|
...this.propsObj,
|
|
163
167
|
|
|
164
168
|
_contentHeight: this.propsObj._contentHeight || 500 // 表格最大高度
|
|
@@ -200,17 +204,20 @@ export default {
|
|
|
200
204
|
disabledOldDataRow () {
|
|
201
205
|
return this.selfPropsObj._disabledOldDataRow;
|
|
202
206
|
},
|
|
207
|
+
isImport () {
|
|
208
|
+
return this.selfPropsObj._isImport;
|
|
209
|
+
},
|
|
210
|
+
isExport () {
|
|
211
|
+
return this.selfPropsObj._isExport;
|
|
212
|
+
},
|
|
203
213
|
isQuote () {
|
|
204
214
|
return this.selfPropsObj._isQuote;
|
|
205
215
|
},
|
|
206
216
|
quoteListFields () {
|
|
207
217
|
return this.selfPropsObj._quoteListFields;
|
|
208
218
|
},
|
|
209
|
-
|
|
210
|
-
return this.selfPropsObj.
|
|
211
|
-
},
|
|
212
|
-
isExport () {
|
|
213
|
-
return this.selfPropsObj._isExport;
|
|
219
|
+
quoteAdvSearch () {
|
|
220
|
+
return this.$transformAdvSearch(this.selfPropsObj._quoteAdvSearch, this.parentFormList, this.parentObj);
|
|
214
221
|
},
|
|
215
222
|
|
|
216
223
|
modalPropsObj () {
|
|
@@ -232,7 +239,8 @@ export default {
|
|
|
232
239
|
fieldKey: "_id",
|
|
233
240
|
fieldOperator: "ne",
|
|
234
241
|
fieldValue: [this.parentDataId]
|
|
235
|
-
}
|
|
242
|
+
},
|
|
243
|
+
this.quoteAdvSearch
|
|
236
244
|
]
|
|
237
245
|
}
|
|
238
246
|
};
|