paysuccess.vue 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view class="pages">
  3. <view class="icon-wrap u-flex u-row-center">
  4. <u-icon name="checkmark" color="#fff" size="80"></u-icon>
  5. </view>
  6. <view class="title">{{title}}</view>
  7. <view class="full-btn" @click="btnClick">完成</view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. fromPage:'',
  15. title:'付款成功'
  16. }
  17. },
  18. onShow() {
  19. },
  20. onLoad(page) {
  21. this.fromPage = page.fromPage;
  22. if(this.fromPage=='nocash'){
  23. this.title = '兑换成功'
  24. }
  25. },
  26. methods: {
  27. btnClick(){
  28. uni.reLaunch({url: '/pages/index/index'});
  29. }
  30. }
  31. }
  32. </script>
  33. <style>
  34. page{
  35. background-color: #F5F5F5;
  36. }
  37. </style>
  38. <style lang="scss" scoped>
  39. .pages{
  40. text-align: center;
  41. }
  42. .icon-wrap{
  43. width: 180rpx;
  44. height: 180rpx;
  45. margin: 120rpx auto 20rpx;
  46. padding: 20rpx;
  47. background-color: #00A447;
  48. border-radius: 50%;
  49. }
  50. .title{
  51. font-size: 32rpx;
  52. font-weight: 600;
  53. color: #333333;
  54. line-height: 40rpx;
  55. margin-bottom: 120rpx;
  56. }
  57. .full-btn{
  58. margin: 20rpx 10%;
  59. }
  60. </style>