layout.scss 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. @import './theme.scss';
  2. $pageHeaderHeight: 50px;
  3. $pageSidebarWidth: 235px;
  4. $pageSidebarClosedWidth: 64px;
  5. $pageSidebarItemHeight: 40px;
  6. $pageFooterHeight: 40px;
  7. html,
  8. body {
  9. padding: 0 !important;
  10. margin: 0 !important;
  11. font-size: 14px;
  12. width: 100%;
  13. height: 100%;
  14. }
  15. #app {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. #page-main {
  20. width: 100%;
  21. height: 100%;
  22. display: flex;
  23. flex-direction: column; /* 垂直 从上到下 */
  24. justify-content: flex-start; /* 垂直 左对齐 */
  25. align-items: stretch;
  26. .page-header {
  27. order: 0;
  28. flex-grow: 0;
  29. flex-shrink: 0;
  30. height: $pageHeaderHeight;
  31. }
  32. .page-container {
  33. order: 1;
  34. flex-grow: 1;
  35. flex-shrink: 1;
  36. display: flex;
  37. flex-direction: row; /* 水平,从左到右 */
  38. justify-content: flex-start; /* 水平上对齐 */
  39. .page-sidebar-wrapper {
  40. width: $pageSidebarWidth;
  41. overflow-y: auto;
  42. flex-grow: 0;
  43. flex-shrink: 0;
  44. }
  45. .page-content-wrapper {
  46. flex-grow: 1;
  47. flex-shrink: 1;
  48. .page-content {
  49. padding: 10px;
  50. }
  51. }
  52. }
  53. .page-footer {
  54. order: 2;
  55. flex-grow: 0;
  56. flex-shrink: 0;
  57. height: $pageFooterHeight;
  58. }
  59. }
  60. #page-main .page-header {
  61. display: flex;
  62. flex-direction: row; /* 水平, 从左向右 */
  63. justify-content: flex-start; /* 垂直 左对齐 */
  64. .page-logo {
  65. flex-grow: 0;
  66. flex-shrink: 0;
  67. padding-left: 20px;
  68. padding-right: 20px;
  69. width: 195px;
  70. display: inline-flex;
  71. flex-direction: row;
  72. justify-content: space-between;
  73. > a {
  74. display: inline-block;
  75. .logo-default {
  76. margin: 18px 0 0;
  77. }
  78. }
  79. .menu-toggler.sidebar-toggler {
  80. margin: 15.5px 0 0;
  81. }
  82. }
  83. .data-menu {
  84. padding: 0 10px;
  85. flex-grow: 0;
  86. flex-shrink: 1;
  87. width: 240px;
  88. height: 100%;
  89. line-height: $pageHeaderHeight;
  90. .data-menu-dropdown {
  91. height: 100%;
  92. line-height: $pageHeaderHeight;
  93. font-size: 18px;
  94. }
  95. .el-select .el-input--suffix .el-input__inner {
  96. height: 30px;
  97. line-height: 30px;
  98. }
  99. }
  100. .user-menu {
  101. flex-grow: 1;
  102. flex-shrink: 1;
  103. margin: 0 20px 0 0;
  104. padding: 0;
  105. height: 100%;
  106. display: inline-flex;
  107. flex-direction: row-reverse;
  108. .user-menu-dropdown {
  109. height: 100%;
  110. line-height: $pageHeaderHeight;
  111. font-size: 18px;
  112. margin-left: 20px;
  113. }
  114. }
  115. }
  116. #page-main .page-container {
  117. .page-sidebar-wrapper {
  118. .el-menu {
  119. }
  120. }
  121. }
  122. #page-main .page-container #page-sidebar-wrapper {
  123. .sidebar-menu.el-menu {
  124. border-right: none;
  125. .el-submenu {
  126. .el-menu-item {
  127. height: $pageSidebarItemHeight;
  128. line-height: $pageSidebarItemHeight;
  129. }
  130. }
  131. }
  132. }
  133. /** sidebar 弹框 */
  134. .el-menu--vertical {
  135. .el-menu.el-menu--popup.el-menu--popup-right-start {
  136. .el-menu-item.sidebar-menu-item {
  137. height: $pageSidebarItemHeight;
  138. line-height: $pageSidebarItemHeight;
  139. }
  140. }
  141. }
  142. #page-main .page-container .page-content-wrapper {
  143. margin: 0px 10px 10px 10px;
  144. position: relative;
  145. display: flex;
  146. flex-direction: column;
  147. justify-content: flex-start;
  148. .page-bar {
  149. flex-grow: 0;
  150. flex-shrink: 0;
  151. height: 30px;
  152. padding: 0 20px;
  153. // margin-bottom: 10px;
  154. border-bottom: 1px solid #c2cedb;
  155. .el-breadcrumb {
  156. font-size: 14px;
  157. line-height: 30px;
  158. }
  159. }
  160. .page-content {
  161. flex-grow: 1;
  162. flex-shrink: 1;
  163. overflow-y: auto;
  164. padding: 10px;
  165. }
  166. }
  167. #page-main #page-container #page-content-wrapper .page-content.page-table-template {
  168. display: flex;
  169. flex-direction: column;
  170. justify-content: flex-start;
  171. align-items: stretch;
  172. > .query-form {
  173. flex-grow: 0;
  174. flex-shrink: 0;
  175. }
  176. > .data-table {
  177. flex-grow: 1;
  178. flex-shrink: 1;
  179. overflow-x: auto;
  180. overflow-y: auto;
  181. }
  182. > .data-table-pagination {
  183. flex-grow: 0;
  184. flex-shrink: 0;
  185. }
  186. }
  187. #page-main #page-container #page-content-wrapper .page-content > .query-form {
  188. padding: 5px 10px 0px 10px;
  189. margin-bottom: 10px;
  190. .el-form {
  191. .el-form-item {
  192. margin-bottom: 5px;
  193. vertical-align: middle;
  194. .el-form-item__label {
  195. //min-width: 72px;
  196. }
  197. .el-form-item__content {
  198. margin-left: 0px;
  199. }
  200. }
  201. .halving_line {
  202. width: 100%;
  203. border-top: 1px solid #dfe6ec;
  204. }
  205. }
  206. }
  207. #page-main #page-container #page-content-wrapper .page-content > .data-table {
  208. }
  209. #page-main #page-container #page-content-wrapper .page-content > .data-table {
  210. position: relative;
  211. > .el-table {
  212. position: absolute;
  213. .el-table__header-wrapper {
  214. .el-table__header {
  215. thead tr th {
  216. }
  217. }
  218. }
  219. .el-table__body-wrapper {
  220. .el-table__body {
  221. tr td {
  222. padding: 6px 0;
  223. .cell {
  224. line-height: 20px;
  225. }
  226. }
  227. }
  228. }
  229. }
  230. }
  231. #page-main #page-container #page-content-wrapper .page-content.input-form {
  232. form {
  233. max-width: 800px;
  234. margin: 50px auto;
  235. > .el-form-item {
  236. margin-bottom: 18px;
  237. > .el-form-item__label {
  238. width: 180px;
  239. }
  240. > .el-form-item__content {
  241. max-width: 600px;
  242. margin-left: 180px;
  243. }
  244. }
  245. }
  246. }
  247. #page-main.page-sidebar-closed {
  248. .page-header {
  249. .page-logo {
  250. padding-left: 20px;
  251. padding-right: 20px;
  252. width: 20px;
  253. > a {
  254. display: none;
  255. }
  256. }
  257. }
  258. .page-container {
  259. .page-sidebar-wrapper {
  260. width: $pageSidebarClosedWidth;
  261. }
  262. }
  263. }
  264. @media screen and (max-width: 1000px) {
  265. #page-main {
  266. .page-header {
  267. .page-logo {
  268. padding-left: 20px;
  269. padding-right: 20px;
  270. width: 20px;
  271. > a {
  272. display: none;
  273. }
  274. }
  275. }
  276. .page-container {
  277. .page-sidebar-wrapper {
  278. width: $pageSidebarClosedWidth;
  279. }
  280. }
  281. }
  282. }
  283. @media screen and (max-width: 800px) {
  284. #page-main {
  285. .page-header {
  286. .page-logo {
  287. display: none;
  288. }
  289. }
  290. .page-container {
  291. display: flex;
  292. flex-direction: column;
  293. justify-content: flex-start;
  294. .page-sidebar-wrapper {
  295. width: 100%;
  296. }
  297. }
  298. }
  299. }
  300. @media screen and (max-height: 700px) {
  301. #page-main {
  302. .page-footer {
  303. display: none;
  304. }
  305. }
  306. }
  307. #page-main #page-container #page-content-wrapper .box {
  308. display: flex;
  309. flex-direction: column;
  310. .el-tabs {
  311. flex-grow: 1;
  312. flex-shrink: 1;
  313. display: flex;
  314. flex-direction: column;
  315. .el-tabs__header {
  316. flex-grow: 0;
  317. flex-shrink: 0;
  318. }
  319. .el-tabs__content {
  320. flex-grow: 1;
  321. flex-shrink: 1;
  322. display: flex;
  323. flex-direction: column;
  324. .el-tab-pane {
  325. height: 100%;
  326. // flex-grow: 1;
  327. // flex-shrink: 1;
  328. display: flex;
  329. flex-direction: column;
  330. // // > div {
  331. // // flex-grow: 1;
  332. // // flex-shrink: 1;
  333. // // }
  334. }
  335. }
  336. }
  337. }