index.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. .newService {
  2. height: calc(100vh - 80px);
  3. padding: 24px;
  4. &-head {
  5. line-height: 30px;
  6. .icons {
  7. &-list {
  8. font-size: 14px;
  9. margin-right: 35px;
  10. &-box {
  11. width: 14px;
  12. height: 14px;
  13. display: inline-block;
  14. border-radius: 2px;
  15. margin-right: 12px;
  16. vertical-align: middle;
  17. }
  18. &:last-child {
  19. margin-right: 0;
  20. }
  21. }
  22. .start {
  23. .icons-list-box {
  24. background-color: #50c183;
  25. }
  26. }
  27. .stop {
  28. .icons-list-box {
  29. background-color: #afb4bf;
  30. }
  31. }
  32. .error {
  33. .icons-list-box {
  34. background-color: #ef4747;
  35. }
  36. }
  37. }
  38. }
  39. &-content {
  40. margin-top: 30px;
  41. height: calc(100% - 58px);
  42. &-left {
  43. width: 460px;
  44. height: 100%;
  45. background: #ffffff;
  46. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
  47. border-radius: 4px;
  48. margin-right: 16px;
  49. &-top {
  50. padding: 24px 24px 18px 24px;
  51. .head {
  52. line-height: 32px;
  53. .title {
  54. font-size: 20px;
  55. font-family: Microsoft YaHei;
  56. font-weight: bold;
  57. color: #101116;
  58. }
  59. }
  60. .search {
  61. margin-top: 18px;
  62. }
  63. }
  64. &-bottom {
  65. height: calc(100% - 138px);
  66. .contents {
  67. padding: 0 24px;
  68. height: 42px;
  69. line-height: 42px;
  70. .left {
  71. .box {
  72. width: 16px;
  73. height: 16px;
  74. display: inline-block;
  75. border-radius: 2px;
  76. margin-right: 15px;
  77. vertical-align: middle;
  78. }
  79. .txt {
  80. font-size: 16px;
  81. font-family: Microsoft YaHei;
  82. font-weight: bold;
  83. color: #101116;
  84. }
  85. .success {
  86. background-color: #50c183;
  87. }
  88. .error {
  89. background: #afb4bf;
  90. }
  91. }
  92. .right {
  93. font-size: 14px;
  94. span {
  95. margin-right: 16px;
  96. cursor: pointer;
  97. &:last-child {
  98. margin-right: 0;
  99. }
  100. }
  101. .start,
  102. .stop {
  103. color: #2579a0;
  104. }
  105. .error {
  106. color: #eb3434;
  107. }
  108. }
  109. }
  110. .active {
  111. background: #e4f3f9;
  112. }
  113. &-tree {
  114. padding: 0 24px;
  115. .custom-tree-node {
  116. flex: 1;
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-between;
  120. font-size: 14px;
  121. padding-right: 8px;
  122. .customBtn {
  123. .rm{
  124. font-size: 14px;
  125. color: #dd3838;
  126. }
  127. .ym{
  128. font-size: 14px;
  129. color: #2579a0;
  130. margin-right: 16px;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. &-right {
  138. flex: 1;
  139. height: 100%;
  140. &-top {
  141. background: #ffffff;
  142. border-radius: 4px;
  143. padding: 24px;
  144. margin-bottom: 16px;
  145. .title {
  146. font-size: 20px;
  147. font-family: Microsoft YaHei;
  148. font-weight: bold;
  149. color: #303133;
  150. }
  151. .demo-form,.cj-form {
  152. margin-top: 20px;
  153. .el-form-item {
  154. &:last-child {
  155. margin-right: 0;
  156. }
  157. }
  158. }
  159. .cj-form{
  160. .title{
  161. margin-bottom: 20px;
  162. }
  163. .el-form-item{
  164. margin-bottom: 0;
  165. }
  166. margin-top: 0;
  167. }
  168. }
  169. &-bottom {
  170. background: #ffffff;
  171. border-radius: 4px;
  172. .data-table{
  173. height: 100%;
  174. }
  175. }
  176. &-new{
  177. .contents1{
  178. margin-right: 16px;
  179. }
  180. .contents2{
  181. .newService-content-left-bottom{
  182. padding: 0 24px;
  183. .el-checkbox{
  184. width: 100%;
  185. height: 64px;
  186. margin-bottom: 20px;
  187. }
  188. ::v-deep .multipleTable {
  189. .DisabledSelection .cell .el-checkbox__inner {
  190. display: none;
  191. position: relative;
  192. }
  193. .DisabledSelection .cell:before {
  194. content: "是否可用";
  195. position: absolute;
  196. left: 50%;
  197. margin-left: -28px;
  198. }
  199. .cell{
  200. text-align: center;
  201. color: #303133;
  202. }
  203. }
  204. }
  205. }
  206. }
  207. }
  208. .serButton {
  209. border: 1px solid #b2cbde;
  210. color: #2579a0;
  211. border-radius: 4px;
  212. }
  213. .bcButton {
  214. background: #2579a0;
  215. border-radius: 4px;
  216. }
  217. }
  218. }