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.
179 lines
3.7 KiB
179 lines
3.7 KiB
1 year ago
|
<template>
|
||
|
<view class="uni-numbox">
|
||
|
<view @tap="_calcValue('minus')" class="uni-numbox__minus">
|
||
|
<text class="uni-numbox--text wlIcon-jian" :class="{ 'uni-numbox--disabled': inputValue <= min || disabled }"></text>
|
||
|
</view>
|
||
|
<input :disabled="disabled" @blur="_onBlur" class="uni-numbox__value" type="number" v-model="inputValue" />
|
||
|
|
||
|
<view @tap="_calcValue('plus')" class="uni-numbox__plus">
|
||
|
<text class="uni-numbox--text wlIcon-tianjia" :class="{ 'uni-numbox--disabled': inputValue >= max || disabled }"></text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
/**
|
||
|
* NumberBox 数字输入框
|
||
|
* @description 带加减按钮的数字输入框
|
||
|
* @tutorial https://ext.dcloud.net.cn/plugin?id=31
|
||
|
* @property {Number} value 输入框当前值
|
||
|
* @property {Number} min 最小值
|
||
|
* @property {Number} max 最大值
|
||
|
* @property {Number} step 每次点击改变的间隔大小
|
||
|
* @property {Boolean} disabled = [true|false] 是否为禁用状态
|
||
|
* @event {Function} change 输入框值改变时触发的事件,参数为输入框当前的 value
|
||
|
*/
|
||
|
|
||
|
export default {
|
||
|
name: "UniNumberBox",
|
||
|
props: {
|
||
|
value: {
|
||
|
type: [Number, String],
|
||
|
default: 1
|
||
|
},
|
||
|
min: {
|
||
|
type: Number,
|
||
|
default: 0
|
||
|
},
|
||
|
max: {
|
||
|
type: Number,
|
||
|
default: 100
|
||
|
},
|
||
|
step: {
|
||
|
type: Number,
|
||
|
default: 1
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
inputValue: 0
|
||
|
};
|
||
|
},
|
||
|
watch: {
|
||
|
value(val) {
|
||
|
this.inputValue = +val;
|
||
|
},
|
||
|
inputValue(newVal, oldVal) {
|
||
|
if (+newVal !== +oldVal) {
|
||
|
this.$emit("change", newVal);
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
this.inputValue = +this.value;
|
||
|
},
|
||
|
methods: {
|
||
|
_calcValue(type) {
|
||
|
if (this.disabled) {
|
||
|
return;
|
||
|
}
|
||
|
const scale = this._getDecimalScale();
|
||
|
let value = this.inputValue * scale;
|
||
|
let step = this.step * scale;
|
||
|
if (type === "minus") {
|
||
|
value -= step;
|
||
|
if (value < (this.min * scale)) {
|
||
|
return;
|
||
|
}
|
||
|
if (value > (this.max * scale)) {
|
||
|
value = this.max * scale
|
||
|
}
|
||
|
} else if (type === "plus") {
|
||
|
value += step;
|
||
|
if (value > (this.max * scale)) {
|
||
|
return;
|
||
|
}
|
||
|
if (value < (this.min * scale)) {
|
||
|
value = this.min * scale
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.inputValue = String(value / scale);
|
||
|
},
|
||
|
_getDecimalScale() {
|
||
|
let scale = 1;
|
||
|
// 浮点型
|
||
|
if (~~this.step !== this.step) {
|
||
|
scale = Math.pow(10, (this.step + "").split(".")[1].length);
|
||
|
}
|
||
|
return scale;
|
||
|
},
|
||
|
_onBlur(event) {
|
||
|
let value = event.detail.value;
|
||
|
if (!value) {
|
||
|
// this.inputValue = 0;
|
||
|
return;
|
||
|
}
|
||
|
value = +value;
|
||
|
if (value > this.max) {
|
||
|
value = this.max;
|
||
|
} else if (value < this.min) {
|
||
|
value = this.min;
|
||
|
}
|
||
|
this.inputValue = value;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style scoped>
|
||
|
/* #ifdef APP-NVUE */
|
||
|
/* #endif */
|
||
|
/* solid */
|
||
|
.uni-numbox {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
border-radius: 1000rpx;
|
||
|
padding: 4rpx;
|
||
|
border: 1px solid #f2f2f2;
|
||
|
}
|
||
|
|
||
|
.uni-numbox__value {
|
||
|
width: 80rpx;
|
||
|
height: 60rpx;
|
||
|
line-height: 60rpx;
|
||
|
text-align: center;
|
||
|
font-size: 32rpx;
|
||
|
}
|
||
|
|
||
|
|
||
|
.uni-numbox__minus {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
width: 60rpx;
|
||
|
height: 60rpx;
|
||
|
color: #333;
|
||
|
background-color: #f2f2f2;
|
||
|
border-radius: 1000rpx;
|
||
|
border-right-width: 0;
|
||
|
}
|
||
|
|
||
|
.uni-numbox__plus {
|
||
|
/* #ifndef APP-NVUE */
|
||
|
display: flex;
|
||
|
/* #endif */
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
width: 60rpx;
|
||
|
height: 60rpx;
|
||
|
border-radius: 1000rpx;
|
||
|
background-color: #f2f2f2;
|
||
|
}
|
||
|
|
||
|
.uni-numbox--text {
|
||
|
font-size: 32rpx;
|
||
|
color: #333;
|
||
|
}
|
||
|
.uni-numbox--disabled {
|
||
|
color: #B8B8B8;
|
||
|
}
|
||
|
</style>
|