|
@@ -7,7 +7,9 @@
|
7
|
7
|
<view class="content">
|
8
|
8
|
<view class="content-tip">请输入数字密钥。</view>
|
9
|
9
|
<view class="content-box">
|
10
|
|
- <input class="content-item" v-for="(i, index) in keyArr" :key="index" v-model="i.value"/>
|
|
10
|
+ <input class="content-item" type="number" :ref="`ref${index}`" maxlength="1"
|
|
11
|
+ @input="onInput" :data-index="index" v-for="(i, index) in keyArr"
|
|
12
|
+ :key="index" v-model="i.value" :focus="i.focusType"/>
|
11
|
13
|
</view>
|
12
|
14
|
</view>
|
13
|
15
|
<view class="bottom">
|
|
@@ -42,9 +44,27 @@ export default {
|
42
|
44
|
created(){
|
43
|
45
|
for(let i of this.keyArr){
|
44
|
46
|
i.value = null
|
|
47
|
+ i.focusType = false
|
45
|
48
|
}
|
|
49
|
+ this.keyArr[0].focusType = true
|
46
|
50
|
},
|
47
|
51
|
methods: {
|
|
52
|
+ onInput(event) {
|
|
53
|
+ const value = event.target.value;
|
|
54
|
+ const index = event.target.dataset.index;
|
|
55
|
+ if(value && index+1 < this.keyArr.length && !this.keyArr[index+1].value){
|
|
56
|
+ if(this.keyArr[index+1].focusType = true){
|
|
57
|
+ this.keyArr[index+1].focusType = false
|
|
58
|
+ setTimeout(_=>{
|
|
59
|
+ this.keyArr[index+1].focusType = true
|
|
60
|
+ this.$forceUpdate()
|
|
61
|
+ },200)
|
|
62
|
+ }else{
|
|
63
|
+ this.keyArr[index+1].focusType = true
|
|
64
|
+ this.$forceUpdate()
|
|
65
|
+ }
|
|
66
|
+ }
|
|
67
|
+ },
|
48
|
68
|
confirm(){
|
49
|
69
|
for(let i of this.keyArr){
|
50
|
70
|
if(!i.value){
|