deviceCheckReport.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /* pages/deviceCheck/report/deviceCheckReport.wxss */
  2. page {
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. overflow: hidden;
  7. }
  8. .viewBody {
  9. width: 100%;
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. .baseInfoView {
  15. height: 260rpx;
  16. width: 100%;
  17. background: #efeff4;
  18. /* padding-top: 10rpx;
  19. padding-left: 10rpx;
  20. padding-right: 10rpx; */
  21. }
  22. .listContainer {
  23. width: 100%;
  24. flex-grow: 1;
  25. }
  26. .scroll-box {
  27. width: 100%;
  28. }
  29. .scroll-body {
  30. width: 100%;
  31. height: auto;
  32. display: flex;
  33. flex-direction: column;
  34. white-space: nowrap;
  35. }
  36. .report-btn {
  37. height: 80rpx;
  38. background-color: #FD7400;
  39. border-radius: 10px;
  40. display: flex;
  41. flex-direction: column;
  42. justify-content: center;
  43. margin-left: 20rpx;
  44. margin-right: 20rpx;
  45. margin-top: 20rpx;
  46. }
  47. .new-report-btn-text {
  48. text-align: center;
  49. color: whitesmoke;
  50. font-size: 1rem;
  51. }
  52. .index-list-item-container {
  53. width: 100%;
  54. height: 145rpx;
  55. margin: 0;
  56. padding: 0;
  57. position: relative;
  58. background: white;
  59. border-radius: 4px;
  60. margin-bottom: 5px;
  61. }
  62. .index-list-item-box {
  63. height: 100%;
  64. width: 100%;
  65. display: flex;
  66. flex-direction: row;
  67. margin-top: 5px;
  68. margin-left: 5px;
  69. }
  70. .index-list-item-info-box {
  71. width: 80%;
  72. display: flex;
  73. flex-direction: column;
  74. }
  75. .index-list-item-info-box .suggest-text {
  76. width: 100%;
  77. height: 60%;
  78. }
  79. .index-list-item-info-box .suggest-text text{
  80. font-size: 1rem;
  81. color: black;
  82. }
  83. .index-list-item-info-box .createInfo {
  84. width: 100%;
  85. height: 40%;
  86. display: flex;
  87. flex-direction: row;
  88. }
  89. .index-list-item-info-box .createInfo .createUser {
  90. width: 50%;
  91. display: flex;
  92. flex-direction: row;
  93. justify-content: flex-start;
  94. }
  95. .index-list-item-info-box .createInfo .createUser text{
  96. font-size: 0.8rem;
  97. color: #181818;
  98. }
  99. .index-list-item-info-box .createInfo .createTime {
  100. width: 49%;
  101. display: flex;
  102. flex-direction: row;
  103. justify-content: flex-start;
  104. }
  105. .index-list-item-info-box .createInfo .createTime text{
  106. font-size: 0.7rem;
  107. color: #426666;
  108. }
  109. .index-list-item-box-right {
  110. width: 19%;
  111. height: 100%;
  112. display: flex;
  113. flex-direction: row;
  114. justify-content: flex-end;
  115. }
  116. .index-list-item-box-right .imageBox {
  117. width: 20px;
  118. height: 100%;
  119. display: flex;
  120. margin-right: 20rpx;
  121. flex-direction: column;
  122. justify-content: center;
  123. }
  124. .index-list-item-box-right .imageBox image {
  125. width: 20px;
  126. height: 20px;
  127. }
  128. .index-list-item-container .bottombar {
  129. width: 100%;
  130. height: 30rpx;
  131. display: flex;
  132. flex-direction: row;
  133. align-items: center;
  134. margin-bottom: 2px;
  135. }
  136. .index-list-item-container .bottombar .starBox {
  137. width: 80%;
  138. height: 30rpx;
  139. margin-left: 15rpx;
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: center;
  143. }
  144. .index-list-item-container .bottombar .starBox text {
  145. color: darkgray;
  146. font-size: 24rpx;
  147. }