addTaskStatus.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view>
  3. <u-navbar title="提交结果" title-color="#101010"></u-navbar>
  4. <view class="data">
  5. <image class="img" src="@/assets/img/success.png" mode=""></image>
  6. <view class="t1">上报成功
  7. </view>
  8. <view class="t2">本次故障问题已提交成功</view>
  9. </view>
  10. <view class="floating-button" >
  11. <view class="button button2" @click="goBack()" >
  12. 返回
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. };
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .body {
  27. padding: 32rpx;
  28. background-color: rgba(242, 244, 246, 1);
  29. }
  30. .data{
  31. text-align: center;
  32. padding-top:120rpx;
  33. .img{
  34. width: 200rpx;
  35. height: 200rpx;
  36. }
  37. .t1{
  38. color: #101010;
  39. font-weight: bold;
  40. margin-top: 40rpx;
  41. font-size: 40rpx;
  42. }
  43. .t2{
  44. margin-top: 8rpx;
  45. color: rgba(119,119,119,1);
  46. font-size: 24rpx;
  47. }
  48. }
  49. .floating-button {
  50. padding-top:120rpx;
  51. text-align: center;
  52. .button {
  53. margin: 0 auto;
  54. border-radius: 50px;
  55. height: 80rpx;
  56. width: 80%;
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. padding: 12rpx;
  61. background-color:#1677FF ;
  62. color: rgba(255, 255, 255, 1);
  63. font-size: 36rpx;
  64. }
  65. .button2{
  66. background-color: #1677FF
  67. }
  68. }
  69. </style>