Parcourir la source

动态数字密钥开发

maotao il y a 4 mois
Parent
commit
0ee0032797

+ 21 - 1
components/numberKeyModel/numberKeyModel.vue

@@ -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){

+ 1 - 1
pages/checkAfterScanning/checkAfterScanning.vue

@@ -26,7 +26,7 @@
26 26
     </view>
27 27
 		<view class="foot_btn_spe" v-if="enterDynamicDigitalKey==0">
28 28
 		  <view class="btn1" @click="Scanning_complete('scan')">核对完成</view>
29
-		  <view class="btn3" @click="goBack">取消</view>
29
+		  <view class="btn3" @click="goBack">返回</view>
30 30
 		</view>
31 31
 		<view class="foot_btn_spe" v-if="enterDynamicDigitalKey==1">
32 32
 			<view class="btn1" @click="Scanning_complete('scan')">扫一扫核对</view>

+ 2 - 2
pages/receiptpage/receiptpage.vue

@@ -3103,6 +3103,7 @@
3103 3103
     .more_picker {
3104 3104
       position: absolute;
3105 3105
       right: 0;
3106
+			top: 0;
3106 3107
       height: 100%;
3107 3108
       opacity: 0;
3108 3109
       z-index: 9999;
@@ -3125,11 +3126,10 @@
3125 3126
 				align-items: center;
3126 3127
 				justify-content: center;
3127 3128
 				.left-title{
3128
-					font-size: 30rpx;
3129
+					font-size: 34rpx;
3129 3130
 				}
3130 3131
 				.left-icon{
3131 3132
 					font-size: 34rpx;
3132
-					margin-right: 10rpx;
3133 3133
 					color: #07863c;
3134 3134
 				}
3135 3135
 			}