uniapp-dyckui 4.1.2 → 4.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/assets/{style.BFlsbpSj.css → style.BEkFuBVh.css} +776 -774
  2. package/dist/{index.cjs.js → index.cjs} +841 -839
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/{index.es.js → index.mjs} +841 -839
  5. package/dist/index.mjs.map +1 -0
  6. package/dist/src/components/MyComs/Button/index.vue.d.ts +6 -6
  7. package/dist/src/components/MyComs/Dialog/index.vue.d.ts +6 -6
  8. package/dist/src/components/MyComs/Divider/index.vue.d.ts +5 -5
  9. package/dist/src/components/MyComs/DropdownSelect/dropdownSelect.d.ts +2 -2
  10. package/dist/src/components/MyComs/DropdownSelect/index.vue.d.ts +3 -6
  11. package/dist/src/components/MyComs/DropdownWithBadge/index.vue.d.ts +3 -6
  12. package/dist/src/components/MyComs/FilterDrawer/index.vue.d.ts +3 -6
  13. package/dist/src/components/MyComs/FilterDrawer/useFilterDrawer.d.ts +1 -1
  14. package/dist/src/components/MyComs/InfiniteScroll/index.vue.d.ts +5 -5
  15. package/dist/src/components/MyComs/Popup/index.vue.d.ts +5 -5
  16. package/dist/src/components/MyComs/PullRefresh/index.vue.d.ts +5 -5
  17. package/dist/src/components/MyComs/Swiper/index.vue.d.ts +7 -7
  18. package/dist/src/components/MyComs/Toast/index.vue.d.ts +7 -7
  19. package/dist/src/components/MyComs/index.d.ts +1590 -17
  20. package/package.json +104 -97
  21. package/src/components/MyComs/Dialog/index.ts +3 -2
  22. package/src/components/MyComs/Divider/index.ts +3 -2
  23. package/src/components/MyComs/InfiniteScroll/index.ts +3 -2
  24. package/src/components/MyComs/Popup/index.ts +3 -2
  25. package/src/components/MyComs/Popup/index.vue +837 -835
  26. package/src/components/MyComs/PullRefresh/index.ts +3 -2
  27. package/src/components/MyComs/PullRefresh/index.vue +2 -1
  28. package/src/components/MyComs/Swiper/index.ts +3 -2
  29. package/src/components/MyComs/Swiper/index.vue +246 -245
  30. package/src/components/MyComs/Toast/index.ts +3 -2
  31. package/src/components/MyComs/Toast/index.vue +373 -372
  32. package/src/components/MyComs/index.ts +57 -20
  33. package/dist/index.cjs.js.map +0 -1
  34. package/dist/index.es.js.map +0 -1
@@ -220,7 +220,7 @@
220
220
  display: flex;
221
221
  align-items: center;
222
222
  justify-content: center;
223
- background-color: rgba(0, 0, 0, var(--1f434a4e));
223
+ background-color: rgba(0, 0, 0, var(--v1f434a4e));
224
224
  animation: fadeIn-a2785685 300ms ease;
225
225
  }
226
226
 
@@ -394,787 +394,734 @@ to {
394
394
  right: 0;
395
395
  padding-right: 0;
396
396
  }
397
-
398
- /* 弹窗容器 */
399
- .popup-wrapper[data-v-00bcefd1] {
400
- position: fixed;
401
- top: 0;
402
- left: 0;
403
- right: 0;
404
- bottom: 0;
405
- z-index: 1000;
397
+ .dropdown-select {
398
+ background-color: rgba(0, 0, 0, 0);
399
+ display: inline-block;
400
+ }
401
+ .dropdown-select .dropdown-trigger {
402
+ cursor: pointer;
403
+ user-select: none;
404
+ }
405
+ .dropdown-select .dropdown-title {
406
406
  display: flex;
407
407
  align-items: center;
408
- justify-content: center;
409
- pointer-events: none;
410
- }
411
-
412
- /* 模态模式 */
413
- .popup-wrapper.modal[data-v-00bcefd1] {
414
- pointer-events: auto;
408
+ font-size: 28rpx;
409
+ color: #333;
410
+ line-height: 1.4;
411
+ padding: 8rpx;
415
412
  }
416
-
417
- /* 非模态模式 */
418
- .popup-wrapper.non-modal[data-v-00bcefd1] {
419
- pointer-events: none;
413
+ .dropdown-select .dropdown-text {
414
+ flex: 1;
420
415
  }
421
- .popup-wrapper.non-modal .popup-container[data-v-00bcefd1] {
422
- pointer-events: auto;
416
+ .dropdown-select .dropdown-icon {
417
+ padding-left: 16rpx;
418
+ font-size: 28rpx;
419
+ color: #999;
420
+ transition: transform 0.3s;
423
421
  }
424
-
425
- /* 遮罩层 */
426
- .popup-mask[data-v-00bcefd1] {
427
- position: absolute;
428
- top: 0;
429
- left: 0;
430
- right: 0;
431
- bottom: 0;
432
- background-color: rgba(0, 0, 0, 0.5);
433
- transition: opacity 0.3s ease;
422
+ .dropdown-select .dropdown-icon.is-active {
423
+ transform: rotate(180deg);
434
424
  }
435
-
436
- /* 弹窗主体 */
437
- .popup-container[data-v-00bcefd1] {
438
- position: fixed;
439
- background-color: white;
440
- border-radius: 16rpx;
441
- box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
442
- width: var(--popup-width, 100%);
443
- max-width: var(--popup-max-width, 750rpx);
444
- max-height: 90vh;
445
- overflow: hidden;
446
- pointer-events: auto;
425
+ .dropdown-select .uni-icon {
426
+ width: 28rpx;
427
+ height: 28rpx;
428
+ position: relative;
447
429
  }
448
-
449
- /* 头部 */
450
- .popup-header[data-v-00bcefd1] {
451
- padding: 32rpx 40rpx;
452
- border-bottom: 2rpx solid #ebeef5;
430
+ .dropdown-select .uni-icon.arrow-down:after {
431
+ content: '';
432
+ position: absolute;
433
+ top: 50%;
434
+ left: 50%;
435
+ transform: translate(-50%, -50%);
436
+ width: 0;
437
+ height: 0;
438
+ border-left: 8rpx solid transparent;
439
+ border-right: 8rpx solid transparent;
440
+ border-top: 8rpx solid #999;
453
441
  }
454
- .popup-title[data-v-00bcefd1] {
455
- margin: 0;
456
- font-size: 32rpx;
457
- font-weight: 600;
458
- color: #303133;
442
+ .dropdown-select .uni-icon.arrow-up:after {
443
+ content: '';
444
+ position: absolute;
445
+ top: 50%;
446
+ left: 50%;
447
+ transform: translate(-50%, -50%);
448
+ width: 0;
449
+ height: 0;
450
+ border-left: 8rpx solid transparent;
451
+ border-right: 8rpx solid transparent;
452
+ border-bottom: 8rpx solid #999;
459
453
  }
460
-
461
- /* 内容 */
462
- .popup-content[data-v-00bcefd1] {
463
- padding: 40rpx;
464
- max-height: calc(90vh - 240rpx);
465
- overflow-y: auto;
454
+ .dropdown-with-badge__dot {
455
+ background: red;
456
+ position: absolute;
457
+ width: 16rpx;
458
+ height: 16rpx;
459
+ border-radius: 50%;
460
+ top: 8rpx;
461
+ right: 4rpx;
466
462
  }
467
-
468
- /* 底部 */
469
- .popup-footer[data-v-00bcefd1] {
470
- padding: 32rpx 40rpx;
471
- border-top: 2rpx solid #ebeef5;
463
+ .filter-drawer {
464
+ height: 100%;
472
465
  display: flex;
473
- justify-content: flex-end;
474
- gap: 24rpx;
466
+ flex-direction: column;
467
+ overflow: hidden;
475
468
  }
476
-
477
- /* 按钮 */
478
- .popup-button[data-v-00bcefd1] {
479
- padding: 16rpx 32rpx;
480
- border: none;
481
- border-radius: 8rpx;
469
+ .filter-drawer__trigger {
470
+ display: inline-flex;
471
+ align-items: center;
472
+ gap: 12rpx;
482
473
  font-size: 28rpx;
474
+ color: #1989fa;
475
+ position: relative;
483
476
  cursor: pointer;
484
- transition: all 0.3s ease;
485
- text-align: center;
486
- box-sizing: border-box;
487
477
  }
488
- .popup-button-cancel[data-v-00bcefd1] {
489
- background-color: #f5f7fa;
490
- color: #606266;
478
+ .filter-drawer__badge-dot {
479
+ position: absolute;
480
+ top: -4rpx;
481
+ right: -12rpx;
482
+ width: 12rpx;
483
+ height: 12rpx;
484
+ background-color: #f56c6c;
485
+ border-radius: 50%;
491
486
  }
492
- .popup-button-cancel[data-v-00bcefd1]:hover {
493
- background-color: #e4e7ed;
487
+ .filter-drawer__header {
488
+ flex-shrink: 0;
489
+ padding: 24rpx 32rpx;
490
+ background: #fff;
491
+ z-index: 1;
494
492
  }
495
- .popup-button-confirm[data-v-00bcefd1] {
496
- background-color: #409eff;
497
- color: white;
493
+ .filter-drawer__title {
494
+ text-align: center;
495
+ font-size: 32rpx;
496
+ font-weight: 600;
497
+ margin: 0;
498
498
  }
499
- .popup-button-confirm[data-v-00bcefd1]:hover {
500
- background-color: #66b1ff;
499
+ .filter-drawer__body {
500
+ flex: 1;
501
+ overflow-y: auto;
502
+ padding: 32rpx;
503
+ -webkit-overflow-scrolling: touch;
501
504
  }
502
-
503
- /* 关闭按钮 */
504
- .popup-close-button[data-v-00bcefd1] {
505
- position: absolute;
506
- top: 24rpx;
507
- right: 24rpx;
508
- width: 48rpx;
509
- height: 48rpx;
510
- background-color: transparent;
511
- border-radius: 50%;
512
- cursor: pointer;
505
+ .filter-drawer__footer {
506
+ flex-shrink: 0;
507
+ display: flex;
508
+ background: #fff;
509
+ padding: 0 32rpx 24rpx;
510
+ z-index: 1;
511
+ gap: 24rpx;
512
+ }
513
+ .filter-drawer__button {
514
+ flex: 1;
515
+ height: 88rpx;
513
516
  display: flex;
514
517
  align-items: center;
515
518
  justify-content: center;
516
- color: #909399;
517
- transition: all 0.3s ease;
518
- }
519
- .popup-close-button[data-v-00bcefd1]:hover {
520
- background-color: #f5f7fa;
521
- color: #606266;
522
- }
523
-
524
- /* 关闭图标 */
525
- .close-icon[data-v-00bcefd1] {
526
- font-size: 40rpx;
527
- font-weight: bold;
528
- line-height: 1;
519
+ font-size: 28rpx;
520
+ border-radius: 8rpx;
521
+ cursor: pointer;
522
+ transition: background-color 0.3s;
523
+ background-color: #1989fa;
524
+ color: #fff;
525
+ border: 2rpx solid #1989fa;
529
526
  }
530
-
531
- /* 位置样式 */
532
- /* 居中 */
533
- .position-center[data-v-00bcefd1] {
534
- top: 50%;
535
- left: 50%;
536
- transform: translate(-50%, -50%);
527
+ .filter-drawer__button--plain {
528
+ background-color: #fff;
529
+ color: #1989fa;
537
530
  }
538
-
539
- /* 顶部 */
540
- .position-top[data-v-00bcefd1] {
531
+ .filter-drawer__popup-mask {
532
+ position: fixed;
541
533
  top: 0;
542
534
  left: 0;
543
- width: 100%;
544
- border-radius: 0 0 16rpx 16rpx;
545
- }
546
-
547
- /* 底部 */
548
- .position-bottom[data-v-00bcefd1] {
535
+ right: 0;
549
536
  bottom: 0;
550
- left: 0;
551
- width: 100%;
552
- border-radius: 16rpx 16rpx 0 0;
553
- }
554
-
555
- /* 左侧 */
556
- .position-left[data-v-00bcefd1] {
557
- top: 0;
558
- left: 0;
559
- height: 100%;
560
- border-radius: 0 16rpx 16rpx 0;
537
+ background: rgba(0, 0, 0, 0.5);
538
+ z-index: 999;
561
539
  }
562
-
563
- /* 右侧 */
564
- .position-right[data-v-00bcefd1] {
540
+ .filter-drawer__popup {
541
+ position: fixed;
565
542
  top: 0;
566
543
  right: 0;
567
- height: 100%;
568
- border-radius: 16rpx 0 0 16rpx;
544
+ height: 100vh;
545
+ width: 100vw;
546
+ background: #fff;
547
+ z-index: 1000;
548
+ transform: translateX(100%);
549
+ animation: slideInRight 0.3s forwards;
569
550
  }
570
-
571
- /* 动画样式 */
572
- /* 淡入淡出 */
573
- .animation-fade[data-v-00bcefd1] {
574
- animation: fadeIn-00bcefd1 0.3s ease;
551
+ .filter-drawer__close {
552
+ position: absolute;
553
+ top: 24rpx;
554
+ right: 32rpx;
555
+ font-size: 48rpx;
556
+ cursor: pointer;
557
+ color: #999;
558
+ z-index: 10;
575
559
  }
576
- @keyframes fadeIn-00bcefd1 {
560
+ @keyframes slideInRight {
577
561
  from {
578
- opacity: 0;
562
+ transform: translateX(100%);
579
563
  }
580
564
  to {
581
- opacity: 1;
582
- }
583
- }
584
-
585
- /* 缩放 */
586
- .animation-scale[data-v-00bcefd1] {
587
- animation: scaleIn-00bcefd1 0.3s ease;
565
+ transform: translateX(0);
588
566
  }
589
- @keyframes scaleIn-00bcefd1 {
590
- from {
591
- opacity: 0;
592
- transform: translate(-50%, -50%) scale(0.8);
593
567
  }
594
- to {
595
- opacity: 1;
596
- transform: translate(-50%, -50%) scale(1);
568
+ .sw-infinite-scroll[data-v-2e49050a] {
569
+ overflow-y: auto;
570
+ position: relative;
597
571
  }
572
+ .sw-infinite-scroll__content[data-v-2e49050a] {
573
+ min-height: 100%;
598
574
  }
599
-
600
- /* 顶部位置的缩放动画 */
601
- .position-top.animation-scale[data-v-00bcefd1] {
602
- animation: scaleInTop-00bcefd1 0.3s ease;
575
+ .sw-infinite-scroll__loading[data-v-2e49050a] {
576
+ display: flex;
577
+ align-items: center;
578
+ justify-content: center;
579
+ padding: 40rpx 0;
580
+ color: #909399;
581
+ font-size: 28rpx;
603
582
  }
604
- @keyframes scaleInTop-00bcefd1 {
605
- from {
583
+ .sw-infinite-scroll__loading .loading-spinner[data-v-2e49050a] {
584
+ width: 32rpx;
585
+ height: 32rpx;
586
+ border: 4rpx solid #d9d9d9;
587
+ border-top-color: #409eff;
588
+ border-radius: 50%;
589
+ animation: spin-2e49050a 0.8s linear infinite;
590
+ margin-right: 16rpx;
591
+ }
592
+ .sw-infinite-scroll__finished[data-v-2e49050a] {
593
+ text-align: center;
594
+ padding: 40rpx 0;
595
+ color: #909399;
596
+ font-size: 28rpx;
597
+ }
598
+ @keyframes spin-2e49050a {
599
+ 0% {
600
+ transform: rotate(0deg);
601
+ }
602
+ 100% {
603
+ transform: rotate(360deg);
604
+ }
605
+ }
606
+
607
+ /* 弹窗容器 */
608
+ .popup-wrapper[data-v-a8084c82] {
609
+ position: fixed;
610
+ top: 0;
611
+ left: 0;
612
+ right: 0;
613
+ bottom: 0;
614
+ z-index: 1000;
615
+ display: flex;
616
+ align-items: center;
617
+ justify-content: center;
618
+ pointer-events: none;
619
+ }
620
+
621
+ /* 模态模式 */
622
+ .popup-wrapper.modal[data-v-a8084c82] {
623
+ pointer-events: auto;
624
+ }
625
+
626
+ /* 非模态模式 */
627
+ .popup-wrapper.non-modal[data-v-a8084c82] {
628
+ pointer-events: none;
629
+ }
630
+ .popup-wrapper.non-modal .popup-container[data-v-a8084c82] {
631
+ pointer-events: auto;
632
+ }
633
+
634
+ /* 遮罩层 */
635
+ .popup-mask[data-v-a8084c82] {
636
+ position: absolute;
637
+ top: 0;
638
+ left: 0;
639
+ right: 0;
640
+ bottom: 0;
641
+ background-color: rgba(0, 0, 0, 0.5);
642
+ transition: opacity 0.3s ease;
643
+ }
644
+
645
+ /* 弹窗主体 */
646
+ .popup-container[data-v-a8084c82] {
647
+ position: fixed;
648
+ background-color: white;
649
+ border-radius: 16rpx;
650
+ box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.15);
651
+ width: var(--popup-width, 100%);
652
+ max-width: var(--popup-max-width, 750rpx);
653
+ max-height: 90vh;
654
+ overflow: hidden;
655
+ pointer-events: auto;
656
+ }
657
+
658
+ /* 头部 */
659
+ .popup-header[data-v-a8084c82] {
660
+ padding: 32rpx 40rpx;
661
+ border-bottom: 2rpx solid #ebeef5;
662
+ }
663
+ .popup-title[data-v-a8084c82] {
664
+ margin: 0;
665
+ font-size: 32rpx;
666
+ font-weight: 600;
667
+ color: #303133;
668
+ }
669
+
670
+ /* 内容 */
671
+ .popup-content[data-v-a8084c82] {
672
+ padding: 40rpx;
673
+ max-height: calc(90vh - 240rpx);
674
+ overflow-y: auto;
675
+ }
676
+
677
+ /* 底部 */
678
+ .popup-footer[data-v-a8084c82] {
679
+ padding: 32rpx 40rpx;
680
+ border-top: 2rpx solid #ebeef5;
681
+ display: flex;
682
+ justify-content: flex-end;
683
+ gap: 24rpx;
684
+ }
685
+
686
+ /* 按钮 */
687
+ .popup-button[data-v-a8084c82] {
688
+ padding: 16rpx 32rpx;
689
+ border: none;
690
+ border-radius: 8rpx;
691
+ font-size: 28rpx;
692
+ cursor: pointer;
693
+ transition: all 0.3s ease;
694
+ text-align: center;
695
+ box-sizing: border-box;
696
+ }
697
+ .popup-button-cancel[data-v-a8084c82] {
698
+ background-color: #f5f7fa;
699
+ color: #606266;
700
+ }
701
+ .popup-button-cancel[data-v-a8084c82]:hover {
702
+ background-color: #e4e7ed;
703
+ }
704
+ .popup-button-confirm[data-v-a8084c82] {
705
+ background-color: #409eff;
706
+ color: white;
707
+ }
708
+ .popup-button-confirm[data-v-a8084c82]:hover {
709
+ background-color: #66b1ff;
710
+ }
711
+
712
+ /* 关闭按钮 */
713
+ .popup-close-button[data-v-a8084c82] {
714
+ position: absolute;
715
+ top: 24rpx;
716
+ right: 24rpx;
717
+ width: 48rpx;
718
+ height: 48rpx;
719
+ background-color: transparent;
720
+ border-radius: 50%;
721
+ cursor: pointer;
722
+ display: flex;
723
+ align-items: center;
724
+ justify-content: center;
725
+ color: #909399;
726
+ transition: all 0.3s ease;
727
+ }
728
+ .popup-close-button[data-v-a8084c82]:hover {
729
+ background-color: #f5f7fa;
730
+ color: #606266;
731
+ }
732
+
733
+ /* 关闭图标 */
734
+ .close-icon[data-v-a8084c82] {
735
+ font-size: 40rpx;
736
+ font-weight: bold;
737
+ line-height: 1;
738
+ }
739
+
740
+ /* 位置样式 */
741
+ /* 居中 */
742
+ .position-center[data-v-a8084c82] {
743
+ top: 50%;
744
+ left: 50%;
745
+ transform: translate(-50%, -50%);
746
+ }
747
+
748
+ /* 顶部 */
749
+ .position-top[data-v-a8084c82] {
750
+ top: 0;
751
+ left: 0;
752
+ width: 100%;
753
+ border-radius: 0 0 16rpx 16rpx;
754
+ }
755
+
756
+ /* 底部 */
757
+ .position-bottom[data-v-a8084c82] {
758
+ bottom: 0;
759
+ left: 0;
760
+ width: 100%;
761
+ border-radius: 16rpx 16rpx 0 0;
762
+ }
763
+
764
+ /* 左侧 */
765
+ .position-left[data-v-a8084c82] {
766
+ top: 0;
767
+ left: 0;
768
+ height: 100%;
769
+ border-radius: 0 16rpx 16rpx 0;
770
+ }
771
+
772
+ /* 右侧 */
773
+ .position-right[data-v-a8084c82] {
774
+ top: 0;
775
+ right: 0;
776
+ height: 100%;
777
+ border-radius: 16rpx 0 0 16rpx;
778
+ }
779
+
780
+ /* 动画样式 */
781
+ /* 淡入淡出 */
782
+ .animation-fade[data-v-a8084c82] {
783
+ animation: fadeIn-a8084c82 0.3s ease;
784
+ }
785
+ @keyframes fadeIn-a8084c82 {
786
+ from {
606
787
  opacity: 0;
607
- transform: translateY(-100%);
608
788
  }
609
- to {
789
+ to {
610
790
  opacity: 1;
611
- transform: translateY(0);
612
791
  }
792
+ }
793
+
794
+ /* 缩放 */
795
+ .animation-scale[data-v-a8084c82] {
796
+ animation: scaleIn-a8084c82 0.3s ease;
797
+ }
798
+ @keyframes scaleIn-a8084c82 {
799
+ from {
800
+ opacity: 0;
801
+ transform: translate(-50%, -50%) scale(0.8);
802
+ }
803
+ to {
804
+ opacity: 1;
805
+ transform: translate(-50%, -50%) scale(1);
613
806
  }
614
-
807
+ }
808
+
809
+ /* 顶部位置的缩放动画 */
810
+ .position-top.animation-scale[data-v-a8084c82] {
811
+ animation: scaleInTop-a8084c82 0.3s ease;
812
+ }
813
+ @keyframes scaleInTop-a8084c82 {
814
+ from {
815
+ opacity: 0;
816
+ transform: translateY(-100%);
817
+ }
818
+ to {
819
+ opacity: 1;
820
+ transform: translateY(0);
821
+ }
822
+ }
823
+
615
824
  /* 底部位置的缩放动画 */
616
- .position-bottom.animation-scale[data-v-00bcefd1] {
617
- animation: scaleInBottom-00bcefd1 0.3s ease;
825
+ .position-bottom.animation-scale[data-v-a8084c82] {
826
+ animation: scaleInBottom-a8084c82 0.3s ease;
618
827
  }
619
- @keyframes scaleInBottom-00bcefd1 {
620
- from {
621
- opacity: 0;
828
+ @keyframes scaleInBottom-a8084c82 {
829
+ from {
830
+ opacity: 0;
622
831
  transform: translateY(100%);
623
832
  }
624
- to {
625
- opacity: 1;
833
+ to {
834
+ opacity: 1;
626
835
  transform: translateY(0);
627
836
  }
628
- }
629
-
837
+ }
838
+
630
839
  /* 左侧位置的缩放动画 */
631
- .position-left.animation-scale[data-v-00bcefd1] {
632
- animation: scaleInLeft-00bcefd1 0.3s ease;
840
+ .position-left.animation-scale[data-v-a8084c82] {
841
+ animation: scaleInLeft-a8084c82 0.3s ease;
633
842
  }
634
- @keyframes scaleInLeft-00bcefd1 {
635
- from {
636
- opacity: 0;
843
+ @keyframes scaleInLeft-a8084c82 {
844
+ from {
845
+ opacity: 0;
637
846
  transform: translateX(-100%);
638
847
  }
639
- to {
640
- opacity: 1;
848
+ to {
849
+ opacity: 1;
641
850
  transform: translateX(0);
642
851
  }
643
- }
644
-
852
+ }
853
+
645
854
  /* 右侧位置的缩放动画 */
646
- .position-right.animation-scale[data-v-00bcefd1] {
647
- animation: scaleInRight-00bcefd1 0.3s ease;
855
+ .position-right.animation-scale[data-v-a8084c82] {
856
+ animation: scaleInRight-a8084c82 0.3s ease;
648
857
  }
649
- @keyframes scaleInRight-00bcefd1 {
650
- from {
651
- opacity: 0;
858
+ @keyframes scaleInRight-a8084c82 {
859
+ from {
860
+ opacity: 0;
652
861
  transform: translateX(100%);
653
862
  }
654
- to {
655
- opacity: 1;
863
+ to {
864
+ opacity: 1;
656
865
  transform: translateX(0);
657
866
  }
658
- }
659
-
867
+ }
868
+
660
869
  /* 滑动动画 */
661
- .animation-slide[data-v-00bcefd1] {
662
- animation: slideIn-00bcefd1 0.3s ease;
870
+ .animation-slide[data-v-a8084c82] {
871
+ animation: slideIn-a8084c82 0.3s ease;
663
872
  }
664
- @keyframes slideIn-00bcefd1 {
665
- from {
666
- opacity: 0;
873
+ @keyframes slideIn-a8084c82 {
874
+ from {
875
+ opacity: 0;
667
876
  transform: translate(-50%, -100%);
668
877
  }
669
- to {
670
- opacity: 1;
878
+ to {
879
+ opacity: 1;
671
880
  transform: translate(-50%, -50%);
672
881
  }
673
- }
674
-
882
+ }
883
+
675
884
  /* 顶部位置的滑动动画 */
676
- .position-top.animation-slide[data-v-00bcefd1] {
677
- animation: slideInTop-00bcefd1 0.3s ease;
885
+ .position-top.animation-slide[data-v-a8084c82] {
886
+ animation: slideInTop-a8084c82 0.3s ease;
678
887
  }
679
- @keyframes slideInTop-00bcefd1 {
680
- from {
681
- opacity: 0;
888
+ @keyframes slideInTop-a8084c82 {
889
+ from {
890
+ opacity: 0;
682
891
  transform: translateY(-100%);
683
892
  }
684
- to {
685
- opacity: 1;
893
+ to {
894
+ opacity: 1;
686
895
  transform: translateY(0);
687
896
  }
688
- }
689
-
897
+ }
898
+
690
899
  /* 底部位置的滑动动画 */
691
- .position-bottom.animation-slide[data-v-00bcefd1] {
692
- animation: slideInBottom-00bcefd1 0.3s ease;
900
+ .position-bottom.animation-slide[data-v-a8084c82] {
901
+ animation: slideInBottom-a8084c82 0.3s ease;
693
902
  }
694
- @keyframes slideInBottom-00bcefd1 {
695
- from {
696
- opacity: 0;
903
+ @keyframes slideInBottom-a8084c82 {
904
+ from {
905
+ opacity: 0;
697
906
  transform: translateY(100%);
698
907
  }
699
- to {
700
- opacity: 1;
908
+ to {
909
+ opacity: 1;
701
910
  transform: translateY(0);
702
911
  }
703
- }
704
-
912
+ }
913
+
705
914
  /* 左侧位置的滑动动画 */
706
- .position-left.animation-slide[data-v-00bcefd1] {
707
- animation: slideInLeft-00bcefd1 0.3s ease;
915
+ .position-left.animation-slide[data-v-a8084c82] {
916
+ animation: slideInLeft-a8084c82 0.3s ease;
708
917
  }
709
- @keyframes slideInLeft-00bcefd1 {
710
- from {
711
- opacity: 0;
918
+ @keyframes slideInLeft-a8084c82 {
919
+ from {
920
+ opacity: 0;
712
921
  transform: translateX(-100%);
713
922
  }
714
- to {
715
- opacity: 1;
923
+ to {
924
+ opacity: 1;
716
925
  transform: translateX(0);
717
926
  }
718
- }
719
-
927
+ }
928
+
720
929
  /* 右侧位置的滑动动画 */
721
- .position-right.animation-slide[data-v-00bcefd1] {
722
- animation: slideInRight-00bcefd1 0.3s ease;
930
+ .position-right.animation-slide[data-v-a8084c82] {
931
+ animation: slideInRight-a8084c82 0.3s ease;
723
932
  }
724
- @keyframes slideInRight-00bcefd1 {
725
- from {
726
- opacity: 0;
933
+ @keyframes slideInRight-a8084c82 {
934
+ from {
935
+ opacity: 0;
727
936
  transform: translateX(100%);
728
937
  }
729
- to {
730
- opacity: 1;
938
+ to {
939
+ opacity: 1;
731
940
  transform: translateX(0);
732
941
  }
733
- }
734
-
735
- /* 关闭动画 */
942
+ }
943
+
944
+ /* 关闭动画 */
736
945
  /* 淡入淡出关闭动画 */
737
- .animation-fade.closing[data-v-00bcefd1] {
738
- animation: fadeOut-00bcefd1 0.3s ease;
946
+ .animation-fade.closing[data-v-a8084c82] {
947
+ animation: fadeOut-a8084c82 0.3s ease;
739
948
  }
740
- @keyframes fadeOut-00bcefd1 {
741
- from {
949
+ @keyframes fadeOut-a8084c82 {
950
+ from {
742
951
  opacity: 1;
743
952
  }
744
- to {
953
+ to {
745
954
  opacity: 0;
746
955
  }
747
- }
748
-
956
+ }
957
+
749
958
  /* 缩放关闭动画 */
750
- .animation-scale.closing[data-v-00bcefd1] {
751
- animation: scaleOut-00bcefd1 0.3s ease;
959
+ .animation-scale.closing[data-v-a8084c82] {
960
+ animation: scaleOut-a8084c82 0.3s ease;
752
961
  }
753
- @keyframes scaleOut-00bcefd1 {
754
- from {
755
- opacity: 1;
962
+ @keyframes scaleOut-a8084c82 {
963
+ from {
964
+ opacity: 1;
756
965
  transform: translate(-50%, -50%) scale(1);
757
966
  }
758
- to {
759
- opacity: 0;
967
+ to {
968
+ opacity: 0;
760
969
  transform: translate(-50%, -50%) scale(0.8);
761
970
  }
762
- }
763
-
971
+ }
972
+
764
973
  /* 顶部位置的缩放关闭动画 */
765
- .position-top.animation-scale.closing[data-v-00bcefd1] {
766
- animation: scaleOutTop-00bcefd1 0.3s ease;
974
+ .position-top.animation-scale.closing[data-v-a8084c82] {
975
+ animation: scaleOutTop-a8084c82 0.3s ease;
767
976
  }
768
- @keyframes scaleOutTop-00bcefd1 {
769
- from {
770
- opacity: 1;
977
+ @keyframes scaleOutTop-a8084c82 {
978
+ from {
979
+ opacity: 1;
771
980
  transform: translateY(0);
772
981
  }
773
- to {
774
- opacity: 0;
982
+ to {
983
+ opacity: 0;
775
984
  transform: translateY(-100%);
776
985
  }
777
- }
778
-
986
+ }
987
+
779
988
  /* 底部位置的缩放关闭动画 */
780
- .position-bottom.animation-scale.closing[data-v-00bcefd1] {
781
- animation: scaleOutBottom-00bcefd1 0.3s ease;
989
+ .position-bottom.animation-scale.closing[data-v-a8084c82] {
990
+ animation: scaleOutBottom-a8084c82 0.3s ease;
782
991
  }
783
- @keyframes scaleOutBottom-00bcefd1 {
784
- from {
785
- opacity: 1;
992
+ @keyframes scaleOutBottom-a8084c82 {
993
+ from {
994
+ opacity: 1;
786
995
  transform: translateY(0);
787
996
  }
788
- to {
789
- opacity: 0;
997
+ to {
998
+ opacity: 0;
790
999
  transform: translateY(100%);
791
1000
  }
792
- }
793
-
1001
+ }
1002
+
794
1003
  /* 左侧位置的缩放关闭动画 */
795
- .position-left.animation-scale.closing[data-v-00bcefd1] {
796
- animation: scaleOutLeft-00bcefd1 0.3s ease;
1004
+ .position-left.animation-scale.closing[data-v-a8084c82] {
1005
+ animation: scaleOutLeft-a8084c82 0.3s ease;
797
1006
  }
798
- @keyframes scaleOutLeft-00bcefd1 {
799
- from {
800
- opacity: 1;
1007
+ @keyframes scaleOutLeft-a8084c82 {
1008
+ from {
1009
+ opacity: 1;
801
1010
  transform: translateX(0);
802
1011
  }
803
- to {
804
- opacity: 0;
1012
+ to {
1013
+ opacity: 0;
805
1014
  transform: translateX(-100%);
806
1015
  }
807
- }
808
-
1016
+ }
1017
+
809
1018
  /* 右侧位置的缩放关闭动画 */
810
- .position-right.animation-scale.closing[data-v-00bcefd1] {
811
- animation: scaleOutRight-00bcefd1 0.3s ease;
1019
+ .position-right.animation-scale.closing[data-v-a8084c82] {
1020
+ animation: scaleOutRight-a8084c82 0.3s ease;
812
1021
  }
813
- @keyframes scaleOutRight-00bcefd1 {
814
- from {
815
- opacity: 1;
1022
+ @keyframes scaleOutRight-a8084c82 {
1023
+ from {
1024
+ opacity: 1;
816
1025
  transform: translateX(0);
817
1026
  }
818
- to {
819
- opacity: 0;
1027
+ to {
1028
+ opacity: 0;
820
1029
  transform: translateX(100%);
821
1030
  }
822
- }
823
-
1031
+ }
1032
+
824
1033
  /* 滑动关闭动画 */
825
- .animation-slide.closing[data-v-00bcefd1] {
826
- animation: slideOut-00bcefd1 0.3s ease;
1034
+ .animation-slide.closing[data-v-a8084c82] {
1035
+ animation: slideOut-a8084c82 0.3s ease;
827
1036
  }
828
- @keyframes slideOut-00bcefd1 {
829
- from {
830
- opacity: 1;
1037
+ @keyframes slideOut-a8084c82 {
1038
+ from {
1039
+ opacity: 1;
831
1040
  transform: translate(-50%, -50%);
832
1041
  }
833
- to {
834
- opacity: 0;
1042
+ to {
1043
+ opacity: 0;
835
1044
  transform: translate(-50%, -100%);
836
1045
  }
837
- }
838
-
1046
+ }
1047
+
839
1048
  /* 顶部位置的滑动关闭动画 */
840
- .position-top.animation-slide.closing[data-v-00bcefd1] {
841
- animation: slideOutTop-00bcefd1 0.3s ease;
1049
+ .position-top.animation-slide.closing[data-v-a8084c82] {
1050
+ animation: slideOutTop-a8084c82 0.3s ease;
842
1051
  }
843
- @keyframes slideOutTop-00bcefd1 {
844
- from {
845
- opacity: 1;
1052
+ @keyframes slideOutTop-a8084c82 {
1053
+ from {
1054
+ opacity: 1;
846
1055
  transform: translateY(0);
847
1056
  }
848
- to {
849
- opacity: 0;
1057
+ to {
1058
+ opacity: 0;
850
1059
  transform: translateY(-100%);
851
1060
  }
852
- }
853
-
1061
+ }
1062
+
854
1063
  /* 底部位置的滑动关闭动画 */
855
- .position-bottom.animation-slide.closing[data-v-00bcefd1] {
856
- animation: slideOutBottom-00bcefd1 0.3s ease;
1064
+ .position-bottom.animation-slide.closing[data-v-a8084c82] {
1065
+ animation: slideOutBottom-a8084c82 0.3s ease;
857
1066
  }
858
- @keyframes slideOutBottom-00bcefd1 {
859
- from {
860
- opacity: 1;
1067
+ @keyframes slideOutBottom-a8084c82 {
1068
+ from {
1069
+ opacity: 1;
861
1070
  transform: translateY(0);
862
1071
  }
863
- to {
864
- opacity: 0;
1072
+ to {
1073
+ opacity: 0;
865
1074
  transform: translateY(100%);
866
1075
  }
867
- }
868
-
1076
+ }
1077
+
869
1078
  /* 左侧位置的滑动关闭动画 */
870
- .position-left.animation-slide.closing[data-v-00bcefd1] {
871
- animation: slideOutLeft-00bcefd1 0.3s ease;
1079
+ .position-left.animation-slide.closing[data-v-a8084c82] {
1080
+ animation: slideOutLeft-a8084c82 0.3s ease;
872
1081
  }
873
- @keyframes slideOutLeft-00bcefd1 {
874
- from {
875
- opacity: 1;
1082
+ @keyframes slideOutLeft-a8084c82 {
1083
+ from {
1084
+ opacity: 1;
876
1085
  transform: translateX(0);
877
1086
  }
878
- to {
879
- opacity: 0;
1087
+ to {
1088
+ opacity: 0;
880
1089
  transform: translateX(-100%);
881
1090
  }
882
- }
883
-
1091
+ }
1092
+
884
1093
  /* 右侧位置的滑动关闭动画 */
885
- .position-right.animation-slide.closing[data-v-00bcefd1] {
886
- animation: slideOutRight-00bcefd1 0.3s ease;
1094
+ .position-right.animation-slide.closing[data-v-a8084c82] {
1095
+ animation: slideOutRight-a8084c82 0.3s ease;
887
1096
  }
888
- @keyframes slideOutRight-00bcefd1 {
889
- from {
890
- opacity: 1;
1097
+ @keyframes slideOutRight-a8084c82 {
1098
+ from {
1099
+ opacity: 1;
891
1100
  transform: translateX(0);
892
1101
  }
893
- to {
894
- opacity: 0;
1102
+ to {
1103
+ opacity: 0;
895
1104
  transform: translateX(100%);
896
1105
  }
897
- }
898
-
899
- .sw-toast[data-v-2b648fd9] {
900
- display: inline-flex;
901
- align-items: center;
902
- justify-content: center;
903
- max-width: 80%;
904
- padding: 20rpx 32rpx;
905
- border-radius: 8rpx;
906
- font-size: 28rpx;
907
- line-height: 40rpx;
908
- color: #fff;
909
- background-color: rgba(0, 0, 0, 0.7);
910
- box-sizing: border-box;
911
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
912
- z-index: 9999;
913
- position: fixed;
914
- left: 50%;
915
- transform: translateX(-50%) translateY(0);
916
- word-wrap: break-word;
917
- white-space: pre-wrap;
918
- user-select: none;
919
- opacity: 0;
920
- visibility: hidden;
921
- pointer-events: none;
922
- }
923
-
924
- /* 显示动画 */
925
- .sw-toast--show[data-v-2b648fd9] {
926
- opacity: 1;
927
- visibility: visible;
928
- pointer-events: auto;
929
- transform: translateX(-50%) translateY(0);
930
- }
931
-
932
- /* 隐藏动画 */
933
- .sw-toast--hide[data-v-2b648fd9] {
934
- opacity: 0;
935
- transform: translateX(-50%) translateY(-20rpx);
936
- }
937
-
938
- /* 位置样式 */
939
- .sw-toast--top[data-v-2b648fd9] {
940
- top: 100rpx;
941
- }
942
- .sw-toast--middle[data-v-2b648fd9] {
943
- top: 50%;
944
- transform: translate(-50%, -50%);
945
- }
946
- .sw-toast--middle.sw-toast--show[data-v-2b648fd9] {
947
- transform: translate(-50%, -50%);
948
- }
949
- .sw-toast--middle.sw-toast--hide[data-v-2b648fd9] {
950
- transform: translate(-50%, -60%);
951
- }
952
- .sw-toast--bottom[data-v-2b648fd9] {
953
- bottom: 100rpx;
954
- }
955
-
956
- /* 类型样式 */
957
- .sw-toast--text[data-v-2b648fd9] {
958
- background-color: rgba(0, 0, 0, 0.7);
959
- }
960
- .sw-toast--loading[data-v-2b648fd9] {
961
- background-color: rgba(0, 0, 0, 0.7);
962
- }
963
- .sw-toast--success[data-v-2b648fd9] {
964
- background-color: #67c23a;
965
- }
966
- .sw-toast--fail[data-v-2b648fd9] {
967
- background-color: #f56c6c;
968
- }
969
-
970
- /* 大尺寸样式 */
971
- .sw-toast--large[data-v-2b648fd9] {
972
- padding: 32rpx 48rpx;
973
- font-size: 32rpx;
974
- line-height: 48rpx;
975
- }
976
-
977
- /* 加载图标 */
978
- .sw-toast__loading[data-v-2b648fd9] {
979
- margin-right: 16rpx;
980
- }
981
-
982
- /* 加载动画 */
983
- .sw-toast__spinner[data-v-2b648fd9] {
984
- display: inline-block;
985
- width: 40rpx;
986
- height: 40rpx;
987
- border: 4rpx solid rgba(255, 255, 255, 0.3);
988
- border-radius: 50%;
989
- border-top-color: #fff;
990
- animation: sw-toast-spin-2b648fd9 0.8s linear infinite;
991
- }
992
-
993
- /* 自定义图标 */
994
- .sw-toast__custom-icon[data-v-2b648fd9] {
995
- font-size: 40rpx;
996
- }
997
-
998
- /* 状态图标 */
999
- .sw-toast__icon[data-v-2b648fd9] {
1000
- margin-right: 16rpx;
1001
- &--success[data-v-2b648fd9],
1002
- &--fail[data-v-2b648fd9] {
1003
- display: inline-block;
1004
- width: 40rpx;
1005
- height: 40rpx;
1006
- font-size: 40rpx;
1007
- font-weight: bold;
1008
- }
1009
- }
1010
-
1011
- /* 文本内容 */
1012
- .sw-toast__text[data-v-2b648fd9] {
1013
- margin: 0;
1014
- word-wrap: break-word;
1015
- white-space: pre-wrap;
1016
- }
1017
-
1018
- /* 加载动画 */
1019
- @keyframes sw-toast-spin-2b648fd9 {
1020
- to {
1021
- transform: rotate(360deg);
1022
- }
1023
- }
1024
-
1025
- /* 响应式设计 */
1026
- @media (max-width: 768px) {
1027
- .sw-toast[data-v-2b648fd9] {
1028
- max-width: 90%;
1029
- padding: 16rpx 24rpx;
1030
- font-size: 26rpx;
1031
- line-height: 36rpx;
1032
- }
1033
- .sw-toast--large[data-v-2b648fd9] {
1034
- padding: 24rpx 40rpx;
1035
- font-size: 30rpx;
1036
- line-height: 44rpx;
1037
- }
1038
- .sw-toast--top[data-v-2b648fd9] {
1039
- top: 60rpx;
1040
- }
1041
- .sw-toast--bottom[data-v-2b648fd9] {
1042
- bottom: 60rpx;
1043
- }
1044
- }
1045
- .sw-swiper[data-v-3735cbbd] {
1046
- position: relative;
1047
- width: 100%;
1048
- overflow: hidden;
1049
- }
1050
- .sw-swiper .swiper-wrapper[data-v-3735cbbd] {
1051
- display: flex;
1052
- width: 100%;
1053
- height: 100%;
1054
- }
1055
- .sw-swiper .swiper-item[data-v-3735cbbd] {
1056
- flex-shrink: 0;
1057
- width: 100%;
1058
- height: 100%;
1059
- }
1060
- .sw-swiper .swiper-indicators[data-v-3735cbbd] {
1061
- position: absolute;
1062
- bottom: 32rpx;
1063
- left: 50%;
1064
- transform: translateX(-50%);
1065
- display: flex;
1066
- gap: 16rpx;
1067
- }
1068
- .sw-swiper .swiper-indicators .indicator-item[data-v-3735cbbd] {
1069
- width: 16rpx;
1070
- height: 16rpx;
1071
- border-radius: 50%;
1072
- background-color: rgba(255, 255, 255, 0.5);
1073
- cursor: pointer;
1074
- transition: all 0.3s ease;
1075
- }
1076
- .sw-swiper .swiper-indicators .indicator-item.active[data-v-3735cbbd] {
1077
- width: 16rpx;
1078
- height: 16rpx;
1079
- background-color: #fff;
1080
- }
1081
- .sw-swiper .swiper-arrow[data-v-3735cbbd] {
1082
- position: absolute;
1083
- top: 50%;
1084
- transform: translateY(-50%);
1085
- width: 76rpx;
1086
- height: 76rpx;
1087
- border-radius: 50%;
1088
- background-color: rgba(255, 255, 255, 0.85);
1089
- border: none;
1090
- display: flex;
1091
- align-items: center;
1092
- justify-content: center;
1093
- cursor: pointer;
1094
- z-index: 10;
1095
- transition: all 0.3s ease;
1096
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.15);
1097
- }
1098
- .sw-swiper .swiper-arrow[data-v-3735cbbd]:hover {
1099
- background-color: #ffffff;
1100
- transform: translateY(-50%) scale(1.1);
1101
- }
1102
- .sw-swiper .swiper-arrow[data-v-3735cbbd]:before {
1103
- content: '';
1104
- width: 24rpx;
1105
- height: 24rpx;
1106
- border-top: 4rpx solid #333;
1107
- border-left: 4rpx solid #333;
1108
- display: inline-block;
1109
- }
1110
- .sw-swiper .swiper-arrow.swiper-arrow-left[data-v-3735cbbd] {
1111
- left: 30rpx;
1112
- }
1113
- .sw-swiper .swiper-arrow.swiper-arrow-left[data-v-3735cbbd]:before {
1114
- transform: rotate(-45deg);
1115
- }
1116
- .sw-swiper .swiper-arrow.swiper-arrow-right[data-v-3735cbbd] {
1117
- right: 30rpx;
1118
- }
1119
- .sw-swiper .swiper-arrow.swiper-arrow-right[data-v-3735cbbd]:before {
1120
- transform: rotate(135deg);
1121
- }
1122
- .sw-infinite-scroll[data-v-2e49050a] {
1123
- overflow-y: auto;
1124
- position: relative;
1125
- }
1126
- .sw-infinite-scroll__content[data-v-2e49050a] {
1127
- min-height: 100%;
1128
- }
1129
- .sw-infinite-scroll__loading[data-v-2e49050a] {
1130
- display: flex;
1131
- align-items: center;
1132
- justify-content: center;
1133
- padding: 40rpx 0;
1134
- color: #909399;
1135
- font-size: 28rpx;
1136
- }
1137
- .sw-infinite-scroll__loading .loading-spinner[data-v-2e49050a] {
1138
- width: 32rpx;
1139
- height: 32rpx;
1140
- border: 4rpx solid #d9d9d9;
1141
- border-top-color: #409eff;
1142
- border-radius: 50%;
1143
- animation: spin-2e49050a 0.8s linear infinite;
1144
- margin-right: 16rpx;
1145
- }
1146
- .sw-infinite-scroll__finished[data-v-2e49050a] {
1147
- text-align: center;
1148
- padding: 40rpx 0;
1149
- color: #909399;
1150
- font-size: 28rpx;
1151
- }
1152
- @keyframes spin-2e49050a {
1153
- 0% {
1154
- transform: rotate(0deg);
1155
- }
1156
- 100% {
1157
- transform: rotate(360deg);
1158
- }
1159
- }
1106
+ }
1160
1107
 
1161
- .infinite-scroll-container[data-v-d2876eca] {
1108
+ .infinite-scroll-container[data-v-b591b189] {
1162
1109
  position: relative;
1163
1110
  width: 100%;
1164
1111
  height: 100%;
1165
1112
  overflow-y: auto;
1166
1113
  overflow-x: hidden;
1167
1114
  }
1168
- .infinite-scroll-content[data-v-d2876eca] {
1115
+ .infinite-scroll-content[data-v-b591b189] {
1169
1116
  width: 100%;
1170
1117
  }
1171
- .infinite-scroll-indicator[data-v-d2876eca] {
1118
+ .infinite-scroll-indicator[data-v-b591b189] {
1172
1119
  width: 100%;
1173
1120
  display: flex;
1174
1121
  justify-content: center;
1175
1122
  align-items: center;
1176
1123
  }
1177
- .infinite-scroll-loading[data-v-d2876eca] {
1124
+ .infinite-scroll-loading[data-v-b591b189] {
1178
1125
  display: flex;
1179
1126
  align-items: center;
1180
1127
  justify-content: center;
@@ -1182,14 +1129,14 @@ to {
1182
1129
  color: #666;
1183
1130
  font-size: 28rpx;
1184
1131
  }
1185
- .loading-spinner[data-v-d2876eca] {
1186
- animation: spin-d2876eca 0.8s linear infinite;
1132
+ .loading-spinner[data-v-b591b189] {
1133
+ animation: spin-b591b189 0.8s linear infinite;
1187
1134
  color: #409eff;
1188
1135
  }
1189
- .loading-icon[data-v-d2876eca] {
1136
+ .loading-icon[data-v-b591b189] {
1190
1137
  font-size: 40rpx;
1191
1138
  }
1192
- @keyframes spin-d2876eca {
1139
+ @keyframes spin-b591b189 {
1193
1140
  0% {
1194
1141
  transform: rotate(0deg);
1195
1142
  }
@@ -1197,11 +1144,11 @@ to {
1197
1144
  transform: rotate(360deg);
1198
1145
  }
1199
1146
  }
1200
- .loading-text[data-v-d2876eca] {
1147
+ .loading-text[data-v-b591b189] {
1201
1148
  font-size: 28rpx;
1202
1149
  color: #666;
1203
1150
  }
1204
- .infinite-scroll-error[data-v-d2876eca] {
1151
+ .infinite-scroll-error[data-v-b591b189] {
1205
1152
  display: flex;
1206
1153
  align-items: center;
1207
1154
  justify-content: center;
@@ -1209,15 +1156,15 @@ to {
1209
1156
  color: #f56c6c;
1210
1157
  font-size: 28rpx;
1211
1158
  }
1212
- .error-icon[data-v-d2876eca] {
1159
+ .error-icon[data-v-b591b189] {
1213
1160
  font-size: 40rpx;
1214
1161
  color: #f56c6c;
1215
1162
  }
1216
- .error-text[data-v-d2876eca] {
1163
+ .error-text[data-v-b591b189] {
1217
1164
  font-size: 28rpx;
1218
1165
  color: #f56c6c;
1219
1166
  }
1220
- .retry-btn[data-v-d2876eca] {
1167
+ .retry-btn[data-v-b591b189] {
1221
1168
  padding: 8rpx 24rpx;
1222
1169
  background-color: #409eff;
1223
1170
  color: white;
@@ -1231,26 +1178,26 @@ to {
1231
1178
  align-items: center;
1232
1179
  justify-content: center;
1233
1180
  }
1234
- .retry-btn[data-v-d2876eca]:hover {
1181
+ .retry-btn[data-v-b591b189]:hover {
1235
1182
  background-color: #66b1ff;
1236
1183
  }
1237
- .infinite-scroll-no-more[data-v-d2876eca] {
1184
+ .infinite-scroll-no-more[data-v-b591b189] {
1238
1185
  display: flex;
1239
1186
  align-items: center;
1240
1187
  justify-content: center;
1241
1188
  color: #999;
1242
1189
  font-size: 28rpx;
1243
1190
  }
1244
- .no-more-text[data-v-d2876eca] {
1191
+ .no-more-text[data-v-b591b189] {
1245
1192
  font-size: 28rpx;
1246
1193
  color: #999;
1247
1194
  }
1248
- .infinite-scroll-trigger[data-v-d2876eca] {
1195
+ .infinite-scroll-trigger[data-v-b591b189] {
1249
1196
  width: 100%;
1250
1197
  }
1251
1198
 
1252
1199
  /* 下拉刷新样式 */
1253
- .refresh-indicator[data-v-d2876eca] {
1200
+ .refresh-indicator[data-v-b591b189] {
1254
1201
  width: 100%;
1255
1202
  height: 0;
1256
1203
  overflow: hidden;
@@ -1260,7 +1207,7 @@ to {
1260
1207
  align-items: center;
1261
1208
  justify-content: center;
1262
1209
  }
1263
- .refresh-content[data-v-d2876eca] {
1210
+ .refresh-content[data-v-b591b189] {
1264
1211
  display: flex;
1265
1212
  flex-direction: row;
1266
1213
  align-items: center;
@@ -1278,195 +1225,250 @@ to {
1278
1225
  margin: 8rpx;
1279
1226
  backdrop-filter: blur(10rpx);
1280
1227
  }
1281
- .refresh-icon[data-v-d2876eca] {
1228
+ .refresh-icon[data-v-b591b189] {
1282
1229
  margin-right: 10rpx;
1283
1230
  margin-bottom: 0;
1284
1231
  }
1285
- .refresh-icon svg[data-v-d2876eca] {
1232
+ .refresh-icon svg[data-v-b591b189] {
1286
1233
  transition: transform 0.3s ease;
1287
1234
  color: #409eff;
1288
1235
  width: 36rpx;
1289
1236
  height: 36rpx;
1290
1237
  }
1291
- .refresh-status-triggered .refresh-icon svg[data-v-d2876eca],
1292
- .refresh-status-refreshing .refresh-icon svg[data-v-d2876eca] {
1238
+ .refresh-status-triggered .refresh-icon svg[data-v-b591b189],
1239
+ .refresh-status-refreshing .refresh-icon svg[data-v-b591b189] {
1293
1240
  transform: rotate(0deg);
1294
1241
  }
1295
- .refresh-status-refreshing .refresh-icon svg[data-v-d2876eca] {
1296
- animation: spin-d2876eca 0.8s linear infinite;
1242
+ .refresh-status-refreshing .refresh-icon svg[data-v-b591b189] {
1243
+ animation: spin-b591b189 0.8s linear infinite;
1297
1244
  }
1298
- .refresh-text[data-v-d2876eca] {
1245
+ .refresh-text[data-v-b591b189] {
1299
1246
  font-size: 28rpx;
1300
1247
  color: white;
1301
1248
  }
1302
- .dropdown-select {
1303
- background-color: rgba(0, 0, 0, 0);
1304
- display: inline-block;
1305
- }
1306
- .dropdown-select .dropdown-trigger {
1307
- cursor: pointer;
1308
- user-select: none;
1249
+ .sw-swiper[data-v-4f860ae8] {
1250
+ position: relative;
1251
+ width: 100%;
1252
+ overflow: hidden;
1309
1253
  }
1310
- .dropdown-select .dropdown-title {
1254
+ .sw-swiper .swiper-wrapper[data-v-4f860ae8] {
1311
1255
  display: flex;
1312
- align-items: center;
1313
- font-size: 28rpx;
1314
- color: #333;
1315
- line-height: 1.4;
1316
- padding: 8rpx;
1317
- }
1318
- .dropdown-select .dropdown-text {
1319
- flex: 1;
1320
- }
1321
- .dropdown-select .dropdown-icon {
1322
- padding-left: 16rpx;
1323
- font-size: 28rpx;
1324
- color: #999;
1325
- transition: transform 0.3s;
1326
- }
1327
- .dropdown-select .dropdown-icon.is-active {
1328
- transform: rotate(180deg);
1329
- }
1330
- .dropdown-select .uni-icon {
1331
- width: 28rpx;
1332
- height: 28rpx;
1333
- position: relative;
1256
+ width: 100%;
1257
+ height: 100%;
1334
1258
  }
1335
- .dropdown-select .uni-icon.arrow-down:after {
1336
- content: '';
1337
- position: absolute;
1338
- top: 50%;
1339
- left: 50%;
1340
- transform: translate(-50%, -50%);
1341
- width: 0;
1342
- height: 0;
1343
- border-left: 8rpx solid transparent;
1344
- border-right: 8rpx solid transparent;
1345
- border-top: 8rpx solid #999;
1259
+ .sw-swiper .swiper-item[data-v-4f860ae8] {
1260
+ flex-shrink: 0;
1261
+ width: 100%;
1262
+ height: 100%;
1346
1263
  }
1347
- .dropdown-select .uni-icon.arrow-up:after {
1348
- content: '';
1264
+ .sw-swiper .swiper-indicators[data-v-4f860ae8] {
1349
1265
  position: absolute;
1350
- top: 50%;
1266
+ bottom: 32rpx;
1351
1267
  left: 50%;
1352
- transform: translate(-50%, -50%);
1353
- width: 0;
1354
- height: 0;
1355
- border-left: 8rpx solid transparent;
1356
- border-right: 8rpx solid transparent;
1357
- border-bottom: 8rpx solid #999;
1268
+ transform: translateX(-50%);
1269
+ display: flex;
1270
+ gap: 16rpx;
1358
1271
  }
1359
- .dropdown-with-badge__dot {
1360
- background: red;
1361
- position: absolute;
1272
+ .sw-swiper .swiper-indicators .indicator-item[data-v-4f860ae8] {
1362
1273
  width: 16rpx;
1363
1274
  height: 16rpx;
1364
1275
  border-radius: 50%;
1365
- top: 8rpx;
1366
- right: 4rpx;
1276
+ background-color: rgba(255, 255, 255, 0.5);
1277
+ cursor: pointer;
1278
+ transition: all 0.3s ease;
1367
1279
  }
1368
- .filter-drawer {
1369
- height: 100%;
1370
- display: flex;
1371
- flex-direction: column;
1372
- overflow: hidden;
1280
+ .sw-swiper .swiper-indicators .indicator-item.active[data-v-4f860ae8] {
1281
+ width: 16rpx;
1282
+ height: 16rpx;
1283
+ background-color: #fff;
1373
1284
  }
1374
- .filter-drawer__trigger {
1375
- display: inline-flex;
1285
+ .sw-swiper .swiper-arrow[data-v-4f860ae8] {
1286
+ position: absolute;
1287
+ top: 50%;
1288
+ transform: translateY(-50%);
1289
+ width: 76rpx;
1290
+ height: 76rpx;
1291
+ border-radius: 50%;
1292
+ background-color: rgba(255, 255, 255, 0.85);
1293
+ border: none;
1294
+ display: flex;
1376
1295
  align-items: center;
1377
- gap: 12rpx;
1378
- font-size: 28rpx;
1379
- color: #1989fa;
1380
- position: relative;
1296
+ justify-content: center;
1381
1297
  cursor: pointer;
1298
+ z-index: 10;
1299
+ transition: all 0.3s ease;
1300
+ box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.15);
1382
1301
  }
1383
- .filter-drawer__badge-dot {
1384
- position: absolute;
1385
- top: -4rpx;
1386
- right: -12rpx;
1387
- width: 12rpx;
1388
- height: 12rpx;
1389
- background-color: #f56c6c;
1390
- border-radius: 50%;
1302
+ .sw-swiper .swiper-arrow[data-v-4f860ae8]:hover {
1303
+ background-color: #ffffff;
1304
+ transform: translateY(-50%) scale(1.1);
1391
1305
  }
1392
- .filter-drawer__header {
1393
- flex-shrink: 0;
1394
- padding: 24rpx 32rpx;
1395
- background: #fff;
1396
- z-index: 1;
1306
+ .sw-swiper .swiper-arrow[data-v-4f860ae8]:before {
1307
+ content: '';
1308
+ width: 24rpx;
1309
+ height: 24rpx;
1310
+ border-top: 4rpx solid #333;
1311
+ border-left: 4rpx solid #333;
1312
+ display: inline-block;
1397
1313
  }
1398
- .filter-drawer__title {
1399
- text-align: center;
1400
- font-size: 32rpx;
1401
- font-weight: 600;
1402
- margin: 0;
1314
+ .sw-swiper .swiper-arrow.swiper-arrow-left[data-v-4f860ae8] {
1315
+ left: 30rpx;
1403
1316
  }
1404
- .filter-drawer__body {
1405
- flex: 1;
1406
- overflow-y: auto;
1407
- padding: 32rpx;
1408
- -webkit-overflow-scrolling: touch;
1317
+ .sw-swiper .swiper-arrow.swiper-arrow-left[data-v-4f860ae8]:before {
1318
+ transform: rotate(-45deg);
1409
1319
  }
1410
- .filter-drawer__footer {
1411
- flex-shrink: 0;
1412
- display: flex;
1413
- background: #fff;
1414
- padding: 0 32rpx 24rpx;
1415
- z-index: 1;
1416
- gap: 24rpx;
1320
+ .sw-swiper .swiper-arrow.swiper-arrow-right[data-v-4f860ae8] {
1321
+ right: 30rpx;
1417
1322
  }
1418
- .filter-drawer__button {
1419
- flex: 1;
1420
- height: 88rpx;
1421
- display: flex;
1422
- align-items: center;
1423
- justify-content: center;
1424
- font-size: 28rpx;
1425
- border-radius: 8rpx;
1426
- cursor: pointer;
1427
- transition: background-color 0.3s;
1428
- background-color: #1989fa;
1429
- color: #fff;
1430
- border: 2rpx solid #1989fa;
1323
+ .sw-swiper .swiper-arrow.swiper-arrow-right[data-v-4f860ae8]:before {
1324
+ transform: rotate(135deg);
1431
1325
  }
1432
- .filter-drawer__button--plain {
1433
- background-color: #fff;
1434
- color: #1989fa;
1326
+
1327
+ .sw-toast[data-v-482db7a0] {
1328
+ display: inline-flex;
1329
+ align-items: center;
1330
+ justify-content: center;
1331
+ max-width: 80%;
1332
+ padding: 20rpx 32rpx;
1333
+ border-radius: 8rpx;
1334
+ font-size: 28rpx;
1335
+ line-height: 40rpx;
1336
+ color: #fff;
1337
+ background-color: rgba(0, 0, 0, 0.7);
1338
+ box-sizing: border-box;
1339
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1340
+ z-index: 9999;
1341
+ position: fixed;
1342
+ left: 50%;
1343
+ transform: translateX(-50%) translateY(0);
1344
+ word-wrap: break-word;
1345
+ white-space: pre-wrap;
1346
+ user-select: none;
1347
+ opacity: 0;
1348
+ visibility: hidden;
1349
+ pointer-events: none;
1350
+ }
1351
+
1352
+ /* 显示动画 */
1353
+ .sw-toast--show[data-v-482db7a0] {
1354
+ opacity: 1;
1355
+ visibility: visible;
1356
+ pointer-events: auto;
1357
+ transform: translateX(-50%) translateY(0);
1358
+ }
1359
+
1360
+ /* 隐藏动画 */
1361
+ .sw-toast--hide[data-v-482db7a0] {
1362
+ opacity: 0;
1363
+ transform: translateX(-50%) translateY(-20rpx);
1364
+ }
1365
+
1366
+ /* 位置样式 */
1367
+ .sw-toast--top[data-v-482db7a0] {
1368
+ top: 100rpx;
1435
1369
  }
1436
- .filter-drawer__popup-mask {
1437
- position: fixed;
1438
- top: 0;
1439
- left: 0;
1440
- right: 0;
1441
- bottom: 0;
1442
- background: rgba(0, 0, 0, 0.5);
1443
- z-index: 999;
1370
+ .sw-toast--middle[data-v-482db7a0] {
1371
+ top: 50%;
1372
+ transform: translate(-50%, -50%);
1444
1373
  }
1445
- .filter-drawer__popup {
1446
- position: fixed;
1447
- top: 0;
1448
- right: 0;
1449
- height: 100vh;
1450
- width: 100vw;
1451
- background: #fff;
1452
- z-index: 1000;
1453
- transform: translateX(100%);
1454
- animation: slideInRight 0.3s forwards;
1374
+ .sw-toast--middle.sw-toast--show[data-v-482db7a0] {
1375
+ transform: translate(-50%, -50%);
1455
1376
  }
1456
- .filter-drawer__close {
1457
- position: absolute;
1458
- top: 24rpx;
1459
- right: 32rpx;
1460
- font-size: 48rpx;
1461
- cursor: pointer;
1462
- color: #999;
1463
- z-index: 10;
1377
+ .sw-toast--middle.sw-toast--hide[data-v-482db7a0] {
1378
+ transform: translate(-50%, -60%);
1464
1379
  }
1465
- @keyframes slideInRight {
1466
- from {
1467
- transform: translateX(100%);
1380
+ .sw-toast--bottom[data-v-482db7a0] {
1381
+ bottom: 100rpx;
1382
+ }
1383
+
1384
+ /* 类型样式 */
1385
+ .sw-toast--text[data-v-482db7a0] {
1386
+ background-color: rgba(0, 0, 0, 0.7);
1468
1387
  }
1469
- to {
1470
- transform: translateX(0);
1388
+ .sw-toast--loading[data-v-482db7a0] {
1389
+ background-color: rgba(0, 0, 0, 0.7);
1390
+ }
1391
+ .sw-toast--success[data-v-482db7a0] {
1392
+ background-color: #67c23a;
1393
+ }
1394
+ .sw-toast--fail[data-v-482db7a0] {
1395
+ background-color: #f56c6c;
1396
+ }
1397
+
1398
+ /* 大尺寸样式 */
1399
+ .sw-toast--large[data-v-482db7a0] {
1400
+ padding: 32rpx 48rpx;
1401
+ font-size: 32rpx;
1402
+ line-height: 48rpx;
1403
+ }
1404
+
1405
+ /* 加载图标 */
1406
+ .sw-toast__loading[data-v-482db7a0] {
1407
+ margin-right: 16rpx;
1408
+ }
1409
+
1410
+ /* 加载动画 */
1411
+ .sw-toast__spinner[data-v-482db7a0] {
1412
+ display: inline-block;
1413
+ width: 40rpx;
1414
+ height: 40rpx;
1415
+ border: 4rpx solid rgba(255, 255, 255, 0.3);
1416
+ border-radius: 50%;
1417
+ border-top-color: #fff;
1418
+ animation: sw-toast-spin-482db7a0 0.8s linear infinite;
1419
+ }
1420
+
1421
+ /* 自定义图标 */
1422
+ .sw-toast__custom-icon[data-v-482db7a0] {
1423
+ font-size: 40rpx;
1424
+ }
1425
+
1426
+ /* 状态图标 */
1427
+ .sw-toast__icon {
1428
+ &[data-v-482db7a0] {
1429
+ margin-right: 16rpx;
1430
+ }
1431
+ &--success[data-v-482db7a0],
1432
+ &--fail[data-v-482db7a0] {
1433
+ display: inline-block;
1434
+ width: 40rpx;
1435
+ height: 40rpx;
1436
+ font-size: 40rpx;
1437
+ font-weight: bold;
1471
1438
  }
1439
+ }
1440
+
1441
+ /* 文本内容 */
1442
+ .sw-toast__text[data-v-482db7a0] {
1443
+ margin: 0;
1444
+ word-wrap: break-word;
1445
+ white-space: pre-wrap;
1446
+ }
1447
+
1448
+ /* 加载动画 */
1449
+ @keyframes sw-toast-spin-482db7a0 {
1450
+ to {
1451
+ transform: rotate(360deg);
1452
+ }
1453
+ }
1454
+
1455
+ /* 响应式设计 */
1456
+ @media (max-width: 768px) {
1457
+ .sw-toast[data-v-482db7a0] {
1458
+ max-width: 90%;
1459
+ padding: 16rpx 24rpx;
1460
+ font-size: 26rpx;
1461
+ line-height: 36rpx;
1472
1462
  }
1463
+ .sw-toast--large[data-v-482db7a0] {
1464
+ padding: 24rpx 40rpx;
1465
+ font-size: 30rpx;
1466
+ line-height: 44rpx;
1467
+ }
1468
+ .sw-toast--top[data-v-482db7a0] {
1469
+ top: 60rpx;
1470
+ }
1471
+ .sw-toast--bottom[data-v-482db7a0] {
1472
+ bottom: 60rpx;
1473
+ }
1474
+ }