order-detail.component.less 9.8 KB

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