【前端】智能库房综合管理系统前端项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
2.4 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. // 借阅管理
  2. .crud-opts{
  3. display: inline-block;
  4. }
  5. .iconfont::before{
  6. margin-right: 5px;
  7. }
  8. .cell-lend{
  9. display: inline-block;
  10. height: 26px;
  11. line-height: 26px;
  12. border-radius: 13px;
  13. text-align: center;
  14. }
  15. .no-lend .cell-lend{
  16. color:#F65163;
  17. border: 1px solid #F65163;
  18. }
  19. .have-lend .cell-lend{
  20. color: #fff;
  21. background-color: #F65163;
  22. }
  23. .other-lend .cell-lend{
  24. color:#F65163;
  25. border: 1px solid #F65163;
  26. position: relative;
  27. &::after{
  28. content: '';
  29. display: block;
  30. height: 2px;
  31. width: 20px;
  32. background-color: #F65163;
  33. position: absolute;
  34. left: 50%;
  35. top: 50%;
  36. transform: translate(-50%,-50%);
  37. }
  38. }
  39. .clear{
  40. border-radius: 13px;
  41. width: 80px;
  42. height: 26px;
  43. line-height: 26px;
  44. display: inline-block;
  45. text-align: center;
  46. }
  47. .no-clear .clear{
  48. color: #FD8042;
  49. border: 1px solid #FD8042;
  50. }
  51. .have-clear .clear{
  52. color: #1AAE93;
  53. border: 1px solid #1AAE93;
  54. }
  55. .fail-clear .clear{
  56. color: #F65163;
  57. border: 1px solid #F65163;
  58. }
  59. //3D库房
  60. .iframe_box{
  61. width: 100%;
  62. height: calc(100vh - 285px);
  63. }
  64. .warehouse{
  65. display: flex;
  66. .warehouse-left{
  67. flex: 1;
  68. }
  69. .warehouse-right{
  70. width: 458px;
  71. }
  72. }
  73. ::v-deep .el-table__header-wrapper{
  74. background: url('~@/assets/images/table_head_bg.png') no-repeat !important;
  75. }
  76. ::v-deep .warehose-el-table .el-table__header .el-table__cell{
  77. padding: 0;
  78. height: 30px;
  79. background: transparent;
  80. .cell{
  81. font-size: 14px;
  82. }
  83. }
  84. ::v-deep .light-blue{
  85. background-color: #011E4F !important;
  86. }
  87. .title-arrow{
  88. position: relative;
  89. width: 460px;
  90. &::before{
  91. content:'';
  92. width: 36px;
  93. height: 12px;
  94. position: absolute;
  95. left: 110px;
  96. top: 50%;
  97. transform: translateY(-50%);
  98. background: url('~@/assets/images/warehouse_arrow_right.png') no-repeat;
  99. }
  100. &::after{
  101. content:'';
  102. width: 36px;
  103. height: 12px;
  104. position: absolute;
  105. right: 110px;
  106. top: 50%;
  107. transform: translateY(-50%);
  108. background: url('~@/assets/images/warehouse_arrow_left.png') no-repeat;
  109. }
  110. }
  111. .table-title{
  112. color: #fff;
  113. font-size: 16px;
  114. text-align: center;
  115. height: 40px;
  116. line-height: 40px;
  117. }
  118. .warehouse-svg{
  119. margin:0 10px 1px 0;
  120. }
  121. ::v-deep .el-tag.el-tag--info{
  122. height: 26px;
  123. line-height: 26px;
  124. background-color: #13439E;
  125. border: none;
  126. color: #fff;
  127. }
  128. ::v-deep .el-tag.el-tag--info .el-tag__close{
  129. background-color: #fff;
  130. }