worker-statistics-detail.component.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592
  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: 99;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .detail {
  15. width: 1200px;
  16. height: 580px;
  17. border-radius: 5px;
  18. background: #fff;
  19. color: #333;
  20. font-size: 14px;
  21. padding: 12px 20px;
  22. position: relative;
  23. padding-bottom: 70px;
  24. .title {
  25. font-size: 18px;
  26. text-align: center;
  27. line-height: 24px;
  28. margin: 0;
  29. margin-bottom: 12px;
  30. position: relative;
  31. i {
  32. position: absolute;
  33. right: 0;
  34. top: 0;
  35. font-size: 20px;
  36. color: #666;
  37. cursor: pointer;
  38. padding: 0 5px;
  39. }
  40. }
  41. & > .box {
  42. border: 1px solid #e5e9ed;
  43. border-radius: 5px;
  44. overflow: hidden;
  45. .tab {
  46. width: 100%;
  47. height: 60px;
  48. border-bottom: 1px solid #e5e9ed;
  49. .item {
  50. text-align: center;
  51. line-height: 60px;
  52. height: 100%;
  53. border-right: 1px solid #e5e9ed;
  54. &:nth-last-child(1) {
  55. border: none;
  56. }
  57. &.checked {
  58. background: #f9fafb;
  59. }
  60. }
  61. }
  62. .content {
  63. width: 100%;
  64. min-height: 453px;
  65. max-height: 500px;
  66. &.orders {
  67. background: #f9fafb;
  68. }
  69. & > .top {
  70. padding: 10px 32px;
  71. border-bottom: 1px solid #e5e9ed;
  72. overflow: hidden;
  73. background: #fff;
  74. .num {
  75. font-size: 16px;
  76. overflow: hidden;
  77. margin-bottom: 6px;
  78. .left {
  79. float: left;
  80. font-weight: 600;
  81. }
  82. .right {
  83. float: right;
  84. }
  85. }
  86. .info {
  87. color: #666;
  88. & > div {
  89. margin: 4px 0;
  90. }
  91. .jiaji {
  92. margin: 0;
  93. margin-top: 8px;
  94. }
  95. }
  96. }
  97. & > .center {
  98. padding: 27px 0 17px 0;
  99. border-bottom: 1px solid #e5e9ed;
  100. font-size: 12px;
  101. background: #fff;
  102. .box {
  103. display: flex;
  104. justify-content: center;
  105. .steps {
  106. &:nth-last-child(1) {
  107. .line {
  108. display: none !important;
  109. }
  110. }
  111. .step {
  112. .info {
  113. width: 90px;
  114. text-align: center;
  115. display: inline-block;
  116. vertical-align: top;
  117. i {
  118. color: #e5e9ed;
  119. &.green {
  120. color: #bee1a7;
  121. }
  122. }
  123. }
  124. p {
  125. margin: 0;
  126. }
  127. .line {
  128. display: inline-block;
  129. width: 60px;
  130. height: 2px;
  131. background: #e5e9ed;
  132. }
  133. }
  134. }
  135. }
  136. }
  137. & > .bottom {
  138. padding: 25px 32px;
  139. background: #f9fafb;
  140. .urgent {
  141. input {
  142. width: 600px;
  143. }
  144. .candelBtn {
  145. margin-left: 20px;
  146. }
  147. }
  148. .table {
  149. width: 100%;
  150. height: 100%;
  151. min-height: 160px;
  152. background: #fff;
  153. border-radius: 5px;
  154. .thead {
  155. background-image: repeating-linear-gradient(
  156. to right,
  157. @bg-start,
  158. @bg-end 100%
  159. ) !important;
  160. th {
  161. color: #fff !important;
  162. text-align: center;
  163. font-size: 12px;
  164. border: none;
  165. }
  166. }
  167. .detailDrugTable {
  168. .thead {
  169. background-image: repeating-linear-gradient(
  170. to right,
  171. @bg-start,
  172. @bg-end 50%
  173. ) !important;
  174. }
  175. }
  176. .ant-table-tbody {
  177. tr {
  178. text-align: center;
  179. font-size: 12px;
  180. border: none;
  181. td {
  182. border: none;
  183. }
  184. }
  185. tr:nth-child(2n) {
  186. background: #f9fafb;
  187. }
  188. }
  189. }
  190. .info {
  191. width: 100%;
  192. height: 100%;
  193. background: #fff;
  194. border-radius: 5px;
  195. border: 1px solid #e5e9ed;
  196. padding: 24px 28px 14px 28px;
  197. margin-bottom: 8px;
  198. .top {
  199. .left {
  200. border-right: 1px dashed #e5e9ed;
  201. p {
  202. padding: 0 70px 0 102px;
  203. overflow: hidden;
  204. & > span:nth-child(1) {
  205. float: left;
  206. }
  207. & > span:nth-child(2) {
  208. float: right;
  209. color: #666;
  210. text-align: right;
  211. max-width: 175px;
  212. }
  213. }
  214. }
  215. .right {
  216. p {
  217. padding: 0 102px 0 70px;
  218. overflow: hidden;
  219. span:nth-child(1) {
  220. float: left;
  221. }
  222. span:nth-child(2) {
  223. float: right;
  224. color: #666;
  225. text-align: right;
  226. }
  227. }
  228. }
  229. }
  230. .wait {
  231. text-align: center;
  232. margin-top: 7px;
  233. i {
  234. font-size: 24px;
  235. color: #62c26d;
  236. }
  237. span {
  238. color: #62c26d;
  239. }
  240. }
  241. }
  242. }
  243. &.pingjia {
  244. .msg {
  245. width: 100%;
  246. height: 50px;
  247. line-height: 50px;
  248. padding-left: 32px;
  249. border-bottom: 1px solid #e5e9ed;
  250. div {
  251. display: inline-block;
  252. margin-right: 100px;
  253. }
  254. }
  255. .con {
  256. padding: 16px 32px;
  257. min-height: 360px;
  258. }
  259. }
  260. & > .form {
  261. .ant-form-item {
  262. padding: 0 32px 13px 32px;
  263. margin-bottom: 0;
  264. border-bottom: 1px solid #e5e9ed;
  265. &:nth-last-child(1) {
  266. border: none;
  267. }
  268. }
  269. .ant-form-item-label {
  270. line-height: 34px;
  271. text-align: left;
  272. }
  273. }
  274. & > .mediation {
  275. padding: 16px 32px;
  276. .item {
  277. border-bottom: 1px solid #e5e9ed;
  278. padding-top: 10px;
  279. .label {
  280. line-height: 28px;
  281. margin-top: 10px;
  282. }
  283. .info {
  284. line-height: 28px;
  285. color: #999;
  286. padding-bottom: 20px;
  287. }
  288. }
  289. }
  290. &.jifen {
  291. padding: 32px;
  292. & > .table {
  293. width: 100%;
  294. height: 100%;
  295. min-height: 160px;
  296. padding: 6px;
  297. background: #fff;
  298. border: 1px solid #e5e9ed;
  299. border-radius: 5px;
  300. overflow: hidden;
  301. .thead {
  302. background-image: repeating-linear-gradient(
  303. to right,
  304. @bg-start,
  305. @bg-end 100%
  306. ) !important;
  307. th {
  308. color: #fff !important;
  309. text-align: center;
  310. font-size: 12px;
  311. border: none;
  312. background: transparent;
  313. }
  314. }
  315. .ant-table-tbody {
  316. tr {
  317. text-align: center;
  318. font-size: 12px;
  319. border: none;
  320. td {
  321. border: none;
  322. }
  323. }
  324. tr:nth-child(2n) {
  325. background: #f9fafb;
  326. }
  327. }
  328. }
  329. }
  330. }
  331. }
  332. .btns {
  333. display: flex;
  334. justify-content: center;
  335. align-items: center;
  336. width: 60%;
  337. margin: 48px auto 0;
  338. .btn {
  339. margin: 9px;
  340. margin-bottom: 0;
  341. }
  342. }
  343. .ant-table {
  344. border: none !important;
  345. }
  346. }
  347. // 撤回工单
  348. .recallOrder {
  349. position: fixed;
  350. left: 0;
  351. top: 0;
  352. width: 100%;
  353. height: 100%;
  354. display: flex;
  355. justify-content: center;
  356. align-items: center;
  357. background: rgba(0, 0, 0, 0.4);
  358. z-index: 99;
  359. .modalBody {
  360. width: 350px;
  361. height: 220px;
  362. background: #fff;
  363. border-radius: 5px;
  364. padding: 10px 20px;
  365. color: #333;
  366. .title {
  367. width: 100%;
  368. text-align: center;
  369. font-size: 18px;
  370. position: relative;
  371. i {
  372. position: absolute;
  373. right: 0;
  374. top: 0;
  375. font-size: 20px;
  376. color: #666;
  377. cursor: pointer;
  378. padding: 0 5px;
  379. }
  380. }
  381. .content {
  382. width: 310px;
  383. height: 117px;
  384. background: #f9fafb;
  385. border: 1px solid #e5e9ed;
  386. border-radius: 5px;
  387. overflow: hidden;
  388. margin-top: 12px;
  389. div {
  390. text-align: center;
  391. margin: 0;
  392. &.icon {
  393. margin-top: 17px;
  394. i {
  395. color: #ff3b53;
  396. font-size: 30px !important;
  397. &.transport-wenhao {
  398. color: #f5a523;
  399. }
  400. }
  401. }
  402. &.defeat {
  403. color: #333;
  404. font-size: 18px;
  405. }
  406. &:nth-child(3) {
  407. font-size: 14px;
  408. color: #666;
  409. }
  410. }
  411. .conditions {
  412. padding: 16px 20px;
  413. div {
  414. text-align: left;
  415. }
  416. }
  417. }
  418. button {
  419. margin-top: 10px;
  420. &.btn {
  421. margin-left: 8px;
  422. }
  423. }
  424. }
  425. }
  426. .txtC {
  427. text-align: center;
  428. }
  429. .ji {
  430. position: absolute;
  431. right: 0px;
  432. top: -3px;
  433. width: 30px;
  434. }
  435. .hospitalTable {
  436. padding: 21px 12px;
  437. padding-bottom: 0;
  438. .thead {
  439. background-image: linear-gradient(to right, @bg-start, @bg-end);
  440. th {
  441. background: transparent;
  442. color: #fff;
  443. text-align: center;
  444. font-size: 14px;
  445. }
  446. }
  447. .ant-table-body {
  448. border-bottom: 1px solid #e5e9ed;
  449. }
  450. .ant-table-tbody {
  451. tr {
  452. text-align: center;
  453. font-size: 14px;
  454. border: none;
  455. color: #333;
  456. td {
  457. border: none;
  458. .coop {
  459. span {
  460. display: inline-block;
  461. width: 60px;
  462. cursor: pointer;
  463. &::after {
  464. content: "|";
  465. float: right;
  466. }
  467. &:hover {
  468. color: @primary-color;
  469. }
  470. &:active {
  471. color: @primary-color;
  472. }
  473. &:nth-last-child(1) {
  474. &::after {
  475. content: "";
  476. }
  477. }
  478. }
  479. }
  480. }
  481. }
  482. tr:nth-child(2n-1) {
  483. background: #f9fafb;
  484. }
  485. }
  486. }
  487. .pagination {
  488. margin-top: 14px;
  489. position: absolute;
  490. right: 5px;
  491. }
  492. .filters {
  493. position: absolute;
  494. left: 0;
  495. top: 0;
  496. }