work-order.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. @import "@/style/common.scss";
  2. $search-height: 64rpx;
  3. $statistics-height: 200rpx;
  4. $full-btn-height: 64rpx;
  5. $margin10: 20rpx;
  6. .page-top{
  7. // z-index: 2;
  8. // min-height: calc($header-height + $header-top-height + $search-height + $statistics-height + $full-btn-height + $margin10 * 2);
  9. // position: fixed;
  10. // top: 0;
  11. // left: 0;
  12. // padding: 0 $margin10;
  13. width: 100%;
  14. box-sizing: border-box;
  15. background-color: #FFFFFF;
  16. }
  17. .content-search{
  18. // position: absolute;
  19. // top: 0;
  20. // left: 0;
  21. width: 100%;
  22. height: $search-height;
  23. // z-index: 22;
  24. }
  25. .content-statistics{
  26. width: 100%;
  27. height: $statistics-height;
  28. background-image: url('/static/common/gongdan-back.png');
  29. background-size: contain;
  30. background-repeat: no-repeat;
  31. border-radius: 8rpx;
  32. margin-top: calc($margin10);
  33. // margin-top: calc($search-height + $margin10);
  34. }
  35. .statistics-item{
  36. color: #FFFFFF;
  37. text-shadow: 0px 1px 0px rgba(0,0,0,0.5);
  38. }
  39. .statistics-count{
  40. font-size: 56rpx;
  41. }
  42. .statistics-title{
  43. font-weight: bold;
  44. font-size: 28rpx;
  45. }
  46. .full-btn{
  47. width: 100%;
  48. height: $full-btn-height;
  49. line-height: $full-btn-height;
  50. margin-top: $margin10;
  51. box-shadow: 0px 2px 4px 0px rgba(45,116,169,0.5);
  52. border-radius: 4px;
  53. font-size: 14px;
  54. font-weight: 500;
  55. .uni-icons {
  56. font-size: 14px !important;
  57. color: #FFFFFF !important;
  58. }
  59. }
  60. .paging-list {
  61. box-sizing: border-box;
  62. padding-top: 20rpx;
  63. // margin-top: calc($header-height + $header-top-height + $search-height + $statistics-height + $full-btn-height + $margin10 * 2);
  64. // height: calc(100% - $header-height - $header-top-height - $search-height - $statistics-height - $full-btn-height - $margin10 * 2);
  65. // z-index: 1;
  66. }
  67. .item {
  68. width: 100%;
  69. min-height: 314px;
  70. background: #FFFFFF;
  71. border-radius: 6px;
  72. margin-top: 10px;
  73. }
  74. .item-module {
  75. width: 100%;
  76. height: 42px;
  77. box-sizing: border-box;
  78. padding: 10px 10px 10px 10px;
  79. border-radius: 6px 6px 0px 0px;
  80. background: linear-gradient(270deg, #FFFFFF 0%, #8EBEFF 100%);
  81. &.tobeFilled {
  82. background: linear-gradient(270deg, #FFFFFF 0%, #FFF0F0 100%);
  83. }
  84. &.finished{
  85. background: linear-gradient( 270deg, #FFFFFF 0%, #9FECC3 100%);
  86. }
  87. &.ignore{
  88. background: linear-gradient(270deg, #FFFFFF 0%, #fdf6ec 100%);
  89. }
  90. .module-name{
  91. font-size: 32rpx;
  92. }
  93. .module-status {
  94. // min-width: 60px;
  95. min-width: fit-content;
  96. height: 23px;
  97. padding: 0 5px;
  98. border-radius: 3px;
  99. border: 1px solid #FFFFFF;
  100. text-align: center;
  101. font-weight: 500;
  102. font-size: 30rpx;
  103. line-height: 23px;
  104. background: #EBF5FF;
  105. color: #004098;
  106. &.pending{
  107. color: #E7000D;
  108. background: #FFEBEB;
  109. }
  110. &.finished{
  111. color: #00C888;
  112. background: #EBFFEC;
  113. }
  114. &.turn{
  115. background: #FFFBEB;
  116. color: #E4AB04;
  117. }
  118. &.ignore{
  119. color: #e6a23c;
  120. background: #F5F5F5;
  121. }
  122. }
  123. }
  124. .item-content {
  125. width: 100%;
  126. height: calc(100% - 42px - 32px - 15px);
  127. box-sizing: border-box;
  128. padding: 15px 20px 15px 10px;
  129. font-weight: 500;
  130. font-size: 14px;
  131. color: #333333;
  132. line-height: 20px;
  133. }
  134. .item-title {
  135. width: 100%;
  136. margin-bottom: 15px;
  137. }
  138. .item-title-width {
  139. min-width: 70px;
  140. }
  141. .item-btn {
  142. width: 100%;
  143. box-sizing: border-box;
  144. padding: 0px 20px 15px 10px;
  145. button {
  146. min-width: 60px;
  147. height: 32px;
  148. line-height: 32px;
  149. margin-left: 10px;
  150. margin-right: 0;
  151. font-size: 14px;
  152. }
  153. // 忽略按钮
  154. .btn-ignore{
  155. background: #e6a23c;
  156. color: #FFFFFF;
  157. }
  158. }