evalueSuccess.vue 825 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="">
  3. <view class="imgBox">
  4. <image src="../../static/null_image_success@2x.png" style="width: 100%;height: 100%;"></image>
  5. </view>
  6. <view class="text">
  7. 恭喜您~ 评价完成~
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default{
  13. data(){
  14. return{
  15. }
  16. },
  17. onUnload() {
  18. if(uni.getStorageSync('rateType')==1){
  19. uni.navigateTo({
  20. url: '/pages/onlineRpair/index',
  21. })
  22. }else{
  23. uni.navigateTo({
  24. url: '/pages/complain/index',
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style>
  31. .imgBox{
  32. width: 520rpx;
  33. height: 520rpx;
  34. margin: 0 auto;
  35. margin-top: 262rpx;
  36. }
  37. .text{
  38. width:310rpx;
  39. height:50rpx;
  40. font-size:36rpx;
  41. font-family:PingFang SC;
  42. font-weight:400;
  43. color:rgba(36,36,36,1);
  44. margin-top: 47rpx;
  45. margin: 0 auto;
  46. }
  47. </style>