mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2026-07-12 17:21:07 +08:00
Compare commits
4 Commits
588ba18b75
...
2f80362b7b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f80362b7b | ||
|
|
b879138508 | ||
|
|
25ade8883b | ||
|
|
88bd66c78e |
@ -103,10 +103,10 @@ VantComponent({
|
||||
this.data;
|
||||
|
||||
if (type === 'plus') {
|
||||
return disabled || disablePlus || currentValue >= max;
|
||||
return disabled || disablePlus || +currentValue >= +max;
|
||||
}
|
||||
|
||||
return disabled || disableMinus || currentValue <= min;
|
||||
return disabled || disableMinus || +currentValue <= +min;
|
||||
},
|
||||
|
||||
onFocus(event: WechatMiniprogram.InputFocus) {
|
||||
|
||||
@ -13234,9 +13234,9 @@ vite@^2.9.0:
|
||||
fsevents "~2.3.2"
|
||||
|
||||
vm2@^3.9.8:
|
||||
version "3.9.15"
|
||||
resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.15.tgz#c544e6a9bc31e4e40d2e5f532342cf799ea56a6e"
|
||||
integrity sha512-XqNqknHGw2avJo13gbIwLNZUumvrSHc9mLqoadFZTpo3KaNEJoe1I0lqTFhRXmXD7WkLyG01aaraXdXT0pa4ag==
|
||||
version "3.9.16"
|
||||
resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.9.16.tgz#0fbc2a265f7bf8b837cea6f4a908f88a3f93b8e6"
|
||||
integrity sha512-3T9LscojNTxdOyG+e8gFeyBXkMlOBYDoF6dqZbj+MPVHi9x10UfiTAJIobuchRCp3QvC+inybTbMJIUrLsig0w==
|
||||
dependencies:
|
||||
acorn "^8.7.0"
|
||||
acorn-walk "^8.2.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user