style.less 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  1. .MonthlyDataCheck {
  2. position: relative;
  3. display: flex;
  4. flex-direction: row;
  5. min-height: calc(100vh - 80px);
  6. border-radius: 4px;
  7. overflow: hidden;
  8. background-color: #FFF;
  9. .maskCover {
  10. position: absolute;
  11. top:0;
  12. left: 0;
  13. width:100%;
  14. height:100%;
  15. z-index: 9;
  16. background: rgba(0,0,0,0.2);
  17. }
  18. .ManaIndextable {
  19. .bms-ant-table-thead {
  20. background-color: #37F !important;
  21. &>tr:last-child{
  22. .bms-ant-table-cell {
  23. border-top: 1px solid #dae2f2 !important;
  24. }
  25. }
  26. }
  27. }
  28. .rightContent {
  29. width: 100%;
  30. height: 100%;
  31. padding: 16px;
  32. background: #FFF;
  33. .checkBtn {
  34. position: absolute;
  35. cursor: pointer;
  36. top: 0;
  37. right:0;
  38. padding: 0 14px;
  39. height: 24px;
  40. line-height: 24px;
  41. background: #3376FE;
  42. border-radius: 4px;
  43. text-align: center;
  44. font-size: 14px;
  45. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  46. font-weight: 400;
  47. color: #FFF;
  48. }
  49. .midLine {
  50. display: flex;
  51. flex-direction: row;
  52. justify-content: center;
  53. align-items: center;
  54. height: 24px;
  55. line-height: 24px;
  56. background: #F0FCFC;
  57. font-size: 12px;
  58. color: #515866;
  59. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  60. font-weight: 400;
  61. // margin-top: 12px;
  62. // margin-bottom: 15px;
  63. &>span {
  64. cursor: pointer;
  65. font-size: 12px;
  66. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  67. font-weight: 500;
  68. color: #00B3B3;
  69. padding-right: 4px;
  70. }
  71. }
  72. .bms-ant-tabs-nav {
  73. &::before {
  74. border-bottom: none !important;
  75. }
  76. }
  77. .tabContent {
  78. position: relative;
  79. display: flex;
  80. flex-direction: column;
  81. height: 100%;
  82. .totalCount {
  83. position: absolute;
  84. bottom:16px;
  85. left: 16px;
  86. z-index: 9;
  87. height: 16px;
  88. font-size: 16px;
  89. font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  90. font-weight: 500;
  91. color: #17181A;
  92. line-height: 16px;
  93. }
  94. .tableToolbar {
  95. display: flex;
  96. flex-direction: row;
  97. justify-content: space-between;
  98. align-items: center;
  99. margin-bottom: 16px;
  100. .filter {
  101. display: flex;
  102. flex-direction: row;
  103. justify-content: flex-start;
  104. align-items: center;
  105. .tabs {
  106. display: flex;
  107. flex-direction: row;
  108. justify-content: flex-start;
  109. align-items: center;
  110. border-radius: 4px;
  111. border: 1px solid #DAE2F2;
  112. overflow: hidden;
  113. margin-right: 20px;
  114. .tab {
  115. text-align: center;
  116. line-height: 24px;
  117. width: 48px;
  118. height: 24px;
  119. color: #525866;
  120. font-size: 14px;
  121. cursor: pointer;
  122. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  123. font-weight: 400;
  124. border-right: 1px solid #DAE2F2;
  125. &.on {
  126. color: #FFF;
  127. background: #37F;
  128. }
  129. &:last-child {
  130. border-right: none;
  131. }
  132. }
  133. }
  134. .selecter {
  135. margin-right: 24px;
  136. }
  137. .search {
  138. display: flex;
  139. flex-direction: row;
  140. justify-content: flex-start;
  141. align-items: center;
  142. .searchInput {
  143. width: 160px;
  144. height: 24px;
  145. background: #FFF;
  146. border-radius: 4px;
  147. border: 1px solid #CFD7E6;
  148. }
  149. &>span {
  150. font-size: 14px;
  151. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  152. font-weight: 400;
  153. color: #17181A;
  154. }
  155. }
  156. }
  157. .btnGroup {
  158. &>span {
  159. display: inline-block;
  160. text-align: center;
  161. padding: 0 12px;
  162. height: 24px;
  163. line-height: 21px;
  164. background: #FAFCFF;
  165. border-radius: 4px;
  166. cursor: pointer;
  167. border: 1px solid #DAE2F2;
  168. margin-right: 8px;
  169. &:last-child {
  170. margin-right: 0;
  171. }
  172. }
  173. &.disabled {
  174. &>span {
  175. cursor:not-allowed;
  176. color: rgb(0 0 0 / 50%);
  177. background-color:#f0f2f5;
  178. }
  179. }
  180. }
  181. }
  182. .tabContentInner {
  183. display: flex;
  184. flex-direction: row;
  185. .leftTree {
  186. .search {
  187. display: flex;
  188. flex-direction: row;
  189. justify-content: flex-start;
  190. align-items: center;
  191. margin-bottom: 16px;
  192. margin-right: 16px;
  193. .searchInput {
  194. width: 100%;
  195. height: 24px;
  196. background: #FFF;
  197. border-radius: 4px;
  198. border: 1px solid #CFD7E6;
  199. }
  200. &>span {
  201. font-size: 14px;
  202. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  203. font-weight: 400;
  204. color: #17181A;
  205. }
  206. }
  207. .treeWrap {
  208. width: 220px;
  209. height: calc(100vh - 245px);
  210. background: #FFF;
  211. border-radius: 4px;
  212. padding: 16px;
  213. margin-right: 16px;
  214. border: 1px solid #DAE2F2;
  215. overflow: hidden;
  216. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected:hover::before,.bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode-selected::before {
  217. border-radius: 4px;
  218. background: rgb(240 242 245 / 100%);
  219. }
  220. .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
  221. font-weight: bold;
  222. }
  223. }
  224. }
  225. .rightTable {
  226. width: calc(100% - 220px);
  227. }
  228. }
  229. }
  230. }
  231. }