You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
207 lines
8.6 KiB
207 lines
8.6 KiB
<template>
|
|
<uni-shadow-root class="vant-stepper-index"><view class="van-stepper custom-class">
|
|
<view v-if="showMinus" data-type="minus" :style="'width: '+(utils.addUnit(buttonSize))+'; height: '+(utils.addUnit(buttonSize))" :class="'minus-class '+(utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }))" hover-class="van-stepper__minus--hover" hover-stay-time="70" @click="onTap" @touchstart="onTouchStart" @touchend="onTouchEnd"></view>
|
|
<input :type="integer ? 'number' : 'digit'" :class="'input-class '+(utils.bem('stepper__input', { disabled: disabled || disableInput }))" :style="'width: '+(utils.addUnit(inputWidth))+'; height: '+(utils.addUnit(buttonSize))" :value="currentValue" :focus="focus" :disabled="disabled || disableInput" @input="onInput" @focus="onFocus" @blur="onBlur"></input>
|
|
<view v-if="showPlus" data-type="plus" :style="'width: '+(utils.addUnit(buttonSize))+'; height: '+(utils.addUnit(buttonSize))" :class="'plus-class '+(utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }))" hover-class="van-stepper__plus--hover" hover-stay-time="70" @click="onTap" @touchstart="onTouchStart" @touchend="onTouchEnd"></view>
|
|
</view></uni-shadow-root>
|
|
</template>
|
|
<wxs src="../wxs/utils.wxs" module="utils"></wxs>
|
|
<script>
|
|
|
|
global['__wxRoute'] = 'vant/stepper/index'
|
|
import { VantComponent } from '../common/component';
|
|
import { isDef } from '../common/utils';
|
|
const LONG_PRESS_START_TIME = 600;
|
|
const LONG_PRESS_INTERVAL = 200;
|
|
// add num and avoid float number
|
|
function add(num1, num2) {
|
|
const cardinal = Math.pow(10, 10);
|
|
return Math.round((num1 + num2) * cardinal) / cardinal;
|
|
}
|
|
function equal(value1, value2) {
|
|
return String(value1) === String(value2);
|
|
}
|
|
VantComponent({
|
|
field: true,
|
|
classes: ['input-class', 'plus-class', 'minus-class'],
|
|
props: {
|
|
value: {
|
|
type: null,
|
|
observer(value) {
|
|
if (!equal(value, this.data.currentValue)) {
|
|
this.setData({ currentValue: this.format(value) });
|
|
}
|
|
},
|
|
},
|
|
integer: {
|
|
type: Boolean,
|
|
observer: 'check',
|
|
},
|
|
disabled: Boolean,
|
|
inputWidth: null,
|
|
buttonSize: null,
|
|
asyncChange: Boolean,
|
|
disableInput: Boolean,
|
|
decimalLength: {
|
|
type: Number,
|
|
value: null,
|
|
observer: 'check',
|
|
},
|
|
min: {
|
|
type: null,
|
|
value: 1,
|
|
observer: 'check',
|
|
},
|
|
max: {
|
|
type: null,
|
|
value: Number.MAX_SAFE_INTEGER,
|
|
observer: 'check',
|
|
},
|
|
step: {
|
|
type: null,
|
|
value: 1,
|
|
},
|
|
showPlus: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
showMinus: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
disablePlus: Boolean,
|
|
disableMinus: Boolean,
|
|
longPress: {
|
|
type: Boolean,
|
|
value: true,
|
|
},
|
|
},
|
|
data: {
|
|
currentValue: '',
|
|
},
|
|
created() {
|
|
this.setData({
|
|
currentValue: this.format(this.data.value),
|
|
});
|
|
},
|
|
methods: {
|
|
check() {
|
|
const val = this.format(this.data.currentValue);
|
|
if (!equal(val, this.data.currentValue)) {
|
|
this.setData({ currentValue: val });
|
|
}
|
|
},
|
|
isDisabled(type) {
|
|
if (type === 'plus') {
|
|
return (
|
|
this.data.disabled ||
|
|
this.data.disablePlus ||
|
|
this.data.currentValue >= this.data.max
|
|
);
|
|
}
|
|
return (
|
|
this.data.disabled ||
|
|
this.data.disableMinus ||
|
|
this.data.currentValue <= this.data.min
|
|
);
|
|
},
|
|
onFocus(event) {
|
|
this.$emit('focus', event.detail);
|
|
},
|
|
onBlur(event) {
|
|
const value = this.format(event.detail.value);
|
|
this.emitChange(value);
|
|
this.$emit(
|
|
'blur',
|
|
Object.assign(Object.assign({}, event.detail), { value })
|
|
);
|
|
},
|
|
// filter illegal characters
|
|
filter(value) {
|
|
value = String(value).replace(/[^0-9.-]/g, '');
|
|
if (this.data.integer && value.indexOf('.') !== -1) {
|
|
value = value.split('.')[0];
|
|
}
|
|
return value;
|
|
},
|
|
// limit value range
|
|
format(value) {
|
|
value = this.filter(value);
|
|
// format range
|
|
value = value === '' ? 0 : +value;
|
|
value = Math.max(Math.min(this.data.max, value), this.data.min);
|
|
// format decimal
|
|
if (isDef(this.data.decimalLength)) {
|
|
value = value.toFixed(this.data.decimalLength);
|
|
}
|
|
return value;
|
|
},
|
|
onInput(event) {
|
|
const { value = '' } = event.detail || {};
|
|
// allow input to be empty
|
|
if (value === '') {
|
|
return;
|
|
}
|
|
let formatted = this.filter(value);
|
|
// limit max decimal length
|
|
if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
|
const pair = formatted.split('.');
|
|
formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
|
|
}
|
|
this.emitChange(formatted);
|
|
},
|
|
emitChange(value) {
|
|
if (!this.data.asyncChange) {
|
|
this.setData({ currentValue: value });
|
|
}
|
|
this.$emit('change', value);
|
|
},
|
|
onChange() {
|
|
const { type } = this;
|
|
if (this.isDisabled(type)) {
|
|
this.$emit('overlimit', type);
|
|
return;
|
|
}
|
|
const diff = type === 'minus' ? -this.data.step : +this.data.step;
|
|
const value = this.format(add(+this.data.currentValue, diff));
|
|
this.emitChange(value);
|
|
this.$emit(type);
|
|
},
|
|
longPressStep() {
|
|
this.longPressTimer = setTimeout(() => {
|
|
this.onChange();
|
|
this.longPressStep();
|
|
}, LONG_PRESS_INTERVAL);
|
|
},
|
|
onTap(event) {
|
|
const { type } = event.currentTarget.dataset;
|
|
this.type = type;
|
|
this.onChange();
|
|
},
|
|
onTouchStart(event) {
|
|
if (!this.data.longPress) {
|
|
return;
|
|
}
|
|
clearTimeout(this.longPressTimer);
|
|
const { type } = event.currentTarget.dataset;
|
|
this.type = type;
|
|
this.isLongPress = false;
|
|
this.longPressTimer = setTimeout(() => {
|
|
this.isLongPress = true;
|
|
this.onChange();
|
|
this.longPressStep();
|
|
}, LONG_PRESS_START_TIME);
|
|
},
|
|
onTouchEnd() {
|
|
if (!this.data.longPress) {
|
|
return;
|
|
}
|
|
clearTimeout(this.longPressTimer);
|
|
},
|
|
},
|
|
});
|
|
export default global['__wxComponents']['vant/stepper/index']
|
|
</script>
|
|
<style platform="mp-weixin">
|
|
@import '../common/index.css';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{position:relative;display:inline-block;box-sizing:border-box;margin:1px;vertical-align:middle;border:0;background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);color:#323233;color:var(--stepper-button-icon-color,#323233);width:28px;width:var(--stepper-input-height,28px);height:28px;height:var(--stepper-input-height,28px);padding:4px;padding:var(--padding-base,4px)}.van-stepper__minus:before,.van-stepper__plus:before{width:9px;height:1px}.van-stepper__minus:after,.van-stepper__plus:after{width:1px;height:9px}.van-stepper__minus:after,.van-stepper__minus:before,.van-stepper__plus:after,.van-stepper__plus:before{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;background-color:currentColor;content:""}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:#e8e8e8;background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:#c8c9cc;color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:#f7f8fa;background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:4px 0 0 4px;border-radius:var(--stepper-border-radius,4px) 0 0 var(--stepper-border-radius,4px)}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0;border-radius:0 var(--stepper-border-radius,4px) var(--stepper-border-radius,4px) 0}.van-stepper__input{display:inline-block;box-sizing:border-box;min-height:0;margin:1px;padding:1px;text-align:center;vertical-align:middle;border:0;border-width:1px 0;border-radius:0;-webkit-appearance:none;font-size:14px;font-size:var(--stepper-input-font-size,14px);color:#323233;color:var(--stepper-input-text-color,#323233);background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);width:32px;width:var(--stepper-input-width,32px);height:28px;height:var(--stepper-input-height,28px)}.van-stepper__input--disabled{color:#c8c9cc;color:var(--stepper-input-disabled-text-color,#c8c9cc);background-color:#f2f3f5;background-color:var(--stepper-input-disabled-background-color,#f2f3f5)}
|
|
</style>
|