bri-components 1.4.67 → 1.4.68
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
|
@@ -122,7 +122,7 @@ export default {
|
|
|
122
122
|
multipleMode () {
|
|
123
123
|
return this.isInDftSearch || this.isInSearch
|
|
124
124
|
? true
|
|
125
|
-
: ["checkbox", "regions", "cascaders", "labels", "refCheckbox"].includes(this.controlType)
|
|
125
|
+
: ["daterange", "checkbox", "regions", "cascaders", "labels", "refCheckbox"].includes(this.controlType)
|
|
126
126
|
? true
|
|
127
127
|
: !!this.selfPropsObj && !!this.selfPropsObj._multiple;
|
|
128
128
|
},
|
|
@@ -19,7 +19,7 @@ export default {
|
|
|
19
19
|
return {
|
|
20
20
|
_dateType: "date", // 子类型5种,"date", "datetime", "year", "month", "time"
|
|
21
21
|
|
|
22
|
-
_useDynDate:
|
|
22
|
+
_useDynDate: false, // 使用动态时间
|
|
23
23
|
_dynDateType: undefined, // 使用什么类型的动态时间,"start","end"
|
|
24
24
|
_dynDateKeys: [], // 仅使用一些指定的动态时间
|
|
25
25
|
_dynSearchKeys: [], // 筛选时-仅使用一些指定的动态时间
|