applyEducationSuccess.vue 974 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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" @click="jumpPage('/pages/index/index')">好的</u-button>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. /**
  18. * 跳转到指定页面
  19. */
  20. jumpPage(url) {
  21. uni.switchTab({
  22. url: url
  23. })
  24. }
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .apply-success {
  33. &-top {
  34. text-align: center;
  35. margin: 168rpx auto 476rpx;
  36. image {
  37. width: 176rpx;
  38. height: 176rpx;
  39. }
  40. view {
  41. font-size: 32rpx;
  42. color: #000000;
  43. margin-top: 36rpx;
  44. }
  45. }
  46. &-button {
  47. width: 388rpx;
  48. height: 80rpx;
  49. margin: 0 auto;
  50. .btn {
  51. border-radius: 40rpx;
  52. }
  53. }
  54. }
  55. </style>