submit-success.vue 944 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view>
  3. <u-navbar :is-back="false" title="提交成功"></u-navbar>
  4. <view class="content">
  5. <image src="@/static/icon/success.png" mode=""></image>
  6. <text class="tips">资料提交成功,请耐心等待审核</text>
  7. <view class="cu-btn round btn" @click="$jump('/pages/login/account-login')">
  8. 确认
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style>
  24. page{
  25. background-color: #FFFFFF;
  26. }
  27. </style>
  28. <style lang="scss" scoped>
  29. .content{
  30. margin-top: 140rpx;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. flex-direction: column;
  35. image{
  36. width: 200rpx;
  37. height: 200rpx;
  38. }
  39. .tips{
  40. margin-top: 50rpx;
  41. color: #313131;
  42. font-size: 28rpx;
  43. }
  44. .btn{
  45. margin-top: 150rpx;
  46. background-color: #D18C42;
  47. color: #FFFFFF;
  48. width: 74%;
  49. padding: 46rpx;
  50. }
  51. }
  52. </style>