approval.scss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. .order-card{
  2. background-size: 100% auto;
  3. overflow: hidden;
  4. margin: 24rpx 24rpx 0;
  5. z-index: 50;
  6. background-color: #fff;
  7. .order-card-title{
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-between;
  11. align-items: center;
  12. padding: 16rpx 40rpx;
  13. height: 90rpx;
  14. font-size: 30rpx;
  15. font-weight: bold;
  16. color: #222;
  17. border-bottom: 1px solid #f5f7fa;
  18. }
  19. .order-info {
  20. background-color: #fff;
  21. font-size: 28rpx;
  22. line-height: 56rpx;
  23. padding: 24rpx 40rpx;
  24. position: relative;
  25. .info-line {
  26. display: flex;
  27. flex-direction: row;
  28. align-items: center;
  29. .label {
  30. width: 200rpx;
  31. text-align: left;
  32. font-size: 24rpx;
  33. color: #999;
  34. }
  35. .info {
  36. flex: 1;
  37. font-size: 24rpx;
  38. color: #222;
  39. }
  40. .tag{
  41. padding: 0 16rpx 0 12rpx;
  42. border-top-right-radius: 40rpx;
  43. border-bottom-right-radius: 40rpx;
  44. height: 40rpx;
  45. line-height: 40rpx;
  46. }
  47. .tag-ls{
  48. border: 1px solid #f9ae3d;
  49. background-color: #fdf6ec;
  50. color: #f9ae3d;
  51. }
  52. .tag-gd{
  53. border: 1px solid #3c9cff;
  54. background-color: #ecf5ff;
  55. color: #3c9cff;
  56. }
  57. .tag-gx{
  58. border: 1px solid #5ac725;
  59. background-color: #f5fff0;
  60. color: #5ac725;
  61. }
  62. }
  63. .qrcode-logo{
  64. position: absolute;
  65. width: 128rpx;
  66. height: 128rpx;
  67. bottom: 24rpx;
  68. right: 24rpx;
  69. .img{
  70. width: 100%;
  71. height: 100%;
  72. }
  73. }
  74. }
  75. .card-oper{
  76. display: flex;
  77. flex-direction: row;
  78. justify-content: flex-end;
  79. border-top: solid 1px #f5f7fa;
  80. padding: 24rpx;
  81. .btn{
  82. width: 25%;
  83. margin-left: 32rpx;
  84. .oper-btn{
  85. margin: 0;
  86. // width: 152rpx;
  87. // height: 60rpx;
  88. line-height: 56rpx;
  89. background: #fff;
  90. font-size: 26rpx;
  91. }
  92. .info{
  93. color: #222;
  94. border: 2rpx solid #ccc;
  95. }
  96. .red{
  97. color: #DC3838 ;
  98. border: 2rpx solid #DC3838 ;
  99. }
  100. .yellow{
  101. color: #ff9900;
  102. border: 2rpx solid #ff9900;
  103. }
  104. .bule{
  105. color: #4680F9;
  106. border: 2rpx solid #4680F9;
  107. }
  108. }
  109. }
  110. }
  111. .content{
  112. background-color: #f5f7fa;
  113. min-height: 100%;
  114. }
  115. .search-wrap{
  116. padding: 10px 16px;
  117. background-color: #4680F9;
  118. // box-shadow:0 0 16rpx 0px rgba(0, 0, 0, 0.1);
  119. display: flex;
  120. flex-direction: row;
  121. align-items: center;
  122. .input-wrap{
  123. flex: 1;
  124. display: flex;
  125. flex-direction: row;
  126. background-color: #fff;
  127. border-radius: 100rpx;
  128. align-items: center;
  129. margin-right: 20rpx;
  130. border: 1px solid #4680F9;
  131. .search-btn{
  132. align-items: center;
  133. margin-right: 32rpx;
  134. padding-left: 20rpx;
  135. height: 44rpx;
  136. line-height: 44rpx;
  137. color: #333;
  138. border-left: 1px solid #d3d3d3;
  139. }
  140. }
  141. }
  142. .search-dialog{
  143. position: relative;
  144. background-color: #f2f2f2;
  145. padding: 32rpx;
  146. height: 1080rpx;
  147. border-top-left-radius: 16px;
  148. border-top-right-radius: 16px;
  149. .uni-date-x{
  150. background-color: #f2f2f2;
  151. }
  152. .dialog-title{
  153. font-size: 16px;
  154. font-weight: 600;
  155. text-align: center;
  156. padding: 0 0 16rpx;
  157. }
  158. .condition-wrap{
  159. height: 930rpx;
  160. overflow-y: auto;
  161. padding-bottom: 100rpx;
  162. .input{
  163. height: 80rpx;
  164. background-color: #fff;
  165. display: flex;
  166. flex-direction: row;
  167. align-items: center;
  168. padding:0 32rpx;
  169. border-radius: 8rpx;
  170. }
  171. .last-one{
  172. margin-bottom: 32rpx;
  173. }
  174. }
  175. .p-title{
  176. font-size: 15px;
  177. padding: 32rpx 0;
  178. }
  179. .sure-btn{
  180. position: absolute;
  181. bottom: 32rpx;
  182. width: calc(100% - 64rpx);
  183. z-index: 999;
  184. .btn{
  185. background-color: #4680F9;
  186. color: #fff;
  187. }
  188. }
  189. }
  190. .u-tabs-box {
  191. box-shadow:0 12rpx 12rpx -10rpx rgba(0, 0, 0, 0.1);
  192. background-color: #fff;
  193. .ordertype-tab{
  194. padding: 16rpx 40rpx;
  195. display: flex;
  196. flex-direction: row;
  197. justify-content: space-between;
  198. color: #666;
  199. font-size: 32rpx;
  200. .active{
  201. color: #333;
  202. font-weight: bolder;
  203. }
  204. }
  205. .orderstatus-tab{
  206. padding: 24rpx;
  207. display: flex;
  208. flex-direction: row;
  209. justify-content: left;
  210. color: #333;
  211. font-size: 24rpx;
  212. span{
  213. padding: 4rpx 16rpx;
  214. background-color: #f2f2f2;
  215. border: 1px solid #f2f2f2;
  216. color: #333;
  217. height: 32rpx;
  218. border-radius: 160rpx;
  219. margin-right: 20rpx;
  220. }
  221. .active{
  222. background-color: #eef7ff;
  223. border: 1px solid #4680F9;
  224. color: #4680F9;
  225. }
  226. .sxs-btn{
  227. flex:1;
  228. display: flex;
  229. font-size: 28rpx;
  230. justify-content: flex-end;
  231. flex-direction: row;
  232. align-items: center;
  233. }
  234. }
  235. }
  236. .sx-btn{
  237. position: absolute;
  238. top: 0;
  239. right: 16px;
  240. display: flex;
  241. flex-direction: row;
  242. line-height: 44px;
  243. }
  244. .swiper-box {
  245. // margin: 0 24rpx;
  246. // height: calc(100% - 44px);
  247. padding: 0 0 24rpx;
  248. }
  249. .separate-fl{
  250. color: white;
  251. background-color: #4680F9;
  252. border-color: #4680F9;
  253. border-width: 1px;
  254. border-style: solid;
  255. border-radius: 3px;
  256. min-width: 60px;
  257. height: 30px;
  258. padding: 0px 8px;
  259. font-size: 12px;
  260. line-height: 30px;
  261. }