@kaiyinchem/ky-uniui 1.0.33 → 1.0.34
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.
|
@@ -107,11 +107,13 @@
|
|
|
107
107
|
}
|
|
108
108
|
this.emit()
|
|
109
109
|
} else {
|
|
110
|
-
if (count < min) {
|
|
110
|
+
if (count < min) {
|
|
111
|
+
this.count = min
|
|
111
112
|
this.$toast('超出最小数值')
|
|
112
113
|
}
|
|
113
114
|
|
|
114
|
-
if (count > max) {
|
|
115
|
+
if (count > max) {
|
|
116
|
+
this.count = max
|
|
115
117
|
this.$toast('超出最大数值')
|
|
116
118
|
}
|
|
117
119
|
this.emit()
|