success.vue 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <view>
  3. <image class="scc" src="../img/success.png"></image>
  4. <view class="resuil">提交成功</view>
  5. </view>
  6. </template>
  7. <script>
  8. // import uniNavBar from "@/components/uni-nav-bar/uni-nav-bar.vue"
  9. export default {
  10. data () {
  11. return {
  12. }
  13. },
  14. // components: {uniNavBar},
  15. onLoad: function (option){
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. page{
  23. text-align: center;
  24. background-color: #ffffff;
  25. }
  26. .scc{
  27. margin-top: 100rpx;
  28. width: 160rpx;
  29. height: 160rpx;
  30. }
  31. .resuil{
  32. margin-top: 20rpx;
  33. font-weight: 600;
  34. letter-spacing: 3rpx;
  35. font-size: 36rpx;
  36. }
  37. .btn{
  38. width: 280rpx;
  39. letter-spacing: 3rpx;
  40. height: 70rpx;
  41. font-weight: 600;
  42. line-height: 70rpx;
  43. border: 2px solid #3bb270;
  44. color: #3bb270;
  45. border-radius: 10rpx;
  46. position: absolute;
  47. bottom: 200rpx;
  48. left: 50%;
  49. margin-left: -130rpx;
  50. }
  51. </style>