@zkwq/business 0.0.87 → 0.0.89

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.
@@ -48771,6 +48771,236 @@
48771
48771
  left: 4px;
48772
48772
  }
48773
48773
 
48774
+
48775
+
48776
+
48777
+
48778
+
48779
+
48780
+
48781
+
48782
+
48783
+
48784
+ :export {
48785
+ primary: #2F3A91;
48786
+ success: #67C23A;
48787
+ warning: #FF791A;
48788
+ danger: #F1403C;
48789
+ info: #8590a6;
48790
+ }
48791
+
48792
+
48793
+
48794
+
48795
+
48796
+
48797
+
48798
+
48799
+
48800
+
48801
+
48802
+
48803
+
48804
+
48805
+
48806
+
48807
+
48808
+
48809
+
48810
+
48811
+
48812
+
48813
+
48814
+
48815
+
48816
+
48817
+
48818
+
48819
+
48820
+
48821
+
48822
+
48823
+
48824
+
48825
+
48826
+
48827
+
48828
+
48829
+
48830
+
48831
+
48832
+
48833
+
48834
+
48835
+
48836
+
48837
+
48838
+
48839
+
48840
+
48841
+
48842
+
48843
+
48844
+
48845
+
48846
+
48847
+
48848
+
48849
+
48850
+
48851
+
48852
+
48853
+
48854
+
48855
+
48856
+
48857
+
48858
+
48859
+
48860
+
48861
+
48862
+ :export {
48863
+ primary: #2F3A91;
48864
+ success: #67C23A;
48865
+ warning: #FF791A;
48866
+ danger: #F1403C;
48867
+ info: #8590a6;
48868
+ }
48869
+
48870
+
48871
+
48872
+
48873
+
48874
+
48875
+
48876
+
48877
+
48878
+
48879
+
48880
+
48881
+
48882
+
48883
+
48884
+
48885
+
48886
+
48887
+
48888
+
48889
+
48890
+
48891
+
48892
+
48893
+
48894
+
48895
+
48896
+
48897
+
48898
+
48899
+
48900
+
48901
+
48902
+
48903
+
48904
+
48905
+
48906
+
48907
+
48908
+
48909
+
48910
+
48911
+
48912
+
48913
+
48914
+
48915
+
48916
+
48917
+
48918
+
48919
+
48920
+
48921
+
48922
+
48923
+
48924
+
48925
+ .base-loading-parent--relative {
48926
+ position: relative !important;
48927
+ }
48928
+ .base-loading-parent--hidden {
48929
+ overflow: hidden !important;
48930
+ }
48931
+ .base-loading-mask {
48932
+ position: absolute;
48933
+ z-index: 2000;
48934
+ background-color: rgba(255, 255, 255, 0.9);
48935
+ margin: 0;
48936
+ top: 0;
48937
+ right: 0;
48938
+ bottom: 0;
48939
+ left: 0;
48940
+ transition: opacity 0.3s;
48941
+ }
48942
+ .base-loading-mask.is-fullscreen {
48943
+ position: fixed;
48944
+ }
48945
+ .base-loading-mask.is-fullscreen .base-loading-spinner {
48946
+ margin-top: -25px;
48947
+ }
48948
+ .base-loading-mask.is-fullscreen .base-loading-spinner .circular {
48949
+ height: 50px;
48950
+ width: 50px;
48951
+ }
48952
+ .base-loading-spinner {
48953
+ top: 50%;
48954
+ margin-top: -21px;
48955
+ width: 100%;
48956
+ text-align: center;
48957
+ position: absolute;
48958
+ }
48959
+ .base-loading-spinner .base-loading-text {
48960
+ color: #2F3A91;
48961
+ margin: 3px 0;
48962
+ font-size: 14px;
48963
+ }
48964
+ .base-loading-spinner .circular {
48965
+ height: 42px;
48966
+ width: 42px;
48967
+ animation: loading-rotate 2s linear infinite;
48968
+ }
48969
+ .base-loading-spinner .path {
48970
+ animation: loading-dash 1.5s ease-in-out infinite;
48971
+ stroke-dasharray: 90, 150;
48972
+ stroke-dashoffset: 0;
48973
+ stroke-width: 2;
48974
+ stroke: #2F3A91;
48975
+ stroke-linecap: round;
48976
+ }
48977
+ .base-loading-spinner i {
48978
+ color: #2F3A91;
48979
+ }
48980
+ .base-loading-fade-enter,
48981
+ .base-loading-fade-leave-active {
48982
+ opacity: 0;
48983
+ }
48984
+ @keyframes loading-rotate {
48985
+ 100% {
48986
+ transform: rotate(360deg);
48987
+ }
48988
+ }
48989
+ @keyframes loading-dash {
48990
+ 0% {
48991
+ stroke-dasharray: 1, 200;
48992
+ stroke-dashoffset: 0;
48993
+ }
48994
+ 50% {
48995
+ stroke-dasharray: 90, 150;
48996
+ stroke-dashoffset: -40px;
48997
+ }
48998
+ 100% {
48999
+ stroke-dasharray: 90, 150;
49000
+ stroke-dashoffset: -120px;
49001
+ }
49002
+ }
49003
+
48774
49004
  body {
48775
49005
  font-family: pingfang SC, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif;
48776
49006
  font-size: 14px;