fkcg.vue 878 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="ayuu">
  3. <view class="fzddrew" style="margin-top: 320rpx;">
  4. <image src="/static/user/fk1.png" style="width: 320rpx;height: 300rpx;margin-bottom: 40rpx;" mode=""></image>
  5. <view class="fktxtr">
  6. <text>恭喜您</text>
  7. </view>
  8. <view class="fktxtr">
  9. <text>付费成功</text>
  10. </view>
  11. </view>
  12. <view class="fzddrew fknbee" >
  13. <view class="fzddrew fkdibr" @click="toLook">
  14. <text>立即查看</text>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <style>
  20. page {
  21. background: #FAFAFA;
  22. }
  23. </style>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. id:0
  29. }
  30. },
  31. onLoad(e) {
  32. this.id = e.id || 0
  33. },
  34. methods:{
  35. toLook(){
  36. uni.navigateTo({
  37. url:'/pages/user/cp-fa?id='+this.id
  38. })
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss" scoped>
  44. </style>