repairSuccess.vue 702 B

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