order-detail.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732
  1. /* pages/orders/order-detail.wxss */
  2. page {
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. background: #F4F4F4;
  7. }
  8. .container {
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .record-list {
  13. flex: 1;
  14. overflow-y: scroll;
  15. box-sizing: border-box;
  16. }
  17. .order-content {
  18. margin: 24rpx 26rpx 0;
  19. border-radius: 20rpx;
  20. padding: 32rpx 24rpx;
  21. // display: flex;
  22. background-color: #ffffff;
  23. .goods-title {
  24. font-weight: 600;
  25. font-size: 30rpx;
  26. color: #502F00;
  27. line-height: 42rpx;
  28. padding: 0 0 32rpx;
  29. }
  30. }
  31. .item-content {
  32. display: flex;
  33. width: 100%;
  34. &+.item-content {
  35. padding-top: 60rpx;
  36. }
  37. .goods-icon {
  38. width: 140rpx;
  39. height: 140rpx;
  40. margin-right: 24rpx;
  41. flex-shrink: 0;
  42. border-radius: 6px;
  43. overflow: hidden;
  44. }
  45. .goods-desc {
  46. flex: 1 auto;
  47. display: flex;
  48. flex-direction: column;
  49. }
  50. .goodsInfo {
  51. display: flex;
  52. justify-content: space-between;
  53. padding-top: 4rpx;
  54. .goods-name {
  55. flex: 1 auto;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. font-weight: 600;
  59. font-size: 30rpx;
  60. color: #131415;
  61. line-height: 50rpx;
  62. text-overflow: ellipsis;
  63. max-width: 480rpx;
  64. }
  65. }
  66. .goods-price {
  67. flex-shrink: 0;
  68. font-family: DINAlternate, DINAlternate;
  69. font-weight: bold;
  70. color: #131415;
  71. line-height: 48rpx;
  72. .stuff {
  73. font-size: 28rpx;
  74. padding-right: 4rpx;
  75. }
  76. .priceZ {
  77. font-size: 40rpx;
  78. }
  79. .priceF {
  80. font-size: 32rpx;
  81. }
  82. }
  83. .origin-price {
  84. font-weight: 400;
  85. font-size: 24rpx;
  86. color: #6D4718;
  87. line-height: 1;
  88. }
  89. .goods-type {
  90. display: flex;
  91. align-items: center;
  92. padding-top: 28rpx;
  93. .goods-card {
  94. height: 40rpx;
  95. background: #fdf2e2;
  96. border-radius: 6rpx;
  97. font-size: 26rpx;
  98. color: #502f00;
  99. line-height: 40rpx;
  100. padding: 0 12rpx;
  101. }
  102. .goods-num {
  103. font-size: 28rpx;
  104. color: #777;
  105. line-height: 36rpx;
  106. }
  107. }
  108. }
  109. .goodsInfos {
  110. margin-top: 32rpx;
  111. // border-top: 2rpx solid #F2F2F2;
  112. .qrcode-line {
  113. position: relative;
  114. background: linear-gradient(to right, transparent 50%, rgba(242, 242, 242, 1) 50%) repeat-x; // 设置水平方向的线性渐变,透明与半透明色交替,模拟虚线线段
  115. background-size: 6px 1px; // 设置背景大小,控制虚线的线段长度和粗细,这里线段长度为10px,粗细为1px
  116. height: 2rpx; // 元素高度,可根据实际需求调整,用于展示虚线效果的高度范围
  117. // margin: 42rpx 0 32rpx;
  118. &::before,
  119. &::after {
  120. content: '';
  121. position: absolute;
  122. top: -20rpx;
  123. display: block;
  124. width: 40rpx;
  125. height: 40rpx;
  126. background-color: #F4F4F4;
  127. border-radius: 50%;
  128. }
  129. &::before {
  130. left: -45rpx;
  131. }
  132. &::after {
  133. right: -45rpx;
  134. }
  135. }
  136. }
  137. .goodsInfo-item {
  138. display: flex;
  139. justify-content: space-between;
  140. align-items: center;
  141. padding-top: 32rpx;
  142. .title {
  143. font-weight: 400;
  144. font-size: 28rpx;
  145. color: #131415;
  146. line-height: 40rpx;
  147. }
  148. .goods-price {
  149. flex-shrink: 0;
  150. font-family: DINAlternate, DINAlternate;
  151. font-weight: bold;
  152. color: #131415;
  153. line-height: 48rpx;
  154. .stuff {
  155. font-size: 32rpx;
  156. padding-right: 4rpx;
  157. }
  158. .priceZ {
  159. font-size: 48rpx;
  160. }
  161. .priceF {
  162. font-size: 32rpx;
  163. }
  164. }
  165. .calc-price {
  166. font-weight: bold;
  167. font-size: 28rpx;
  168. color: #FF0047;
  169. line-height: 32rpx;
  170. }
  171. }
  172. .goodsInfo-count {
  173. display: flex;
  174. justify-content: flex-end;
  175. .goods-price {
  176. flex-shrink: 0;
  177. font-family: DINAlternate, DINAlternate;
  178. font-weight: bold;
  179. color: #131415;
  180. line-height: 48rpx;
  181. .before {
  182. font-weight: 500;
  183. font-size: 28rpx;
  184. color: #131415;
  185. line-height: 40rpx;
  186. }
  187. .stuff {
  188. font-size: 32rpx;
  189. padding-right: 4rpx;
  190. }
  191. .priceZ {
  192. font-size: 48rpx;
  193. }
  194. .priceF {
  195. font-size: 38rpx;
  196. }
  197. }
  198. }
  199. .order-time {
  200. margin: 24rpx 26rpx 0;
  201. border-radius: 20rpx;
  202. padding: 36rpx 24rpx;
  203. background-color: #ffffff;
  204. .order-item {
  205. display: flex;
  206. justify-content: space-between;
  207. padding-bottom: 36rpx;
  208. &:last-child {
  209. padding-bottom: 0;
  210. }
  211. .title {
  212. font-size: 28rpx;
  213. color: #131415;
  214. line-height: 40rpx;
  215. }
  216. .value {
  217. font-size: 28rpx;
  218. color: #777777;
  219. line-height: 40rpx;
  220. }
  221. }
  222. }
  223. .select-section {
  224. margin: 24rpx 26rpx 0;
  225. background: #ffffff;
  226. border-radius: 20rpx;
  227. padding: 24rpx;
  228. display: flex;
  229. align-items: center;
  230. justify-content: space-between;
  231. .name {
  232. font-weight: 600;
  233. font-size: 30rpx;
  234. color: #000000;
  235. line-height: 42rpx;
  236. }
  237. .icon-arrow {
  238. width: 24rpx;
  239. height: 24rpx;
  240. }
  241. .add-buy-btn {
  242. width: 104rpx;
  243. background: linear-gradient(90deg, #544f4a 0%, #302f2b 100%);
  244. border-radius: 26rpx;
  245. margin: 0;
  246. padding: 0;
  247. font-weight: 600;
  248. font-size: 24rpx;
  249. color: #fbeac9;
  250. line-height: 44rpx;
  251. display: flex;
  252. align-items: center;
  253. justify-content: center;
  254. }
  255. }
  256. .select-address {
  257. .address-info {
  258. padding-right: 36rpx;
  259. }
  260. .address-text {
  261. font-weight: 600;
  262. font-size: 30rpx;
  263. color: #000000;
  264. line-height: 42rpx;
  265. }
  266. .address-user {
  267. padding-top: 12rpx;
  268. font-size: 28rpx;
  269. color: #333333;
  270. line-height: 40rpx;
  271. text {
  272. padding-right: 12rpx;
  273. &:last-child {
  274. color: #777;
  275. }
  276. }
  277. }
  278. .icon-arrow {
  279. width: 24rpx;
  280. height: 24rpx;
  281. flex-shrink: 0;
  282. }
  283. }
  284. .select-buy-user {
  285. flex-direction: column;
  286. padding: 34rpx 24rpx;
  287. .title {
  288. display: flex;
  289. width: 100%;
  290. justify-content: space-between;
  291. padding-bottom: 32rpx;
  292. border-bottom: 2rpx solid #F2F2F2;
  293. .name {
  294. color: #502F00;
  295. }
  296. }
  297. .user-list {
  298. padding-top: 32rpx;
  299. width: 100%;
  300. }
  301. .user-item {
  302. padding-bottom: 32rpx;
  303. font-size: 28rpx;
  304. color: #131415;
  305. line-height: 40rpx;
  306. display: flex;
  307. // align-items: center;
  308. justify-content: space-between;
  309. &:last-child {
  310. padding-bottom: 0;
  311. }
  312. .left-label {
  313. width: 196rpx;
  314. }
  315. .right-value {
  316. flex: 1;
  317. text-align: right;
  318. color: #777777;
  319. }
  320. }
  321. }
  322. .order-btn {
  323. margin-top: 24rpx;
  324. // position: fixed;
  325. // bottom: 0;
  326. // left: 0;
  327. width: 100%;
  328. background-color: #ffffff;
  329. padding: 20rpx 32rpx 58rpx 40rpx;
  330. display: flex;
  331. justify-content: space-between;
  332. box-sizing: border-box;
  333. .orders {
  334. display: flex;
  335. flex-direction: column;
  336. margin-right: 40rpx;
  337. image {
  338. width: 48rpx;
  339. height: 48rpx;
  340. }
  341. text {
  342. font-weight: 500;
  343. font-size: 22rpx;
  344. color: #131415;
  345. line-height: 32rpx;
  346. text-align: center;
  347. }
  348. }
  349. .more {
  350. display: flex;
  351. }
  352. // .price {
  353. // display: flex;
  354. // align-items: center;
  355. // .desc {
  356. // font-weight: 500;
  357. // font-size: 28rpx;
  358. // color: #131415;
  359. // line-height: 40rpx;
  360. // padding-top: 20rpx;
  361. // }
  362. // .currentPrice {
  363. // font-weight: bold;
  364. // color: #ff0047;
  365. // font-family: DINAlternate, DINAlternate;
  366. // .stuff {
  367. // font-size: 32rpx;
  368. // }
  369. // .priceZ {
  370. // font-size: 56rpx;
  371. // }
  372. // .priceF {
  373. // font-size: 32rpx;
  374. // }
  375. // }
  376. // }
  377. button {
  378. width: 100%;
  379. background: linear-gradient(90deg, #544f4a 0%, #302f2b 100%);
  380. border-radius: 88rpx;
  381. padding: 22rpx 84rpx;
  382. font-weight: 500;
  383. font-size: 32rpx;
  384. color: #fbeac9;
  385. line-height: 44rpx;
  386. display: flex;
  387. justify-content: center;
  388. }
  389. .btnGroup {
  390. position: relative;
  391. width: 100%;
  392. .currentPrice {
  393. font-weight: bold;
  394. color: #FBEAC9;
  395. font-family: DINAlternate, DINAlternate;
  396. display: flex;
  397. align-items: flex-end;
  398. .before {
  399. font-size: 28rpx;
  400. font-weight: 500;
  401. padding-right: 4rpx;
  402. }
  403. .after {
  404. font-weight: 500;
  405. font-size: 32rpx;
  406. padding-left: 12rpx;
  407. }
  408. .stuff {
  409. font-size: 32rpx;
  410. }
  411. .priceZ {
  412. font-size: 56rpx;
  413. line-height: 1;
  414. }
  415. .priceF {
  416. font-size: 32rpx;
  417. }
  418. }
  419. }
  420. .btnInnerFree {
  421. position: absolute;
  422. right: 0;
  423. top: -28rpx;
  424. background: linear-gradient(180deg, #ff5181 0%, #ff0047 100%);
  425. border-radius: 150rpx 200rpx 200rpx 0rpx;
  426. border: 2rpx solid #ffffff;
  427. padding: 0 8rpx;
  428. font-size: 24rpx;
  429. color: #ffffff;
  430. line-height: 34rpx;
  431. padding-top: 2rpx;
  432. overflow: hidden;
  433. font-weight: bold;
  434. text {
  435. font-weight: bold;
  436. }
  437. }
  438. }
  439. .top-bg {
  440. position: absolute;
  441. top: 0;
  442. left: 0;
  443. width: 100%;
  444. height: 98rpx;
  445. background: linear-gradient(180deg, #FBEAD0 0%, #FFFFFF 100%);
  446. border-radius: 32rpx 32rpx 0rpx 0rpx;
  447. }
  448. .icon-close {
  449. position: absolute;
  450. z-index: 2;
  451. top: 28rpx;
  452. right: 12rpx;
  453. padding: 20rpx;
  454. width: 30rpx;
  455. height: 30rpx;
  456. }
  457. .pop-address-title {
  458. position: relative;
  459. z-index: 1;
  460. text-align: center;
  461. padding-top: 36rpx;
  462. padding-bottom: 26rpx;
  463. font-weight: 600;
  464. font-size: 36rpx;
  465. color: #131415;
  466. line-height: 50rpx;
  467. }
  468. .cell-group {
  469. .van-cell {
  470. padding: 26rpx 28rpx;
  471. font-size: 30rpx;
  472. }
  473. .required {
  474. font-weight: 600;
  475. color: #666666;
  476. text {
  477. color: #FF5A56;
  478. }
  479. }
  480. .van-field__label {
  481. font-weight: 600;
  482. color: #666666;
  483. }
  484. .van-icon-arrow {
  485. color: #CCCCCC;
  486. font-weight: 600;
  487. }
  488. .textarea {
  489. height: 72rpx;
  490. }
  491. }
  492. .van-picker-column__item--selected {
  493. font-weight: 600;
  494. font-size: 32rpx;
  495. color: #6D4718 !important;
  496. }
  497. .pop-btn-group {
  498. padding: 100rpx 32rpx 58rpx;
  499. }
  500. .submit-btn {
  501. width: 100% !important;
  502. margin: 0 !important;
  503. padding: 0 !important;
  504. line-height: 88rpx;
  505. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  506. border-radius: 88rpx;
  507. font-weight: 500;
  508. font-size: 32rpx;
  509. color: #FBEAC9;
  510. }
  511. .address-list {
  512. padding: 30rpx 26rpx 0;
  513. max-height: 534rpx;
  514. overflow-x: hidden;
  515. overflow-y: auto;
  516. }
  517. .address-item {
  518. padding: 24rpx;
  519. background: #FFFFFF;
  520. border-radius: 20rpx;
  521. border: 4rpx solid #F2F2F2;
  522. margin-bottom: 22rpx;
  523. &.active {
  524. border: 4rpx solid #855F2E;
  525. }
  526. .item-title {
  527. font-weight: 600;
  528. font-size: 30rpx;
  529. color: #000000;
  530. line-height: 42rpx;
  531. }
  532. .item-users {
  533. display: flex;
  534. justify-content: space-between;
  535. padding-top: 24rpx;
  536. .item-user {
  537. font-size: 28rpx;
  538. color: #333333;
  539. line-height: 40rpx;
  540. text {
  541. padding-right: 8rpx;
  542. &:last-child {
  543. color: #777;
  544. }
  545. }
  546. }
  547. .item-btn-group {
  548. display: flex;
  549. flex: 1;
  550. justify-content: flex-end;
  551. .btn {
  552. width: 104rpx;
  553. padding: 0 !important;
  554. margin: 0 0 0 12rpx !important;
  555. line-height: 44rpx;
  556. border-radius: 44rpx;
  557. font-weight: 600;
  558. font-size: 24rpx;
  559. color: #333333;
  560. border: 2rpx solid #DCDCDC;
  561. background-color: #fff;
  562. }
  563. .update-btn {
  564. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  565. color: #FBEAC9;
  566. border: none !important;
  567. }
  568. }
  569. }
  570. }
  571. .pop-btn-list {
  572. padding-top: 20rpx;
  573. box-shadow: inset 0rpx 2rpx 0rpx 0rpx #F0F0F0;
  574. }
  575. .dialog-section {
  576. width: 532rpx;
  577. .dialog-title {
  578. padding: 48rpx 0;
  579. text-align: center;
  580. font-weight: 600;
  581. font-size: 32rpx;
  582. color: #131415;
  583. line-height: 44rpx;
  584. }
  585. .dialog-btn-group {
  586. border-top: 2rpx solid #F2F2F2;
  587. display: flex;
  588. align-items: center;
  589. .btn {
  590. flex: 1;
  591. text-align: center;
  592. line-height: 80rpx;
  593. font-size: 28rpx;
  594. color: #777777;
  595. }
  596. .del-btn {
  597. color: #6D4718;
  598. border-left: 2rpx solid #F2F2F2;
  599. }
  600. }
  601. }
  602. .empty-box {
  603. text-align: center;
  604. font-size: 32rpx;
  605. font-family: PingFangSC-Regular, PingFang SC;
  606. font-weight: 400;
  607. color: #999999;
  608. padding-bottom: 32rpx;
  609. image {
  610. width: 408rpx;
  611. height: 204rpx;
  612. }
  613. .empty-text {
  614. font-size: 28rpx;
  615. color: #777777;
  616. line-height: 40rpx;
  617. text-align: center;
  618. padding-top: 36rpx;
  619. }
  620. }