verification.vue 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view>
  3. <view class="phone-form">
  4. <view class="phone-form-row">
  5. <view class="phone-form-input">
  6. <u-field v-model="mobile" placeholder="请输入已绑定手机号" label-width="0"></u-field>
  7. </view>
  8. </view>
  9. <view class="phone-form-row">
  10. <view class="phone-form-input">
  11. <u-field v-model="mobile" maxlength="6" placeholder="请输入验证码" label-width="0"></u-field>
  12. </view>
  13. <view class="phone-form-code">
  14. <u-button shape="circle" size="mini">发送验证码</u-button>
  15. </view>
  16. </view>
  17. <view class="phone-button">
  18. <u-button type="primary" shape="circle">下一步</u-button>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style scoped lang="scss">
  34. .phone-form-row{
  35. position: relative;
  36. .phone-form-code{
  37. position: absolute;
  38. right: 0;
  39. top:10px;
  40. }
  41. }
  42. .phone-button{
  43. margin: 10px;
  44. }
  45. </style>