stock.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. page{
  2. height: 100%;
  3. }
  4. .app-container{
  5. height: 100vh;
  6. display: flex;
  7. flex-direction: column;
  8. overflow: hidden;
  9. background: white;
  10. }
  11. .scan-header{
  12. position: fixed;
  13. /* #ifndef APP-PLUS */
  14. top: 45px;
  15. /* #endif */
  16. /* #ifdef APP-PLUS */
  17. top: 80px;
  18. /* #endif */
  19. width: 100%;
  20. background-color: white;
  21. z-index: 999;
  22. }
  23. .cprk-content{
  24. /* height: calc(100vh - 100rpx) */
  25. }
  26. .fixed-column {
  27. position: sticky;
  28. top: 0;
  29. /* 其他样式属性 */
  30. }
  31. /*列表标签、input、下拉样式调整*/
  32. ::v-deep .uni-forms-item__label{
  33. justify-content: flex-end !important;
  34. font-size: 16px !important;
  35. min-width:84px;
  36. }
  37. ::v-deep .uni-forms-item__content{
  38. background-color: white;
  39. }
  40. ::v-deep .uni-easyinput__content-textarea,.uni-easyinput__content-input,.uni-easyinput{
  41. font-size: 16px !important;
  42. }
  43. ::v-deep .uni-select{
  44. background-color: white;
  45. font-size: 16px !important;
  46. }
  47. .form-container{
  48. padding: 0px 15px 5px 15px;
  49. }
  50. .scroll-Y {
  51. /* height: 100%; */
  52. /* #ifndef APP-PLUS */
  53. margin-top: 44px;
  54. height: calc(100vh - 135px);
  55. /* #endif */
  56. /* #ifdef APP-PLUS */
  57. margin-top: 54px;
  58. height: calc(100vh - 175px);
  59. /* #endif */
  60. }
  61. ::v-deep .uni-forms-item{
  62. margin-bottom: 5px !important;
  63. }
  64. .box-text{
  65. font-size: 16px;
  66. /* color: royalblue; */
  67. }
  68. ::v-deep .is-disabled {
  69. color: black !important;
  70. }
  71. .uni-input-border {
  72. padding: 0 10px;
  73. height: 35px;
  74. width: 100%;
  75. font-size: 14px;
  76. /* color: #666; */
  77. color: #0055ff;
  78. border: 1px #e5e5e5 solid;
  79. border-radius: 5px;
  80. box-sizing: border-box;
  81. }
  82. .icon {
  83. position: absolute;
  84. top: 10px;
  85. right: 10px;
  86. width: 20px;
  87. height: 20px;
  88. cursor: pointer;
  89. }
  90. .bottom-toolbar{
  91. background-color: #fcfcfc;
  92. height: 50px;
  93. width: 100%;
  94. position: fixed;
  95. bottom: 0;
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. padding: 10px 20px 10px 20px;
  100. z-index: 999;
  101. }
  102. /* 底部操作菜单 */
  103. .page-bottom{
  104. position:fixed;
  105. left: 30upx;
  106. right: 30upx;
  107. bottom:30upx;
  108. z-index: 95;
  109. display: flex;
  110. /* justify-content: center; */
  111. justify-content: space-between;
  112. padding: 10px 20px 10px 20px;
  113. align-items: center;
  114. /* width: 95%; */
  115. height: 100upx;
  116. background: rgba(255,255,255,.9);
  117. box-shadow: 0 0 20upx 0 rgba(0,0,0,.5);
  118. border-radius: 16upx;
  119. .p-b-btn{
  120. display:flex;
  121. flex-direction: column;
  122. align-items: center;
  123. justify-content: center;
  124. /* color: $font-color-base; */
  125. width: 96upx;
  126. height: 80upx;
  127. font-size: 16px;
  128. }
  129. }
  130. ::v-deep .zb-table{
  131. font-size: 16px !important;
  132. }