n20-common-lib 3.0.64 → 3.0.65
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
|
@@ -219,6 +219,11 @@ export default {
|
|
|
219
219
|
initialValue: {
|
|
220
220
|
type: Object,
|
|
221
221
|
default: () => ({})
|
|
222
|
+
},
|
|
223
|
+
// 筛选器默认展开/收起状态
|
|
224
|
+
defaultExpanded: {
|
|
225
|
+
type: Boolean,
|
|
226
|
+
default: false
|
|
222
227
|
}
|
|
223
228
|
},
|
|
224
229
|
data() {
|
|
@@ -231,7 +236,7 @@ export default {
|
|
|
231
236
|
isAdd: false,
|
|
232
237
|
form: { userNo: sessionStorage.getItem('userNo'), pageNo: this.filterId },
|
|
233
238
|
|
|
234
|
-
multiple:
|
|
239
|
+
multiple: this.defaultExpanded,
|
|
235
240
|
// 保存的筛选字段
|
|
236
241
|
checkData: [],
|
|
237
242
|
key: 0,
|