detail-blood.component.less 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. @import "../../../../src/theme.less";
  2. :host {
  3. width: 100%;
  4. height: 100%;
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. background: rgba(0, 0, 0, 0.4);
  9. z-index: 9;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .detail {
  15. width: 1200px;
  16. height: calc(100vh - 100px);
  17. min-height: 580px;
  18. border-radius: 5px;
  19. background: #fff;
  20. color: #333;
  21. font-size: 14px;
  22. padding: 12px 20px;
  23. position: relative;
  24. padding-bottom: 70px;
  25. .title {
  26. font-size: 18px;
  27. text-align: center;
  28. line-height: 24px;
  29. margin: 0;
  30. margin-bottom: 12px;
  31. position: relative;
  32. i {
  33. position: absolute;
  34. right: 0;
  35. top: 0;
  36. font-size: 20px;
  37. color: #666;
  38. cursor: pointer;
  39. padding: 0 5px;
  40. }
  41. }
  42. .content {
  43. width: 1160px;
  44. // height: 474px;
  45. border: 1px solid #e5e9ed;
  46. border-radius: 5px;
  47. overflow: hidden;
  48. & > .top {
  49. padding: 10px 32px;
  50. border-bottom: 1px solid #e5e9ed;
  51. .num {
  52. font-size: 16px;
  53. overflow: hidden;
  54. margin-bottom: 6px;
  55. .left {
  56. float: left;
  57. font-weight: 600;
  58. }
  59. .right {
  60. float: right;
  61. }
  62. }
  63. .info {
  64. color: #666;
  65. & > div {
  66. margin: 4px 0;
  67. }
  68. }
  69. }
  70. & > .center {
  71. padding: 27px 0 17px 0;
  72. border-bottom: 1px solid #e5e9ed;
  73. font-size: 12px;
  74. .box {
  75. // display: flex;
  76. // justify-content: center;
  77. .steps {
  78. &:nth-last-child(1) {
  79. .line {
  80. display: none !important;
  81. }
  82. }
  83. .step {
  84. .info {
  85. width: 90px;
  86. text-align: center;
  87. display: inline-block;
  88. vertical-align: top;
  89. i {
  90. color: #e5e9ed;
  91. &.green {
  92. color: @primary-color;
  93. }
  94. }
  95. }
  96. p {
  97. margin: 0;
  98. }
  99. .line {
  100. display: inline-block;
  101. width: 60px;
  102. height: 2px;
  103. background: #e5e9ed;
  104. }
  105. }
  106. }
  107. }
  108. }
  109. & > .bottom {
  110. padding: 28px 32px;
  111. background: #f9fafb;
  112. .urgent {
  113. display: flex;
  114. justify-content: space-between;
  115. margin-bottom: 8px;
  116. input {
  117. width: 600px;
  118. }
  119. .candelBtn {
  120. margin-left: 20px;
  121. }
  122. }
  123. .table {
  124. width: 100%;
  125. background: #fff;
  126. border-radius: 5px;
  127. .thead {
  128. background: linear-gradient(to right, @bg-start, @bg-end) !important;
  129. th {
  130. color: #fff !important;
  131. text-align: center;
  132. font-size: 12px;
  133. border: none;
  134. }
  135. }
  136. .ant-table-tbody {
  137. tr {
  138. text-align: center;
  139. font-size: 12px;
  140. border: none;
  141. td {
  142. border: none;
  143. position: relative;
  144. }
  145. }
  146. tr:nth-child(2n) {
  147. background: #f9fafb;
  148. }
  149. }
  150. }
  151. }
  152. }
  153. .btns {
  154. // display: flex;
  155. // justify-content: center;
  156. // align-items: center;
  157. width: 100%;
  158. position: absolute;
  159. left: 0;
  160. bottom: 20px;
  161. button {
  162. margin: 9px;
  163. margin-bottom: 0;
  164. }
  165. }
  166. .ant-table {
  167. border: none !important;
  168. }
  169. }
  170. // 撤回工单
  171. .recallOrder {
  172. position: fixed;
  173. left: 0;
  174. top: 0;
  175. width: 100%;
  176. height: 100%;
  177. // display: flex;
  178. // justify-content: center;
  179. // align-items: center;
  180. background: rgba(0, 0, 0, 0.4);
  181. z-index: 99;
  182. .modalBody {
  183. width: 350px;
  184. height: 220px;
  185. background: #fff;
  186. border-radius: 5px;
  187. padding: 10px 20px;
  188. color: #333;
  189. .title {
  190. width: 100%;
  191. text-align: center;
  192. font-size: 18px;
  193. position: relative;
  194. i {
  195. position: absolute;
  196. right: 0;
  197. top: 0;
  198. font-size: 20px;
  199. color: #666;
  200. cursor: pointer;
  201. padding: 0 5px;
  202. }
  203. }
  204. .content {
  205. width: 310px;
  206. height: 117px;
  207. background: #f9fafb;
  208. border: 1px solid #e5e9ed;
  209. border-radius: 5px;
  210. overflow: hidden;
  211. margin-top: 12px;
  212. div {
  213. text-align: center;
  214. margin: 0;
  215. &.icon {
  216. margin-top: 17px;
  217. i {
  218. color: #ff3b53;
  219. font-size: 30px !important;
  220. &.transport-wenhao {
  221. color: #f5a523;
  222. }
  223. }
  224. }
  225. &.defeat {
  226. color: #333;
  227. font-size: 18px;
  228. }
  229. &:nth-child(3) {
  230. font-size: 14px;
  231. color: #666;
  232. }
  233. }
  234. .conditions {
  235. padding: 16px 20px;
  236. div {
  237. text-align: left;
  238. }
  239. }
  240. }
  241. .btns {
  242. // display: flex;
  243. // justify-content: center;
  244. button {
  245. margin-top: 10px;
  246. &.btn {
  247. width: 80px;
  248. margin-left: 8px;
  249. }
  250. }
  251. }
  252. }
  253. }
  254. .txtC {
  255. text-align: center;
  256. }
  257. .ji {
  258. position: absolute;
  259. right: 0px;
  260. top: -3px;
  261. width: 30px;
  262. }