optimize the inputNumber
fixed bug 1. when setting the precision, inputNumer cannot input '.' bug 2. when setting the precision, the cursor positoning bug
This commit is contained in:
parent
6daad53fdf
commit
5ece780d09
2 changed files with 26 additions and 4 deletions
|
@ -72,6 +72,9 @@
|
||||||
:formatter="value => `${value}%`"
|
:formatter="value => `${value}%`"
|
||||||
:parser="value => value.replace('%', '')"></InputNumber>
|
:parser="value => value.replace('%', '')"></InputNumber>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin-top: 10px">
|
||||||
|
<InputNumber v-model="value4" style="width: 200px" :precision='2' ></InputNumber>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
@ -81,6 +84,7 @@
|
||||||
value1: 1800000,
|
value1: 1800000,
|
||||||
value2: 55,
|
value2: 55,
|
||||||
value3: 100,
|
value3: 100,
|
||||||
|
value4 : null,
|
||||||
valueNull:null,
|
valueNull:null,
|
||||||
formatter: (value) => `$ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ','),
|
formatter: (value) => `$ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ','),
|
||||||
parser: (value) => value.replace(/\$\s?|(,*)/g, ''),
|
parser: (value) => value.replace(/\$\s?|(,*)/g, ''),
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
@blur="blur"
|
@blur="blur"
|
||||||
@keydown.stop="keyDown"
|
@keydown.stop="keyDown"
|
||||||
@input="change"
|
@input="change"
|
||||||
|
ref="precisionCursor"
|
||||||
@mouseup="preventDefault"
|
@mouseup="preventDefault"
|
||||||
@change="change"
|
@change="change"
|
||||||
:readonly="readonly || !editable"
|
:readonly="readonly || !editable"
|
||||||
|
@ -305,15 +306,24 @@
|
||||||
this.setValue(null);
|
this.setValue(null);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (event.type == 'input' && val.match(/^\-?\.?$|\.$/)) return; // prevent fire early if decimal. If no more input the change event will fire later
|
if (event.type == 'input' && val.match(/^\-?\.?$|\.$/g)) return; // prevent fire early if decimal. If no more input the change event will fire later
|
||||||
|
|
||||||
|
//#fixed when setting the precision val, input point cannot show problem
|
||||||
|
const precision = this.precision;
|
||||||
|
let cacheVal = this.currentValue;
|
||||||
|
if( precision ){
|
||||||
|
const valMatchPointArr = (val+'').match(/\./g);
|
||||||
|
if( valMatchPointArr && valMatchPointArr.length >= 2 ){
|
||||||
|
cacheVal = this.currentValue + '.';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
val = Number(val);
|
val = Number(val);
|
||||||
|
if (!isNaN(val) ) {
|
||||||
if (!isNaN(val)) {
|
|
||||||
this.currentValue = val;
|
this.currentValue = val;
|
||||||
this.setValue(val);
|
this.setValue(val);
|
||||||
} else {
|
} else {
|
||||||
event.target.value = this.currentValue;
|
event.target.value = cacheVal;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
changeVal (val) {
|
changeVal (val) {
|
||||||
|
@ -338,6 +348,14 @@
|
||||||
},
|
},
|
||||||
currentValue (val) {
|
currentValue (val) {
|
||||||
this.changeVal(val);
|
this.changeVal(val);
|
||||||
|
//optimization - Solve the problem of cursor positioning inaccuracy
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
if( this.precision ){
|
||||||
|
const currentValueLength = ( this.currentValue || 0 ).toString().length;
|
||||||
|
const precisionCursor = this.$refs.precisionCursor;
|
||||||
|
precisionCursor.selectionStart = precisionCursor.selectionEnd = currentValueLength;
|
||||||
|
}
|
||||||
|
});
|
||||||
},
|
},
|
||||||
min () {
|
min () {
|
||||||
this.changeVal(this.currentValue);
|
this.changeVal(this.currentValue);
|
||||||
|
|
Loading…
Add table
Reference in a new issue