enter-code.vue 913 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!-- 输入验证码 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="title-row">
  5. <view>输入验证码</view>
  6. <view>验证码已发送至1865393352</view>
  7. </view>
  8. <view class="code-box">
  9. <u-code-input v-model="value2" :maxlength="4" hairline="true" borderColor="#9D9D9D" mode="line"></u-code-input>
  10. </view>
  11. <view class="input-box">
  12. <!-- <text v-for="(item, index) in '123456'" :key="index"
  13. :class="params.payPassword.length - 1 >= index ? 'active' : ''"></text>
  14. <input type="number" maxlength="6" :value="params.payPassword" @input="inputChange($event, 'payPassword')"
  15. data-key="password" /> -->
  16. </view>
  17. <view class="msg">59秒后重新获取验证码</view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style scoped lang="scss">
  31. @import "./enter-code.css";
  32. </style>