mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
perf(stepper): use wxs (#3890)
This commit is contained in:
parent
b5529e2b66
commit
97c1a7780d
@ -33,8 +33,8 @@ VantComponent({
|
||||
observer: 'check',
|
||||
},
|
||||
disabled: Boolean,
|
||||
inputWidth: null,
|
||||
buttonSize: null,
|
||||
inputWidth: String,
|
||||
buttonSize: String,
|
||||
asyncChange: Boolean,
|
||||
disableInput: Boolean,
|
||||
decimalLength: {
|
||||
|
@ -1,10 +1,11 @@
|
||||
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||
<wxs src="./index.wxs" module="computed" />
|
||||
|
||||
<view class="van-stepper custom-class">
|
||||
<view
|
||||
wx:if="{{ showMinus }}"
|
||||
data-type="minus"
|
||||
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||
style="{{ computed.buttonStyle({ buttonSize }) }}"
|
||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }) }}"
|
||||
hover-class="van-stepper__minus--hover"
|
||||
hover-stay-time="70"
|
||||
@ -15,7 +16,7 @@
|
||||
<input
|
||||
type="{{ integer ? 'number' : 'digit' }}"
|
||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||
style="width: {{ utils.addUnit(inputWidth) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||
style="{{ computed.inputStyle({ buttonSize, inputWidth }) }}"
|
||||
value="{{ currentValue }}"
|
||||
focus="{{ focus }}"
|
||||
disabled="{{ disabled || disableInput }}"
|
||||
@ -26,7 +27,7 @@
|
||||
<view
|
||||
wx:if="{{ showPlus }}"
|
||||
data-type="plus"
|
||||
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||
style="{{ computed.buttonStyle({ buttonSize }) }}"
|
||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }) }}"
|
||||
hover-class="van-stepper__plus--hover"
|
||||
hover-stay-time="70"
|
||||
|
22
packages/stepper/index.wxs
Normal file
22
packages/stepper/index.wxs
Normal file
@ -0,0 +1,22 @@
|
||||
/* eslint-disable */
|
||||
var style = require('../wxs/style.wxs');
|
||||
var addUnit = require('../wxs/add-unit.wxs');
|
||||
|
||||
function buttonStyle(data) {
|
||||
return style({
|
||||
width: addUnit(data.buttonSize),
|
||||
height: addUnit(data.buttonSize),
|
||||
});
|
||||
}
|
||||
|
||||
function inputStyle(data) {
|
||||
return style({
|
||||
width: addUnit(data.inputWidth),
|
||||
height: addUnit(data.buttonSize),
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
buttonStyle: buttonStyle,
|
||||
inputStyle: inputStyle,
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user