order-scope.component.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. @import "../../../../src/theme.less";
  2. :host {
  3. ::ng-deep .ant-checkbox-wrapper + .ant-checkbox-wrapper{
  4. margin-left: 0!important;
  5. }
  6. .required{
  7. position: relative;
  8. &::before{
  9. font-family: icon_transport;
  10. font-size: 10px;
  11. content:'\e606';
  12. color: red;
  13. position: absolute;
  14. right: 100%;
  15. top: 50%;
  16. transform: translateY(-50%);
  17. margin-right: 2px;
  18. }
  19. }
  20. // 撤回工单
  21. .recallOrder {
  22. position: fixed;
  23. left: 0;
  24. top: 0;
  25. width: 100%;
  26. height: 100%;
  27. background: rgba(0, 0, 0, 0.4);
  28. z-index: 9999999;
  29. .modalBody {
  30. width: 350px;
  31. height: 220px;
  32. background: #fff;
  33. border-radius: 5px;
  34. padding: 10px 20px;
  35. color: #333;
  36. .title {
  37. width: 100%;
  38. text-align: center;
  39. font-size: 18px;
  40. position: relative;
  41. i {
  42. position: absolute;
  43. right: 0;
  44. top: 0;
  45. font-size: 20px;
  46. color: #666;
  47. cursor: pointer;
  48. padding: 0 5px;
  49. }
  50. }
  51. .content {
  52. width: 310px;
  53. height: 117px;
  54. background: #f9fafb;
  55. border: 1px solid #e5e9ed;
  56. border-radius: 5px;
  57. overflow: hidden;
  58. margin-top: 12px;
  59. div {
  60. text-align: center;
  61. margin: 0;
  62. &.icon {
  63. margin-top: 17px;
  64. i {
  65. color: #ff3b53;
  66. font-size: 30px !important;
  67. &.transport-wenhao {
  68. color: #f5a523;
  69. }
  70. }
  71. }
  72. &.defeat {
  73. color: #333;
  74. font-size: 18px;
  75. }
  76. &:nth-child(3) {
  77. font-size: 14px;
  78. color: #666;
  79. }
  80. }
  81. .conditions {
  82. height: 400px;
  83. overflow: auto;
  84. padding: 16px 20px;
  85. div {
  86. text-align: left;
  87. margin-bottom: 8px;
  88. }
  89. }
  90. }
  91. .btns {
  92. button {
  93. margin-top: 10px;
  94. margin-left: 5px;
  95. }
  96. .recDelBtn {
  97. width: 115px;
  98. }
  99. }
  100. }
  101. }
  102. // 初始化设置
  103. .init {
  104. position: fixed;
  105. left: 0;
  106. top: 0;
  107. width: 100%;
  108. height: 100%;
  109. background: rgba(0, 0, 0, 0.4);
  110. z-index: 99;
  111. .con {
  112. width: 832px;
  113. height: auto;
  114. background: #fff;
  115. border-radius: 5px;
  116. padding: 10px 20px;
  117. color: #333;
  118. .content {
  119. width: 100%;
  120. height: auto;
  121. .scopeTab{
  122. .tips{
  123. width: 100%;
  124. margin-top: 20px;
  125. font-weight: 500;
  126. }
  127. .scopeBox{
  128. display: flex;
  129. height: 60px;
  130. border-bottom: 1px solid #D9D9D9;
  131. .scopeTabItem{
  132. flex: 1;
  133. display: flex;
  134. justify-content: center;
  135. align-items: center;
  136. border-right: 1px solid #D9D9D9;
  137. background-color: #fff;
  138. cursor: pointer;
  139. &:last-of-type{
  140. border-right: none;
  141. }
  142. &.active{
  143. background-color: #F0F6ED;
  144. }
  145. }
  146. }
  147. }
  148. .remin {
  149. font-size: 14px;
  150. color: #666;
  151. line-height: 48px;
  152. border-bottom: 1px solid #e5e9ed;
  153. }
  154. .boxes {
  155. color: #333;
  156. padding: 8px 12px;
  157. & > div:nth-child(1) {
  158. color: #333;
  159. text-align: left;
  160. }
  161. & > div:nth-child(2) {
  162. color: #666;
  163. text-align: left;
  164. }
  165. }
  166. }
  167. }
  168. }
  169. }