serviceOrder.wxss 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. /* padding:0 24rpx; */
  5. }
  6. view,text{
  7. box-sizing: border-box;
  8. color:#333;
  9. font-size: 34rpx;
  10. }
  11. .whole-page{
  12. min-height: 2000rpx;
  13. }
  14. /* 服务单 */
  15. .service-order{
  16. margin:10rpx 24rpx 16rpx;
  17. width:702rpx;
  18. background: #fff;
  19. border-radius: 18rpx;
  20. min-height: 300rpx;
  21. padding:0 20rpx 32rpx;
  22. }
  23. .service-title{
  24. height:96rpx;
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. line-height: 96rpx;
  29. }
  30. .ser-title-left image{
  31. width:36rpx;
  32. height:36rpx;
  33. margin-right:6rpx;
  34. }
  35. .ser-title-left view{
  36. font-size: 32rpx;
  37. }
  38. .ser-title-right view{
  39. font-size: 22rpx;
  40. color: #09AFFF;
  41. }
  42. .ser-title-right image{
  43. width:24rpx;
  44. height:24rpx;
  45. margin-right:6rpx;
  46. }
  47. .ser-title-left,.ser-title-right{
  48. display: flex;
  49. align-items: center;
  50. height: 96rpx;
  51. }
  52. .related-info{
  53. background: #F6FFED;
  54. border-radius: 18rpx;
  55. padding:24rpx 32rpx 32rpx;
  56. }
  57. .related-info .column{
  58. height: 60rpx;
  59. line-height: 60rpx;
  60. display: flex;
  61. justify-content: space-between;
  62. }
  63. .column .title{
  64. font-weight: bold;
  65. }
  66. .related-info .row{
  67. line-height: 60rpx;
  68. }
  69. .notice{
  70. padding:10rpx 12rpx;
  71. background: #E6F7FF;
  72. border-radius: 14rpx;
  73. display: flex;
  74. line-height: 36rpx;
  75. align-items: center;
  76. }
  77. .notice image{
  78. width:30rpx;
  79. height:30rpx;
  80. margin-right:20rpx;
  81. }
  82. .notice view{
  83. color: #09AFFF;
  84. font-size: 26rpx;
  85. }
  86. .service-info{
  87. padding-left:12rpx;
  88. }
  89. .service-info .row{
  90. line-height: 60rpx;
  91. }
  92. .service-info .order-num{
  93. height: 60rpx;
  94. display: flex;
  95. align-items: center;
  96. }
  97. .copy-img{
  98. width:36rpx;
  99. height:36rpx;
  100. margin-left:4rpx;
  101. }
  102. .service-info .column{
  103. height: 60rpx;
  104. line-height: 60rpx;
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. }
  109. .callup-img{
  110. width:36rpx;
  111. height: 36rpx;
  112. }
  113. .service-info .address{
  114. display: flex;
  115. margin:6rpx 0;
  116. line-height: 48rpx;
  117. }
  118. .service-info .address .detail{
  119. flex:1;
  120. }
  121. .service-info .address image{
  122. margin:12rpx 0 0 30rpx;
  123. width:36rpx;
  124. height: 36rpx;
  125. }
  126. .operate-block{
  127. display: flex;
  128. align-items: center;
  129. margin-top:22rpx;
  130. height: 40rpx;
  131. line-height: 40rpx;
  132. justify-content: flex-end;
  133. }
  134. .operate-item{
  135. display: flex;
  136. height: 40rpx;
  137. align-items: center;
  138. margin-left:12rpx;
  139. }
  140. .operate-item image{
  141. width:28rpx;
  142. height:28rpx;
  143. margin-right:4rpx;
  144. }
  145. .operate-item view{
  146. font-size: 30rpx;
  147. color: #0EAEFC;
  148. }
  149. .operate-item.disable view{
  150. color: rgba(0,0,0,0.25);
  151. }
  152. /* 日维度 */
  153. .date-board-wrapper{
  154. width: 702rpx;
  155. height: 250rpx;
  156. background: #FFFFFF;
  157. border-radius: 18rpx;
  158. padding:16rpx 26rpx;
  159. margin:0 24rpx;
  160. }
  161. .date-board{
  162. width: 650rpx;
  163. height: 218rpx;
  164. background: #E6F7FF;
  165. border-radius: 15rpx;
  166. display:flex;
  167. align-items: center;
  168. margin-bottom:38rpx;
  169. }
  170. view.date-order-left{
  171. height:218rpx;
  172. width:172rpx;
  173. border-right:2rpx solid #e4e4e4;
  174. display: flex;
  175. flex-direction: column;
  176. align-items: center;
  177. justify-content: center;
  178. font-size:30rpx;
  179. }
  180. .date-order-left view{
  181. font-size: 30rpx;
  182. }
  183. view.date-order-left .number{
  184. font-size: 36rpx;
  185. height: 50rpx;
  186. line-height: 50rpx;
  187. margin-bottom:10rpx;
  188. }
  189. .date-order-right{
  190. display:flex;
  191. flex-wrap: wrap;
  192. height: 218rpx;
  193. flex:1;
  194. }
  195. .data-item{
  196. height: 100rpx;
  197. display: flex;
  198. flex-direction: column;
  199. align-items: center;
  200. justify-content: space-around;
  201. width:158rpx;
  202. }
  203. .data-item .num{
  204. font-size: 36rpx;
  205. height: 50rpx;
  206. color:#E2B650;
  207. }
  208. .data-item .item-tag{
  209. font-size: 24rpx;
  210. height: 36rpx;
  211. line-height: 36rpx;
  212. border-radius:4rpx;
  213. color:#fff;
  214. width:120rpx;
  215. text-align: center;
  216. background:#E2B650;
  217. }
  218. .data-item.red .num{
  219. color: #E85050;
  220. }
  221. .data-item.red .item-tag{
  222. width:74rpx;
  223. background: #FF5050;
  224. }
  225. .data-item.green .num{
  226. color: #39CB7F;
  227. }
  228. .data-item.green .num text{
  229. font-size: 24rpx;
  230. color: #39CB7F;
  231. }
  232. .data-item.green .item-tag{
  233. width:74rpx;
  234. background: #39CB7F;
  235. }
  236. .data-item.blue .num{
  237. color: #09AFFF;
  238. }
  239. .data-item.blue .num text{
  240. font-size: 24rpx;
  241. color: #09AFFF;
  242. }
  243. .data-item.blue .item-tag{
  244. width:74rpx;
  245. background: #09AFFF;
  246. }
  247. .current-date{
  248. height: 70rpx;
  249. display:flex;
  250. align-items: center;
  251. padding-left:48rpx;
  252. background:#F3F3F3;
  253. }
  254. .current-date .day{
  255. color: #09AFFF;
  256. line-height: 48rpx;
  257. height: 48rpx;
  258. font-size: 30rpx;
  259. border-bottom: 4rpx solid #09afff;
  260. }
  261. .current-date .today{
  262. width: 64rpx;
  263. height: 40rpx;
  264. background: #FFFFFF;
  265. border-radius: 4rpx;
  266. border: 2rpx solid #1677FF;
  267. font-size: 24rpx;
  268. color:#1677FF;
  269. margin:8rpx 0 0 8rpx;
  270. text-align: center;
  271. }
  272. /* 请假记录 */
  273. .leave-fold{
  274. width: 702rpx;
  275. height: 66rpx;
  276. background: #FFFFFF;
  277. border-radius: 16rpx;
  278. display: flex;
  279. align-items: center;
  280. justify-content: space-between;
  281. margin:12rpx 24rpx;
  282. padding:0 20rpx 0 40rpx;
  283. }
  284. .fold-left{
  285. font-size: 32rpx;
  286. }
  287. .fold-right{
  288. display: flex;
  289. align-items: center;
  290. height: 66rpx;
  291. }
  292. .fold-right .leave-num{
  293. color: #666;
  294. }
  295. .fold-right image{
  296. width:24rpx;
  297. height: 24rpx;
  298. margin-left:6rpx;
  299. }
  300. .leave-item{
  301. width: 702rpx;
  302. background: #FFFFFF;
  303. border-radius: 18rpx;
  304. padding:28rpx 26rpx 40rpx;
  305. margin:0 24rpx;
  306. }
  307. .leave-title{
  308. height: 48rpx;
  309. display:flex;
  310. align-items: center;
  311. margin-bottom:16rpx;
  312. }
  313. .leave-title image{
  314. width:34rpx;
  315. height: 34rpx;
  316. margin-right:10rpx;
  317. }
  318. .leave-title view{
  319. font-size: 32rpx;
  320. line-height: 48rpx;
  321. }
  322. .leave-line{
  323. margin-bottom:6rpx;
  324. line-height: 48rpx;
  325. display:flex ;
  326. }
  327. .leave-line view:first-child{
  328. width:150rpx;
  329. }
  330. .leave-line view:last-child{
  331. flex:1;
  332. }
  333. .dqjsq{
  334. width:110rpx;
  335. height: 110rpx;
  336. background:#fff;
  337. border-radius: 110rpx;
  338. position:fixed;
  339. z-index: 99;
  340. right:64rpx;
  341. bottom:254rpx;
  342. }
  343. .calendar-wrapper{
  344. margin:12rpx 24rpx 0;
  345. width:702rpx;
  346. border-radius:18rpx;
  347. background:#fff;
  348. min-height: 200rpx;
  349. padding:30rpx 24rpx 18rpx;
  350. }
  351. .current-month{
  352. margin:12rpx 0 22rpx;
  353. height: 48rpx;
  354. font-size: 28rpx;
  355. line-height: 48rpx;
  356. }
  357. .month-title{
  358. height: 48rpx;
  359. display: flex;
  360. align-items: center;
  361. justify-content: space-between;
  362. }
  363. .month-title-left{
  364. height: 48rpx;
  365. display: flex;
  366. align-items: center;
  367. }
  368. .month-title-left view{
  369. font-size: 32rpx;
  370. }
  371. .month-title-left image{
  372. margin-left:12rpx;
  373. width:32rpx;
  374. height: 32rpx;
  375. }
  376. .month-title-right{
  377. display: flex;
  378. align-items: center;
  379. height: 48rpx;
  380. }
  381. .month-title-right image{
  382. width:28rpx;
  383. height: 28rpx;
  384. margin-left:4rpx;
  385. }
  386. .last-month{
  387. line-height: 48rpx;
  388. }
  389. .next-month{
  390. line-height: 48rpx;
  391. margin-left:14rpx;
  392. }
  393. .month-border-wrapper view.date-order-left{
  394. justify-content: space-between;
  395. }
  396. .month-order-item{
  397. height: 100rpx;
  398. display:flex;
  399. flex-direction: column;
  400. align-items: center;
  401. }
  402. view.date-order-left .month-order-item .number{
  403. margin-bottom:0;
  404. }
  405. .whole-calendar{
  406. display: flex;
  407. flex-wrap: wrap;
  408. }
  409. .calendar-item{
  410. display: flex;
  411. flex-direction: column;
  412. width:92rpx;
  413. align-items: flex-end;
  414. padding:14rpx 0 6rpx;
  415. }
  416. .calendar-week{
  417. font-size: 32rpx;
  418. color:#999;
  419. height: 36rpx;
  420. line-height: 36rpx;
  421. width: 68rpx;
  422. text-align: center;
  423. }
  424. .calendar-day{
  425. height: 30rpx;
  426. line-height: 30rpx;
  427. font-size: 32rpx;
  428. color:#666;
  429. margin:6rpx 0;
  430. width: 68rpx;
  431. text-align: center;
  432. }
  433. .selected-calendar{
  434. background: rgba(9,175,255,0.05);
  435. border-radius: 12rpx;
  436. }
  437. .selected-calendar .calendar-week{
  438. color:#09afff;
  439. }
  440. .selected-calendar .calendar-day{
  441. color:#09afff;
  442. }
  443. .selected-dot{
  444. margin:0 30rpx 6rpx 0;
  445. width:6rpx;
  446. height: 6rpx;
  447. border-radius: 6rpx;
  448. background:transparent;
  449. }
  450. .selected-calendar .selected-dot{
  451. background:#09afff;
  452. }
  453. .calendar-order-item .time{
  454. /* width: 48rpx;
  455. height: 18rpx;
  456. line-height: 18rpx;
  457. font-size: 12rpx; */
  458. width: 68rpx;
  459. height: 32rpx;
  460. line-height: 32rpx;
  461. font-size: 24rpx;
  462. border-radius: 4rpx;
  463. background: #39CB7F;
  464. color:#fff;
  465. text-align:center;
  466. margin-bottom:8rpx;
  467. }
  468. .calendar-order-item .time.pl{
  469. background: #09AFFF;
  470. }
  471. .calendar-order-item .time.no-finish{
  472. background: #fff;
  473. color:#39CB7F;
  474. border:2rpx solid #39CB7F;
  475. }
  476. .calendar-order-item .time.pl.no-finish{
  477. background: #fff;
  478. color:#09AFFF;
  479. border:2rpx solid #09AFFF;
  480. }
  481. .eval-wrapper{
  482. width:14rpx;
  483. height: 32rpx;
  484. align-items: center;
  485. display: flex;
  486. margin-right:2rpx;
  487. }
  488. .calendar-order-item{
  489. display: flex;
  490. width:92rpx;
  491. justify-content: flex-end;
  492. }
  493. .eval-wrapper image{
  494. width:14rpx;
  495. height: 14rpx;
  496. }
  497. .fold-calcendar{
  498. display: flex;
  499. align-items: center;
  500. flex-direction: column;
  501. width:140rpx;
  502. margin:0 auto;
  503. }
  504. .fold-calcendar image{
  505. width:36rpx;
  506. height: 36rpx;
  507. }
  508. .fold-calcendar view{
  509. color: #09AFFF;
  510. font-size: 24rpx;
  511. margin-left:6rpx;
  512. line-height: 14rpx;
  513. }
  514. .service-status{
  515. height:60rpx;
  516. align-items: center;
  517. display: flex;
  518. }
  519. .service-status image{
  520. width:24rpx;
  521. height:24rpx;
  522. margin-right:8rpx;
  523. }
  524. .invite-comment{
  525. background: #E6F7FF;
  526. border-radius: 7rpx;
  527. border: 2px solid #91D5FF;
  528. color: #096DD9;
  529. font-size: 22rpx;
  530. width: 92rpx;
  531. height: 32rpx;
  532. text-align:center;
  533. margin:0 10rpx;
  534. line-height: 24rpx;
  535. }
  536. .hp-wrapper{
  537. display:flex;
  538. align-items: center;
  539. margin-right:10rpx;
  540. width: 96rpx;
  541. height: 32rpx;
  542. background: #F6FFED;
  543. border-radius: 7rpx;
  544. border: 2rpx solid #A0D911;
  545. justify-content: center;
  546. }
  547. .hp-wrapper text{
  548. color: #73D13D;
  549. line-height: 24rpx;
  550. font-size: 22rpx;
  551. }
  552. .cp-wrapper{
  553. display:flex;
  554. align-items: center;
  555. width: 96rpx;
  556. height: 32rpx;
  557. background: #FFF2E8;
  558. border-radius: 7rpx;
  559. border: 2rpx solid #FA541C;
  560. justify-content: center;
  561. }
  562. .cp-wrapper text{
  563. color: #FA541C;
  564. line-height: 24rpx;
  565. font-size: 22rpx;
  566. }
  567. .service-order.cancel-order view{
  568. color:#aaa;
  569. }
  570. .service-order.cancel-order view.blue-font{
  571. color:#09AFFF;
  572. }