enter-code.vue 440 B

123456789101112131415161718192021222324252627
  1. <!-- 输入验证码 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="title-row">
  5. <view>输入验证码</view>
  6. <view>验证码已发送至1865393352</view>
  7. </view>
  8. <view class="msg">59秒后重新获取验证码</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. @import "./enter-code.css";
  23. </style>