unika-components 1.0.381 → 1.0.383

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.
@@ -1,3 +1,75 @@
1
+
2
+ #audio {
3
+ position: absolute;
4
+ right: 10px;
5
+ top: 10px;
6
+ z-index: 103;
7
+ width: 30px;
8
+ height: 30px;
9
+ display: flex;
10
+ align-items: center;
11
+ }
12
+
13
+ #audio .mrotate {
14
+ animation: mrotate 5s linear infinite;
15
+ }
16
+
17
+ @keyframes mrotate {
18
+ to {
19
+ transform: rotate(1turn);
20
+ }
21
+ }
22
+
23
+ #audio .audio {
24
+ width: 100%;
25
+ height: 100%;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: center;
29
+ color: #fff;
30
+ background: #666;
31
+ border-radius: 50%;
32
+ overflow: hidden;
33
+ cursor: pointer;
34
+ transition: all 0.3s ease;
35
+ }
36
+
37
+ #audio .audio.a-border {
38
+ border: 1px solid #fff;
39
+ }
40
+
41
+ #audio .audio .music-icon {
42
+ display: block;
43
+ width: 60%;
44
+ height: 60%;
45
+ object-fit: contain;
46
+ }
47
+
48
+ #audio .audio .iconfont {
49
+ font-size: 2opx;
50
+ line-height: 1;
51
+ }
52
+ #audio .icon-cancel {
53
+ position: absolute;
54
+ width: 100%;
55
+ height: 100%;
56
+ border-radius: 50%;
57
+ overflow: hidden;
58
+ padding: 15px 0;
59
+ }
60
+ #audio .icon-cancel .icon-h {
61
+ transform: rotate(45deg);
62
+ width: 100%;
63
+ height: 2px;
64
+ background: #fff;
65
+ }
66
+ #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
67
+ content: '';
68
+ position: absolute;
69
+ width: 100%;
70
+ height: 2px;
71
+ background: #fff;
72
+ }
1
73
 
2
74
  .ele-text {
3
75
  position: relative;
@@ -67,38 +139,6 @@
67
139
  }
68
140
  }
69
141
 
70
- .ele-shape {
71
- position: absolute;
72
- overflow: hidden;
73
- }
74
-
75
- .ani-wrap {
76
- width: 100%;
77
- height: 100%;
78
- box-sizing: border-box;
79
- }
80
-
81
- .e-shape {
82
- width: 100%;
83
- height: 100%;
84
- }
85
-
86
- .svg-container :deep(svg) {
87
- width: 100%;
88
- height: 100%;
89
- display: block;
90
- }
91
-
92
- .svg-loading,
93
- .svg-error {
94
- display: flex;
95
- align-items: center;
96
- justify-content: center;
97
- width: 100%;
98
- height: 100%;
99
- background: rgba(0,0,0,0.05);
100
- }
101
-
102
142
  .ele-img {
103
143
  position: absolute;
104
144
  overflow: hidden;
@@ -197,52 +237,6 @@
197
237
  opacity: 1;
198
238
  }
199
239
 
200
- .element-ditu .ani-wrap {
201
- width: 100%;
202
- height: 100%;
203
- overflow: hidden
204
- }
205
-
206
- .element-ditu .map {
207
- width: 100%;
208
- height: 100%
209
- }
210
-
211
- .element-ditu .map .el-button {
212
- width: 100%;
213
- height: 100%;
214
- display: -webkit-box;
215
- display: -ms-flexbox;
216
- display: flex;
217
- -webkit-box-align: center;
218
- -ms-flex-align: center;
219
- align-items: center;
220
- padding: 0;
221
- -webkit-box-pack: center;
222
- -ms-flex-pack: center;
223
- justify-content: center;
224
- background: inherit;
225
- color: inherit;
226
- border: none
227
- }
228
-
229
- .element-ditu .center-map {
230
- width: 100%;
231
- height: 100%;
232
- background: #fff
233
- }
234
-
235
- .element-ditu .mask-map {
236
- position: absolute;
237
- width: 100%;
238
- height: 100%;
239
- top: 0
240
- }
241
- .map-iframe {
242
- width: 100%;
243
- height: 100%;
244
- }
245
-
246
240
  .count-down .drag-point {
247
241
  cursor: default!important
248
242
  }
@@ -407,119 +401,6 @@
407
401
  }
408
402
 
409
403
 
410
- #audio {
411
- position: absolute;
412
- right: 10px;
413
- top: 10px;
414
- z-index: 103;
415
- width: 30px;
416
- height: 30px;
417
- display: flex;
418
- align-items: center;
419
- }
420
-
421
- #audio .mrotate {
422
- animation: mrotate 5s linear infinite;
423
- }
424
-
425
- @keyframes mrotate {
426
- to {
427
- transform: rotate(1turn);
428
- }
429
- }
430
-
431
- #audio .audio {
432
- width: 100%;
433
- height: 100%;
434
- display: flex;
435
- align-items: center;
436
- justify-content: center;
437
- color: #fff;
438
- background: #666;
439
- border-radius: 50%;
440
- overflow: hidden;
441
- cursor: pointer;
442
- transition: all 0.3s ease;
443
- }
444
-
445
- #audio .audio.a-border {
446
- border: 1px solid #fff;
447
- }
448
-
449
- #audio .audio .music-icon {
450
- display: block;
451
- width: 60%;
452
- height: 60%;
453
- object-fit: contain;
454
- }
455
-
456
- #audio .audio .iconfont {
457
- font-size: 2opx;
458
- line-height: 1;
459
- }
460
- #audio .icon-cancel {
461
- position: absolute;
462
- width: 100%;
463
- height: 100%;
464
- border-radius: 50%;
465
- overflow: hidden;
466
- padding: 15px 0;
467
- }
468
- #audio .icon-cancel .icon-h {
469
- transform: rotate(45deg);
470
- width: 100%;
471
- height: 2px;
472
- background: #fff;
473
- }
474
- #audio .icon-cancel .icon-h:before, #audio .icon-cancel .icon-h:after {
475
- content: '';
476
- position: absolute;
477
- width: 100%;
478
- height: 2px;
479
- background: #fff;
480
- }
481
-
482
- .call {
483
- position: absolute;
484
- cursor: pointer;
485
- user-select: none;
486
- }
487
-
488
- .bohao-container {
489
- display: flex;
490
- justify-content: center;
491
- align-items: center;
492
- width: 100%;
493
- height: 100%;
494
- overflow: hidden;
495
- transition: opacity 0.2s;
496
- }
497
-
498
- .bohao-container:hover {
499
- opacity: 0.9;
500
- }
501
-
502
- .bohao-content {
503
- display: flex;
504
- align-items: center;
505
- justify-content: center;
506
- }
507
-
508
- .btn-text {
509
- margin-left: 10px;
510
- }
511
-
512
- /* 这里可以添加实际的电话图标样式 */
513
- .iconfont.hb-tel {
514
- display: inline-block;
515
- width: 16px;
516
- height: 16px;
517
- background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
518
- background-repeat: no-repeat;
519
- background-position: center;
520
- background-size: contain;
521
- }
522
-
523
404
  @font-face {
524
405
  font-family: "iconfont"; /* Project id 3350423 */
525
406
  src: url('//at.alicdn.com/t/c/font_3350423_yo5fsq7j90g.woff2?t=1737679854669') format('woff2'),
@@ -878,6 +759,125 @@
878
759
  content: "\E6A6";
879
760
  }
880
761
 
762
+ .element-ditu .ani-wrap {
763
+ width: 100%;
764
+ height: 100%;
765
+ overflow: hidden
766
+ }
767
+
768
+ .element-ditu .map {
769
+ width: 100%;
770
+ height: 100%
771
+ }
772
+
773
+ .element-ditu .map .el-button {
774
+ width: 100%;
775
+ height: 100%;
776
+ display: -webkit-box;
777
+ display: -ms-flexbox;
778
+ display: flex;
779
+ -webkit-box-align: center;
780
+ -ms-flex-align: center;
781
+ align-items: center;
782
+ padding: 0;
783
+ -webkit-box-pack: center;
784
+ -ms-flex-pack: center;
785
+ justify-content: center;
786
+ background: inherit;
787
+ color: inherit;
788
+ border: none
789
+ }
790
+
791
+ .element-ditu .center-map {
792
+ width: 100%;
793
+ height: 100%;
794
+ background: #fff
795
+ }
796
+
797
+ .element-ditu .mask-map {
798
+ position: absolute;
799
+ width: 100%;
800
+ height: 100%;
801
+ top: 0
802
+ }
803
+ .map-iframe {
804
+ width: 100%;
805
+ height: 100%;
806
+ }
807
+
808
+ .ele-shape {
809
+ position: absolute;
810
+ overflow: hidden;
811
+ }
812
+
813
+ .ani-wrap {
814
+ width: 100%;
815
+ height: 100%;
816
+ box-sizing: border-box;
817
+ }
818
+
819
+ .e-shape {
820
+ width: 100%;
821
+ height: 100%;
822
+ }
823
+
824
+ .svg-container :deep(svg) {
825
+ width: 100%;
826
+ height: 100%;
827
+ display: block;
828
+ }
829
+
830
+ .svg-loading,
831
+ .svg-error {
832
+ display: flex;
833
+ align-items: center;
834
+ justify-content: center;
835
+ width: 100%;
836
+ height: 100%;
837
+ background: rgba(0,0,0,0.05);
838
+ }
839
+
840
+ .call {
841
+ position: absolute;
842
+ cursor: pointer;
843
+ user-select: none;
844
+ }
845
+
846
+ .bohao-container {
847
+ display: flex;
848
+ justify-content: center;
849
+ align-items: center;
850
+ width: 100%;
851
+ height: 100%;
852
+ overflow: hidden;
853
+ transition: opacity 0.2s;
854
+ }
855
+
856
+ .bohao-container:hover {
857
+ opacity: 0.9;
858
+ }
859
+
860
+ .bohao-content {
861
+ display: flex;
862
+ align-items: center;
863
+ justify-content: center;
864
+ }
865
+
866
+ .btn-text {
867
+ margin-left: 10px;
868
+ }
869
+
870
+ /* 这里可以添加实际的电话图标样式 */
871
+ .iconfont.hb-tel {
872
+ display: inline-block;
873
+ width: 16px;
874
+ height: 16px;
875
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
876
+ background-repeat: no-repeat;
877
+ background-position: center;
878
+ background-size: contain;
879
+ }
880
+
881
881
  .like-button {
882
882
  display: flex;
883
883
  flex-direction: column;
@@ -957,21 +957,46 @@
957
957
  animation: snow 5s linear infinite
958
958
  }
959
959
 
960
+ .ant-input-number {
961
+ box-sizing: border-box;
962
+ margin: 0;
963
+ padding: 0;
964
+ color: rgba(0, 0, 0, 0.88);
965
+ font-size: 14px;
966
+ line-height: 1.5714285714285714;
967
+ list-style: none;
968
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
969
+ position: relative;
970
+ display: inline-block;
971
+ width: 100%;
972
+ min-width: 0;
973
+ background-color: #ffffff;
974
+ background-image: none;
975
+ border-width: 1px;
976
+ border-style: solid;
977
+ border-color: #d9d9d9;
978
+ border-radius: 6px;
979
+ transition: all 0.2s;
980
+ border: 1px solid #d9d9d9;
981
+ }
982
+ .ant-form-item {
983
+ box-sizing: border-box;
984
+ margin: 0;
985
+ padding: 0;
986
+ color: rgba(0, 0, 0, 0.88);
987
+ font-size: 14px;
988
+ line-height: 1.5714285714285714;
989
+ list-style: none;
990
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
991
+ margin-bottom: 0px;
992
+ vertical-align: top;
993
+ }
994
+
960
995
  .uni-lotties-component {
961
996
  width: 100%;
962
997
  height: 100%;
963
998
  }
964
999
 
965
- /* 设计稿尺寸(如375px下20px的按钮) */
966
- .btn {
967
- width: 20px; /* 直接写设计稿px */
968
- height: 10px;
969
- font-size: 14px;
970
- }
971
-
972
- .uni-build-up-component {
973
- }
974
-
975
1000
  /* Iconfont definition */
976
1001
  @font-face {
977
1002
  font-family: iconfont;
@@ -1889,45 +1914,9 @@ i {
1889
1914
  100% { transform: rotate(360deg); }
1890
1915
  }
1891
1916
 
1892
-
1893
- .uni-svg-component {
1894
- display: inline-block;
1895
- }
1896
1917
 
1897
- .ant-input-number {
1898
- box-sizing: border-box;
1899
- margin: 0;
1900
- padding: 0;
1901
- color: rgba(0, 0, 0, 0.88);
1902
- font-size: 14px;
1903
- line-height: 1.5714285714285714;
1904
- list-style: none;
1905
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
1906
- position: relative;
1907
- display: inline-block;
1908
- width: 100%;
1909
- min-width: 0;
1910
- background-color: #ffffff;
1911
- background-image: none;
1912
- border-width: 1px;
1913
- border-style: solid;
1914
- border-color: #d9d9d9;
1915
- border-radius: 6px;
1916
- transition: all 0.2s;
1917
- border: 1px solid #d9d9d9;
1918
- }
1919
- .ant-form-item {
1920
- box-sizing: border-box;
1921
- margin: 0;
1922
- padding: 0;
1923
- color: rgba(0, 0, 0, 0.88);
1924
- font-size: 14px;
1925
- line-height: 1.5714285714285714;
1926
- list-style: none;
1927
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
1928
- margin-bottom: 0px;
1929
- vertical-align: top;
1930
- }
1918
+ .uni-build-up-component {
1919
+ }
1931
1920
 
1932
1921
  body, html {
1933
1922
  width: 100%;
@@ -2282,13 +2271,20 @@ body, html {
2282
2271
  background-position: center;
2283
2272
  will-change: transform;
2284
2273
  }
2274
+
2275
+ /* 设计稿尺寸(如375px下20px的按钮) */
2276
+ .btn {
2277
+ width: 20px; /* 直接写设计稿px */
2278
+ height: 10px;
2279
+ font-size: 14px;
2280
+ }
2285
2281
 
2286
2282
  .ele-form {
2287
2283
  position: absolute;
2288
2284
  user-select: none;
2289
2285
  }
2290
2286
 
2291
- .f-single {
2287
+ .f-multiple {
2292
2288
  cursor: pointer;
2293
2289
  }
2294
2290
 
@@ -2313,20 +2309,21 @@ body, html {
2313
2309
  vertical-align: middle;
2314
2310
  }
2315
2311
 
2316
- .f-single ul {
2312
+ .f-multiple ul {
2317
2313
  padding: 15px;
2318
2314
  margin: 0;
2319
2315
  list-style: none;
2320
2316
  }
2321
2317
 
2322
- .f-single ul li {
2323
- display: flex;
2324
- align-items: center;
2318
+ .f-multiple ul li {
2325
2319
  margin-top: 12px;
2326
2320
  font-size: 0;
2321
+ display: flex;
2322
+ align-items: center;
2323
+ cursor: pointer;
2327
2324
  }
2328
2325
 
2329
- .f-single ul li:first-child {
2326
+ .f-multiple ul li:first-child {
2330
2327
  margin-top: 0;
2331
2328
  }
2332
2329
 
@@ -2369,81 +2366,6 @@ body, html {
2369
2366
  border-bottom-color: #ff4d4f;
2370
2367
  }
2371
2368
 
2372
- /* 错误提示样式 */
2373
- .error-tip {
2374
- position: fixed;
2375
- left: 0;
2376
- top: 0;
2377
- width: 100%;
2378
- height: 100%;
2379
- z-index: 1000;
2380
- }
2381
-
2382
- .form-submit {
2383
- cursor: pointer;
2384
- transition: all 0.2s;
2385
- outline: none;
2386
- border: none;
2387
- }
2388
-
2389
- .form-submit:hover {
2390
- opacity: 0.9;
2391
- transform: translateY(-1px);
2392
- }
2393
-
2394
- .form-submit:active {
2395
- opacity: 0.8;
2396
- transform: translateY(0);
2397
- }
2398
-
2399
- .form-submit:disabled {
2400
- opacity: 0.6;
2401
- cursor: not-allowed;
2402
- transform: none !important;
2403
- }
2404
-
2405
- /* 统一错误提示样式 */
2406
- .tip-cover {
2407
- position: fixed;
2408
- left: 0;
2409
- top: 0;
2410
- width: 100%;
2411
- height: 100%;
2412
- display: flex;
2413
- align-items: center;
2414
- justify-content: center;
2415
- z-index: 999;
2416
- background-color: rgba(0,0,0,.7);
2417
- }
2418
-
2419
- .tip {
2420
- width: 80%;
2421
- max-width: 250px;
2422
- padding: 10px;
2423
- border-radius: 5px;
2424
- background-color: #fff;
2425
- }
2426
-
2427
- .tip-btn {
2428
- display: block;
2429
- margin: 25px auto;
2430
- width: 120px;
2431
- height: 30px;
2432
- color: #fff;
2433
- border-radius: 4px;
2434
- text-align: center;
2435
- font-size: 14px;
2436
- line-height: 30px;
2437
- background: #ed5566;
2438
- cursor: pointer;
2439
- }
2440
-
2441
- .tip-content {
2442
- font-size: 14px;
2443
- padding-top: 30px;
2444
- text-align: center;
2445
- }
2446
-
2447
2369
  .form-input {
2448
2370
  position: absolute;
2449
2371
  }
@@ -2595,6 +2517,81 @@ input::placeholder {
2595
2517
  height: 100%;
2596
2518
  z-index: 1000;
2597
2519
  }
2520
+
2521
+ .form-submit {
2522
+ cursor: pointer;
2523
+ transition: all 0.2s;
2524
+ outline: none;
2525
+ border: none;
2526
+ }
2527
+
2528
+ .form-submit:hover {
2529
+ opacity: 0.9;
2530
+ transform: translateY(-1px);
2531
+ }
2532
+
2533
+ .form-submit:active {
2534
+ opacity: 0.8;
2535
+ transform: translateY(0);
2536
+ }
2537
+
2538
+ .form-submit:disabled {
2539
+ opacity: 0.6;
2540
+ cursor: not-allowed;
2541
+ transform: none !important;
2542
+ }
2543
+
2544
+ /* 统一错误提示样式 */
2545
+ .tip-cover {
2546
+ position: fixed;
2547
+ left: 0;
2548
+ top: 0;
2549
+ width: 100%;
2550
+ height: 100%;
2551
+ display: flex;
2552
+ align-items: center;
2553
+ justify-content: center;
2554
+ z-index: 999;
2555
+ background-color: rgba(0,0,0,.7);
2556
+ }
2557
+
2558
+ .tip {
2559
+ width: 80%;
2560
+ max-width: 250px;
2561
+ padding: 10px;
2562
+ border-radius: 5px;
2563
+ background-color: #fff;
2564
+ }
2565
+
2566
+ .tip-btn {
2567
+ display: block;
2568
+ margin: 25px auto;
2569
+ width: 120px;
2570
+ height: 30px;
2571
+ color: #fff;
2572
+ border-radius: 4px;
2573
+ text-align: center;
2574
+ font-size: 14px;
2575
+ line-height: 30px;
2576
+ background: #ed5566;
2577
+ cursor: pointer;
2578
+ }
2579
+
2580
+ .tip-content {
2581
+ font-size: 14px;
2582
+ padding-top: 30px;
2583
+ text-align: center;
2584
+ }
2585
+
2586
+ .uni-svg-component {
2587
+ display: inline-block;
2588
+ }
2589
+
2590
+ .form-container {
2591
+ position: relative;
2592
+ width: 100%;
2593
+ height: 100%;
2594
+ }
2598
2595
 
2599
2596
  /* 字体定义 */
2600
2597
  @font-face {
@@ -3007,18 +3004,12 @@ input::placeholder {
3007
3004
  }
3008
3005
 
3009
3006
 
3010
- .form-container {
3011
- position: relative;
3012
- width: 100%;
3013
- height: 100%;
3014
- }
3015
-
3016
3007
  .ele-form {
3017
3008
  position: absolute;
3018
3009
  user-select: none;
3019
3010
  }
3020
3011
 
3021
- .f-multiple {
3012
+ .f-single {
3022
3013
  cursor: pointer;
3023
3014
  }
3024
3015
 
@@ -3043,21 +3034,20 @@ input::placeholder {
3043
3034
  vertical-align: middle;
3044
3035
  }
3045
3036
 
3046
- .f-multiple ul {
3037
+ .f-single ul {
3047
3038
  padding: 15px;
3048
3039
  margin: 0;
3049
3040
  list-style: none;
3050
3041
  }
3051
3042
 
3052
- .f-multiple ul li {
3053
- margin-top: 12px;
3054
- font-size: 0;
3043
+ .f-single ul li {
3055
3044
  display: flex;
3056
3045
  align-items: center;
3057
- cursor: pointer;
3046
+ margin-top: 12px;
3047
+ font-size: 0;
3058
3048
  }
3059
3049
 
3060
- .f-multiple ul li:first-child {
3050
+ .f-single ul li:first-child {
3061
3051
  margin-top: 0;
3062
3052
  }
3063
3053
 
@@ -3100,6 +3090,16 @@ input::placeholder {
3100
3090
  border-bottom-color: #ff4d4f;
3101
3091
  }
3102
3092
 
3093
+ /* 错误提示样式 */
3094
+ .error-tip {
3095
+ position: fixed;
3096
+ left: 0;
3097
+ top: 0;
3098
+ width: 100%;
3099
+ height: 100%;
3100
+ z-index: 1000;
3101
+ }
3102
+
3103
3103
  .page-indicator {
3104
3104
  position: fixed;
3105
3105
  display: flex;
@@ -5957,7 +5957,7 @@ const _hoisted_4$b = ["src"];
5957
5957
  const _hoisted_5$9 = /*#__PURE__*/ _withScopeId$8(() => /*#__PURE__*/createElementVNode("div", { class: "icon-cancel" }, [
5958
5958
  /*#__PURE__*/createElementVNode("div", { class: "icon-h" })
5959
5959
  ], -1 /* HOISTED */));
5960
- const _hoisted_6$7 = ["src"];
5960
+ const _hoisted_6$5 = ["src"];
5961
5961
 
5962
5962
  function render$o(_ctx, _cache, $props, $setup, $data, $options) {
5963
5963
  return (openBlock(), createElementBlock("div", _hoisted_1$i, [
@@ -5992,7 +5992,7 @@ function render$o(_ctx, _cache, $props, $setup, $data, $options) {
5992
5992
  src: _ctx.url,
5993
5993
  onEnded: _cache[1] || (_cache[1] = (...args) => (_ctx.handleEnded && _ctx.handleEnded(...args))),
5994
5994
  loop: ""
5995
- }, null, 40 /* PROPS, NEED_HYDRATION */, _hoisted_6$7)
5995
+ }, null, 40 /* PROPS, NEED_HYDRATION */, _hoisted_6$5)
5996
5996
  ]))
5997
5997
  }
5998
5998
 
@@ -6246,7 +6246,7 @@ const _hoisted_2$c = {
6246
6246
  const _hoisted_3$a = { class: "can-top" };
6247
6247
  const _hoisted_4$9 = { class: "can-main" };
6248
6248
  const _hoisted_5$7 = { class: "can-date" };
6249
- const _hoisted_6$6 = {
6249
+ const _hoisted_6$4 = {
6250
6250
  key: 1,
6251
6251
  class: "can-wrap2"
6252
6252
  };
@@ -6336,7 +6336,7 @@ function render$m(_ctx, _cache, $props, $setup, $data, $options) {
6336
6336
  ]))
6337
6337
  : createCommentVNode("v-if", true),
6338
6338
  (_ctx.element.kind === 2)
6339
- ? (openBlock(), createElementBlock("div", _hoisted_6$6, [
6339
+ ? (openBlock(), createElementBlock("div", _hoisted_6$4, [
6340
6340
  createElementVNode("div", _hoisted_7$3, [
6341
6341
  createElementVNode("div", {
6342
6342
  class: "can-size",
@@ -6715,7 +6715,7 @@ const _hoisted_2$b = { class: "ani-wrap" };
6715
6715
  const _hoisted_3$9 = ["data-direction"];
6716
6716
  const _hoisted_4$8 = { class: "c-wrap" };
6717
6717
  const _hoisted_5$6 = { class: "c-num c-left" };
6718
- const _hoisted_6$5 = { class: "flex-wrap" };
6718
+ const _hoisted_6$3 = { class: "flex-wrap" };
6719
6719
  const _hoisted_7$2 = { class: "c-num c-right" };
6720
6720
  const _hoisted_8$2 = { class: "flex-wrap" };
6721
6721
  const _hoisted_9$2 = { class: "c-wrap" };
@@ -6775,7 +6775,7 @@ function render$l(_ctx, _cache, $props, $setup, $data, $options) {
6775
6775
  }, [
6776
6776
  createElementVNode("div", _hoisted_4$8, [
6777
6777
  createElementVNode("div", _hoisted_5$6, [
6778
- createElementVNode("div", _hoisted_6$5, [
6778
+ createElementVNode("div", _hoisted_6$3, [
6779
6779
  createElementVNode("div", {
6780
6780
  class: "next-num",
6781
6781
  style: normalizeStyle$1(_ctx.numStyle)
@@ -60532,7 +60532,7 @@ const _hoisted_4$7 = /*#__PURE__*/ _withScopeId$3(() => /*#__PURE__*/createEleme
60532
60532
  const _hoisted_5$5 = [
60533
60533
  _hoisted_4$7
60534
60534
  ];
60535
- const _hoisted_6$4 = {
60535
+ const _hoisted_6$2 = {
60536
60536
  key: 0,
60537
60537
  class: "bar-right"
60538
60538
  };
@@ -60655,7 +60655,7 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
60655
60655
  ]),
60656
60656
  createCommentVNode(" 新增的右侧按钮区域 "),
60657
60657
  ((_ctx.global.toolbar.gift || _ctx.global.toolbar.praise) && _ctx.showBullets)
60658
- ? (openBlock(), createElementBlock("div", _hoisted_6$4, [
60658
+ ? (openBlock(), createElementBlock("div", _hoisted_6$2, [
60659
60659
  (_ctx.global.toolbar.gift)
60660
60660
  ? (openBlock(), createElementBlock("img", {
60661
60661
  key: 0,
@@ -61325,7 +61325,7 @@ function createFormContext(options) {
61325
61325
  }
61326
61326
  const data = await response.json();
61327
61327
  if (data.error === 0) {
61328
- if (options?.autoReset)
61328
+ if (options && options.autoReset)
61329
61329
  this.resetForm();
61330
61330
  return { success: true, message: '提交成功' };
61331
61331
  }
@@ -61415,7 +61415,7 @@ function validateInput(value, type) {
61415
61415
  }
61416
61416
 
61417
61417
  var script$7 = defineComponent({
61418
- name: 'FormInput',
61418
+ name: 'uni-form-input',
61419
61419
  props: {
61420
61420
  global: {
61421
61421
  type: Object,
@@ -61810,7 +61810,7 @@ const _hoisted_4$4 = {
61810
61810
  hidden: ""
61811
61811
  };
61812
61812
  const _hoisted_5$3 = ["value"];
61813
- const _hoisted_6$3 = ["onClick"];
61813
+ const _hoisted_6$1 = ["onClick"];
61814
61814
 
61815
61815
  function render$5(_ctx, _cache, $props, $setup, $data, $options) {
61816
61816
  return (openBlock(), createElementBlock("div", {
@@ -61861,7 +61861,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
61861
61861
  key: item.value,
61862
61862
  class: normalizeClass(["dropdown-item", { 'selected': item.value === _ctx.selectedValue }]),
61863
61863
  onClick: $event => (_ctx.selectItem(item))
61864
- }, toDisplayString(item.label), 11 /* TEXT, CLASS, PROPS */, _hoisted_6$3))
61864
+ }, toDisplayString(item.label), 11 /* TEXT, CLASS, PROPS */, _hoisted_6$1))
61865
61865
  }), 128 /* KEYED_FRAGMENT */))
61866
61866
  ], 4 /* STYLE */))
61867
61867
  : createCommentVNode("v-if", true)
@@ -61956,8 +61956,7 @@ const _hoisted_3$3 = {
61956
61956
  class: "require"
61957
61957
  };
61958
61958
  const _hoisted_4$3 = ["onClick"];
61959
- const _hoisted_5$2 = { class: "fs-txt" };
61960
- const _hoisted_6$2 = ["name", "value"];
61959
+ const _hoisted_5$2 = ["name", "value"];
61961
61960
 
61962
61961
  function render$4(_ctx, _cache, $props, $setup, $data, $options) {
61963
61962
  return (openBlock(), createElementBlock("div", {
@@ -61985,7 +61984,10 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
61985
61984
  class: normalizeClass(["fs-circle", { 'selected': _ctx.selectedValue === item.value }]),
61986
61985
  style: normalizeStyle$1(_ctx.circleStyles)
61987
61986
  }, null, 6 /* CLASS, STYLE */),
61988
- createElementVNode("span", _hoisted_5$2, toDisplayString(item.label), 1 /* TEXT */)
61987
+ createElementVNode("span", {
61988
+ class: "fs-txt",
61989
+ style: normalizeStyle$1({fontSize: _ctx.element.css.fontSize, fontFamily: _ctx.element.css.fontFamily, color: _ctx.element.css.color, opacity: _ctx.element.css.opacity})
61990
+ }, toDisplayString(item.label), 5 /* TEXT, STYLE */)
61989
61991
  ], 8 /* PROPS */, _hoisted_4$3))
61990
61992
  }), 128 /* KEYED_FRAGMENT */))
61991
61993
  ]),
@@ -61993,7 +61995,7 @@ function render$4(_ctx, _cache, $props, $setup, $data, $options) {
61993
61995
  type: "hidden",
61994
61996
  name: `singleselect_${_ctx.element.id}`,
61995
61997
  value: _ctx.selectedValue
61996
- }, null, 8 /* PROPS */, _hoisted_6$2)
61998
+ }, null, 8 /* PROPS */, _hoisted_5$2)
61997
61999
  ], 4 /* STYLE */)
61998
62000
  ], 14 /* CLASS, STYLE, PROPS */, _hoisted_1$3))
61999
62001
  }
@@ -62095,8 +62097,7 @@ const _hoisted_3$2 = {
62095
62097
  class: "require"
62096
62098
  };
62097
62099
  const _hoisted_4$2 = ["onClick"];
62098
- const _hoisted_5$1 = { class: "fs-txt" };
62099
- const _hoisted_6$1 = ["name", "value"];
62100
+ const _hoisted_5$1 = ["name", "value"];
62100
62101
 
62101
62102
  function render$3(_ctx, _cache, $props, $setup, $data, $options) {
62102
62103
  return (openBlock(), createElementBlock("div", {
@@ -62124,7 +62125,10 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
62124
62125
  class: normalizeClass(["fs-circle", { 'selected': _ctx.isSelected(item.value) }]),
62125
62126
  style: normalizeStyle$1(_ctx.circleStyles)
62126
62127
  }, null, 6 /* CLASS, STYLE */),
62127
- createElementVNode("span", _hoisted_5$1, toDisplayString(item.label), 1 /* TEXT */)
62128
+ createElementVNode("span", {
62129
+ class: "fs-txt",
62130
+ style: normalizeStyle$1({fontSize: _ctx.element.css.fontSize, fontFamily: _ctx.element.css.fontFamily, color: _ctx.element.css.color, opacity: _ctx.element.css.opacity})
62131
+ }, toDisplayString(item.label), 5 /* TEXT, STYLE */)
62128
62132
  ], 8 /* PROPS */, _hoisted_4$2))
62129
62133
  }), 128 /* KEYED_FRAGMENT */))
62130
62134
  ]),
@@ -62132,7 +62136,7 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
62132
62136
  type: "hidden",
62133
62137
  name: `multiselect_${_ctx.element.id}`,
62134
62138
  value: _ctx.selectedValues.join(',')
62135
- }, null, 8 /* PROPS */, _hoisted_6$1)
62139
+ }, null, 8 /* PROPS */, _hoisted_5$1)
62136
62140
  ], 4 /* STYLE */)
62137
62141
  ], 14 /* CLASS, STYLE, PROPS */, _hoisted_1$2))
62138
62142
  }
@@ -62250,7 +62254,7 @@ var script$1 = defineComponent({
62250
62254
  showGlobalButtons.value = true;
62251
62255
  };
62252
62256
  const openMap = () => {
62253
- if (props.global.map?.url) {
62257
+ if (props.global.map && props.global.map.url) {
62254
62258
  window.open(props.global.map.url, '_blank');
62255
62259
  }
62256
62260
  };
@@ -62295,7 +62299,7 @@ var script$1 = defineComponent({
62295
62299
  console.log('提交回执:', receiptForm);
62296
62300
  // closeReceipt();
62297
62301
  // 模拟提交逻辑
62298
- const submitSuccess = Math.random() > 0.9; // 70% 成功率
62302
+ const submitSuccess = Math.random() > 0.0; // 70% 成功率
62299
62303
  if (submitSuccess) {
62300
62304
  showToastMessage(true);
62301
62305
  // 重置表单
@@ -62420,7 +62424,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62420
62424
  createCommentVNode(" 主按钮组 "),
62421
62425
  (_ctx.showGlobalButtons)
62422
62426
  ? (openBlock(), createElementBlock("div", _hoisted_1$1, [
62423
- (_ctx.global.recepit?.open && _ctx.global.recepit?.userOpen)
62427
+ (_ctx.global.recepit.open && _ctx.global.recepit.userOpen)
62424
62428
  ? (openBlock(), createElementBlock("div", {
62425
62429
  key: 0,
62426
62430
  class: "global receipt",
@@ -62436,7 +62440,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62436
62440
  }, "回执", 4 /* STYLE */)
62437
62441
  ], 4 /* STYLE */))
62438
62442
  : createCommentVNode("v-if", true),
62439
- (_ctx.global.video?.open && _ctx.global.video?.userOpen)
62443
+ (_ctx.global.video.open && _ctx.global.video.userOpen)
62440
62444
  ? (openBlock(), createElementBlock("div", {
62441
62445
  key: 1,
62442
62446
  class: "global video",
@@ -62452,7 +62456,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62452
62456
  }, "视频", 4 /* STYLE */)
62453
62457
  ], 4 /* STYLE */))
62454
62458
  : createCommentVNode("v-if", true),
62455
- (_ctx.global.tel?.open && _ctx.global.tel?.userOpen)
62459
+ (_ctx.global.tel.open && _ctx.global.tel.userOpen)
62456
62460
  ? (openBlock(), createElementBlock("div", {
62457
62461
  key: 2,
62458
62462
  class: "global tel",
@@ -62468,7 +62472,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62468
62472
  }, "拨号", 4 /* STYLE */)
62469
62473
  ], 4 /* STYLE */))
62470
62474
  : createCommentVNode("v-if", true),
62471
- (_ctx.global.map?.open && _ctx.global.map?.userOpen)
62475
+ (_ctx.global.map.open && _ctx.global.map.userOpen)
62472
62476
  ? (openBlock(), createElementBlock("div", {
62473
62477
  key: 3,
62474
62478
  class: "global map",
@@ -62559,7 +62563,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62559
62563
  (_ctx.showWhichSelect)
62560
62564
  ? (openBlock(), createElementBlock("div", _hoisted_12, [
62561
62565
  createElementVNode("ul", null, [
62562
- (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.global.recepit?.whichList, (item) => {
62566
+ (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.global.recepit.whichList, (item) => {
62563
62567
  return (openBlock(), createElementBlock("li", {
62564
62568
  key: item.label,
62565
62569
  onClick: $event => (_ctx.selectWhich(item))
@@ -62591,7 +62595,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62591
62595
  }, [..._hoisted_19]),
62592
62596
  createElementVNode("div", {
62593
62597
  class: "global-v-show",
62594
- innerHTML: _ctx.global.video?.url
62598
+ innerHTML: _ctx.global.video.url
62595
62599
  }, null, 8 /* PROPS */, _hoisted_20)
62596
62600
  ]))
62597
62601
  : createCommentVNode("v-if", true),
@@ -62599,7 +62603,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
62599
62603
  (_ctx.showTelList)
62600
62604
  ? (openBlock(), createElementBlock("div", _hoisted_21, [
62601
62605
  createElementVNode("ul", null, [
62602
- (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.global.tel?.list, (item) => {
62606
+ (openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.global.tel.list, (item) => {
62603
62607
  return (openBlock(), createElementBlock("li", {
62604
62608
  key: item.value || item.label,
62605
62609
  onClick: $event => (_ctx.makeCall(item))
@@ -5961,7 +5961,7 @@
5961
5961
  const _hoisted_5$9 = /*#__PURE__*/ _withScopeId$8(() => /*#__PURE__*/vue.createElementVNode("div", { class: "icon-cancel" }, [
5962
5962
  /*#__PURE__*/vue.createElementVNode("div", { class: "icon-h" })
5963
5963
  ], -1 /* HOISTED */));
5964
- const _hoisted_6$7 = ["src"];
5964
+ const _hoisted_6$5 = ["src"];
5965
5965
 
5966
5966
  function render$o(_ctx, _cache, $props, $setup, $data, $options) {
5967
5967
  return (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$i, [
@@ -5996,7 +5996,7 @@
5996
5996
  src: _ctx.url,
5997
5997
  onEnded: _cache[1] || (_cache[1] = (...args) => (_ctx.handleEnded && _ctx.handleEnded(...args))),
5998
5998
  loop: ""
5999
- }, null, 40 /* PROPS, NEED_HYDRATION */, _hoisted_6$7)
5999
+ }, null, 40 /* PROPS, NEED_HYDRATION */, _hoisted_6$5)
6000
6000
  ]))
6001
6001
  }
6002
6002
 
@@ -6250,7 +6250,7 @@
6250
6250
  const _hoisted_3$a = { class: "can-top" };
6251
6251
  const _hoisted_4$9 = { class: "can-main" };
6252
6252
  const _hoisted_5$7 = { class: "can-date" };
6253
- const _hoisted_6$6 = {
6253
+ const _hoisted_6$4 = {
6254
6254
  key: 1,
6255
6255
  class: "can-wrap2"
6256
6256
  };
@@ -6340,7 +6340,7 @@
6340
6340
  ]))
6341
6341
  : vue.createCommentVNode("v-if", true),
6342
6342
  (_ctx.element.kind === 2)
6343
- ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$6, [
6343
+ ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$4, [
6344
6344
  vue.createElementVNode("div", _hoisted_7$3, [
6345
6345
  vue.createElementVNode("div", {
6346
6346
  class: "can-size",
@@ -6719,7 +6719,7 @@
6719
6719
  const _hoisted_3$9 = ["data-direction"];
6720
6720
  const _hoisted_4$8 = { class: "c-wrap" };
6721
6721
  const _hoisted_5$6 = { class: "c-num c-left" };
6722
- const _hoisted_6$5 = { class: "flex-wrap" };
6722
+ const _hoisted_6$3 = { class: "flex-wrap" };
6723
6723
  const _hoisted_7$2 = { class: "c-num c-right" };
6724
6724
  const _hoisted_8$2 = { class: "flex-wrap" };
6725
6725
  const _hoisted_9$2 = { class: "c-wrap" };
@@ -6779,7 +6779,7 @@
6779
6779
  }, [
6780
6780
  vue.createElementVNode("div", _hoisted_4$8, [
6781
6781
  vue.createElementVNode("div", _hoisted_5$6, [
6782
- vue.createElementVNode("div", _hoisted_6$5, [
6782
+ vue.createElementVNode("div", _hoisted_6$3, [
6783
6783
  vue.createElementVNode("div", {
6784
6784
  class: "next-num",
6785
6785
  style: vue.normalizeStyle(_ctx.numStyle)
@@ -60536,7 +60536,7 @@ summary tabindex target title type usemap value width wmode wrap`;
60536
60536
  const _hoisted_5$5 = [
60537
60537
  _hoisted_4$7
60538
60538
  ];
60539
- const _hoisted_6$4 = {
60539
+ const _hoisted_6$2 = {
60540
60540
  key: 0,
60541
60541
  class: "bar-right"
60542
60542
  };
@@ -60659,7 +60659,7 @@ summary tabindex target title type usemap value width wmode wrap`;
60659
60659
  ]),
60660
60660
  vue.createCommentVNode(" 新增的右侧按钮区域 "),
60661
60661
  ((_ctx.global.toolbar.gift || _ctx.global.toolbar.praise) && _ctx.showBullets)
60662
- ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$4, [
60662
+ ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$2, [
60663
60663
  (_ctx.global.toolbar.gift)
60664
60664
  ? (vue.openBlock(), vue.createElementBlock("img", {
60665
60665
  key: 0,
@@ -61329,7 +61329,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61329
61329
  }
61330
61330
  const data = await response.json();
61331
61331
  if (data.error === 0) {
61332
- if (options?.autoReset)
61332
+ if (options && options.autoReset)
61333
61333
  this.resetForm();
61334
61334
  return { success: true, message: '提交成功' };
61335
61335
  }
@@ -61419,7 +61419,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61419
61419
  }
61420
61420
 
61421
61421
  var script$7 = vue.defineComponent({
61422
- name: 'FormInput',
61422
+ name: 'uni-form-input',
61423
61423
  props: {
61424
61424
  global: {
61425
61425
  type: Object,
@@ -61814,7 +61814,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61814
61814
  hidden: ""
61815
61815
  };
61816
61816
  const _hoisted_5$3 = ["value"];
61817
- const _hoisted_6$3 = ["onClick"];
61817
+ const _hoisted_6$1 = ["onClick"];
61818
61818
 
61819
61819
  function render$5(_ctx, _cache, $props, $setup, $data, $options) {
61820
61820
  return (vue.openBlock(), vue.createElementBlock("div", {
@@ -61865,7 +61865,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61865
61865
  key: item.value,
61866
61866
  class: vue.normalizeClass(["dropdown-item", { 'selected': item.value === _ctx.selectedValue }]),
61867
61867
  onClick: $event => (_ctx.selectItem(item))
61868
- }, vue.toDisplayString(item.label), 11 /* TEXT, CLASS, PROPS */, _hoisted_6$3))
61868
+ }, vue.toDisplayString(item.label), 11 /* TEXT, CLASS, PROPS */, _hoisted_6$1))
61869
61869
  }), 128 /* KEYED_FRAGMENT */))
61870
61870
  ], 4 /* STYLE */))
61871
61871
  : vue.createCommentVNode("v-if", true)
@@ -61960,8 +61960,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61960
61960
  class: "require"
61961
61961
  };
61962
61962
  const _hoisted_4$3 = ["onClick"];
61963
- const _hoisted_5$2 = { class: "fs-txt" };
61964
- const _hoisted_6$2 = ["name", "value"];
61963
+ const _hoisted_5$2 = ["name", "value"];
61965
61964
 
61966
61965
  function render$4(_ctx, _cache, $props, $setup, $data, $options) {
61967
61966
  return (vue.openBlock(), vue.createElementBlock("div", {
@@ -61989,7 +61988,10 @@ summary tabindex target title type usemap value width wmode wrap`;
61989
61988
  class: vue.normalizeClass(["fs-circle", { 'selected': _ctx.selectedValue === item.value }]),
61990
61989
  style: vue.normalizeStyle(_ctx.circleStyles)
61991
61990
  }, null, 6 /* CLASS, STYLE */),
61992
- vue.createElementVNode("span", _hoisted_5$2, vue.toDisplayString(item.label), 1 /* TEXT */)
61991
+ vue.createElementVNode("span", {
61992
+ class: "fs-txt",
61993
+ style: vue.normalizeStyle({fontSize: _ctx.element.css.fontSize, fontFamily: _ctx.element.css.fontFamily, color: _ctx.element.css.color, opacity: _ctx.element.css.opacity})
61994
+ }, vue.toDisplayString(item.label), 5 /* TEXT, STYLE */)
61993
61995
  ], 8 /* PROPS */, _hoisted_4$3))
61994
61996
  }), 128 /* KEYED_FRAGMENT */))
61995
61997
  ]),
@@ -61997,7 +61999,7 @@ summary tabindex target title type usemap value width wmode wrap`;
61997
61999
  type: "hidden",
61998
62000
  name: `singleselect_${_ctx.element.id}`,
61999
62001
  value: _ctx.selectedValue
62000
- }, null, 8 /* PROPS */, _hoisted_6$2)
62002
+ }, null, 8 /* PROPS */, _hoisted_5$2)
62001
62003
  ], 4 /* STYLE */)
62002
62004
  ], 14 /* CLASS, STYLE, PROPS */, _hoisted_1$3))
62003
62005
  }
@@ -62099,8 +62101,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62099
62101
  class: "require"
62100
62102
  };
62101
62103
  const _hoisted_4$2 = ["onClick"];
62102
- const _hoisted_5$1 = { class: "fs-txt" };
62103
- const _hoisted_6$1 = ["name", "value"];
62104
+ const _hoisted_5$1 = ["name", "value"];
62104
62105
 
62105
62106
  function render$3(_ctx, _cache, $props, $setup, $data, $options) {
62106
62107
  return (vue.openBlock(), vue.createElementBlock("div", {
@@ -62128,7 +62129,10 @@ summary tabindex target title type usemap value width wmode wrap`;
62128
62129
  class: vue.normalizeClass(["fs-circle", { 'selected': _ctx.isSelected(item.value) }]),
62129
62130
  style: vue.normalizeStyle(_ctx.circleStyles)
62130
62131
  }, null, 6 /* CLASS, STYLE */),
62131
- vue.createElementVNode("span", _hoisted_5$1, vue.toDisplayString(item.label), 1 /* TEXT */)
62132
+ vue.createElementVNode("span", {
62133
+ class: "fs-txt",
62134
+ style: vue.normalizeStyle({fontSize: _ctx.element.css.fontSize, fontFamily: _ctx.element.css.fontFamily, color: _ctx.element.css.color, opacity: _ctx.element.css.opacity})
62135
+ }, vue.toDisplayString(item.label), 5 /* TEXT, STYLE */)
62132
62136
  ], 8 /* PROPS */, _hoisted_4$2))
62133
62137
  }), 128 /* KEYED_FRAGMENT */))
62134
62138
  ]),
@@ -62136,7 +62140,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62136
62140
  type: "hidden",
62137
62141
  name: `multiselect_${_ctx.element.id}`,
62138
62142
  value: _ctx.selectedValues.join(',')
62139
- }, null, 8 /* PROPS */, _hoisted_6$1)
62143
+ }, null, 8 /* PROPS */, _hoisted_5$1)
62140
62144
  ], 4 /* STYLE */)
62141
62145
  ], 14 /* CLASS, STYLE, PROPS */, _hoisted_1$2))
62142
62146
  }
@@ -62254,7 +62258,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62254
62258
  showGlobalButtons.value = true;
62255
62259
  };
62256
62260
  const openMap = () => {
62257
- if (props.global.map?.url) {
62261
+ if (props.global.map && props.global.map.url) {
62258
62262
  window.open(props.global.map.url, '_blank');
62259
62263
  }
62260
62264
  };
@@ -62299,7 +62303,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62299
62303
  console.log('提交回执:', receiptForm);
62300
62304
  // closeReceipt();
62301
62305
  // 模拟提交逻辑
62302
- const submitSuccess = Math.random() > 0.9; // 70% 成功率
62306
+ const submitSuccess = Math.random() > 0.0; // 70% 成功率
62303
62307
  if (submitSuccess) {
62304
62308
  showToastMessage(true);
62305
62309
  // 重置表单
@@ -62424,7 +62428,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62424
62428
  vue.createCommentVNode(" 主按钮组 "),
62425
62429
  (_ctx.showGlobalButtons)
62426
62430
  ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1, [
62427
- (_ctx.global.recepit?.open && _ctx.global.recepit?.userOpen)
62431
+ (_ctx.global.recepit.open && _ctx.global.recepit.userOpen)
62428
62432
  ? (vue.openBlock(), vue.createElementBlock("div", {
62429
62433
  key: 0,
62430
62434
  class: "global receipt",
@@ -62440,7 +62444,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62440
62444
  }, "回执", 4 /* STYLE */)
62441
62445
  ], 4 /* STYLE */))
62442
62446
  : vue.createCommentVNode("v-if", true),
62443
- (_ctx.global.video?.open && _ctx.global.video?.userOpen)
62447
+ (_ctx.global.video.open && _ctx.global.video.userOpen)
62444
62448
  ? (vue.openBlock(), vue.createElementBlock("div", {
62445
62449
  key: 1,
62446
62450
  class: "global video",
@@ -62456,7 +62460,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62456
62460
  }, "视频", 4 /* STYLE */)
62457
62461
  ], 4 /* STYLE */))
62458
62462
  : vue.createCommentVNode("v-if", true),
62459
- (_ctx.global.tel?.open && _ctx.global.tel?.userOpen)
62463
+ (_ctx.global.tel.open && _ctx.global.tel.userOpen)
62460
62464
  ? (vue.openBlock(), vue.createElementBlock("div", {
62461
62465
  key: 2,
62462
62466
  class: "global tel",
@@ -62472,7 +62476,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62472
62476
  }, "拨号", 4 /* STYLE */)
62473
62477
  ], 4 /* STYLE */))
62474
62478
  : vue.createCommentVNode("v-if", true),
62475
- (_ctx.global.map?.open && _ctx.global.map?.userOpen)
62479
+ (_ctx.global.map.open && _ctx.global.map.userOpen)
62476
62480
  ? (vue.openBlock(), vue.createElementBlock("div", {
62477
62481
  key: 3,
62478
62482
  class: "global map",
@@ -62563,7 +62567,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62563
62567
  (_ctx.showWhichSelect)
62564
62568
  ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_12, [
62565
62569
  vue.createElementVNode("ul", null, [
62566
- (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.global.recepit?.whichList, (item) => {
62570
+ (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.global.recepit.whichList, (item) => {
62567
62571
  return (vue.openBlock(), vue.createElementBlock("li", {
62568
62572
  key: item.label,
62569
62573
  onClick: $event => (_ctx.selectWhich(item))
@@ -62595,7 +62599,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62595
62599
  }, [..._hoisted_19]),
62596
62600
  vue.createElementVNode("div", {
62597
62601
  class: "global-v-show",
62598
- innerHTML: _ctx.global.video?.url
62602
+ innerHTML: _ctx.global.video.url
62599
62603
  }, null, 8 /* PROPS */, _hoisted_20)
62600
62604
  ]))
62601
62605
  : vue.createCommentVNode("v-if", true),
@@ -62603,7 +62607,7 @@ summary tabindex target title type usemap value width wmode wrap`;
62603
62607
  (_ctx.showTelList)
62604
62608
  ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_21, [
62605
62609
  vue.createElementVNode("ul", null, [
62606
- (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.global.tel?.list, (item) => {
62610
+ (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.global.tel.list, (item) => {
62607
62611
  return (vue.openBlock(), vue.createElementBlock("li", {
62608
62612
  key: item.value || item.label,
62609
62613
  onClick: $event => (_ctx.makeCall(item))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unika-components",
3
- "version": "1.0.381",
3
+ "version": "1.0.383",
4
4
  "private": false,
5
5
  "main": "dist/unika-components.umd.js",
6
6
  "module": "dist/unika-components.esm.js",