bind_success.vue 741 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- <template>
  2. <div class="suc_box">
  3. <div class="suc_cont">
  4. <img src="@/static/icon_tjcg@2x.png" alt="" class="img">
  5. <span>您的绑定信息已提交成功</span>
  6. </div>
  7. <div class="suc_btn">
  8. 点击跳转
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. export default{
  14. data(){
  15. return {
  16. }
  17. }
  18. }
  19. </script>
  20. <style lang="scss">
  21. .suc_box{
  22. .suc_cont{
  23. height: 60vh;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. flex-direction: column;
  28. .img{
  29. width: 139upx;
  30. height: 168upx;
  31. margin-bottom: 24upx;
  32. }
  33. p{
  34. font-size: 32upx;
  35. color: #222222;
  36. }
  37. }
  38. .suc_btn{
  39. color: #676767;
  40. text-align: center;
  41. margin-top: 300upx;
  42. font-size: 28upx;
  43. }
  44. }
  45. </style>
  46. -->