d4004ee4 by 蔡俊立
2 parents fae71263 e64a60ba
...@@ -18,9 +18,7 @@ export default { ...@@ -18,9 +18,7 @@ export default {
18 <style lang="scss" scoped> 18 <style lang="scss" scoped>
19 .app-main { 19 .app-main {
20 height: calc(100vh - 70px); 20 height: calc(100vh - 70px);
21 overflow-x: auto; 21 overflow-x: hidden;
22 box-sizing: border-box;
23 background-color: #EDF1F7;
24 box-sizing: border-box; 22 box-sizing: border-box;
25 } 23 }
26 </style> 24 </style>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -358,17 +358,36 @@ aside { ...@@ -358,17 +358,36 @@ aside {
358 position: relative; 358 position: relative;
359 } 359 }
360 360
361 .warehousing {
362 color: #FF9933;
363 position: relative;
364 }
365
366
361 .adopt::before { 367 .adopt::before {
362 position: absolute; 368 position: absolute;
363 content: ''; 369 content: '';
364 display: block; 370 display: block;
365 width: 8px; 371 width: 10px;
366 height: 8px; 372 height: 10px;
367 left: -15px; 373 left: -15px;
368 top: 5px; 374 top: 3px;
369 background: #00FAA8; 375 background: #00FAA8;
370 border-radius: 50%; 376 border-radius: 50%;
371 border: 5px solid rgba(0, 250, 168, 0.3); 377 border: 2px solid rgba(0, 0, 0, 0.6);
378 }
379
380 .warehousing::before {
381 position: absolute;
382 content: '';
383 display: block;
384 width: 10px;
385 height: 10px;
386 left: -15px;
387 top: 3px;
388 background: #FF9933;
389 border-radius: 50%;
390 border: 2px solid rgba(0, 0, 0, 0.6);
372 } 391 }
373 392
374 //错误日志样式 后期超优化 393 //错误日志样式 后期超优化
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
5 width: 100%; 5 width: 100%;
6 box-sizing: border-box; 6 box-sizing: border-box;
7 background-color: #000637; 7 background-color: #000637;
8 overflow-x: hidden;
8 9
9 &-header { 10 &-header {
10 width: 100%; 11 width: 100%;
......
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
3 height: 100%; 3 height: 100%;
4 transition: margin-left 0.28s; 4 transition: margin-left 0.28s;
5 margin-left: 220px; 5 margin-left: 220px;
6 box-sizing: border-box;
7 padding-right: 10px;
6 } 8 }
7 9
8 .sidebar-container { 10 .sidebar-container {
......
...@@ -52,8 +52,8 @@ class data extends filter { ...@@ -52,8 +52,8 @@ class data extends filter {
52 <div> 52 <div>
53 { 53 {
54 scope.row.jcjg 54 scope.row.jcjg
55 ? <el-tag type='success'>入库</el-tag> 55 ? <span class='warehousing'>入库</span>
56 : <el-tag type='primary'>入库1</el-tag> 56 : <span>入库1</span>
57 } 57 }
58 </div> 58 </div>
59 ) 59 )
......