components.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. .jnpf-tree-select-popup {
  2. height: 100%;
  3. z-index: 9999 !important;
  4. .jnpf-tree-select-body {
  5. height: 100%;
  6. display: flex;
  7. flex-direction: column;
  8. .jnpf-tree-select-title {
  9. display: flex;
  10. align-items: center;
  11. height: 100rpx;
  12. padding: 0 16rpx !important;
  13. .backIcon {
  14. font-size: 40rpx;
  15. color: #000;
  16. }
  17. .title {
  18. flex: 1;
  19. text-align: center;
  20. padding-right: 40rpx;
  21. font-size: 32rpx;
  22. }
  23. }
  24. .jnpf-tree-select-search {
  25. padding: 10px 12px;
  26. }
  27. .jnpf-tree-selected {
  28. width: 100%;
  29. padding: 0 44rpx 0;
  30. .jnpf-tree-selected-head {
  31. width: 100%;
  32. height: 60rpx;
  33. display: flex;
  34. justify-content: space-between;
  35. .clear-btn {
  36. color: #2979ff;
  37. }
  38. }
  39. .jnpf-tree-selected-box {
  40. width: 100%;
  41. display: flex;
  42. justify-content: center;
  43. border-bottom: 1rpx solid #c0c4cc;
  44. .select-list {
  45. max-height: 150rpx;
  46. padding-top: 10rpx;
  47. justify-content: flex-start;
  48. flex-wrap: wrap;
  49. .u-selectTag {
  50. margin-bottom: 10rpx;
  51. margin-left: 10rpx;
  52. }
  53. }
  54. .jnpf-tree-selected-list{
  55. display: flex;
  56. justify-content: flex-start;
  57. flex-wrap: wrap;
  58. padding-top: 10rpx;
  59. .u-selectTag {
  60. width: 310rpx;
  61. border: 1px solid #2194fa;
  62. background-color: #e8f4fe;
  63. line-height: 40rpx;
  64. margin: 10rpx;
  65. padding-left: 10rpx;
  66. display: flex;
  67. align-items: center;
  68. border-radius: 8rpx;
  69. &.u-selectTag-flow{
  70. .jnpf-tree-selected-content{
  71. width: 100%;
  72. margin-left: 0;
  73. }
  74. }
  75. .jnpf-tree-selected-content {
  76. width: 74%;
  77. margin-left: 10rpx;
  78. .name-box{
  79. color: #353535;
  80. display: flex;
  81. .name {
  82. flex: 1;
  83. white-space: nowrap;
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. }
  87. .close {
  88. width: 26px;
  89. padding-right: 8rpx;
  90. justify-content: flex-end;
  91. color: #2194fa;
  92. }
  93. }
  94. .organize {
  95. color: #a0a1a1;
  96. white-space: nowrap;
  97. overflow: hidden;
  98. text-overflow: ellipsis
  99. }
  100. }
  101. }
  102. }
  103. .user-select-list{
  104. max-height: 240rpx;
  105. display: flex;
  106. justify-content: flex-start;
  107. flex-wrap: wrap;
  108. padding-top: 10rpx;
  109. }
  110. }
  111. }
  112. .jnpf-tree-select-tree {
  113. flex: 1;
  114. overflow: auto;
  115. .list-box{
  116. height: 100%;
  117. .list-item{
  118. display: flex;
  119. width: 100%;
  120. padding: 0 10px;
  121. box-sizing: border-box;
  122. .radio-label{
  123. display: flex;
  124. width: 100%;
  125. }
  126. .list-item-content{
  127. flex: 1;
  128. }
  129. }
  130. }
  131. }
  132. }
  133. }
  134. .nodata {
  135. height: 100%;
  136. margin: auto;
  137. align-items: center;
  138. justify-content: center;
  139. color: #909399;
  140. .noDataIcon {
  141. width: 300rpx;
  142. height: 210rpx;
  143. }
  144. }
  145. .jnpf-date-range {
  146. width: 100%;
  147. display: flex;
  148. .u-input__input {
  149. text-align: center !important;
  150. }
  151. }
  152. .jnpf-bottom-actions,
  153. .jnpf-tree-select-actions {
  154. background-color: #fff;
  155. display: flex;
  156. width: 100%;
  157. height: 88rpx;
  158. box-shadow: 0 -2rpx 8rpx #e1e5ec;
  159. z-index: 999999;
  160. flex-shrink: 0;
  161. .buttom-btn {
  162. width: 100%;
  163. /* #ifndef MP */
  164. height: 88rpx !important;
  165. line-height: 88rpx !important;
  166. border-radius: 0 !important;
  167. &::after {
  168. border: none !important;
  169. }
  170. /* #endif */
  171. /* #ifdef MP */
  172. .u-btn {
  173. width: 100%;
  174. height: 88rpx !important;
  175. line-height: 88rpx !important;
  176. border-radius: 0 !important;
  177. &::after {
  178. border: none !important;
  179. }
  180. }
  181. /* #endif */
  182. }
  183. }