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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bri-components",
3
- "version": "1.3.36",
3
+ "version": "1.3.37",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -169,6 +169,7 @@
169
169
  cursor: pointer;
170
170
 
171
171
  &-active {
172
+ color: #ffffff;
172
173
  background-color: @theme-hover;
173
174
  }
174
175
  }
@@ -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
- isImport () {
210
- return this.selfPropsObj._isImport;
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
  };