applyEducationSuccess.vue 836 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!-- 退役军人职业教育码申请成功 -->
  2. <template>
  3. <view class="apply-success">
  4. <view class="apply-success-top">
  5. <image src="../../static/img/success-icon.png" mode=""></image>
  6. <view>简历投递成功,等待企业反馈</view>
  7. </view>
  8. <view class="apply-success-button">
  9. <u-button type="primary" class="btn">好的</u-button>
  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 lang="scss" scoped>
  24. .apply-success {
  25. &-top {
  26. text-align: center;
  27. margin: 168rpx auto 476rpx;
  28. image {
  29. width: 176rpx;
  30. height: 176rpx;
  31. }
  32. view {
  33. font-size: 32rpx;
  34. color: #000000;
  35. margin-top: 36rpx;
  36. }
  37. }
  38. &-button {
  39. width: 388rpx;
  40. height: 80rpx;
  41. margin: 0 auto;
  42. .btn {
  43. border-radius: 40rpx;
  44. }
  45. }
  46. }
  47. </style>