order-detail.component.less 9.9 KB

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