mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.1.0-beta.2
This commit is contained in:
parent
f15b49c7d2
commit
673f1c5fc5
134
dist/stepper/index.js
vendored
134
dist/stepper/index.js
vendored
@ -1,5 +1,5 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { addUnit, isDef } from '../common/utils';
|
import { isDef } from '../common/utils';
|
||||||
const LONG_PRESS_START_TIME = 600;
|
const LONG_PRESS_START_TIME = 600;
|
||||||
const LONG_PRESS_INTERVAL = 200;
|
const LONG_PRESS_INTERVAL = 200;
|
||||||
// add num and avoid float number
|
// add num and avoid float number
|
||||||
@ -7,6 +7,9 @@ function add(num1, num2) {
|
|||||||
const cardinal = Math.pow(10, 10);
|
const cardinal = Math.pow(10, 10);
|
||||||
return Math.round((num1 + num2) * cardinal) / cardinal;
|
return Math.round((num1 + num2) * cardinal) / cardinal;
|
||||||
}
|
}
|
||||||
|
function equal(value1, value2) {
|
||||||
|
return String(value1) === String(value2);
|
||||||
|
}
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
classes: ['input-class', 'plus-class', 'minus-class'],
|
classes: ['input-class', 'plus-class', 'minus-class'],
|
||||||
@ -14,47 +17,34 @@ VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: null,
|
type: null,
|
||||||
observer(value) {
|
observer(value) {
|
||||||
if (value === '') {
|
if (!equal(value, this.data.currentValue)) {
|
||||||
return;
|
this.setData({ currentValue: this.format(value) });
|
||||||
}
|
}
|
||||||
const newValue = this.range(value);
|
|
||||||
if (typeof newValue === 'number' && +this.data.value !== newValue) {
|
|
||||||
this.setData({ value: newValue });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
integer: Boolean,
|
|
||||||
disabled: Boolean,
|
|
||||||
inputWidth: {
|
|
||||||
type: null,
|
|
||||||
observer() {
|
|
||||||
this.setData({
|
|
||||||
inputStyle: this.computeInputStyle()
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
buttonSize: {
|
|
||||||
type: null,
|
|
||||||
observer() {
|
|
||||||
this.setData({
|
|
||||||
inputStyle: this.computeInputStyle(),
|
|
||||||
buttonStyle: this.computeButtonStyle()
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
integer: {
|
||||||
|
type: Boolean,
|
||||||
|
observer: 'check'
|
||||||
|
},
|
||||||
|
disabled: Boolean,
|
||||||
|
inputWidth: null,
|
||||||
|
buttonSize: null,
|
||||||
asyncChange: Boolean,
|
asyncChange: Boolean,
|
||||||
disableInput: Boolean,
|
disableInput: Boolean,
|
||||||
decimalLength: {
|
decimalLength: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: null
|
value: null,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
min: {
|
min: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 1
|
value: 1,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
max: {
|
max: {
|
||||||
type: null,
|
type: null,
|
||||||
value: Number.MAX_SAFE_INTEGER
|
value: Number.MAX_SAFE_INTEGER,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -73,36 +63,52 @@ VantComponent({
|
|||||||
longPress: {
|
longPress: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
focus: false,
|
currentValue: ''
|
||||||
inputStyle: '',
|
|
||||||
buttonStyle: ''
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: this.range(this.data.value)
|
currentValue: this.format(this.data.value)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
check() {
|
||||||
|
const val = this.format(this.data.currentValue);
|
||||||
|
if (!equal(val, this.data.currentValue)) {
|
||||||
|
this.setData({ currentValue: val });
|
||||||
|
}
|
||||||
|
},
|
||||||
isDisabled(type) {
|
isDisabled(type) {
|
||||||
if (type === 'plus') {
|
if (type === 'plus') {
|
||||||
return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max;
|
return (this.data.disabled ||
|
||||||
|
this.data.disablePlus ||
|
||||||
|
this.data.currentValue >= this.data.max);
|
||||||
}
|
}
|
||||||
return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min;
|
return (this.data.disabled ||
|
||||||
|
this.data.disableMinus ||
|
||||||
|
this.data.currentValue <= this.data.min);
|
||||||
},
|
},
|
||||||
onFocus(event) {
|
onFocus(event) {
|
||||||
this.$emit('focus', event.detail);
|
this.$emit('focus', event.detail);
|
||||||
},
|
},
|
||||||
onBlur(event) {
|
onBlur(event) {
|
||||||
const value = this.range(this.data.value);
|
const value = this.format(event.detail.value);
|
||||||
this.triggerInput(value);
|
this.emitChange(value);
|
||||||
this.$emit('blur', event.detail);
|
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
|
// limit value range
|
||||||
range(value) {
|
format(value) {
|
||||||
value = String(value).replace(/[^0-9.-]/g, '');
|
value = this.filter(value);
|
||||||
// format range
|
// format range
|
||||||
value = value === '' ? 0 : +value;
|
value = value === '' ? 0 : +value;
|
||||||
value = Math.max(Math.min(this.data.max, value), this.data.min);
|
value = Math.max(Math.min(this.data.max, value), this.data.min);
|
||||||
@ -114,7 +120,23 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
onInput(event) {
|
onInput(event) {
|
||||||
const { value = '' } = event.detail || {};
|
const { value = '' } = event.detail || {};
|
||||||
this.triggerInput(value);
|
// 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() {
|
onChange() {
|
||||||
const { type } = this;
|
const { type } = this;
|
||||||
@ -123,8 +145,8 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const diff = type === 'minus' ? -this.data.step : +this.data.step;
|
const diff = type === 'minus' ? -this.data.step : +this.data.step;
|
||||||
const value = add(+this.data.value, diff);
|
const value = this.format(add(+this.data.currentValue, diff));
|
||||||
this.triggerInput(this.range(value));
|
this.emitChange(value);
|
||||||
this.$emit(type);
|
this.$emit(type);
|
||||||
},
|
},
|
||||||
longPressStep() {
|
longPressStep() {
|
||||||
@ -157,30 +179,6 @@ VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
clearTimeout(this.longPressTimer);
|
clearTimeout(this.longPressTimer);
|
||||||
},
|
|
||||||
triggerInput(value) {
|
|
||||||
this.setData({
|
|
||||||
value: this.data.asyncChange ? this.data.value : value
|
|
||||||
});
|
|
||||||
this.$emit('change', value);
|
|
||||||
},
|
|
||||||
computeInputStyle() {
|
|
||||||
let style = '';
|
|
||||||
if (this.data.inputWidth) {
|
|
||||||
style = `width: ${addUnit(this.data.inputWidth)};`;
|
|
||||||
}
|
|
||||||
if (this.data.buttonSize) {
|
|
||||||
style += `height: ${addUnit(this.data.buttonSize)};`;
|
|
||||||
}
|
|
||||||
return style;
|
|
||||||
},
|
|
||||||
computeButtonStyle() {
|
|
||||||
let style = '';
|
|
||||||
const size = addUnit(this.data.buttonSize);
|
|
||||||
if (this.data.buttonSize) {
|
|
||||||
style = `width: ${size};height: ${size};`;
|
|
||||||
}
|
|
||||||
return style;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
12
dist/stepper/index.wxml
vendored
12
dist/stepper/index.wxml
vendored
@ -4,8 +4,8 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showMinus }}"
|
wx:if="{{ showMinus }}"
|
||||||
data-type="minus"
|
data-type="minus"
|
||||||
style="{{ buttonStyle }}"
|
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}"
|
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }) }}"
|
||||||
hover-class="van-stepper__minus--hover"
|
hover-class="van-stepper__minus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<input
|
<input
|
||||||
type="{{ integer ? 'number' : 'digit' }}"
|
type="{{ integer ? 'number' : 'digit' }}"
|
||||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||||
style="{{ inputStyle }}"
|
style="width: {{ utils.addUnit(inputWidth) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
value="{{ value }}"
|
value="{{ currentValue }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
disabled="{{ disabled || disableInput }}"
|
disabled="{{ disabled || disableInput }}"
|
||||||
bindinput="onInput"
|
bindinput="onInput"
|
||||||
@ -26,8 +26,8 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showPlus }}"
|
wx:if="{{ showPlus }}"
|
||||||
data-type="plus"
|
data-type="plus"
|
||||||
style="{{ buttonStyle }}"
|
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}"
|
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }) }}"
|
||||||
hover-class="van-stepper__plus--hover"
|
hover-class="van-stepper__plus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
|
@ -1,4 +1,15 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
var __assign = (this && this.__assign) || function () {
|
||||||
|
__assign = Object.assign || function(t) {
|
||||||
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||||
|
s = arguments[i];
|
||||||
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
||||||
|
t[p] = s[p];
|
||||||
|
}
|
||||||
|
return t;
|
||||||
|
};
|
||||||
|
return __assign.apply(this, arguments);
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var component_1 = require("../common/component");
|
var component_1 = require("../common/component");
|
||||||
var utils_1 = require("../common/utils");
|
var utils_1 = require("../common/utils");
|
||||||
@ -9,6 +20,9 @@ function add(num1, num2) {
|
|||||||
var cardinal = Math.pow(10, 10);
|
var cardinal = Math.pow(10, 10);
|
||||||
return Math.round((num1 + num2) * cardinal) / cardinal;
|
return Math.round((num1 + num2) * cardinal) / cardinal;
|
||||||
}
|
}
|
||||||
|
function equal(value1, value2) {
|
||||||
|
return String(value1) === String(value2);
|
||||||
|
}
|
||||||
component_1.VantComponent({
|
component_1.VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
classes: ['input-class', 'plus-class', 'minus-class'],
|
classes: ['input-class', 'plus-class', 'minus-class'],
|
||||||
@ -16,47 +30,34 @@ component_1.VantComponent({
|
|||||||
value: {
|
value: {
|
||||||
type: null,
|
type: null,
|
||||||
observer: function (value) {
|
observer: function (value) {
|
||||||
if (value === '') {
|
if (!equal(value, this.data.currentValue)) {
|
||||||
return;
|
this.setData({ currentValue: this.format(value) });
|
||||||
}
|
}
|
||||||
var newValue = this.range(value);
|
|
||||||
if (typeof newValue === 'number' && +this.data.value !== newValue) {
|
|
||||||
this.setData({ value: newValue });
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
integer: Boolean,
|
|
||||||
disabled: Boolean,
|
|
||||||
inputWidth: {
|
|
||||||
type: null,
|
|
||||||
observer: function () {
|
|
||||||
this.setData({
|
|
||||||
inputStyle: this.computeInputStyle()
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
buttonSize: {
|
|
||||||
type: null,
|
|
||||||
observer: function () {
|
|
||||||
this.setData({
|
|
||||||
inputStyle: this.computeInputStyle(),
|
|
||||||
buttonStyle: this.computeButtonStyle()
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
integer: {
|
||||||
|
type: Boolean,
|
||||||
|
observer: 'check'
|
||||||
|
},
|
||||||
|
disabled: Boolean,
|
||||||
|
inputWidth: null,
|
||||||
|
buttonSize: null,
|
||||||
asyncChange: Boolean,
|
asyncChange: Boolean,
|
||||||
disableInput: Boolean,
|
disableInput: Boolean,
|
||||||
decimalLength: {
|
decimalLength: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: null
|
value: null,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
min: {
|
min: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 1
|
value: 1,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
max: {
|
max: {
|
||||||
type: null,
|
type: null,
|
||||||
value: Number.MAX_SAFE_INTEGER
|
value: Number.MAX_SAFE_INTEGER,
|
||||||
|
observer: 'check'
|
||||||
},
|
},
|
||||||
step: {
|
step: {
|
||||||
type: null,
|
type: null,
|
||||||
@ -75,36 +76,52 @@ component_1.VantComponent({
|
|||||||
longPress: {
|
longPress: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
focus: false,
|
currentValue: ''
|
||||||
inputStyle: '',
|
|
||||||
buttonStyle: ''
|
|
||||||
},
|
},
|
||||||
created: function () {
|
created: function () {
|
||||||
this.setData({
|
this.setData({
|
||||||
value: this.range(this.data.value)
|
currentValue: this.format(this.data.value)
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
check: function () {
|
||||||
|
var val = this.format(this.data.currentValue);
|
||||||
|
if (!equal(val, this.data.currentValue)) {
|
||||||
|
this.setData({ currentValue: val });
|
||||||
|
}
|
||||||
|
},
|
||||||
isDisabled: function (type) {
|
isDisabled: function (type) {
|
||||||
if (type === 'plus') {
|
if (type === 'plus') {
|
||||||
return this.data.disabled || this.data.disablePlus || this.data.value >= this.data.max;
|
return (this.data.disabled ||
|
||||||
|
this.data.disablePlus ||
|
||||||
|
this.data.currentValue >= this.data.max);
|
||||||
}
|
}
|
||||||
return this.data.disabled || this.data.disableMinus || this.data.value <= this.data.min;
|
return (this.data.disabled ||
|
||||||
|
this.data.disableMinus ||
|
||||||
|
this.data.currentValue <= this.data.min);
|
||||||
},
|
},
|
||||||
onFocus: function (event) {
|
onFocus: function (event) {
|
||||||
this.$emit('focus', event.detail);
|
this.$emit('focus', event.detail);
|
||||||
},
|
},
|
||||||
onBlur: function (event) {
|
onBlur: function (event) {
|
||||||
var value = this.range(this.data.value);
|
var value = this.format(event.detail.value);
|
||||||
this.triggerInput(value);
|
this.emitChange(value);
|
||||||
this.$emit('blur', event.detail);
|
this.$emit('blur', __assign(__assign({}, event.detail), { value: value }));
|
||||||
|
},
|
||||||
|
// filter illegal characters
|
||||||
|
filter: function (value) {
|
||||||
|
value = String(value).replace(/[^0-9.-]/g, '');
|
||||||
|
if (this.data.integer && value.indexOf('.') !== -1) {
|
||||||
|
value = value.split('.')[0];
|
||||||
|
}
|
||||||
|
return value;
|
||||||
},
|
},
|
||||||
// limit value range
|
// limit value range
|
||||||
range: function (value) {
|
format: function (value) {
|
||||||
value = String(value).replace(/[^0-9.-]/g, '');
|
value = this.filter(value);
|
||||||
// format range
|
// format range
|
||||||
value = value === '' ? 0 : +value;
|
value = value === '' ? 0 : +value;
|
||||||
value = Math.max(Math.min(this.data.max, value), this.data.min);
|
value = Math.max(Math.min(this.data.max, value), this.data.min);
|
||||||
@ -116,7 +133,23 @@ component_1.VantComponent({
|
|||||||
},
|
},
|
||||||
onInput: function (event) {
|
onInput: function (event) {
|
||||||
var _a = (event.detail || {}).value, value = _a === void 0 ? '' : _a;
|
var _a = (event.detail || {}).value, value = _a === void 0 ? '' : _a;
|
||||||
this.triggerInput(value);
|
// allow input to be empty
|
||||||
|
if (value === '') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var formatted = this.filter(value);
|
||||||
|
// limit max decimal length
|
||||||
|
if (utils_1.isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
||||||
|
var pair = formatted.split('.');
|
||||||
|
formatted = pair[0] + "." + pair[1].slice(0, this.data.decimalLength);
|
||||||
|
}
|
||||||
|
this.emitChange(formatted);
|
||||||
|
},
|
||||||
|
emitChange: function (value) {
|
||||||
|
if (!this.data.asyncChange) {
|
||||||
|
this.setData({ currentValue: value });
|
||||||
|
}
|
||||||
|
this.$emit('change', value);
|
||||||
},
|
},
|
||||||
onChange: function () {
|
onChange: function () {
|
||||||
var type = this.type;
|
var type = this.type;
|
||||||
@ -125,8 +158,8 @@ component_1.VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var diff = type === 'minus' ? -this.data.step : +this.data.step;
|
var diff = type === 'minus' ? -this.data.step : +this.data.step;
|
||||||
var value = add(+this.data.value, diff);
|
var value = this.format(add(+this.data.currentValue, diff));
|
||||||
this.triggerInput(this.range(value));
|
this.emitChange(value);
|
||||||
this.$emit(type);
|
this.$emit(type);
|
||||||
},
|
},
|
||||||
longPressStep: function () {
|
longPressStep: function () {
|
||||||
@ -161,30 +194,6 @@ component_1.VantComponent({
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
clearTimeout(this.longPressTimer);
|
clearTimeout(this.longPressTimer);
|
||||||
},
|
|
||||||
triggerInput: function (value) {
|
|
||||||
this.setData({
|
|
||||||
value: this.data.asyncChange ? this.data.value : value
|
|
||||||
});
|
|
||||||
this.$emit('change', value);
|
|
||||||
},
|
|
||||||
computeInputStyle: function () {
|
|
||||||
var style = '';
|
|
||||||
if (this.data.inputWidth) {
|
|
||||||
style = "width: " + utils_1.addUnit(this.data.inputWidth) + ";";
|
|
||||||
}
|
|
||||||
if (this.data.buttonSize) {
|
|
||||||
style += "height: " + utils_1.addUnit(this.data.buttonSize) + ";";
|
|
||||||
}
|
|
||||||
return style;
|
|
||||||
},
|
|
||||||
computeButtonStyle: function () {
|
|
||||||
var style = '';
|
|
||||||
var size = utils_1.addUnit(this.data.buttonSize);
|
|
||||||
if (this.data.buttonSize) {
|
|
||||||
style = "width: " + size + ";height: " + size + ";";
|
|
||||||
}
|
|
||||||
return style;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showMinus }}"
|
wx:if="{{ showMinus }}"
|
||||||
data-type="minus"
|
data-type="minus"
|
||||||
style="{{ buttonStyle }}"
|
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || value <= min }) }}"
|
class="minus-class {{ utils.bem('stepper__minus', { disabled: disabled || disableMinus || currentValue <= min }) }}"
|
||||||
hover-class="van-stepper__minus--hover"
|
hover-class="van-stepper__minus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<input
|
<input
|
||||||
type="{{ integer ? 'number' : 'digit' }}"
|
type="{{ integer ? 'number' : 'digit' }}"
|
||||||
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
class="input-class {{ utils.bem('stepper__input', { disabled: disabled || disableInput }) }}"
|
||||||
style="{{ inputStyle }}"
|
style="width: {{ utils.addUnit(inputWidth) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
value="{{ value }}"
|
value="{{ currentValue }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
disabled="{{ disabled || disableInput }}"
|
disabled="{{ disabled || disableInput }}"
|
||||||
bindinput="onInput"
|
bindinput="onInput"
|
||||||
@ -26,8 +26,8 @@
|
|||||||
<view
|
<view
|
||||||
wx:if="{{ showPlus }}"
|
wx:if="{{ showPlus }}"
|
||||||
data-type="plus"
|
data-type="plus"
|
||||||
style="{{ buttonStyle }}"
|
style="width: {{ utils.addUnit(buttonSize) }}; height: {{ utils.addUnit(buttonSize) }}"
|
||||||
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || value >= max }) }}"
|
class="plus-class {{ utils.bem('stepper__plus', { disabled: disabled || disablePlus || currentValue >= max }) }}"
|
||||||
hover-class="van-stepper__plus--hover"
|
hover-class="van-stepper__plus--hover"
|
||||||
hover-stay-time="70"
|
hover-stay-time="70"
|
||||||
bind:tap="onTap"
|
bind:tap="onTap"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user