numberKeyModel.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="showModel">
  3. <view class="showModel__wrap">
  4. <view class="showModel__header">
  5. 数字密钥
  6. </view>
  7. <view class="content">
  8. <view class="content-tip">请输入数字密钥。</view>
  9. <view class="content-box">
  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"/>
  13. </view>
  14. </view>
  15. <view class="bottom">
  16. <button class="bottom-btn confirm-btn" @click="confirm">确定</button>
  17. <button class="bottom-btn" @click="cancel">取消</button>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import {
  24. get,
  25. post,
  26. SM
  27. } from "../../http/http.js";
  28. export default {
  29. data() {
  30. return {
  31. };
  32. },
  33. watch: {
  34. },
  35. props: {
  36. keyArr:{
  37. type:Array,
  38. default:[]
  39. }
  40. },
  41. created(){
  42. for(let i of this.keyArr){
  43. i.value = null
  44. i.focusType = false
  45. }
  46. this.keyArr[0].focusType = true
  47. },
  48. methods: {
  49. onInput(event) {
  50. const value = event.target.value;
  51. const index = event.target.dataset.index;
  52. if(value && index+1 < this.keyArr.length && !this.keyArr[index+1].value){
  53. if(this.keyArr[index+1].focusType = true){
  54. this.keyArr[index+1].focusType = false
  55. setTimeout(_=>{
  56. this.keyArr[index+1].focusType = true
  57. this.$forceUpdate()
  58. },200)
  59. }else{
  60. this.keyArr[index+1].focusType = true
  61. this.$forceUpdate()
  62. }
  63. }
  64. },
  65. confirm(){
  66. for(let i of this.keyArr){
  67. if(!i.value){
  68. uni.showToast({
  69. title: `数字密钥为${this.keyArr.length}位数`,
  70. duration: 1000,
  71. icon:'none'
  72. });
  73. return
  74. }
  75. }
  76. let arr = []
  77. for(let i of this.keyArr){
  78. arr.push(i.value)
  79. }
  80. post(`/dept/check/${arr.join('')}`).then((res) => {
  81. if (res.status == 200) {
  82. this.$emit('confirm',res.data)
  83. }else{
  84. uni.showToast({
  85. title: res.msg,
  86. duration: 1000,
  87. icon:'none'
  88. });
  89. }
  90. });
  91. },
  92. cancel(){
  93. this.$emit('cancel')
  94. },
  95. },
  96. };
  97. </script>
  98. <style lang="less" scoped>
  99. .showModel {
  100. position: fixed;
  101. left: 0;
  102. right: 0;
  103. top: 0;
  104. bottom: 0;
  105. background-color: rgba(0, 0, 0, 0.2);
  106. z-index: 99;
  107. .showModel__wrap {
  108. width: 90%;
  109. position: absolute;
  110. left: 50%;
  111. top: 50%;
  112. transform: translate(-50%, -50%);
  113. background-color: #fff;
  114. border-radius: 12rpx;
  115. .showModel__header {
  116. font-size: 36rpx;
  117. color: #000;
  118. font-weight: bold;
  119. height: 84rpx;
  120. display: flex;
  121. justify-content: center;
  122. align-items: center;
  123. }
  124. .content{
  125. background: #FAFBFD;
  126. border: 1px solid #E6E6E6;
  127. margin-bottom: 20rpx;
  128. .content-tip{
  129. text-align: center;
  130. padding: 50rpx 0 30rpx 0;
  131. font-size: 28rpx;
  132. }
  133. .content-box{
  134. display: flex;
  135. justify-content: space-around;
  136. margin-bottom: 20rpx;
  137. .content-item{
  138. width: 80rpx;
  139. height: 80rpx;
  140. border-radius: 10rpx;
  141. border: 1px solid #CCCCCC;
  142. color: #000;
  143. font-size: 32rpx;
  144. // margin: 0 20rpx;
  145. text-align: center;
  146. }
  147. }
  148. }
  149. .bottom{
  150. border-top: 1px solid #ccc;
  151. display: flex;
  152. uni-button{
  153. border-radius: 0 !important;
  154. background: #fff !important;
  155. }
  156. uni-button:after{
  157. border: none !important;
  158. }
  159. .bottom-btn{
  160. color: #A8A8A8;
  161. font-size: 30rpx;
  162. padding: 20rpx 0;
  163. width: 50%;
  164. display: flex;
  165. align-items: center;
  166. justify-content: center;
  167. }
  168. .confirm-btn{
  169. color: #5DAC6B;
  170. border-right: 1px solid #ccc;
  171. }
  172. }
  173. }
  174. }
  175. </style>