【前端】智能库房综合管理系统前端项目
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.

224 lines
3.7 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
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
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
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
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. // 借阅管理
  2. ::v-deep .el-dialog .el-dialog__body{
  3. .el-button{
  4. background-color: #3A99FD;
  5. border-color: #3A99FD;
  6. }
  7. .el-button.is-disabled,
  8. .el-button.is-disabled:hover,
  9. .el-button.is-disabled:focus{
  10. background-color: #02255F;
  11. color: #13439E;
  12. border-color: #02255F;
  13. }
  14. }
  15. .crud-opts {
  16. display: inline-block;
  17. }
  18. .iconfont::before {
  19. margin-right: 5px;
  20. }
  21. .cell-lend {
  22. display: inline-block;
  23. height: 26px;
  24. line-height: 26px;
  25. border-radius: 13px;
  26. text-align: center;
  27. }
  28. .no-lend {
  29. color: #F65163;
  30. border: 1px solid #F65163;
  31. }
  32. .have-lend {
  33. color: #fff;
  34. background-color: #F65163;
  35. }
  36. .other-lend {
  37. color: #F65163;
  38. border: 1px solid #F65163;
  39. position: relative;
  40. &::after {
  41. content: '';
  42. display: block;
  43. height: 2px;
  44. width: 20px;
  45. background-color: #F65163;
  46. position: absolute;
  47. left: 50%;
  48. top: 50%;
  49. transform: translate(-50%, -50%);
  50. }
  51. }
  52. .has-return{
  53. color: #1AAE93;
  54. border: 1px solid #1AAE93;
  55. }
  56. .clear {
  57. border-radius: 13px;
  58. width: 80px;
  59. height: 26px;
  60. line-height: 26px;
  61. display: inline-block;
  62. text-align: center;
  63. }
  64. .no-clear .clear {
  65. color: #FD8042;
  66. border: 1px solid #FD8042;
  67. }
  68. .have-clear .clear {
  69. color: #1AAE93;
  70. border: 1px solid #1AAE93;
  71. }
  72. .fail-clear .clear {
  73. color: #F65163;
  74. border: 1px solid #F65163;
  75. }
  76. .other-clear .clear {
  77. color: #0FBED9;
  78. border: 1px solid #0FBED9;
  79. }
  80. .error-clear-bg .clear{
  81. color: #fff;
  82. background-color: #F65163;
  83. }
  84. .have-clear-bg .clear{
  85. color: #fff;
  86. background-color: #1AAE93;
  87. }
  88. .no-clear-bg .clear{
  89. color: #fff;
  90. background-color: #FD8042;
  91. }
  92. //3D库房
  93. .iframe_box {
  94. width: 100%;
  95. height: calc(100vh - 285px);
  96. }
  97. .warehouse {
  98. display: flex;
  99. max-height: calc(100vh - 184px);
  100. overflow: hidden;
  101. .warehouse-left {
  102. flex: 1;
  103. }
  104. .warehouse-right {
  105. width: 458px;
  106. max-height: calc(100vh - 192px);
  107. }
  108. }
  109. .warehose-el-table ::v-deep .el-table__header-wrapper {
  110. box-shadow: inset 0px 0px 6px 1px #339cff;
  111. background: none !important;
  112. }
  113. ::v-deep .warehose-el-table .el-table__header .el-table__cell {
  114. padding: 0;
  115. height: 30px;
  116. background: transparent;
  117. .cell {
  118. font-size: 14px;
  119. }
  120. }
  121. ::v-deep .light-blue {
  122. background-color: #011E4F !important;
  123. }
  124. .title-arrow {
  125. position: relative;
  126. display: inline-block;
  127. // width: 460px;
  128. &::before {
  129. content: '';
  130. width: 36px;
  131. height: 12px;
  132. position: absolute;
  133. right: -60px;
  134. top: 50%;
  135. transform: translateY(-50%);
  136. background: url('~@/assets/images/warehouse_arrow_left.png') no-repeat;
  137. }
  138. &::after {
  139. content: '';
  140. width: 36px;
  141. height: 12px;
  142. position: absolute;
  143. left: -60px;
  144. top: 50%;
  145. transform: translateY(-50%);
  146. background: url('~@/assets/images/warehouse_arrow_right.png') no-repeat;
  147. }
  148. }
  149. .table-title {
  150. color: #fff;
  151. font-size: 16px;
  152. text-align: center;
  153. height: 40px;
  154. line-height: 40px;
  155. }
  156. .warehouse-svg {
  157. margin: 0 10px 1px 0;
  158. }
  159. ::v-deep .el-tag.el-tag--info {
  160. height: 26px;
  161. line-height: 26px;
  162. background-color: #13439E;
  163. border: none;
  164. color: #fff;
  165. }
  166. ::v-deep .el-tag.el-tag--info .el-tag__close {
  167. background-color: #fff;
  168. }
  169. //出入库
  170. .dpflex {
  171. display: flex;
  172. }
  173. .orange-btn {
  174. background-color: #FD8042;
  175. border: none;
  176. &.el-button.is-disabled,
  177. &.el-button.is-disabled:hover {
  178. background-color: #7E4021;
  179. color: #666;
  180. }
  181. }
  182. .green-btn {
  183. background-color: #1AAE93;
  184. border: none;
  185. &.el-button.is-disabled,
  186. &.el-button.is-disabled:hover {
  187. background-color: #0D5649;
  188. color: #666;
  189. }
  190. }