paymentResult.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view>
  3. <u-navbar title="缴费结果" back-icon-name="close" back-icon-size="30"></u-navbar>
  4. <view class="success">
  5. <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
  6. <view class="title" >缴费成功</view>
  7. <view class="price">
  8. 10.00元
  9. </view>
  10. </view>
  11. <!-- <u-button>抬杆离场</u-button> -->
  12. <view class="service">
  13. 联系停车场客服
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. page{
  29. background-color: #fff;
  30. }
  31. .success {
  32. text-align: center;
  33. padding: 50px 0;
  34. .title {
  35. font-size: 20px;
  36. margin-top: 20px;
  37. }
  38. .price{
  39. font-size: 36px;
  40. margin-top: 20px;
  41. }
  42. }
  43. .u-btn{
  44. width: 79.2%;
  45. background-color: #0051db;
  46. border-radius: 12px;
  47. color: #fff;
  48. margin-top: 20px;
  49. }
  50. .service{
  51. color: rgba(0, 90, 217, 100);
  52. font-size: 16px;
  53. text-align: center;
  54. position: fixed;
  55. bottom: 0px;
  56. left: 0;
  57. right: 0;
  58. height: 40px;
  59. background-color: #fff;
  60. }
  61. </style>