2016-09-09 14:29:19 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div :class="wrapClasses">
|
|
|
|
|
<div :class="handlerClasses">
|
|
|
|
|
<a
|
|
|
|
|
@click="up"
|
|
|
|
|
:class="upClasses">
|
2016-09-21 16:59:19 +08:00
|
|
|
|
<span :class="innerUpClasses" @click="preventDefault"></span>
|
2016-09-09 14:29:19 +08:00
|
|
|
|
</a>
|
|
|
|
|
<a
|
|
|
|
|
@click="down"
|
|
|
|
|
:class="downClasses">
|
2016-09-21 16:59:19 +08:00
|
|
|
|
<span :class="innerDownClasses" @click="preventDefault"></span>
|
2016-09-09 14:29:19 +08:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div :class="inputWrapClasses">
|
|
|
|
|
<input
|
2017-09-22 15:29:50 +08:00
|
|
|
|
:id="elementId"
|
2016-09-09 14:29:19 +08:00
|
|
|
|
:class="inputClasses"
|
|
|
|
|
:disabled="disabled"
|
2016-11-09 15:14:13 +08:00
|
|
|
|
autocomplete="off"
|
2017-11-04 16:37:29 +01:00
|
|
|
|
spellcheck="false"
|
2017-04-25 16:52:51 +08:00
|
|
|
|
:autofocus="autofocus"
|
2016-09-09 14:29:19 +08:00
|
|
|
|
@focus="focus"
|
|
|
|
|
@blur="blur"
|
|
|
|
|
@keydown.stop="keyDown"
|
2017-10-11 10:42:01 +02:00
|
|
|
|
@input="change"
|
2018-04-14 21:45:44 +08:00
|
|
|
|
@mouseup="preventDefault"
|
2016-09-09 14:29:19 +08:00
|
|
|
|
@change="change"
|
2017-10-11 09:29:16 +08:00
|
|
|
|
:readonly="readonly || !editable"
|
2017-05-10 09:22:10 +08:00
|
|
|
|
:name="name"
|
2018-04-17 21:38:52 +08:00
|
|
|
|
:value="formatterValue"
|
|
|
|
|
:placeholder="placeholder">
|
2016-09-09 14:29:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import { oneOf } from '../../utils/assist';
|
2017-03-09 11:14:40 +08:00
|
|
|
|
import Emitter from '../../mixins/emitter';
|
2016-09-09 14:29:19 +08:00
|
|
|
|
|
|
|
|
|
const prefixCls = 'ivu-input-number';
|
2016-09-21 16:59:19 +08:00
|
|
|
|
const iconPrefixCls = 'ivu-icon';
|
2016-09-09 14:29:19 +08:00
|
|
|
|
|
|
|
|
|
function addNum (num1, num2) {
|
2016-12-12 10:37:52 +08:00
|
|
|
|
let sq1, sq2, m;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
try {
|
2016-12-25 22:49:42 +08:00
|
|
|
|
sq1 = num1.toString().split('.')[1].length;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
sq1 = 0;
|
|
|
|
|
}
|
|
|
|
|
try {
|
2016-12-25 22:49:42 +08:00
|
|
|
|
sq2 = num2.toString().split('.')[1].length;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
sq2 = 0;
|
|
|
|
|
}
|
|
|
|
|
// if (sq1 === 0 || sq2 === 0) {
|
|
|
|
|
// return num1 + num2;
|
|
|
|
|
// } else {
|
|
|
|
|
// m = Math.pow(10, Math.max(sq1, sq2));
|
|
|
|
|
// return (num1 * m + num2 * m) / m;
|
|
|
|
|
// }
|
|
|
|
|
m = Math.pow(10, Math.max(sq1, sq2));
|
2017-07-25 18:04:46 +08:00
|
|
|
|
return (Math.round(num1 * m) + Math.round(num2 * m)) / m;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default {
|
2017-03-02 17:40:19 +08:00
|
|
|
|
name: 'InputNumber',
|
2017-03-09 11:14:40 +08:00
|
|
|
|
mixins: [ Emitter ],
|
2016-09-09 14:29:19 +08:00
|
|
|
|
props: {
|
|
|
|
|
max: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: Infinity
|
|
|
|
|
},
|
|
|
|
|
min: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: -Infinity
|
|
|
|
|
},
|
|
|
|
|
step: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: 1
|
|
|
|
|
},
|
2018-08-28 15:15:49 +08:00
|
|
|
|
activeChange:{
|
|
|
|
|
type:Boolean,
|
|
|
|
|
default:true
|
|
|
|
|
},
|
2016-09-09 14:29:19 +08:00
|
|
|
|
value: {
|
|
|
|
|
type: Number,
|
|
|
|
|
default: 1
|
|
|
|
|
},
|
|
|
|
|
size: {
|
|
|
|
|
validator (value) {
|
2017-08-25 10:53:52 +08:00
|
|
|
|
return oneOf(value, ['small', 'large', 'default']);
|
2018-06-28 14:45:08 +08:00
|
|
|
|
},
|
|
|
|
|
default () {
|
2018-08-07 16:35:27 +08:00
|
|
|
|
return !this.$IVIEW || this.$IVIEW.size === '' ? 'default' : this.$IVIEW.size;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
disabled: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
2017-04-25 16:52:51 +08:00
|
|
|
|
},
|
|
|
|
|
autofocus: {
|
2017-04-28 14:53:17 +08:00
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
2017-05-10 09:22:10 +08:00
|
|
|
|
},
|
2017-10-10 10:04:37 +02:00
|
|
|
|
readonly: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: false
|
|
|
|
|
},
|
2017-10-11 09:29:16 +08:00
|
|
|
|
editable: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: true
|
|
|
|
|
},
|
2017-05-10 09:22:10 +08:00
|
|
|
|
name: {
|
|
|
|
|
type: String
|
2017-09-15 11:44:09 +08:00
|
|
|
|
},
|
|
|
|
|
precision: {
|
|
|
|
|
type: Number
|
2017-09-22 15:29:50 +08:00
|
|
|
|
},
|
|
|
|
|
elementId: {
|
|
|
|
|
type: String
|
2018-03-13 15:17:19 +08:00
|
|
|
|
},
|
|
|
|
|
formatter: {
|
|
|
|
|
type: Function
|
|
|
|
|
},
|
|
|
|
|
parser: {
|
|
|
|
|
type: Function
|
2018-04-17 21:38:52 +08:00
|
|
|
|
},
|
|
|
|
|
placeholder: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: ''
|
|
|
|
|
},
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
focused: false,
|
|
|
|
|
upDisabled: false,
|
2017-03-02 13:40:09 +08:00
|
|
|
|
downDisabled: false,
|
|
|
|
|
currentValue: this.value
|
2016-12-25 22:49:42 +08:00
|
|
|
|
};
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
wrapClasses () {
|
|
|
|
|
return [
|
|
|
|
|
`${prefixCls}`,
|
|
|
|
|
{
|
|
|
|
|
[`${prefixCls}-${this.size}`]: !!this.size,
|
|
|
|
|
[`${prefixCls}-disabled`]: this.disabled,
|
|
|
|
|
[`${prefixCls}-focused`]: this.focused
|
|
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
|
];
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
handlerClasses () {
|
|
|
|
|
return `${prefixCls}-handler-wrap`;
|
|
|
|
|
},
|
|
|
|
|
upClasses () {
|
|
|
|
|
return [
|
|
|
|
|
`${prefixCls}-handler`,
|
|
|
|
|
`${prefixCls}-handler-up`,
|
|
|
|
|
{
|
|
|
|
|
[`${prefixCls}-handler-up-disabled`]: this.upDisabled
|
|
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
|
];
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
innerUpClasses () {
|
2016-09-21 16:59:19 +08:00
|
|
|
|
return `${prefixCls}-handler-up-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-up`;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
downClasses () {
|
|
|
|
|
return [
|
|
|
|
|
`${prefixCls}-handler`,
|
|
|
|
|
`${prefixCls}-handler-down`,
|
|
|
|
|
{
|
|
|
|
|
[`${prefixCls}-handler-down-disabled`]: this.downDisabled
|
|
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
|
];
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
innerDownClasses () {
|
2016-09-21 16:59:19 +08:00
|
|
|
|
return `${prefixCls}-handler-down-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-down`;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
inputWrapClasses () {
|
|
|
|
|
return `${prefixCls}-input-wrap`;
|
2016-09-21 16:59:19 +08:00
|
|
|
|
},
|
|
|
|
|
inputClasses () {
|
|
|
|
|
return `${prefixCls}-input`;
|
2017-09-15 11:44:09 +08:00
|
|
|
|
},
|
|
|
|
|
precisionValue () {
|
|
|
|
|
// can not display 1.0
|
2018-05-23 11:43:11 +08:00
|
|
|
|
if(!this.currentValue) return this.currentValue;
|
2017-09-24 16:21:48 +08:00
|
|
|
|
return this.precision ? this.currentValue.toFixed(this.precision) : this.currentValue;
|
2018-03-13 15:17:19 +08:00
|
|
|
|
},
|
|
|
|
|
formatterValue () {
|
2018-03-16 13:59:59 +08:00
|
|
|
|
if (this.formatter && this.precisionValue !== null) {
|
2018-03-13 15:17:19 +08:00
|
|
|
|
return this.formatter(this.precisionValue);
|
|
|
|
|
} else {
|
|
|
|
|
return this.precisionValue;
|
|
|
|
|
}
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
preventDefault (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
},
|
2017-01-16 20:34:52 +08:00
|
|
|
|
up (e) {
|
|
|
|
|
const targetVal = Number(e.target.value);
|
|
|
|
|
if (this.upDisabled && isNaN(targetVal)) {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-01-16 20:34:52 +08:00
|
|
|
|
this.changeStep('up', e);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
2017-01-16 20:34:52 +08:00
|
|
|
|
down (e) {
|
|
|
|
|
const targetVal = Number(e.target.value);
|
|
|
|
|
if (this.downDisabled && isNaN(targetVal)) {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-01-16 20:34:52 +08:00
|
|
|
|
this.changeStep('down', e);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
2017-01-16 20:34:52 +08:00
|
|
|
|
changeStep (type, e) {
|
2017-10-10 10:04:37 +02:00
|
|
|
|
if (this.disabled || this.readonly) {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-16 20:34:52 +08:00
|
|
|
|
const targetVal = Number(e.target.value);
|
2017-03-02 13:40:09 +08:00
|
|
|
|
let val = Number(this.currentValue);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
const step = Number(this.step);
|
|
|
|
|
if (isNaN(val)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-16 20:34:52 +08:00
|
|
|
|
// input a number, and key up or down
|
|
|
|
|
if (!isNaN(targetVal)) {
|
|
|
|
|
if (type === 'up') {
|
|
|
|
|
if (addNum(targetVal, step) <= this.max) {
|
|
|
|
|
val = targetVal;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
} else if (type === 'down') {
|
|
|
|
|
if (addNum(targetVal, -step) >= this.min) {
|
|
|
|
|
val = targetVal;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (type === 'up') {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
val = addNum(val, step);
|
2017-01-16 20:34:52 +08:00
|
|
|
|
} else if (type === 'down') {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
val = addNum(val, -step);
|
|
|
|
|
}
|
|
|
|
|
this.setValue(val);
|
|
|
|
|
},
|
|
|
|
|
setValue (val) {
|
2017-09-24 16:21:48 +08:00
|
|
|
|
// 如果 step 是小数,且没有设置 precision,是有问题的
|
2018-05-24 10:21:53 +08:00
|
|
|
|
if (val && !isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
|
2018-08-28 12:06:18 +08:00
|
|
|
|
|
2018-08-15 10:01:52 +08:00
|
|
|
|
const {min, max} = this;
|
2018-08-28 12:06:18 +08:00
|
|
|
|
if (val!==null) {
|
|
|
|
|
if (val > max) {
|
|
|
|
|
val = max;
|
|
|
|
|
} else if (val < min) {
|
|
|
|
|
val = min;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 23:11:23 +08:00
|
|
|
|
this.$nextTick(() => {
|
2017-03-02 13:40:09 +08:00
|
|
|
|
this.currentValue = val;
|
|
|
|
|
this.$emit('input', val);
|
2017-01-04 16:00:02 +08:00
|
|
|
|
this.$emit('on-change', val);
|
2017-03-09 11:14:40 +08:00
|
|
|
|
this.dispatch('FormItem', 'on-form-change', val);
|
2016-10-13 23:11:23 +08:00
|
|
|
|
});
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
2018-04-14 20:38:22 +08:00
|
|
|
|
focus (event) {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
this.focused = true;
|
2018-04-14 20:38:22 +08:00
|
|
|
|
this.$emit('on-focus', event);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
blur () {
|
|
|
|
|
this.focused = false;
|
2017-11-09 20:31:47 -06:00
|
|
|
|
this.$emit('on-blur');
|
2016-09-09 14:29:19 +08:00
|
|
|
|
},
|
|
|
|
|
keyDown (e) {
|
|
|
|
|
if (e.keyCode === 38) {
|
|
|
|
|
e.preventDefault();
|
2017-01-16 20:34:52 +08:00
|
|
|
|
this.up(e);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
} else if (e.keyCode === 40) {
|
|
|
|
|
e.preventDefault();
|
2017-01-16 20:34:52 +08:00
|
|
|
|
this.down(e);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
change (event) {
|
2018-08-28 12:06:18 +08:00
|
|
|
|
|
2018-08-28 15:15:49 +08:00
|
|
|
|
if (event.type == 'input' && !this.activeChange) return;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
let val = event.target.value.trim();
|
2018-03-13 15:17:19 +08:00
|
|
|
|
if (this.parser) {
|
|
|
|
|
val = this.parser(val);
|
|
|
|
|
}
|
2018-08-15 10:01:52 +08:00
|
|
|
|
|
2017-10-11 11:34:48 +02:00
|
|
|
|
const isEmptyString = val.length === 0;
|
2018-03-16 13:59:59 +08:00
|
|
|
|
if(isEmptyString){
|
|
|
|
|
this.setValue(null);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-08-28 15:15:49 +08:00
|
|
|
|
if (event.type == 'input' && val.match(/^\-?\.?$|\.$/)) return; // prevent fire early if decimal. If no more input the change event will fire later
|
2018-08-15 10:01:52 +08:00
|
|
|
|
|
|
|
|
|
val = Number(val);
|
2017-11-14 14:35:42 +01:00
|
|
|
|
|
2018-08-15 10:01:52 +08:00
|
|
|
|
if (!isNaN(val)) {
|
2017-03-02 13:40:09 +08:00
|
|
|
|
this.currentValue = val;
|
2018-08-15 10:01:52 +08:00
|
|
|
|
this.setValue(val);
|
2016-09-09 14:29:19 +08:00
|
|
|
|
} else {
|
2017-03-02 13:40:09 +08:00
|
|
|
|
event.target.value = this.currentValue;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
2016-10-13 23:11:23 +08:00
|
|
|
|
},
|
|
|
|
|
changeVal (val) {
|
2017-10-11 10:42:01 +02:00
|
|
|
|
val = Number(val);
|
2018-08-15 10:01:52 +08:00
|
|
|
|
//this.setValue(val);
|
2017-10-11 10:42:01 +02:00
|
|
|
|
if (!isNaN(val)) {
|
2016-09-09 14:29:19 +08:00
|
|
|
|
const step = this.step;
|
2016-10-13 23:11:23 +08:00
|
|
|
|
|
|
|
|
|
this.upDisabled = val + step > this.max;
|
|
|
|
|
this.downDisabled = val - step < this.min;
|
2016-09-09 14:29:19 +08:00
|
|
|
|
} else {
|
|
|
|
|
this.upDisabled = true;
|
|
|
|
|
this.downDisabled = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-13 23:11:23 +08:00
|
|
|
|
},
|
2017-03-02 13:40:09 +08:00
|
|
|
|
mounted () {
|
|
|
|
|
this.changeVal(this.currentValue);
|
2016-10-13 23:11:23 +08:00
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
value (val) {
|
2017-03-02 13:40:09 +08:00
|
|
|
|
this.currentValue = val;
|
|
|
|
|
},
|
|
|
|
|
currentValue (val) {
|
2016-10-13 23:11:23 +08:00
|
|
|
|
this.changeVal(val);
|
2017-07-21 11:16:46 -05:00
|
|
|
|
},
|
|
|
|
|
min () {
|
|
|
|
|
this.changeVal(this.currentValue);
|
|
|
|
|
},
|
|
|
|
|
max () {
|
|
|
|
|
this.changeVal(this.currentValue);
|
2016-10-13 23:11:23 +08:00
|
|
|
|
}
|
2016-09-09 14:29:19 +08:00
|
|
|
|
}
|
2016-12-25 22:49:42 +08:00
|
|
|
|
};
|
2016-11-09 15:14:13 +08:00
|
|
|
|
</script>
|