cp-cg.vue 911 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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" style="background:#95bf7f;" @click="lookResult">
  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. list:''
  30. }
  31. },
  32. onLoad(e) {
  33. this.id = e.id
  34. },
  35. methods:{
  36. lookResult(){
  37. uni.navigateTo({
  38. url:'/pages/user/cp-jg?id='+this.id
  39. })
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. </style>