order-list.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .order-tabs-container {
  2. margin-top: 20px;
  3. .fl button {
  4. margin-top: 8px;
  5. }
  6. .fr button {
  7. margin-top: 8px;
  8. }
  9. }
  10. .order-main-container {
  11. height: 100%;
  12. width: 100%;
  13. font: 14px Arial, "PingFang SC", "Hiragino Sans GB", STHeiti, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  14. color: #495060;
  15. .table-top {
  16. background-color: #ecf5ff;
  17. margin-bottom: 5px;
  18. display: flex;
  19. height: 45px;
  20. align-items: center;
  21. .item {
  22. padding: 0 10px;
  23. width: 10%;
  24. text-align: center;
  25. }
  26. .product {
  27. width: 25%;
  28. }
  29. }
  30. .order-item {
  31. margin-bottom: 20px;
  32. .order-top {
  33. padding: 10px;
  34. background: #f8f8f9;
  35. border-left: 1px solid #dddee1;
  36. border-top: 1px solid #dddee1;
  37. border-right: 1px solid #dddee1;
  38. span {
  39. margin-right: 15px;
  40. }
  41. .el-checkbox, .el-checkbox .el-checkbox__input {
  42. margin-right: 0;
  43. }
  44. .el-checkbox .el-checkbox__input span {
  45. margin-right: 10px;
  46. }
  47. }
  48. .order-content {
  49. display: flex;
  50. border-top: 1px solid #dddee1;
  51. border-bottom: 1px solid #dddee1;
  52. border-left: 1px solid #dddee1;
  53. color: #495060;
  54. .col-item {
  55. display: flex;
  56. display: -webkit-flex;
  57. align-items: center;
  58. justify-content: center;
  59. padding: 10px;
  60. border-right: 1px solid #dddee1;
  61. text-align: center;
  62. height: 100%;
  63. flex-direction: column;
  64. div {
  65. margin-bottom: 5px;
  66. &:last-child {
  67. margin-bottom: 0;
  68. }
  69. }
  70. .operate {
  71. color: #2d8cf0;
  72. display: flex;
  73. flex-direction: column;
  74. button {
  75. margin-left: 0;
  76. }
  77. }
  78. .totalprice {
  79. color: #c00;
  80. }
  81. }
  82. .col-item-pro {
  83. display: flex;
  84. flex-direction: column;
  85. border-right: 1px solid #dddee1;
  86. height: 100%;
  87. .pro-item {
  88. display: flex;
  89. justify-content: space-between;
  90. position: relative;
  91. padding: 20px;
  92. // height: 100px;
  93. border-bottom: 1px solid #dddee1;
  94. .left {
  95. display: flex;
  96. .image {
  97. margin-right: 12px;
  98. width: 80px;
  99. height: 80px;
  100. img {
  101. width: 80px;
  102. height: 80px;
  103. display: block;
  104. }
  105. }
  106. .main {
  107. width: 70%;
  108. height: 80px;
  109. display: flex;
  110. flex-direction: column;
  111. .spec {
  112. display: block;
  113. color: #999999;
  114. margin-top: 6px;
  115. }
  116. }
  117. }
  118. .right {
  119. text-align: right;
  120. span {
  121. display: block;
  122. margin-bottom: 10px;
  123. }
  124. }
  125. }
  126. .pro-item:last-child {
  127. border-bottom: none;
  128. }
  129. }
  130. }
  131. .order-remark {
  132. line-height: 34px;
  133. padding: 0 10px;
  134. border-left: 1px solid #dddee1;
  135. border-right: 1px solid #dddee1;
  136. border-bottom: 1px solid #dddee1;
  137. &.buyer {
  138. background: #faefee;
  139. color: #c93931 ;
  140. }
  141. &.saler {
  142. background: #fefaed;
  143. color: #ef9325;
  144. }
  145. }
  146. }
  147. }
  148. .no-data {
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. height: 60px;
  153. font-size: 15px;
  154. color: #666666;
  155. }