submit.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="container">
  3. <image class="img" src="../../static/img/img34.png" mode="scaleToFill"></image>
  4. <view class="text">提交成功</view>
  5. <view class="btm">
  6. <view class="btn">返回首页</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data () {
  13. return {}
  14. },
  15. methods: {}
  16. }
  17. </script>
  18. <style lang="scss">
  19. .container {
  20. background-color: #fff;
  21. width: 750rpx;
  22. height: 1334rpx;
  23. .img {
  24. width: 300rpx;
  25. height: 250rpx;
  26. margin-top: 200rpx;
  27. margin-left: 210rpx;
  28. }
  29. .text {
  30. font-size: 40rpx;
  31. font-family: PingFang SC;
  32. font-weight: 500;
  33. color: #333333;
  34. line-height: 40rpx;
  35. padding-left: 300rpx;
  36. }
  37. .btm {
  38. width: 350rpx;
  39. height: 80rpx;
  40. background: #6EAB4E;
  41. border-radius: 40rpx;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. margin-left: 200rpx;
  46. margin-top: 90rpx;
  47. .btn {
  48. font-size: 32rpx;
  49. font-family: PingFang SC;
  50. font-weight: 500;
  51. color: #FFFFFF;
  52. }
  53. }
  54. }
  55. </style>