lh-ui-next 0.2.1-beta.8 → 0.2.1-beta.9
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/README.md +1 -1
- package/lib/lh-ui-next.mjs +2 -2
- package/lib/lh-ui-next.umd.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ alpha version is use to self-test; beta version is use to public survey.for exam
|
|
|
5
5
|
1.0.0-alpha.1
|
|
6
6
|
1.0.0-test.2
|
|
7
7
|
## Official version : "0.2.0",
|
|
8
|
-
## test version : "0.2.1-beta.
|
|
8
|
+
## test version : "0.2.1-beta.9,
|
|
9
9
|
## npmmirror
|
|
10
10
|
When cnpm sync execution is unsuccessful,you can go the website(http://www.npmmirror.com/package/lh-ui-next) and press sync button to
|
|
11
11
|
manual trigger the sync event
|
package/lib/lh-ui-next.mjs
CHANGED
|
@@ -6436,9 +6436,9 @@ const ra = {
|
|
|
6436
6436
|
monthClick(e) {
|
|
6437
6437
|
this.type === "month" ? (this.selectDate = this.showDate.year.toString() + "-" + (e > 9 ? e : "0" + e.toString()), this.$emit("monthClick", this.selectDate)) : (this.showDate.month = e, this.dateType = "date"), this.headerValueChange();
|
|
6438
6438
|
},
|
|
6439
|
-
|
|
6439
|
+
//根据pickerOptions中的disabledYear函数来确定年份可点击状态
|
|
6440
6440
|
yearDisable(e) {
|
|
6441
|
-
return typeof this.pickerOptions.
|
|
6441
|
+
return typeof this.pickerOptions.disabledYear == "function" ? this.pickerOptions.disabledYear(e) : !1;
|
|
6442
6442
|
}
|
|
6443
6443
|
},
|
|
6444
6444
|
computed: {
|