7fa943eb
梁灏
init
|
1
2
3
4
5
|
<template>
<div :class="wrapClasses">
<div :class="handlerClasses">
<a
@click="up"
|
5d2d2d6f
梁灏
fixed #1654
|
6
|
@mousedown="preventDefault"
|
7fa943eb
梁灏
init
|
7
|
:class="upClasses">
|
95436eeb
梁灏
add InputNumber UI
|
8
|
<span :class="innerUpClasses" @click="preventDefault"></span>
|
7fa943eb
梁灏
init
|
9
10
11
|
</a>
<a
@click="down"
|
5d2d2d6f
梁灏
fixed #1654
|
12
|
@mousedown="preventDefault"
|
7fa943eb
梁灏
init
|
13
|
:class="downClasses">
|
95436eeb
梁灏
add InputNumber UI
|
14
|
<span :class="innerDownClasses" @click="preventDefault"></span>
|
7fa943eb
梁灏
init
|
15
16
17
18
|
</a>
</div>
<div :class="inputWrapClasses">
<input
|
acb79ba3
梁灏
fixed #433
|
19
|
:id="elementId"
|
7fa943eb
梁灏
init
|
20
21
|
:class="inputClasses"
:disabled="disabled"
|
c7a67856
子凡
fix
|
22
|
autocomplete="off"
|
c17c5ad6
Sergio Crisostomo
normalize autocom...
|
23
|
spellcheck="false"
|
f15c216a
丁强
Input 组件增加autofoc...
|
24
|
:autofocus="autofocus"
|
7fa943eb
梁灏
init
|
25
26
27
|
@focus="focus"
@blur="blur"
@keydown.stop="keyDown"
|
c82e714c
Sergio Crisostomo
call change on in...
|
28
|
@input="change"
|
7fa943eb
梁灏
init
|
29
|
@change="change"
|
7309b434
梁灏
InputNumber add `...
|
30
|
:readonly="readonly || !editable"
|
7959adf7
梁灏
fixed #862
|
31
|
:name="name"
|
7a05b6e5
梁灏
fixed #1810
|
32
|
:value="precisionValue">
|
7fa943eb
梁灏
init
|
33
34
35
36
37
|
</div>
</div>
</template>
<script>
import { oneOf } from '../../utils/assist';
|
cd78c9c4
梁灏
some comps suppor...
|
38
|
import Emitter from '../../mixins/emitter';
|
7fa943eb
梁灏
init
|
39
40
|
const prefixCls = 'ivu-input-number';
|
95436eeb
梁灏
add InputNumber UI
|
41
|
const iconPrefixCls = 'ivu-icon';
|
7fa943eb
梁灏
init
|
42
|
|
7fa943eb
梁灏
init
|
43
|
function addNum (num1, num2) {
|
17e1fcf1
梁灏
init DatePicker
|
44
|
let sq1, sq2, m;
|
7fa943eb
梁灏
init
|
45
|
try {
|
b0893113
jingsam
add eslint
|
46
|
sq1 = num1.toString().split('.')[1].length;
|
7fa943eb
梁灏
init
|
47
48
49
50
51
|
}
catch (e) {
sq1 = 0;
}
try {
|
b0893113
jingsam
add eslint
|
52
|
sq2 = num2.toString().split('.')[1].length;
|
7fa943eb
梁灏
init
|
53
54
55
56
57
58
59
60
61
62
63
|
}
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));
|
075f6215
leonisme
Fix a bug in inpu...
|
64
|
return (Math.round(num1 * m) + Math.round(num2 * m)) / m;
|
7fa943eb
梁灏
init
|
65
66
67
|
}
export default {
|
34ee7b4a
梁灏
support Tree & ad...
|
68
|
name: 'InputNumber',
|
cd78c9c4
梁灏
some comps suppor...
|
69
|
mixins: [ Emitter ],
|
7fa943eb
梁灏
init
|
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
props: {
max: {
type: Number,
default: Infinity
},
min: {
type: Number,
default: -Infinity
},
step: {
type: Number,
default: 1
},
value: {
type: Number,
default: 1
},
size: {
validator (value) {
|
f00a037c
梁灏
some Components's...
|
89
|
return oneOf(value, ['small', 'large', 'default']);
|
7fa943eb
梁灏
init
|
90
91
92
93
94
|
}
},
disabled: {
type: Boolean,
default: false
|
f15c216a
丁强
Input 组件增加autofoc...
|
95
96
|
},
autofocus: {
|
8d3a02a5
丁强
修改input组件 autofoc...
|
97
98
|
type: Boolean,
default: false
|
7959adf7
梁灏
fixed #862
|
99
|
},
|
cb486838
Sergio Crisostomo
Add readonly prop...
|
100
101
102
103
|
readonly: {
type: Boolean,
default: false
},
|
7309b434
梁灏
InputNumber add `...
|
104
105
106
107
|
editable: {
type: Boolean,
default: true
},
|
7959adf7
梁灏
fixed #862
|
108
109
|
name: {
type: String
|
7a05b6e5
梁灏
fixed #1810
|
110
111
112
|
},
precision: {
type: Number
|
acb79ba3
梁灏
fixed #433
|
113
114
115
|
},
elementId: {
type: String
|
7fa943eb
梁灏
init
|
116
117
118
119
120
121
|
}
},
data () {
return {
focused: false,
upDisabled: false,
|
c97c42ab
梁灏
support InputNumber
|
122
123
|
downDisabled: false,
currentValue: this.value
|
b0893113
jingsam
add eslint
|
124
|
};
|
7fa943eb
梁灏
init
|
125
126
127
128
129
130
131
132
133
134
|
},
computed: {
wrapClasses () {
return [
`${prefixCls}`,
{
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-disabled`]: this.disabled,
[`${prefixCls}-focused`]: this.focused
}
|
b0893113
jingsam
add eslint
|
135
|
];
|
7fa943eb
梁灏
init
|
136
137
138
139
140
141
142
143
144
145
146
|
},
handlerClasses () {
return `${prefixCls}-handler-wrap`;
},
upClasses () {
return [
`${prefixCls}-handler`,
`${prefixCls}-handler-up`,
{
[`${prefixCls}-handler-up-disabled`]: this.upDisabled
}
|
b0893113
jingsam
add eslint
|
147
|
];
|
7fa943eb
梁灏
init
|
148
149
|
},
innerUpClasses () {
|
95436eeb
梁灏
add InputNumber UI
|
150
|
return `${prefixCls}-handler-up-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-up`;
|
7fa943eb
梁灏
init
|
151
152
153
154
155
156
157
158
|
},
downClasses () {
return [
`${prefixCls}-handler`,
`${prefixCls}-handler-down`,
{
[`${prefixCls}-handler-down-disabled`]: this.downDisabled
}
|
b0893113
jingsam
add eslint
|
159
|
];
|
7fa943eb
梁灏
init
|
160
161
|
},
innerDownClasses () {
|
95436eeb
梁灏
add InputNumber UI
|
162
|
return `${prefixCls}-handler-down-inner ${iconPrefixCls} ${iconPrefixCls}-ios-arrow-down`;
|
7fa943eb
梁灏
init
|
163
164
165
|
},
inputWrapClasses () {
return `${prefixCls}-input-wrap`;
|
95436eeb
梁灏
add InputNumber UI
|
166
167
168
|
},
inputClasses () {
return `${prefixCls}-input`;
|
7a05b6e5
梁灏
fixed #1810
|
169
170
171
|
},
precisionValue () {
// can not display 1.0
|
cb2678c4
梁灏
fix InputNumber b...
|
172
|
return this.precision ? this.currentValue.toFixed(this.precision) : this.currentValue;
|
7fa943eb
梁灏
init
|
173
174
175
176
177
178
|
}
},
methods: {
preventDefault (e) {
e.preventDefault();
},
|
1ff55186
梁灏
optimize InputNum...
|
179
180
181
|
up (e) {
const targetVal = Number(e.target.value);
if (this.upDisabled && isNaN(targetVal)) {
|
7fa943eb
梁灏
init
|
182
183
|
return false;
}
|
1ff55186
梁灏
optimize InputNum...
|
184
|
this.changeStep('up', e);
|
7fa943eb
梁灏
init
|
185
|
},
|
1ff55186
梁灏
optimize InputNum...
|
186
187
188
|
down (e) {
const targetVal = Number(e.target.value);
if (this.downDisabled && isNaN(targetVal)) {
|
7fa943eb
梁灏
init
|
189
190
|
return false;
}
|
1ff55186
梁灏
optimize InputNum...
|
191
|
this.changeStep('down', e);
|
7fa943eb
梁灏
init
|
192
|
},
|
1ff55186
梁灏
optimize InputNum...
|
193
|
changeStep (type, e) {
|
cb486838
Sergio Crisostomo
Add readonly prop...
|
194
|
if (this.disabled || this.readonly) {
|
7fa943eb
梁灏
init
|
195
196
197
|
return false;
}
|
1ff55186
梁灏
optimize InputNum...
|
198
|
const targetVal = Number(e.target.value);
|
c97c42ab
梁灏
support InputNumber
|
199
|
let val = Number(this.currentValue);
|
7fa943eb
梁灏
init
|
200
201
202
203
204
|
const step = Number(this.step);
if (isNaN(val)) {
return false;
}
|
1ff55186
梁灏
optimize InputNum...
|
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
// 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') {
|
7fa943eb
梁灏
init
|
223
|
val = addNum(val, step);
|
1ff55186
梁灏
optimize InputNum...
|
224
|
} else if (type === 'down') {
|
7fa943eb
梁灏
init
|
225
226
227
228
229
|
val = addNum(val, -step);
}
this.setValue(val);
},
setValue (val) {
|
cb2678c4
梁灏
fix InputNumber b...
|
230
|
// 如果 step 是小数,且没有设置 precision,是有问题的
|
815f8354
Sergio Crisostomo
Check if isNaN so...
|
231
|
if (!isNaN(this.precision)) val = Number(Number(val).toFixed(this.precision));
|
cb2678c4
梁灏
fix InputNumber b...
|
232
|
|
0b94936a
梁灏
fixed #28
|
233
|
this.$nextTick(() => {
|
c97c42ab
梁灏
support InputNumber
|
234
235
|
this.currentValue = val;
this.$emit('input', val);
|
4a260ed5
梁灏
update InputNumber
|
236
|
this.$emit('on-change', val);
|
cd78c9c4
梁灏
some comps suppor...
|
237
|
this.dispatch('FormItem', 'on-form-change', val);
|
0b94936a
梁灏
fixed #28
|
238
|
});
|
7fa943eb
梁灏
init
|
239
240
241
242
243
244
245
246
247
248
|
},
focus () {
this.focused = true;
},
blur () {
this.focused = false;
},
keyDown (e) {
if (e.keyCode === 38) {
e.preventDefault();
|
1ff55186
梁灏
optimize InputNum...
|
249
|
this.up(e);
|
7fa943eb
梁灏
init
|
250
251
|
} else if (e.keyCode === 40) {
e.preventDefault();
|
1ff55186
梁灏
optimize InputNum...
|
252
|
this.down(e);
|
7fa943eb
梁灏
init
|
253
254
255
256
257
|
}
},
change (event) {
let val = event.target.value.trim();
|
8115f0b8
Sergio Crisostomo
fix regex and mak...
|
258
|
if (event.type == 'input' && val.match(/^\-?\.?$|\.$/)) return; // prevent fire early if decimal. If no more input the change event will fire later
|
c82e714c
Sergio Crisostomo
call change on in...
|
259
260
261
|
if (event.type == 'change' && Number(val) === this.currentValue) return; // already fired change for input event
const {min, max} = this;
|
8115f0b8
Sergio Crisostomo
fix regex and mak...
|
262
|
const isEmptyString = val.length === 0;
|
c82e714c
Sergio Crisostomo
call change on in...
|
263
|
val = Number(val);
|
8115f0b8
Sergio Crisostomo
fix regex and mak...
|
264
|
if (!isNaN(val) && !isEmptyString) {
|
c97c42ab
梁灏
support InputNumber
|
265
|
this.currentValue = val;
|
0b94936a
梁灏
fixed #28
|
266
|
|
a892ba6a
Sergio Crisostomo
prevent firing ch...
|
267
|
if (event.type == 'input' && val < min) return; // prevent fire early in case user is typing a bigger number. Change will handle this otherwise.
|
7fa943eb
梁灏
init
|
268
269
270
271
272
273
274
275
|
if (val > max) {
this.setValue(max);
} else if (val < min) {
this.setValue(min);
} else {
this.setValue(val);
}
} else {
|
c97c42ab
梁灏
support InputNumber
|
276
|
event.target.value = this.currentValue;
|
7fa943eb
梁灏
init
|
277
|
}
|
0b94936a
梁灏
fixed #28
|
278
279
|
},
changeVal (val) {
|
c82e714c
Sergio Crisostomo
call change on in...
|
280
281
|
val = Number(val);
if (!isNaN(val)) {
|
7fa943eb
梁灏
init
|
282
|
const step = this.step;
|
0b94936a
梁灏
fixed #28
|
283
284
285
|
this.upDisabled = val + step > this.max;
this.downDisabled = val - step < this.min;
|
7fa943eb
梁灏
init
|
286
287
288
289
290
|
} else {
this.upDisabled = true;
this.downDisabled = true;
}
}
|
0b94936a
梁灏
fixed #28
|
291
|
},
|
c97c42ab
梁灏
support InputNumber
|
292
293
|
mounted () {
this.changeVal(this.currentValue);
|
0b94936a
梁灏
fixed #28
|
294
295
296
|
},
watch: {
value (val) {
|
c97c42ab
梁灏
support InputNumber
|
297
298
299
|
this.currentValue = val;
},
currentValue (val) {
|
0b94936a
梁灏
fixed #28
|
300
|
this.changeVal(val);
|
fa66bfb1
Rijn
add watchers for ...
|
301
302
303
304
305
306
|
},
min () {
this.changeVal(this.currentValue);
},
max () {
this.changeVal(this.currentValue);
|
0b94936a
梁灏
fixed #28
|
307
|
}
|
7fa943eb
梁灏
init
|
308
|
}
|
b0893113
jingsam
add eslint
|
309
|
};
|
c7a67856
子凡
fix
|
310
|
</script>
|