evalueSuccess.vue 598 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }
  18. </script>
  19. <style>
  20. .imgBox{
  21. width: 520rpx;
  22. height: 520rpx;
  23. margin: 0 auto;
  24. margin-top: 262rpx;
  25. }
  26. .text{
  27. width:310rpx;
  28. height:50rpx;
  29. font-size:36rpx;
  30. font-family:PingFang SC;
  31. font-weight:400;
  32. color:rgba(36,36,36,1);
  33. margin-top: 47rpx;
  34. margin: 0 auto;
  35. }
  36. </style>