You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
688 B

  1. <template>
  2. <view class="registerCode">
  3. <view class="registerImg">
  4. <image src="../../static/images/scuess.png" mode=""></image>
  5. </view>
  6. <view class="registerBtn">
  7. 提交成功
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. .registerCode{
  21. .registerImg{
  22. width: 300rpx;
  23. height: 300rpx;
  24. margin: 130rpx auto;
  25. image{
  26. width: 100%;
  27. height: 100%;
  28. }
  29. }
  30. .registerBtn{
  31. width: 80%;
  32. height: 80rpx;
  33. background: #3384fd;
  34. color: #FFFFFF;
  35. border-radius: 10rpx;
  36. line-height: 80rpx;
  37. text-align: center;
  38. font-size: 30rpx;
  39. margin: 50rpx auto;
  40. }
  41. }
  42. </style>