success.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <template>
  2. <view class="container">
  3. <image class="img" src="/static/image/img_admitsuccess.png"></image>
  4. <view class="title">定级材料提交成功!</view>
  5. <view class="txt">预计1-2个工作日完成审核,请耐心等待</view>
  6. <view class="return" @click="goBack">返回</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. watch: {
  16. },
  17. onLoad() {},
  18. methods: {
  19. goBack() {
  20. uni.navigateBack()
  21. },
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .container {
  27. min-height: 100vh;
  28. background: #ffffff;
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. text-align: center;
  33. padding-top: 204rpx;
  34. .img {
  35. width: 248rpx;
  36. height: 248rpx;
  37. }
  38. .title {
  39. font-weight: 500;
  40. font-size: 32rpx;
  41. color: #333333;
  42. margin-top: 48rpx;
  43. }
  44. .txt {
  45. margin-top: 16rpx;
  46. font-size: 24rpx;
  47. color: #999999;
  48. line-height: 36rpx;
  49. }
  50. .return {
  51. margin-top: 96rpx;
  52. width: 320rpx;
  53. height: 80rpx;
  54. line-height: 80rpx;
  55. background: #388BFF;
  56. border-radius: 56rpx 56rpx 56rpx 56rpx;
  57. border: 2rpx solid #388BFF;
  58. font-size: 28rpx;
  59. color: #FFFFFF;
  60. }
  61. }
  62. </style>