success.vue 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="content vflex acenter">
  3. <image src="static/success.png" mode="aspectFill"></image>
  4. <text>简历上传成功</text>
  5. <view class="btn" @click="toback">返回</view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. toback() {
  16. uni.navigateBack()
  17. }
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. .content {
  23. background: #FFFFFF;
  24. image {
  25. width: 104rpx;
  26. height: 104rpx;
  27. margin: 110rpx 0 48rpx;
  28. }
  29. text {
  30. font-size: 36rpx;
  31. font-family: PingFangSC, PingFang SC;
  32. font-weight: 500;
  33. color: #222222;
  34. }
  35. .btn {
  36. margin: 88rpx 0;
  37. width: 272rpx;
  38. height: 84rpx;
  39. border-radius: 42rpx;
  40. border: 2rpx solid #00B0B0;
  41. font-size: 32rpx;
  42. font-family: PingFangSC, PingFang SC;
  43. font-weight: 400;
  44. color: #00B0B0;
  45. line-height: 84rpx;
  46. text-align: center;
  47. }
  48. }
  49. </style>