Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/js-web-jianguan
Showing
5 changed files
with
29 additions
and
9 deletions
... | @@ -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 | //错误日志样式 后期超优化 | ... | ... |
... | @@ -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 | ) | ... | ... |
-
Please register or sign in to post a comment