bri-components 1.4.63 → 1.4.64
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 +1 -1
- package/src/components/controls/base/DshDate/DshDate.vue +1 -1
- package/src/components/controls/base/DshDate/DshDaterange.vue +1 -1
- package/src/components/controls/mixins/dateMixin.js +1 -1
- package/src/components/form/searchMixin.js +1 -0
- package/src/components/unit/DshFormUnit.vue +1 -1
package/package.json
CHANGED
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
shortcuts: this.getShortCuts(index),
|
|
141
141
|
disabledDate: (date) => {
|
|
142
142
|
const curDateStr = this.$transformToDateStr(date, "/", this.subType);
|
|
143
|
-
const rangeBool = this.$isWithinRange(curDateStr, this.selfPropsObj._minDate, this.selfPropsObj._maxDate
|
|
143
|
+
const rangeBool = this.$isWithinRange(curDateStr, this.selfPropsObj._minDate, this.selfPropsObj._maxDate);
|
|
144
144
|
|
|
145
145
|
const selfValue = {
|
|
146
146
|
...this.value,
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
shortcuts: this.getShortCuts(index),
|
|
137
137
|
disabledDate: (date) => {
|
|
138
138
|
const curDateStr = this.$transformToDateStr(date, "/", this.subType);
|
|
139
|
-
const rangeBool = this.$isWithinRange(curDateStr, this.selfPropsObj._minDate, this.selfPropsObj._maxDate
|
|
139
|
+
const rangeBool = this.$isWithinRange(curDateStr, this.selfPropsObj._minDate, this.selfPropsObj._maxDate);
|
|
140
140
|
|
|
141
141
|
return !rangeBool;
|
|
142
142
|
}
|