123456789101112131415161718192021222324252627 |
- <!-- 输入验证码 -->
- <template>
- <view class="wrap">
- <view class="title-row">
- <view>输入验证码</view>
- <view>验证码已发送至1865393352</view>
- </view>
- <view class="msg">59秒后重新获取验证码</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- @import "./enter-code.css";
- </style>
|