openResult.vue 810 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view>
  3. <ujp-navbar title="开通会员"></ujp-navbar>
  4. <view class="success">
  5. <u-icon name="chenggong" custom-prefix="custom-icon" size="180" color="#00B962"></u-icon>
  6. <view class="text">
  7. 开通成功
  8. </view>
  9. </view>
  10. <u-button class="to-charge" type="success">前往充电</u-button>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. page{
  25. background-color: #fff;
  26. }
  27. .success{
  28. padding-top: 45px;
  29. text-align: center;
  30. .text{
  31. margin-top: 20px;
  32. height: 27px;
  33. color: #101010;
  34. font-size: 20px;
  35. font-weight: 600;
  36. }
  37. }
  38. .to-charge{
  39. margin-top: 52px;
  40. width: 79.2%;
  41. height: 44px;
  42. line-height: 44px;
  43. border-radius: 50px;
  44. font-size: 18px;
  45. }
  46. </style>