浏览代码

动态数字密钥开发

maotao 4 月之前
父节点
当前提交
0ee0032797

+ 21 - 1
components/numberKeyModel/numberKeyModel.vue

@@ -7,7 +7,9 @@
7
 			<view class="content">
7
 			<view class="content">
8
 				<view class="content-tip">请输入数字密钥。</view>
8
 				<view class="content-tip">请输入数字密钥。</view>
9
 				<view class="content-box">
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
 				</view>
13
 				</view>
12
 			</view>
14
 			</view>
13
 			<view class="bottom">
15
 			<view class="bottom">
@@ -42,9 +44,27 @@ export default {
42
 	created(){
44
 	created(){
43
 		for(let i of this.keyArr){
45
 		for(let i of this.keyArr){
44
 			i.value = null
46
 			i.value = null
47
+			i.focusType = false
45
 		}
48
 		}
49
+		this.keyArr[0].focusType = true
46
 	},
50
 	},
47
   methods: {
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
     confirm(){
68
     confirm(){
49
 			for(let i of this.keyArr){
69
 			for(let i of this.keyArr){
50
 				if(!i.value){
70
 				if(!i.value){

+ 1 - 1
pages/checkAfterScanning/checkAfterScanning.vue

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

+ 2 - 2
pages/receiptpage/receiptpage.vue

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