管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-26 3f7ec892d68f71e996489d14d9918dc332281b1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
{
  "key": "TDesign",
  "label": "Tdesign",
  "components": {
    "t-action-sheet": {
      "key": "t-action-sheet",
      "label": "动作面板",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-actionsheet.png",
      "properties": [
        {
          "key": "cancelText",
          "type": ["String"],
          "desc": "设置取消按钮的文本",
          "label": ""
        },
        {
          "key": "count",
          "type": ["Number"],
          "desc": "设置每页展示菜单的数量,仅当 type=grid 时有效",
          "label": ""
        },
        {
          "key": "items",
          "type": ["Array"],
          "desc": "菜单项",
          "label": ""
        },
        {
          "key": "showCancel",
          "type": ["Boolean"],
          "desc": "是否显示取消按钮",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "展示类型,列表和表格形式展示",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "显示与隐藏",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:cancel",
          "desc": "点击取消按钮时触发",
          "label": ""
        },
        {
          "key": "bind:close",
          "desc": "关闭时触发",
          "label": ""
        },
        {
          "key": "bind:selected",
          "desc": "选择菜单项时触发",
          "label": ""
        }
      ],
      "tpl": "<t-action-sheet id=\"t-action-sheet-imperative\" visible=\"{{false}}\"></t-action-sheet>",
      "path": "./action-sheet/action-sheet"
    },
    "t-avatar-group": {
      "key": "t-avatar-group",
      "label": "头像组",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-avatar.png",
      "properties": [
        {
          "key": "cascading",
          "type": ["String"],
          "desc": "图片之间的层叠关系,可选值:左侧图片在上和右侧图片在上",
          "label": ""
        },
        {
          "key": "collapseAvatar",
          "type": ["String"],
          "desc": "头像数量超出时,会出现一个头像折叠元素。该元素内容可自定义。默认为 `+N`。示例:`+5`,`...`, `更多`",
          "label": ""
        },
        {
          "key": "max",
          "type": ["Number"],
          "desc": "能够同时显示的最多头像数量",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "尺寸,示例值:small/medium/large/24px/38px 等。优先级低于 Avatar.size",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-image", "t-class-content"],
      "tpl": "<t-avatar-group max=\"2\" collapseAvatar=\"+5\"><t-avatar wx:for=\"{{['https://cdn-we-retail.ym.tencent.com/retail-ui/components-exp/avatar/avatar-v2/1.png','https://cdn-we-retail.ym.tencent.com/retail-ui/components-exp/avatar/avatar-v2/2.png','https://cdn-we-retail.ym.tencent.com/retail-ui/components-exp/avatar/avatar-v2/3.png']}}\" wx:key=\"index\" image=\"{{item}}\" style=\"margin-right: -16rpx\" /></t-avatar-group>",
      "require": {
        "t-avatar": "./avatar/avatar"
      },
      "path": "./avatar/avatar-group"
    },
    "t-avatar": {
      "key": "t-avatar",
      "label": "头像",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-avatar.png",
      "properties": [
        {
          "key": "alt",
          "type": ["String"],
          "desc": "头像替换文本,仅当图片加载失败时有效",
          "label": ""
        },
        {
          "key": "badgeProps",
          "type": ["Object"],
          "desc": "头像右上角提示信息,继承 Badge 组件的全部特性。如:小红点,或者数字",
          "label": ""
        },
        {
          "key": "hideOnLoadFailed",
          "type": ["Boolean"],
          "desc": "加载失败时隐藏图片",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标",
          "label": ""
        },
        {
          "key": "image",
          "type": ["String"],
          "desc": "图片地址",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "形状",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "尺寸,示例值:small/medium/large/24px/38px 等,默认为 large",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "events": [
        {
          "key": "bind:error",
          "desc": "图片加载失败时触发",
          "label": ""
        }
      ],
      "tpl": "<t-avatar icon=\"user\" alt=\"avatar\"/>",
      "path": "./avatar/avatar"
    },
    "t-back-top": {
      "key": "t-back-top",
      "label": "回到顶部",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-backtop.png",
      "properties": [
        {
          "key": "fixed",
          "type": ["Boolean"],
          "desc": "是否绝对定位固定到屏幕右下方",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标",
          "label": ""
        },
        {
          "key": "text",
          "type": ["String"],
          "desc": "文案",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "预设的样式类型",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-icon", "t-class-text"],
      "events": [
        {
          "key": "bind:to-top",
          "desc": "点击触发",
          "label": ""
        }
      ],
      "tpl": "<t-back-top />",
      "path": "./back-top/back-top"
    },
    "t-badge": {
      "key": "t-badge",
      "label": "徽标数",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-badge.png",
      "properties": [
        {
          "key": "color",
          "type": ["String"],
          "desc": "颜色",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "徽标内容,示例:`content='自定义内容'`。也可以使用默认插槽定义",
          "label": ""
        },
        {
          "key": "count",
          "type": ["String", "Number"],
          "desc": "徽标右上角内容。可以是数字,也可以是文字。如:'new'/3/99+。特殊:值为空表示使用插槽渲染",
          "label": ""
        },
        {
          "key": "dot",
          "type": ["Boolean"],
          "desc": "是否为红点",
          "label": ""
        },
        {
          "key": "maxCount",
          "type": ["Number"],
          "desc": "封顶的数字值",
          "label": ""
        },
        {
          "key": "offset",
          "type": ["Array"],
          "desc": "设置状态点的位置偏移,示例:[-10, 20] 或 ['10em', '8rem']",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "形状",
          "label": ""
        },
        {
          "key": "showZero",
          "type": ["Boolean"],
          "desc": "当数值为 0 时,是否展示徽标",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "尺寸",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-content", "t-class-count"],
      "tpl": "<t-badge content=\"消息\" dot />",
      "path": "./badge/badge"
    },
    "t-button": {
      "key": "t-button",
      "label": "按钮",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-button.png",
      "properties": [
        {
          "key": "block",
          "type": ["Boolean"],
          "desc": "是否为块级元素",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "按钮内容",
          "label": ""
        },
        {
          "key": "customDataset",
          "type": ["Object"],
          "desc": "自定义 dataset,可通过 event.currentTarget.dataset.custom 获取",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用按钮",
          "label": ""
        },
        {
          "key": "ghost",
          "type": ["Boolean"],
          "desc": "是否为幽灵按钮(镂空按钮)",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标名称",
          "label": ""
        },
        {
          "key": "loading",
          "type": ["Boolean"],
          "desc": "是否显示为加载状态",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "按钮形状,有 4 种:长方形、正方形、圆角长方形、圆形",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "组件尺寸",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "组件风格,依次为品牌色、危险色",
          "label": ""
        },
        {
          "key": "type",
          "type": ["String"],
          "desc": "同小程序的 formType",
          "label": ""
        },
        {
          "key": "variant",
          "type": ["String"],
          "desc": "按钮形式,基础、线框、文字",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-icon"],
      "events": [
        {
          "key": "bind:click",
          "desc": "点击时触发",
          "label": ""
        }
      ],
      "tpl": "<t-button theme=\"primary\" block content=\"强按钮\"></t-button>",
      "path": "./button/button"
    },
    "t-cell-group": {
      "key": "t-cell-group",
      "label": "单元格组",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-cell.png",
      "properties": [
        {
          "key": "bordered",
          "type": ["Boolean"],
          "desc": "是否显示组边框",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "单元格组标题",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "tpl": "<t-cell-group title=\"01 基础用法\"><t-cell title=\"单行标题\" required /><t-cell title=\"单行标题\" hover note=\"辅助信息\" /><t-cell title=\"单行标题\" hover arrow /><t-cell title=\"单行标题\" hover note=\"辅助信息\" arrow /></t-cell-group>",
      "require": {
        "t-cell": "./cell/cell"
      },
      "path": "./cell-group/cell-group"
    },
    "t-cell": {
      "key": "t-cell",
      "label": "单元格",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-cell.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "内容的对齐方式,默认居中对齐",
          "label": ""
        },
        {
          "key": "arrow",
          "type": ["Boolean"],
          "desc": "是否显示右侧箭头",
          "label": ""
        },
        {
          "key": "bordered",
          "type": ["Boolean"],
          "desc": "是否显示下边框",
          "label": ""
        },
        {
          "key": "description",
          "type": ["String"],
          "desc": "下方内容描述",
          "label": ""
        },
        {
          "key": "hover",
          "type": ["Boolean"],
          "desc": "是否开启点击反馈",
          "label": ""
        },
        {
          "key": "image",
          "type": ["String"],
          "desc": "主图",
          "label": ""
        },
        {
          "key": "jumpType",
          "type": ["String"],
          "desc": "链接跳转类型",
          "label": ""
        },
        {
          "key": "leftIcon",
          "type": ["String"],
          "desc": "左侧图标,出现在单元格标题的左侧",
          "label": ""
        },
        {
          "key": "note",
          "type": ["String"],
          "desc": "和标题同行的说明文字",
          "label": ""
        },
        {
          "key": "required",
          "type": ["Boolean"],
          "desc": "是否显示表单必填星号",
          "label": ""
        },
        {
          "key": "rightIcon",
          "type": ["String"],
          "desc": "最右侧图标",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        },
        {
          "key": "url",
          "type": ["String"],
          "desc": "点击后跳转链接地址。如果值为空,则表示不需要跳转",
          "label": ""
        }
      ],
      "externalClasses": [
        "t-class",
        "t-class-title",
        "t-class-note",
        "t-class-description",
        "t-class-thumb",
        "t-class-hover",
        "t-class-left",
        "t-class-right"
      ],
      "events": [
        {
          "key": "bind:click",
          "desc": "右侧内容",
          "label": ""
        }
      ],
      "tpl": "<t-cell title=\"单行标题\" hover />",
      "path": "./cell/cell"
    },
    "t-check-tag": {
      "key": "t-check-tag",
      "label": "可选标签",
      "icon": "",
      "properties": [
        {
          "key": "checked",
          "type": ["Boolean"],
          "desc": "标签选中的状态,默认风格(theme=default)才有选中态",
          "label": ""
        },
        {
          "key": "closable",
          "type": ["Boolean"],
          "desc": "标签是否可关闭",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String", "Number"],
          "desc": "组件子元素",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "标签禁用态,失效标签不能触发事件。默认风格(theme=default)才有禁用态",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "标签中的图标,可自定义图标呈现",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "标签类型,有三种:方形、圆角方形、标记型",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "标签尺寸",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "组件子元素",
          "label": ""
        },
        {
          "key": "bind:click",
          "desc": "点击标签时触发",
          "label": ""
        }
      ],
      "tpl": "<t-check-tag>check tag</t-check-tag>",
      "path": "./check-tag/check-tag"
    },
    "t-checkbox-group": {
      "key": "t-checkbox-group",
      "label": "多选框组",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-checkbox.png",
      "properties": [
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件",
          "label": ""
        },
        {
          "key": "max",
          "type": ["Number"],
          "desc": "支持最多选中的数量",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "统一设置内部复选框 HTML 属性",
          "label": ""
        },
        {
          "key": "options",
          "type": ["Array"],
          "desc": "以配置形式设置子元素。示例1:`['北京', '上海']` ,示例2: `[{ label: '全选', checkAll: true }, { label: '上海', value: 'shanghai' }]`。checkAll 值为 true 表示当前选项为「全选选项」",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Array"],
          "desc": "选中值",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "值变化时触发。`context.current` 表示当前变化的数据项,如果是全选则为空;`context.type` 表示引起选中数据变化的是选中或是取消选中,`context.option` 表示当前变化的数据项",
          "label": ""
        }
      ],
      "tpl": "<t-checkbox-group value=\"{{['checkbox1']}}\"><t-checkbox value=\"checkbox1\" label=\"多选\" /><t-checkbox value=\"checkbox2\" label=\"多选\" /><t-checkbox value=\"checkbox3\" label=\"多选\" /></t-checkbox-group>",
      "require": {
        "t-checkbox": "./checkbox/checkbox"
      },
      "path": "./checkbox-group/checkbox-group"
    },
    "t-checkbox": {
      "key": "t-checkbox",
      "label": "多选框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-checkbox.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "多选框和内容相对位置",
          "label": ""
        },
        {
          "key": "checkAll",
          "type": ["Boolean"],
          "desc": "用于标识是否为「全选选项」。单独使用无效,需在 CheckboxGroup 中使用",
          "label": ""
        },
        {
          "key": "checked",
          "type": ["Boolean"],
          "desc": "是否选中",
          "label": ""
        },
        {
          "key": "color",
          "type": ["String"],
          "desc": "多选框颜色",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "多选框内容",
          "label": ""
        },
        {
          "key": "contentDisabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件内容(content)触发选中",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["Array"],
          "desc": "自定义选中图标和非选中图标。示例:[选中态图标地址,非选中态图标地址]",
          "label": ""
        },
        {
          "key": "indeterminate",
          "type": ["Boolean"],
          "desc": "是否为半选",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "主文案",
          "label": ""
        },
        {
          "key": "maxContentRow",
          "type": ["Number"],
          "desc": "内容最大行数限制",
          "label": ""
        },
        {
          "key": "maxLabelRow",
          "type": ["Number"],
          "desc": "主文案最大行数限制",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "HTML 元素原生属性",
          "label": ""
        },
        {
          "key": "readonly",
          "type": ["Boolean"],
          "desc": "只读状态",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "多选框的值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-icon", "t-class-label", "t-class-content", "t-class-border"],
      "events": [
        {
          "key": "bind:change",
          "desc": "值变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-checkbox label=\"多选框\" checked=\"{{true}}\"></t-checkbox>",
      "path": "./checkbox/checkbox"
    },
    "t-collapse-panel": {
      "key": "t-collapse-panel",
      "label": "折叠面板",
      "icon": "",
      "properties": [
        {
          "key": "content",
          "type": ["String"],
          "desc": "折叠面板内容",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "禁止当前面板展开,优先级大于 Collapse 的同名属性",
          "label": ""
        },
        {
          "key": "expandIcon",
          "type": ["Boolean"],
          "desc": "当前折叠面板展开图标,优先级大于 Collapse 的同名属性",
          "label": ""
        },
        {
          "key": "header",
          "type": ["String"],
          "desc": "面板头内容",
          "label": ""
        },
        {
          "key": "headerRightContent",
          "type": ["String"],
          "desc": "面板头的右侧区域,一般用于呈现面板操作",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "当前面板唯一标识,如果值为空则取当前面下标兜底作为唯一标识",
          "label": ""
        }
      ],
      "tpl": "<t-collapse-panel header=\"折叠面板标题\" value=\"{{0}}\">此处可自定义内容</t-collapse-panel>",
      "path": "./collapse/collapse-panel"
    },
    "t-collapse": {
      "key": "t-collapse",
      "label": "折叠",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-collapse.png",
      "properties": [
        {
          "key": "defaultExpandAll",
          "type": ["Boolean"],
          "desc": "默认是否展开全部",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用面板展开/收起操作",
          "label": ""
        },
        {
          "key": "expandIcon",
          "type": ["Boolean"],
          "desc": "展开图标。值为 undefined 或 false 则不显示展开图标;值为 true 显示默认图标;值类型为函数,则表示完全自定义展开图标",
          "label": ""
        },
        {
          "key": "expandMutex",
          "type": ["Boolean"],
          "desc": "每个面板互斥展开,每次只展开一个面板",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Array"],
          "desc": "展开的面板集合",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "切换面板时触发,返回变化的值",
          "label": ""
        }
      ],
      "tpl": "<t-collapse value=\"{{[0]}}\"><t-collapse-panel header=\"折叠面板标题\" value=\"{{0}}\">此处可自定义内容</t-collapse-panel></t-collapse>",
      "require": {
        "t-collapse-panel": "./collapse/collapse-panel"
      },
      "path": "./collapse/collapse"
    },
    "t-date-time-picker": {
      "key": "t-date-time-picker",
      "label": "日期时间选择器",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-datetimepicker.png",
      "properties": [
        {
          "key": "cancelBtn",
          "type": ["String"],
          "desc": "取消按钮文字",
          "label": ""
        },
        {
          "key": "confirmBtn",
          "type": ["String"],
          "desc": "确定按钮文字",
          "label": ""
        },
        {
          "key": "end",
          "type": ["String", "Number"],
          "desc": "选择器的结束时间",
          "label": ""
        },
        {
          "key": "footer",
          "type": ["String"],
          "desc": "底部内容",
          "label": ""
        },
        {
          "key": "format",
          "type": ["String"],
          "desc": "用于格式化日期,[详细文档](https://day.js.org/docs/en/display/format)",
          "label": ""
        },
        {
          "key": "header",
          "type": ["Boolean"],
          "desc": "头部内容。值为 true 显示空白头部,值为 false 不显示任何内容,值类型为 TNode 表示自定义头部内容",
          "label": ""
        },
        {
          "key": "mode",
          "type": ["String", "Array"],
          "desc": "选择器模式,用于表示可以选择到哪一个层级。【示例一】year 或者 ['year'] 表示纯日期选择器,只能选择到年份,只显示年份。【示例二】'hour' 或 ['hour'] 表示纯时间选择器,只能选择到小时维度。【示例三】['year', 'month', 'date', 'hour', 'minute'] 表示,日期和时间 混合选择器,可以选择到具体哪一分钟,显示全部时间:年/月/日/时/分",
          "label": ""
        },
        {
          "key": "showWeek",
          "type": ["Boolean"],
          "desc": "【开发中】是否在日期旁边显示周几(如周一,周二,周日等)",
          "label": ""
        },
        {
          "key": "start",
          "type": ["String", "Number"],
          "desc": "选择器的开始时间",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "选中值",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-confirm", "t-class-cancel", "t-class-title"],
      "events": [
        {
          "key": "bind:cancel",
          "desc": "取消按钮点击时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "选中值发生变化时触发",
          "label": ""
        },
        {
          "key": "bind:column-change",
          "desc": "每一列选中数据变化时触发",
          "label": ""
        },
        {
          "key": "bind:confirm",
          "desc": "确认按钮点击时触发",
          "label": ""
        }
      ],
      "tpl": "<t-date-time-picker title=\"选择日期\" visible=\"{{true}}\" mode=\"{{['date']}}\" format=\"YYYY-MM-DD\"></t-date-time-picker>",
      "path": "./date-time-picker/date-time-picker"
    },
    "t-dialog": {
      "key": "t-dialog",
      "label": "对话框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-dialog.png",
      "properties": [
        {
          "key": "actions",
          "type": ["Array"],
          "desc": "操作栏",
          "label": ""
        },
        {
          "key": "buttonLayout",
          "type": ["String"],
          "desc": "多按钮排列方式",
          "label": ""
        },
        {
          "key": "cancelBtn",
          "type": ["String", "Object"],
          "desc": "取消按钮,可自定义。值为 null 则不显示取消按钮。值类型为字符串,则表示自定义按钮文本,值类型为 Object 则表示透传 Button 组件属性。使用 TNode 自定义按钮时,需自行控制取消事件",
          "label": ""
        },
        {
          "key": "closeOnOverlayClick",
          "type": ["Boolean"],
          "desc": "点击蒙层时是否触发关闭事件",
          "label": ""
        },
        {
          "key": "confirmBtn",
          "type": ["String", "Object"],
          "desc": "确认按钮。值为 null 则不显示确认按钮。值类型为字符串,则表示自定义按钮文本,值类型为 Object 则表示透传 Button 组件属性。使用 TNode 自定义按钮时,需自行控制确认事件",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "内容",
          "label": ""
        },
        {
          "key": "preventScrollThrough",
          "type": ["Boolean"],
          "desc": "防止滚动穿透",
          "label": ""
        },
        {
          "key": "showInAttachedElement",
          "type": ["Boolean"],
          "desc": "【开发中】仅在挂载元素中显示抽屉,默认在浏览器可视区域显示。父元素需要有定位属性,如:position: relative",
          "label": ""
        },
        {
          "key": "showOverlay",
          "type": ["Boolean"],
          "desc": "是否显示遮罩层",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "控制对话框是否显示",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "对话框层级,Web 侧样式默认为 2500,移动端和小程序样式默认为 1500",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-content", "t-class-confirm", "t-class-cancel"],
      "events": [
        {
          "key": "bind:cancel",
          "desc": "如果“取消”按钮存在,则点击“取消”按钮时触发,同时触发关闭事件",
          "label": ""
        },
        {
          "key": "bind:close",
          "desc": "关闭事件,点击 取消按钮 或 点击蒙层 时触发",
          "label": ""
        },
        {
          "key": "bind:overlay-click",
          "desc": "如果蒙层存在,点击蒙层时触发",
          "label": ""
        }
      ],
      "tpl": "<t-dialog visible=\"{{true}}\" title=\"对话框标题\" content=\"告知当前状态、信息和解决方法,等内容。描述文案尽可能控制在三行内\" confirm-btn=\"我知道了\" />",
      "path": "./dialog/dialog"
    },
    "t-divider": {
      "key": "t-divider",
      "label": "分割线",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-divider.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "文本位置(仅在水平分割线有效)",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "子元素",
          "label": ""
        },
        {
          "key": "dashed",
          "type": ["Boolean"],
          "desc": "是否虚线(仅在水平分割线有效)",
          "label": ""
        },
        {
          "key": "layout",
          "type": ["String"],
          "desc": "分隔线类型有两种:水平和垂直",
          "label": ""
        },
        {
          "key": "lineColor",
          "type": ["String"],
          "desc": "分隔线颜色",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-line", "t-class-content"],
      "tpl": "<t-divider />",
      "path": "./divider/divider"
    },
    "t-drawer": {
      "key": "t-drawer",
      "label": "模态抽屉",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-drawer.png",
      "properties": [
        {
          "key": "closeOnOverlayClick",
          "type": ["Boolean"],
          "desc": "点击蒙层时是否触发抽屉关闭事件",
          "label": ""
        },
        {
          "key": "destroyOnClose",
          "type": ["Boolean"],
          "desc": "抽屉关闭时是否销毁节点",
          "label": ""
        },
        {
          "key": "items",
          "type": ["Array"],
          "desc": "抽屉里的列表项",
          "label": ""
        },
        {
          "key": "placement",
          "type": ["String"],
          "desc": "抽屉方向",
          "label": ""
        },
        {
          "key": "showOverlay",
          "type": ["Boolean"],
          "desc": "是否显示遮罩层",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "组件是否可见",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "抽屉层级,样式默认为 1500",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:close",
          "desc": "关闭事件,取消按钮点击时、关闭按钮点击时、点击蒙层时均会触发",
          "label": ""
        },
        {
          "key": "bind:item-click",
          "desc": "点击抽屉里的列表项",
          "label": ""
        },
        {
          "key": "bind:overlay-click",
          "desc": "如果蒙层存在,点击蒙层时触发",
          "label": ""
        }
      ],
      "tpl": "<t-drawer visible=\"{{true}}\" placement=\"left\" items=\"{{[{title: '菜单一'},{title: '菜单二'}]}}\"></t-drawer>",
      "path": "./drawer/drawer"
    },
    "t-dropdown-item": {
      "key": "t-dropdown-item",
      "label": "下拉菜单子项",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-dropdownmenu.png",
      "properties": [
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        },
        {
          "key": "multiple",
          "type": ["Boolean"],
          "desc": "是否多选",
          "label": ""
        },
        {
          "key": "options",
          "type": ["Array"],
          "desc": "选项数据",
          "label": ""
        }
      ],
      "tpl": "<t-dropdown-item label=\"菜单\" options=\"{{[{label:'选项一',value:'option_1',disabled:false},{label:'选项二',value:'option_2',disabled:false},{label:'选项三',value:'option_3',disabled:false}]}}\" defaultValue=\"option_3\" /><t-dropdown-item label=\"菜单\" options=\"{{[{label:'选项一',value:'option_1',disabled:false},{label:'选项二',value:'option_2',disabled:false},{label:'选项三',value:'option_3',disabled:false}]}}\" defaultValue=\"option_3\" />",
      "path": "./dropdown-menu/dropdown-item"
    },
    "t-dropdown-menu": {
      "key": "t-dropdown-menu",
      "label": "下拉菜单",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-dropdownmenu.png",
      "properties": [
        {
          "key": "activeColor",
          "type": ["String"],
          "desc": "【讨论中】菜单标题和选项的选中态颜色",
          "label": ""
        },
        {
          "key": "closeOnClickOverlay",
          "type": ["Boolean"],
          "desc": "是否在点击遮罩层后关闭菜单",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["String", "Number"],
          "desc": "动画时长",
          "label": ""
        },
        {
          "key": "showOverlay",
          "type": ["Boolean"],
          "desc": "是否显示遮罩层",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "菜单栏 z-index 层级",
          "label": ""
        }
      ],
      "tpl": "<t-dropdown-menu><t-dropdown-item label=\"菜单\" options=\"{{[{label:'选项一',value:'option_1',disabled:false},{label:'选项二',value:'option_2',disabled:false},{label:'选项三',value:'option_3',disabled:false}]}}\" defaultValue=\"option_3\" /><t-dropdown-item label=\"菜单\" options=\"{{[{label:'选项一',value:'option_1',disabled:false},{label:'选项二',value:'option_2',disabled:false},{label:'选项三',value:'option_3',disabled:false}]}}\" defaultValue=\"option_3\" /></t-dropdown-menu>",
      "require": {
        "t-dropdown-item": "./dropdown-menu/dropdown-item"
      },
      "path": "./dropdown-menu/dropdown-menu"
    },
    "t-empty": {
      "key": "t-empty",
      "label": "空状态",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-empty.png",
      "properties": [
        {
          "key": "action",
          "type": ["String"],
          "desc": "操作按钮",
          "label": ""
        },
        {
          "key": "description",
          "type": ["String"],
          "desc": "描述文字",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标名称",
          "label": ""
        },
        {
          "key": "image",
          "type": ["String"],
          "desc": "图片地址",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-description", "t-class-image", "t-class-actions"],
      "tpl": "<t-empty icon=\"info-circle-filled\" />",
      "path": "./empty/empty"
    },
    "t-fab": {
      "key": "t-fab",
      "label": "悬浮按钮",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-fab.png",
      "properties": [
        {
          "key": "buttonProps",
          "type": ["Object"],
          "desc": "透传至 Button 组件",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标",
          "label": ""
        },
        {
          "key": "style",
          "type": ["String"],
          "desc": "悬浮按钮的样式,常用于调整位置",
          "label": ""
        },
        {
          "key": "text",
          "type": ["String"],
          "desc": "文本内容",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:click",
          "desc": "悬浮按钮点击事件",
          "label": ""
        }
      ],
      "tpl": "<t-fab icon=\"add\" />",
      "path": "./fab/fab"
    },
    "t-footer": {
      "key": "t-footer",
      "label": "布局-底部内容",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-footer.png",
      "properties": [
        {
          "key": "copyright",
          "type": ["String"],
          "desc": "版权信息,type 为`text`生效",
          "label": ""
        },
        {
          "key": "logo",
          "type": ["Object"],
          "desc": "图标配置,type 为`logo`生效。`logo.icon` 表示图标链接地址,`logo.title` 表示标题文本,`logo.url` 表示链接跳转地址",
          "label": ""
        },
        {
          "key": "textLinkList",
          "type": ["Array"],
          "desc": "链接列表,type 为`text`生效。name 表示链接名称, url 表示链接 page 路径,目前只支持小程序内部跳转,openType 表示跳转方式",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "页脚展示类型",
          "label": ""
        }
      ],
      "tpl": "<t-footer theme=\"text\" copyright=\"Copyright © 2021-2031 TD.All Rights Reserved.\" />",
      "path": "./footer/footer"
    },
    "t-grid-item": {
      "key": "t-grid-item",
      "label": "宫格子项",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-grid.png",
      "properties": [
        {
          "key": "badgeProps",
          "type": ["Object"],
          "desc": "头像右上角提示信息,继承 Badge 组件的全部特性。如:小红点,或者数字",
          "label": ""
        },
        {
          "key": "description",
          "type": ["String"],
          "desc": "文本以外的更多描述,辅助信息。可以通过 Props 传入文本,也可以自定义标题节点",
          "label": ""
        },
        {
          "key": "image",
          "type": ["String"],
          "desc": "图片,可以是图片地址,也可以自定义图片节点",
          "label": ""
        },
        {
          "key": "jumpType",
          "type": ["String"],
          "desc": "链接跳转类型",
          "label": ""
        },
        {
          "key": "layout",
          "type": ["String"],
          "desc": "内容布局方式",
          "label": ""
        },
        {
          "key": "text",
          "type": ["String"],
          "desc": "文本,可以通过 Props 传入文本,也可以自定义标题节点",
          "label": ""
        },
        {
          "key": "url",
          "type": ["String"],
          "desc": "点击后的跳转链接",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-image", "t-class-text", "t-class-description"],
      "tpl": "<t-grid-item text=\"标题文字\"><image style=\"width: 96rpx; height: 96rpx\" src=\"https://tdesign.gtimg.com/mobile/%E5%9B%BE%E7%89%87.png\" slot=\"image\" /></t-grid-item>",
      "path": "./grid-item/grid-item"
    },
    "t-grid": {
      "key": "t-grid",
      "label": "栅格",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-grid.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "内容对齐方式",
          "label": ""
        },
        {
          "key": "border",
          "type": ["Boolean", "Object"],
          "desc": "边框,默认不显示。值为 true 则显示默认边框,值类型为 object 则表示自定义边框样式",
          "label": ""
        },
        {
          "key": "column",
          "type": ["Number"],
          "desc": "每一行的列数量",
          "label": ""
        },
        {
          "key": "gutter",
          "type": ["Number"],
          "desc": "间隔大小",
          "label": ""
        },
        {
          "key": "hover",
          "type": ["Boolean"],
          "desc": "是否开启点击反馈",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "tpl": "<t-grid column=\"{{2}}\"><t-grid-item text=\"标题文字\"><image style=\"width: 96rpx; height: 96rpx\" src=\"https://tdesign.gtimg.com/mobile/%E5%9B%BE%E7%89%87.png\" slot=\"image\" /></t-grid-item><t-grid-item text=\"标题文字\"><image style=\"width: 96rpx; height: 96rpx\" src=\"https://tdesign.gtimg.com/mobile/%E5%9B%BE%E7%89%87.png\" slot=\"image\" /></t-grid-item></t-grid>",
      "require": {
        "t-grid-item": "./grid-item/grid-item"
      },
      "path": "./grid/grid"
    },
    "t-icon": {
      "key": "t-icon",
      "label": "图标",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-icon.png",
      "properties": [
        {
          "key": "classPrefix",
          "type": ["String"],
          "desc": "自定义icon前缀",
          "label": ""
        },
        {
          "key": "color",
          "type": ["String"],
          "desc": "图标颜色",
          "label": ""
        },
        {
          "key": "style",
          "type": ["String"],
          "desc": "自定义样式",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "图标名称",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String", "Number"],
          "desc": "图标名称",
          "label": ""
        }
      ],
      "tpl": "<t-icon name=\"add-circle\" />",
      "path": "./icon/icon"
    },
    "t-image": {
      "key": "t-image",
      "label": "图片",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-image.png",
      "properties": [
        {
          "key": "error",
          "type": ["String"],
          "desc": "加载失败时显示的内容。值为 `default` 则表示使用默认加载失败风格;值为空或者 `slot` 表示使用插槽渲染,插槽名称为 `error`;值为其他则表示普通文本内容,如“加载失败”",
          "label": ""
        },
        {
          "key": "lazy",
          "type": ["Boolean"],
          "desc": "是否开启图片懒加载",
          "label": ""
        },
        {
          "key": "loading",
          "type": ["String"],
          "desc": "加载态内容。值为 `default` 则表示使用默认加载中风格;值为空或者 `slot` 表示使用插槽渲染,插槽名称为 `loading`;值为其他则表示普通文本内容,如“加载中”",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "图片圆角类型",
          "label": ""
        },
        {
          "key": "src",
          "type": ["String"],
          "desc": "图片链接",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-load"],
      "events": [
        {
          "key": "bind:error",
          "desc": "图片加载失败时触发",
          "label": ""
        },
        {
          "key": "bind:load",
          "desc": "图片加载完成时触发",
          "label": ""
        }
      ],
      "tpl": "<t-image src=\"https://tdesign.gtimg.com/mobile/%E5%9B%BE%E7%89%87.png\" mode=\"aspectFill\"></t-image>",
      "path": "./image/image"
    },
    "t-indexes": {
      "key": "t-indexes",
      "label": "索引",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-indexes.png",
      "properties": [
        {
          "key": "height",
          "type": ["Number"],
          "desc": "列表高度,未设置默认占满设备高度",
          "label": ""
        },
        {
          "key": "list",
          "type": ["Array"],
          "desc": "索引列表的列表数据。每个元素包含三个子元素,index(string):索引值,例如1,2,3,...或A,B,C等;title(string): 索引标题,可不填将默认设为索引值;children(Array<{title: string}>): 子元素列表,title为子元素的展示文案。",
          "label": ""
        },
        {
          "key": "sticky",
          "type": ["Boolean"],
          "desc": "索引是否吸顶,默认为true",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:select",
          "desc": "点击行元素时触发事件",
          "label": ""
        }
      ],
      "tpl": "<t-indexes id=\"bar\" list=\"{{ [{ title: 'A开头', index: 'A', children: [{ title: '阿坝' }]},{ title: 'B开头', index: 'B', children: [{ title: '北京' }]}] }}\" />",
      "path": "./indexes/indexes"
    },
    "t-input": {
      "key": "t-input",
      "label": "输入框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-input.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "文本内容位置,居左/居中/居右",
          "label": ""
        },
        {
          "key": "borderless",
          "type": ["Boolean"],
          "desc": "【讨论中】是否开启无边框模式",
          "label": ""
        },
        {
          "key": "clearable",
          "type": ["Boolean"],
          "desc": "是否可清空",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用输入框",
          "label": ""
        },
        {
          "key": "errorMessage",
          "type": ["String"],
          "desc": "错误提示文本,值为空不显示(废弃属性,如果需要,请更为使用 status 和 tips)",
          "label": ""
        },
        {
          "key": "format",
          "type": ["String"],
          "desc": "【开发中】指定输入框展示值的格式",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "左侧文本",
          "label": ""
        },
        {
          "key": "maxcharacter",
          "type": ["Number"],
          "desc": "用户最多可以输入的字符个数,一个中文汉字表示两个字符长度。`maxcharacter` 和 `maxlength` 二选一使用",
          "label": ""
        },
        {
          "key": "maxlength",
          "type": ["Number"],
          "desc": "用户最多可以输入的文本长度,一个中文等于一个计数长度。值小于等于 0 的时候,则表示不限制输入长度。`maxcharacter` 和 `maxlength` 二选一使用",
          "label": ""
        },
        {
          "key": "placeholder",
          "type": ["String"],
          "desc": "占位符",
          "label": ""
        },
        {
          "key": "prefixIcon",
          "type": ["String"],
          "desc": "组件前置图标,值为字符串则表示图标名称",
          "label": ""
        },
        {
          "key": "readonly",
          "type": ["Boolean"],
          "desc": "只读状态",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "输入框尺寸",
          "label": ""
        },
        {
          "key": "status",
          "type": ["String"],
          "desc": "输入框状态",
          "label": ""
        },
        {
          "key": "suffix",
          "type": ["String"],
          "desc": "后置图标前的后置内容",
          "label": ""
        },
        {
          "key": "suffixIcon",
          "type": ["String"],
          "desc": "后置文本内容,值为字符串则表示图标名称",
          "label": ""
        },
        {
          "key": "tips",
          "type": ["String"],
          "desc": "输入框下方提示文本,会根据不同的 `status` 呈现不同的样式",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "输入框的值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-input", "t-class-placeholder", "t-class-error-msg"],
      "events": [
        {
          "key": "bind:blur",
          "desc": "失去焦点时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "输入框值发生变化时触发",
          "label": ""
        },
        {
          "key": "bind:clear",
          "desc": "清空按钮点击时触发",
          "label": ""
        },
        {
          "key": "bind:enter",
          "desc": "回车键按下时触发",
          "label": ""
        },
        {
          "key": "bind:focus",
          "desc": "获得焦点时触发",
          "label": ""
        }
      ],
      "tpl": "<t-input placeholder=\"请输入文字\" />",
      "path": "./input/input"
    },
    "t-loading": {
      "key": "t-loading",
      "label": "加载中",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-loading.png",
      "properties": [
        {
          "key": "delay",
          "type": ["Number"],
          "desc": "延迟显示加载效果的时间,用于防止请求速度过快引起的加载闪烁,单位:毫秒",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["Number"],
          "desc": "加载动画执行完成一次的时间,单位:毫秒",
          "label": ""
        },
        {
          "key": "indicator",
          "type": ["Boolean"],
          "desc": "是否显示加载指示符",
          "label": ""
        },
        {
          "key": "inheritColor",
          "type": ["Boolean"],
          "desc": "是否继承父元素颜色",
          "label": ""
        },
        {
          "key": "layout",
          "type": ["String"],
          "desc": "对齐方式",
          "label": ""
        },
        {
          "key": "loading",
          "type": ["Boolean"],
          "desc": "是否处于加载状态",
          "label": ""
        },
        {
          "key": "pause",
          "type": ["Boolean"],
          "desc": "是否暂停动画",
          "label": ""
        },
        {
          "key": "progress",
          "type": ["Number"],
          "desc": "加载进度",
          "label": ""
        },
        {
          "key": "reverse",
          "type": ["Boolean"],
          "desc": "加载动画是否反向",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "尺寸,示例:40rpx/20px",
          "label": ""
        },
        {
          "key": "text",
          "type": ["String"],
          "desc": "加载提示文案",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "加载组件类型",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-text", "t-class-indicator"],
      "tpl": "<t-loading theme=\"circular\" size=\"40rpx\"></t-loading>",
      "path": "./loading/loading"
    },
    "t-message": {
      "key": "t-message",
      "label": "全局提醒",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-message.png",
      "properties": [
        {
          "key": "action",
          "type": ["String"],
          "desc": "操作",
          "label": ""
        },
        {
          "key": "align",
          "type": ["String"],
          "desc": "文本对齐方式",
          "label": ""
        },
        {
          "key": "closeBtn",
          "type": ["String", "Boolean"],
          "desc": "关闭按钮,可以自定义。值为 true 显示默认关闭按钮,值为 false 不显示关闭按钮。值类型为 string 则直接显示值,如:“关闭”。也可以完全自定义按钮",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "用于自定义消息弹出内容",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["Number"],
          "desc": "消息内置计时器,计时到达时会触发 duration-end 事件。单位:毫秒。值为 0 则表示没有计时器。",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String", "Boolean"],
          "desc": "消息提醒前面的图标。值为 true 则根据 theme 显示对应的图标,值为 false 则不显示图标。值为 'info' 或 'bell' 则显示组件内置图标。也可以完全自定义图标节点",
          "label": ""
        },
        {
          "key": "marquee",
          "type": ["Boolean", "Object"],
          "desc": "跑马灯效果。speed 指速度控制;loop 指循环播放次数,值为 -1 表示循环播放,值为 0 表示不循环播放;delay 表示延迟多久开始播放",
          "label": ""
        },
        {
          "key": "offset",
          "type": ["Array"],
          "desc": "相对于 placement 的偏移量,示例:[-10, 20] 或 ['10rpx', '8rpx']",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "消息组件风格",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示,隐藏时默认销毁组件",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "元素层级,样式默认为 5000",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-content", "t-class-icon", "t-class-action", "t-class-close-btn"],
      "events": [
        {
          "key": "bind:action-btn-click",
          "desc": "当操作按钮存在时,用户点击操作按钮时触发",
          "label": ""
        },
        {
          "key": "bind:close-btn-click",
          "desc": "当关闭按钮存在时,用户点击关闭按钮触发",
          "label": ""
        },
        {
          "key": "bind:duration-end",
          "desc": "计时结束后触发",
          "label": ""
        }
      ],
      "tpl": "<t-message id=\"t-message\" />",
      "path": "./message/message"
    },
    "t-navbar": {
      "key": "t-navbar",
      "label": "导航条",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-navbar.png",
      "properties": [
        {
          "key": "animation",
          "type": ["Boolean"],
          "desc": "是否添加动画效果",
          "label": ""
        },
        {
          "key": "background",
          "type": ["String"],
          "desc": "背景",
          "label": ""
        },
        {
          "key": "delta",
          "type": ["Number"],
          "desc": "后退按钮后退层数,含义参考 [wx.navigateBack](https://developers.weixin.qq.com/miniprogram/dev/api/route/wx.navigateBack.html),特殊的,传入 0 不会发生执行 wx.navigateBack,只会触发一个 goback 事件供自行处理。",
          "label": ""
        },
        {
          "key": "fixed",
          "type": ["Boolean"],
          "desc": "是否固定在顶部",
          "label": ""
        },
        {
          "key": "homeIcon",
          "type": ["String"],
          "desc": "首页图标地址。值为 '' 或者 undefiend 则表示不显示返回图标,值为 'circle' 表示显示默认图标,值为 'slot' 表示使用插槽渲染,值为其他则表示图标地址",
          "label": ""
        },
        {
          "key": "leftIcon",
          "type": ["String"],
          "desc": "左侧图标地址,值为 '' 或者 undefiend 则表示不显示返回图标,值为 'arrow-left' 表示显示返回图标,值为 'slot' 表示使用插槽渲染,值为其他则表示图标地址",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "页面标题",
          "label": ""
        },
        {
          "key": "titleMaxLength",
          "type": ["Number"],
          "desc": "标题文字最大长度,超出的范围使用 `...` 表示",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-title", "t-class-left-icon", "t-class-home-icon", "t-class-capsule"],
      "events": [
        {
          "key": "bind:complete",
          "desc": "navigateBack 执行完成后触发(失败或成功均会触发)",
          "label": ""
        },
        {
          "key": "bind:fail",
          "desc": "navigateBack 执行失败后触发",
          "label": ""
        },
        {
          "key": "bind:go-back",
          "desc": "delta 值为 0 时,点击返回,触发该事件",
          "label": ""
        },
        {
          "key": "bind:go-home",
          "desc": "点击 Home 触发",
          "label": ""
        },
        {
          "key": "bind:success",
          "desc": "navigateBack 执行成功后触发",
          "label": ""
        }
      ],
      "tpl": "<t-navbar title=\"标题\" />",
      "path": "./navbar/navbar"
    },
    "t-picker-item": {
      "key": "t-picker-item",
      "label": "选择器子项",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-picker.png",
      "properties": [
        {
          "key": "format",
          "type": ["String"],
          "desc": "格式化标签",
          "label": ""
        },
        {
          "key": "options",
          "type": ["Array"],
          "desc": "数据源",
          "label": ""
        }
      ],
      "tpl": "<t-picker-item options=\"{{[{ label: '上海', value: '上海' },{ label: '广州', value: '广州' },{ label: '深圳', value: '深圳' }]}}\" value=\"广州\"></t-picker-item>",
      "path": "./picker-item/picker-item"
    },
    "t-picker": {
      "key": "t-picker",
      "label": "选择器",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-picker.png",
      "properties": [
        {
          "key": "cancelBtn",
          "type": ["String", "Object"],
          "desc": "取消按钮文字",
          "label": ""
        },
        {
          "key": "confirmBtn",
          "type": ["String", "Object"],
          "desc": "确定按钮文字",
          "label": ""
        },
        {
          "key": "footer",
          "type": ["String"],
          "desc": "底部内容",
          "label": ""
        },
        {
          "key": "header",
          "type": ["Boolean"],
          "desc": "头部内容。值为 true 显示空白头部,值为 false 不显示任何内容,值类型为 TNode 表示自定义头部内容",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Array"],
          "desc": "选中值",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:cancel",
          "desc": "点击取消按钮时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "选中变化时候触发",
          "label": ""
        },
        {
          "key": "bind:pick",
          "desc": "任何一列选中都会触发,不同的列参数不同。`context.column` 表示第几列变化,`context.index` 表示变化那一列的选中项下标",
          "label": ""
        }
      ],
      "tpl": "<t-picker visible=\"{{true}}\" cancelBtn=\"取消\" confirmBtn=\"确认\"><t-picker-item options=\"{{[{ label: '上海', value: '上海' },{ label: '广州', value: '广州' },{ label: '深圳', value: '深圳' }]}}\" value=\"广州\"></t-picker-item></t-picker>",
      "require": {
        "t-picker-item": "./picker-item/picker-item"
      },
      "path": "./picker/picker"
    },
    "t-popup": {
      "key": "t-popup",
      "label": "气泡框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-popup.png",
      "properties": [
        {
          "key": "closeBtn",
          "type": ["Boolean"],
          "desc": "关闭按钮,值类型为 Boolean 时表示是否显示关闭按钮。也可以自定义关闭按钮",
          "label": ""
        },
        {
          "key": "closeOnOverlayClick",
          "type": ["Boolean"],
          "desc": "点击遮罩层是否关闭",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "浮层里面的内容",
          "label": ""
        },
        {
          "key": "placement",
          "type": ["String"],
          "desc": "浮层出现位置",
          "label": ""
        },
        {
          "key": "preventScrollThrough",
          "type": ["Boolean"],
          "desc": "防止滚动穿透",
          "label": ""
        },
        {
          "key": "showOverlay",
          "type": ["Boolean"],
          "desc": "是否显示遮罩层",
          "label": ""
        },
        {
          "key": "transitionProps",
          "type": ["Object"],
          "desc": "动画效果定义",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示浮层",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "组件层级,Web 侧样式默认为 5500,移动端和小程序样式默认为 1500",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-overlay", "t-class-content"],
      "events": [
        {
          "key": "bind:visible-change",
          "desc": "当浮层隐藏或显示时触发",
          "label": ""
        }
      ],
      "tpl": "<t-popup visible=\"{{true}}\" placement=\"top\"><view style=\"width: 100vw; height: 35vh; background: #fff\" /></t-popup>",
      "path": "./popup/popup"
    },
    "t-progress": {
      "key": "t-progress",
      "label": "进度条",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-progress.png",
      "properties": [
        {
          "key": "color",
          "type": ["String", "Object", "Array"],
          "desc": "进度条颜色。示例:'#ED7B2F' 或 'orange' 或 `['#f00', '#0ff', '#f0f']` 或 `{ '0%': '#f00', '100%': '#0ff' }` 或  `{ from: '#000', to: '#000' }` 等",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String", "Boolean"],
          "desc": "进度百分比,可自定义",
          "label": ""
        },
        {
          "key": "percentage",
          "type": ["Number"],
          "desc": "进度条百分比",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String", "Number"],
          "desc": "进度条尺寸,示例:small/medium/large/240。small 值为 72; medium 值为 112;large 值为 160",
          "label": ""
        },
        {
          "key": "status",
          "type": ["String"],
          "desc": "进度条状态",
          "label": ""
        },
        {
          "key": "strokeWidth",
          "type": ["String", "Number"],
          "desc": "进度条线宽。宽度数值不能超过 size 的一半,否则不能输出环形进度",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "进度条风格。值为 line,标签(label)显示在进度条右侧;值为 plump,标签(label)显示在进度条里面;值为 circle,标签(label)显示在进度条正中间",
          "label": ""
        },
        {
          "key": "trackColor",
          "type": ["String"],
          "desc": "进度条未完成部分颜色",
          "label": ""
        }
      ],
      "tpl": "<t-progress></t-progress>",
      "path": "./progress/progress"
    },
    "t-pull-down-refresh": {
      "key": "t-pull-down-refresh",
      "label": "下拉刷新",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-pulldownrefresh.png",
      "properties": [
        {
          "key": "loadingBarHeight",
          "type": ["String", "Number"],
          "desc": "加载中下拉高度,如果值为数字则单位是:'px'",
          "label": ""
        },
        {
          "key": "loadingProps",
          "type": ["Object"],
          "desc": "加载loading样式",
          "label": ""
        },
        {
          "key": "loadingTexts",
          "type": ["Array"],
          "desc": "提示语,组件内部默认值为 ['下拉刷新', '松手刷新', '正在刷新', '刷新完成']",
          "label": ""
        },
        {
          "key": "maxBarHeight",
          "type": ["String", "Number"],
          "desc": "最大下拉高度,如果值为数字则单位是:'px'",
          "label": ""
        },
        {
          "key": "refreshTimeout",
          "type": ["Number"],
          "desc": "刷新超时时间",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Boolean"],
          "desc": "组件状态,值为 `true` 表示下拉状态,值为 `false` 表示收起状态",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-loading", "t-class-text", "t-class-indicator"],
      "events": [
        {
          "key": "bind:change",
          "desc": "下拉或收起时触发,用户手势往下滑动触发下拉状态,手势松开触发收起状态",
          "label": ""
        },
        {
          "key": "bind:refresh",
          "desc": "结束下拉时触发",
          "label": ""
        },
        {
          "key": "bind:timeout",
          "desc": "刷新超时触发",
          "label": ""
        }
      ],
      "tpl": "<t-pull-down-refresh id=\"pull-down-refresh\" loadingTexts=\"{{['继续拉哦', '该松手啦', '努力刷新中', '完成~']}}\"><view style=\"height: 300rpx; background: #fff; text-align: center\">拖拽该区域演示 中间下拉刷新</view></t-pull-down-refresh>",
      "path": "./pull-down-refresh/pull-down-refresh"
    },
    "t-radio-group": {
      "key": "t-radio-group",
      "label": "单选框组",
      "icon": "",
      "properties": [
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用全部子单选框",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "HTML 元素原生属性",
          "label": ""
        },
        {
          "key": "options",
          "type": ["Array"],
          "desc": "单选组件按钮形式。RadioOption 数据类型为 string 或 number 时,表示 label 和 value 值相同",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number", "Boolean"],
          "desc": "选中的值",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "选中值发生变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-radio-group defaultValue=\"radio1\"><t-radio value=\"radio1\" label=\"单选\" /><t-radio value=\"radio2\" label=\"单选\" /></t-radio-group>",
      "require": {
        "t-radio": "./radio/radio"
      },
      "path": "./radio-group/radio-group"
    },
    "t-radio": {
      "key": "t-radio",
      "label": "单选框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-radio.png",
      "properties": [
        {
          "key": "align",
          "type": ["String"],
          "desc": "复选框和内容相对位置",
          "label": ""
        },
        {
          "key": "allowUncheck",
          "type": ["Boolean"],
          "desc": "是否允许取消选中",
          "label": ""
        },
        {
          "key": "checked",
          "type": ["Boolean"],
          "desc": "是否选中",
          "label": ""
        },
        {
          "key": "color",
          "type": ["String"],
          "desc": "单选按钮颜色",
          "label": ""
        },
        {
          "key": "content",
          "type": ["String"],
          "desc": "单选内容",
          "label": ""
        },
        {
          "key": "contentDisabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件内容(content)触发选中",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否为禁用态",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String", "Array"],
          "desc": "自定义选中图标和非选中图标。示例:[选中态图标,非选中态图标]。值为 fill-circle 表示图标为填充型图标,值为 stroke-line 表示图标为描边型图标",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "主文案",
          "label": ""
        },
        {
          "key": "maxContentRow",
          "type": ["Number"],
          "desc": "内容最大行数限制",
          "label": ""
        },
        {
          "key": "maxLabelRow",
          "type": ["Number"],
          "desc": "主文案最大行数限制",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "HTML 元素原生属性",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number", "Boolean"],
          "desc": "单选按钮的值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-icon", "t-class-label", "t-class-content", "t-class-border"],
      "events": [
        {
          "key": "bind:change",
          "desc": "值变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-radio value=\"radio\" label=\"单选\" />",
      "path": "./radio/radio"
    },
    "t-rate": {
      "key": "t-rate",
      "label": "评分",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-rate.png",
      "properties": [
        {
          "key": "allowHalf",
          "type": ["Boolean"],
          "desc": "是否允许半选",
          "label": ""
        },
        {
          "key": "color",
          "type": ["String", "Array"],
          "desc": "评分图标的颜色,样式中默认为 #ED7B2F。一个值表示设置选中高亮的五角星颜色,示例:[选中颜色]。数组则表示分别设置 选中高亮的五角星颜色 和 未选中暗灰的五角星颜色,[选中颜色,未选中颜色]。示例:['#ED7B2F', '#E3E6EB']",
          "label": ""
        },
        {
          "key": "count",
          "type": ["Number"],
          "desc": "评分的数量",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用评分",
          "label": ""
        },
        {
          "key": "gap",
          "type": ["Number"],
          "desc": "评分图标的间距",
          "label": ""
        },
        {
          "key": "showText",
          "type": ["Boolean"],
          "desc": "是否显示对应的辅助文字",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "评分图标的大小,示例:`20`",
          "label": ""
        },
        {
          "key": "texts",
          "type": ["Array"],
          "desc": "评分等级对应的辅助文字。组件内置默认值为:['极差', '失望', '一般', '满意', '惊喜']。自定义值示例:['1分', '2分', '3分', '4分', '5分']",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Number"],
          "desc": "选择评分的值",
          "label": ""
        },
        {
          "key": "variant",
          "type": ["String"],
          "desc": "形状类型,有描边类型和填充类型两种",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "评分数改变时触发",
          "label": ""
        }
      ],
      "tpl": "<t-rate defaultValue=\"{{4}}\" variant=\"filled\"></t-rate>",
      "path": "./rate/rate"
    },
    "t-search": {
      "key": "t-search",
      "label": "搜索",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-search.png",
      "properties": [
        {
          "key": "action",
          "type": ["String"],
          "desc": "自定义右侧操作按钮文字",
          "label": ""
        },
        {
          "key": "center",
          "type": ["Boolean"],
          "desc": "是否居中",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用",
          "label": ""
        },
        {
          "key": "focus",
          "type": ["Boolean"],
          "desc": "是否聚焦",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "左侧文本",
          "label": ""
        },
        {
          "key": "leftIcon",
          "type": ["String"],
          "desc": "左侧图标",
          "label": ""
        },
        {
          "key": "placeholder",
          "type": ["String"],
          "desc": "占位符",
          "label": ""
        },
        {
          "key": "rightIcon",
          "type": ["String"],
          "desc": "右侧图标",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "搜索框形状",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String"],
          "desc": "值",
          "label": ""
        }
      ],
      "externalClasses": [
        "t-class",
        "t-class-input",
        "t-class-input-container",
        "t-class-cancel",
        "t-class-left",
        "t-class-right"
      ],
      "events": [
        {
          "key": "bind:action-click",
          "desc": "点击右侧操作按钮文字时触发",
          "label": ""
        },
        {
          "key": "bind:blur",
          "desc": "失去焦点时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "值发生变化时触发",
          "label": ""
        },
        {
          "key": "bind:clear",
          "desc": "点击清除时触发",
          "label": ""
        },
        {
          "key": "bind:focus",
          "desc": "聚焦时触发",
          "label": ""
        },
        {
          "key": "bind:submit",
          "desc": "提交时触发",
          "label": ""
        }
      ],
      "tpl": "<t-search></t-search>",
      "path": "./search/search"
    },
    "t-skeleton": {
      "key": "t-skeleton",
      "label": "骨架屏",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-skeleton.png",
      "properties": [
        {
          "key": "animation",
          "type": ["String"],
          "desc": "动画效果,有「渐变加载动画」和「闪烁加载动画」两种。值为 'none' 则表示没有动画",
          "label": ""
        },
        {
          "key": "delay",
          "type": ["Number"],
          "desc": "【开发中】延迟显示加载效果的时间,用于防止请求速度过快引起的加载闪烁,单位:毫秒",
          "label": ""
        },
        {
          "key": "loading",
          "type": ["Boolean"],
          "desc": "是否为加载状态,如果是则显示骨架图,如果不是则显示加载完成的内容",
          "label": ""
        },
        {
          "key": "rowCol",
          "type": ["Array"],
          "desc": "用于设置行列数量、宽度高度、间距等。【示例一】,`[1, 1, 2]` 表示输出三行骨架图,第一行一列,第二行一列,第三行两列。【示例二】,`[1, 1, { width: '100px' }]` 表示自定义第三行的宽度为 `100px`。【示例三】,`[1, 2, [{ width, height }, { width, height, marginLeft }]]` 表示第三行有两列,且自定义宽度、高度和间距",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "骨架图风格,有基础、头像组合等两大类",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-avatar", "t-class-image", "t-class-text"],
      "tpl": "<t-skeleton rowCol=\"{{ [{ width: '686rpx', height: '32rpx' }, 1, 1, { width: '380rpx', height: '32rpx' }]}}\" loading></t-skeleton>",
      "path": "./skeleton/skeleton"
    },
    "t-slider": {
      "key": "t-slider",
      "label": "滑块",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-slider.png",
      "properties": [
        {
          "key": "colors",
          "type": ["Array"],
          "desc": "颜色,[已选择, 未选择]",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件",
          "label": ""
        },
        {
          "key": "disabledColor",
          "type": ["Array"],
          "desc": "禁用状态滑动条的颜色,[已选, 未选]",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String", "Boolean"],
          "desc": "滑块当前值文本。<br />值为 true 显示默认文案;值为 false 不显示滑块当前值文本;<br />值为 `${value}%` 则表示组件会根据占位符渲染文案;<br />值类型为函数时,参数 `value` 标识滑块值,参数 `position=start` 表示范围滑块的起始值,参数 `position=end` 表示范围滑块的终点值",
          "label": ""
        },
        {
          "key": "marks",
          "type": ["Object", "Array"],
          "desc": "刻度标记,示例:`[0, 10, 40, 200]` 或者 `{ 5:  '5¥', 10: '10%' }`",
          "label": ""
        },
        {
          "key": "max",
          "type": ["Number"],
          "desc": "滑块范围最大值",
          "label": ""
        },
        {
          "key": "min",
          "type": ["Number"],
          "desc": "滑块范围最小值",
          "label": ""
        },
        {
          "key": "range",
          "type": ["Boolean"],
          "desc": "双游标滑块",
          "label": ""
        },
        {
          "key": "showExtremeValue",
          "type": ["Boolean"],
          "desc": "是否边界值",
          "label": ""
        },
        {
          "key": "step",
          "type": ["Number"],
          "desc": "步长",
          "label": ""
        },
        {
          "key": "value",
          "type": ["Number", "Array"],
          "desc": "滑块值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-bar", "t-class-bar-active", "t-class-bar-disabled", "t-class-cursor"],
      "events": [
        {
          "key": "bind:change",
          "desc": "滑块值变化时触发",
          "label": ""
        },
        {
          "key": "bind:dragend",
          "desc": "结束拖动时触发",
          "label": ""
        },
        {
          "key": "bind:dragstart",
          "desc": "开始拖动时触发",
          "label": ""
        }
      ],
      "tpl": "<t-slider />",
      "path": "./slider/slider"
    },
    "t-step-item": {
      "key": "t-step-item",
      "label": "步骤",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-steps.png",
      "properties": [
        {
          "key": "content",
          "type": ["String"],
          "desc": "步骤描述",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标。传入 slot 代表使用插槽,其他字符串代表使用内置图标",
          "label": ""
        },
        {
          "key": "status",
          "type": ["String"],
          "desc": "当前步骤的状态",
          "label": ""
        },
        {
          "key": "subStepItems",
          "type": ["Array"],
          "desc": "子步骤条,仅支持 layout  = 'vertical' 时",
          "label": ""
        },
        {
          "key": "title",
          "type": ["String"],
          "desc": "标题",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-content", "t-class-title", "t-class-description", "t-class-extra"],
      "tpl": "<t-step-item title=\"步骤描述\"></t-step-item>",
      "path": "./step-item/step-item"
    },
    "t-stepper": {
      "key": "t-stepper",
      "label": "步进器",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-stepper.png",
      "properties": [
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "禁用全部操作",
          "label": ""
        },
        {
          "key": "disableInput",
          "type": ["Boolean"],
          "desc": "禁用输入框",
          "label": ""
        },
        {
          "key": "inputWidth",
          "type": ["Number"],
          "desc": "输入框宽度",
          "label": ""
        },
        {
          "key": "max",
          "type": ["Number"],
          "desc": "最大值",
          "label": ""
        },
        {
          "key": "min",
          "type": ["Number"],
          "desc": "最小值",
          "label": ""
        },
        {
          "key": "step",
          "type": ["Number"],
          "desc": "步长",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "组件风格",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-input", "t-class-add", "t-class-minus"],
      "events": [
        {
          "key": "bind:blur",
          "desc": "输入框失去焦点时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "数值发生变更时触发",
          "label": ""
        },
        {
          "key": "bind:overlimit",
          "desc": "数值超出限制时触发",
          "label": ""
        }
      ],
      "tpl": "<t-stepper />",
      "path": "./stepper/stepper"
    },
    "t-steps": {
      "key": "t-steps",
      "label": "步骤条",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-steps.png",
      "properties": [
        {
          "key": "current",
          "type": ["String", "Number"],
          "desc": "当前步骤,即整个步骤条进度。默认根据步骤下标判断步骤的完成状态,当前步骤为进行中,当前步骤之前的步骤为已完成,当前步骤之后的步骤为未开始。如果每个步骤没有设置 value,current 值为步骤长度则表示所有步骤已完成。如果每个步骤设置了自定义 value,则 current = 'FINISH' 表示所有状态完成",
          "label": ""
        },
        {
          "key": "currentStatus",
          "type": ["String"],
          "desc": "用于控制 current 指向的步骤条的状态",
          "label": ""
        },
        {
          "key": "layout",
          "type": ["String"],
          "desc": "步骤条方向,有两种:横向和纵向",
          "label": ""
        },
        {
          "key": "readonly",
          "type": ["Boolean"],
          "desc": "只读状态",
          "label": ""
        },
        {
          "key": "separator",
          "type": ["String"],
          "desc": "步骤条分割符",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "步骤条风格",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "events": [
        {
          "key": "bind:change",
          "desc": "当前步骤发生变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-steps><t-step-item title=\"步骤描述1\" /><t-step-item title=\"步骤描述2\" /></t-steps>",
      "require": {
        "t-step-item": "./step-item/step-item"
      },
      "path": "./steps/steps"
    },
    "t-sticky": {
      "key": "t-sticky",
      "label": "吸顶容器",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-sticky.png",
      "properties": [
        {
          "key": "container",
          "type": ["String"],
          "desc": "函数返回容器对应的 NodesRef 节点,将对应节点指定为组件的外部容器,滚动时组件会始终保持在容器范围内,当组件即将超出容器底部时,会返回原位置。",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件",
          "label": ""
        },
        {
          "key": "offsetTop",
          "type": ["String", "Number"],
          "desc": "吸顶时与顶部的距离,单位`px`",
          "label": ""
        },
        {
          "key": "zIndex",
          "type": ["Number"],
          "desc": "吸顶时的 z-index",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "events": [
        {
          "key": "bind:scroll",
          "desc": "滚动时触发,scrollTop: 距离顶部位置,isFixed: 是否吸顶",
          "label": ""
        }
      ],
      "tpl": "<t-sticky></t-sticky>",
      "path": "./sticky/sticky"
    },
    "t-swipe-cell": {
      "key": "t-swipe-cell",
      "label": "滑动操作",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-swipecell.png",
      "properties": [
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用滑动",
          "label": ""
        },
        {
          "key": "expanded",
          "type": ["String"],
          "desc": "操作项是否呈现为打开态",
          "label": ""
        },
        {
          "key": "left",
          "type": ["Array"],
          "desc": "左侧滑动操作项。所有行为同 `right`",
          "label": ""
        },
        {
          "key": "right",
          "type": ["Array"],
          "desc": "右侧滑动操作项。有两种定义方式,一种是使用数组,二种是使用插槽。`right.text` 表示操作文本,`right.className` 表示操作项类名,`right.style` 表示操作项样式,`right.onClick` 表示点击操作项后执行的回调函数。示例:`[{ text: '删除', style: 'background-color: red', onClick: () => {} }]`",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:click",
          "desc": "操作项点击时触发(插槽写法组件不触发,业务侧自定义内容和事件)",
          "label": ""
        }
      ],
      "tpl": "<t-swipe-cell><t-cell title=\"列表-左滑单操作\" note=\"辅助信息\" /><view slot=\"right\">删除</view></t-swipe-cell>",
      "require": {
        "t-cell": "./cell/cell"
      },
      "path": "./swipe-cell/swipe-cell"
    },
    "t-swiper": {
      "key": "t-swiper",
      "label": "轮播",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-swiper.png",
      "properties": [
        {
          "key": "animation",
          "type": ["String"],
          "desc": "轮播切换动画效果类型",
          "label": ""
        },
        {
          "key": "autoplay",
          "type": ["Boolean"],
          "desc": "是否自动播放",
          "label": ""
        },
        {
          "key": "current",
          "type": ["Number"],
          "desc": "当前轮播在哪一项(下标)",
          "label": ""
        },
        {
          "key": "direction",
          "type": ["String"],
          "desc": "轮播滑动方向,包括横向滑动和纵向滑动两个方向",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["Number"],
          "desc": "滑动动画时长",
          "label": ""
        },
        {
          "key": "height",
          "type": ["Number"],
          "desc": "当使用垂直方向滚动时的高度",
          "label": ""
        },
        {
          "key": "interval",
          "type": ["Number"],
          "desc": "轮播间隔时间",
          "label": ""
        },
        {
          "key": "loop",
          "type": ["Boolean"],
          "desc": "是否循环播放",
          "label": ""
        },
        {
          "key": "navigation",
          "type": ["Object"],
          "desc": "导航器全部配置",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "轮播切换时触发",
          "label": ""
        }
      ],
      "tpl": "<t-swiper current=\"{{1}}\" autoplay=\"{{true}}\" duration=\"{{500}}\" interval=\"{{5000}}\" navigation><t-swiper-item wx:for=\"{{[{image: 'https://tdesign.gtimg.com/site/swiper/01.png'},{image: 'https://tdesign.gtimg.com/site/swiper/02.png'}]}}\" wx:key=\"index\"><image src=\"{{item.image}}\" style=\"width: 100%; height: 100%\" /></t-swiper-item></t-swiper>",
      "require": {
        "t-swiper-item": "./swiper/swiper-item"
      },
      "path": "./swiper/swiper"
    },
    "t-switch": {
      "key": "t-switch",
      "label": "开关",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-switch.png",
      "properties": [
        {
          "key": "colors",
          "type": ["Array"],
          "desc": "自定义颜色,[打开时的颜色,关闭时的颜色]。组件默认颜色为 ['#0052d9', 'rgba(0, 0, 0, .26']。示例:[blue, gray]",
          "label": ""
        },
        {
          "key": "customValue",
          "type": ["Array"],
          "desc": "开关内容,[打开时的值,关闭时的值]。默认为 [true, false]。示例:[1, 0]",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用组件",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "开关的标签",
          "label": ""
        },
        {
          "key": "loading",
          "type": ["Boolean"],
          "desc": "是否处于加载中状态",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "开关尺寸",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number", "Boolean"],
          "desc": "开关值",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:change",
          "desc": "数据发生变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-switch defaultValue=\"{{true}}\" />",
      "path": "./switch/switch"
    },
    "t-tab-bar-item": {
      "key": "t-tab-bar-item",
      "label": "标签栏选项",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-tabbar.png",
      "properties": [
        {
          "key": "badgeProps",
          "type": ["Object"],
          "desc": "图标右上角提示信息",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "图标名称",
          "label": ""
        },
        {
          "key": "subTabBar",
          "type": ["Array"],
          "desc": "二级菜单",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "标识符",
          "label": ""
        }
      ],
      "tpl": "<t-tab-bar-item wx:for=\"{{[{value: 'label_1',label: '标签栏一',icon: 'app'},{value: 'label_2',label: '标签栏二',icon: 'app'}]}}\" wx:for-item=\"item\" wx:for-index=\"index\" wx:key=\"index\" value=\"{{item.value}}\">{{item.label}}</t-tab-bar-item>",
      "path": "./tab-bar-item/tab-bar-item"
    },
    "t-tab-bar": {
      "key": "t-tab-bar",
      "label": "标签栏",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-tabbar.png",
      "properties": [
        {
          "key": "bordered",
          "type": ["Boolean"],
          "desc": "是否显示外边框",
          "label": ""
        },
        {
          "key": "color",
          "type": ["Array"],
          "desc": "标签颜色设置。示例:[选中标签的颜色, 未选中的标签颜色]",
          "label": ""
        },
        {
          "key": "fixed",
          "type": ["Boolean"],
          "desc": "是否固定在底部",
          "label": ""
        },
        {
          "key": "safeAreaInsetBottom",
          "type": ["Boolean"],
          "desc": "是否为 iPhoneX 留出底部安全距离",
          "label": ""
        },
        {
          "key": "split",
          "type": ["Boolean"],
          "desc": "是否需要分割线",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number", "Array"],
          "desc": "当前选中标签的索引",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "events": [
        {
          "key": "bind:change",
          "desc": "选中标签切换时触发",
          "label": ""
        }
      ],
      "tpl": "<t-tab-bar value=\"label_1\"><t-tab-bar-item wx:for=\"{{[{value: 'label_1',label: '标签栏一',icon: 'app'},{value: 'label_2',label: '标签栏二',icon: 'app'}]}}\" wx:for-item=\"item\" wx:for-index=\"index\" wx:key=\"index\" value=\"{{item.value}}\">{{item.label}}</t-tab-bar-item></t-tab-bar>",
      "require": {
        "t-tab-bar-item": "./tab-bar-item/tab-bar-item"
      },
      "path": "./tab-bar/tab-bar"
    },
    "t-tab-panel": {
      "key": "t-tab-panel",
      "label": "选项卡面板",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-tabs.png",
      "properties": [
        {
          "key": "destroyOnHide",
          "type": ["Boolean"],
          "desc": "选项卡内容隐藏时是否销毁",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用当前选项卡",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "选项卡名称",
          "label": ""
        },
        {
          "key": "panel",
          "type": ["String"],
          "desc": "用于自定义选项卡面板内容",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "选项卡的值,唯一标识",
          "label": ""
        }
      ],
      "tpl": "<t-tab-panel label=\"标签页一\" value=\"0\">标签一内容</t-tab-panel>",
      "path": "./tab-panel/tab-panel"
    },
    "t-tabs": {
      "key": "t-tabs",
      "label": "选项卡",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-tabs.png",
      "properties": [
        {
          "key": "animation",
          "type": ["Object"],
          "desc": "动画效果设置。其中 duration 表示动画时长",
          "label": ""
        },
        {
          "key": "placement",
          "type": ["String"],
          "desc": "选项卡位置",
          "label": ""
        },
        {
          "key": "showBottomLine",
          "type": ["Boolean"],
          "desc": "是否展示底部激活线条",
          "label": ""
        },
        {
          "key": "stickyProps",
          "type": ["Object"],
          "desc": "是否支持吸顶",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String", "Number"],
          "desc": "激活的选项卡值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-item", "t-class-active", "t-class-track"],
      "events": [
        {
          "key": "bind:change",
          "desc": "激活的选项卡发生变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-tabs defaultValue=\"{{0}}\"><t-tab-panel label=\"标签页一\" value=\"0\">标签一内容</t-tab-panel><t-tab-panel label=\"标签页二\" value=\"1\">标签二内容</t-tab-panel></t-tabs>",
      "require": {
        "t-tab-panel": "./tab-panel/tab-panel"
      },
      "path": "./tabs/tabs"
    },
    "t-tag": {
      "key": "t-tag",
      "label": "标签",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-tag.png",
      "properties": [
        {
          "key": "closable",
          "type": ["Boolean"],
          "desc": "标签是否可关闭",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "标签禁用态,失效标签不能触发事件。默认风格(theme=default)才有禁用态",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "标签中的图标,可自定义图标呈现",
          "label": ""
        },
        {
          "key": "maxWidth",
          "type": ["String", "Number"],
          "desc": "标签最大宽度,宽度超出后会出现省略号。示例:'50px' / 80",
          "label": ""
        },
        {
          "key": "shape",
          "type": ["String"],
          "desc": "标签类型,有三种:方形、圆角方形、标记型",
          "label": ""
        },
        {
          "key": "size",
          "type": ["String"],
          "desc": "标签尺寸",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "组件风格,用于描述组件不同的应用场景",
          "label": ""
        },
        {
          "key": "variant",
          "type": ["String"],
          "desc": "标签风格变体",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "events": [
        {
          "key": "bind:click",
          "desc": "点击时触发",
          "label": ""
        },
        {
          "key": "bind:close",
          "desc": "如果关闭按钮存在,点击关闭按钮时触发",
          "label": ""
        }
      ],
      "tpl": "<t-tag theme=\"primary\">重要</t-tag>",
      "path": "./tag/tag"
    },
    "t-textarea": {
      "key": "t-textarea",
      "label": "文本输入框",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-textarea.png",
      "properties": [
        {
          "key": "adjustPosition",
          "type": ["Boolean"],
          "desc": "键盘弹起时,是否自动上推页面",
          "label": ""
        },
        {
          "key": "autofocus",
          "type": ["Boolean"],
          "desc": "自动聚焦,拉起键盘",
          "label": ""
        },
        {
          "key": "autosize",
          "type": ["Boolean"],
          "desc": "是否自动增高,值为 autosize 时,style.height 不生效",
          "label": ""
        },
        {
          "key": "confirmHold",
          "type": ["Boolean"],
          "desc": "点击键盘右下角按钮时是否保持键盘不收起点",
          "label": ""
        },
        {
          "key": "confirmType",
          "type": ["String"],
          "desc": "设置键盘右下角按钮的文字,仅在 type='text'时生效",
          "label": ""
        },
        {
          "key": "disabled",
          "type": ["Boolean"],
          "desc": "是否禁用文本框",
          "label": ""
        },
        {
          "key": "focus",
          "type": ["Boolean"],
          "desc": "自动聚焦",
          "label": ""
        },
        {
          "key": "label",
          "type": ["String"],
          "desc": "左侧文本",
          "label": ""
        },
        {
          "key": "maxcharacter",
          "type": ["Number"],
          "desc": "用户最多可以输入的字符个数,一个中文汉字表示两个字符长度",
          "label": ""
        },
        {
          "key": "maxlength",
          "type": ["Number"],
          "desc": "用户最多可以输入的字符个数",
          "label": ""
        },
        {
          "key": "placeholder",
          "type": ["String"],
          "desc": "占位符",
          "label": ""
        },
        {
          "key": "value",
          "type": ["String"],
          "desc": "文本框值",
          "label": ""
        }
      ],
      "externalClasses": ["t-class", "t-class-textarea", "t-class-placeholder", "t-class-name"],
      "events": [
        {
          "key": "bind:blur",
          "desc": "失去焦点时触发",
          "label": ""
        },
        {
          "key": "bind:change",
          "desc": "输入内容变化时触发",
          "label": ""
        },
        {
          "key": "bind:enter",
          "desc": "点击完成时触发",
          "label": ""
        },
        {
          "key": "bind:focus",
          "desc": "获得焦点时触发",
          "label": ""
        },
        {
          "key": "bind:line-change",
          "desc": "行高发生变化时触发",
          "label": ""
        }
      ],
      "tpl": "<t-textarea />",
      "path": "./textarea/textarea"
    },
    "t-toast": {
      "key": "t-toast",
      "label": "轻提示",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-toast.png",
      "properties": [
        {
          "key": "direction",
          "type": ["String"],
          "desc": "图标排列方式",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["Number"],
          "desc": "弹窗显示毫秒数",
          "label": ""
        },
        {
          "key": "icon",
          "type": ["String"],
          "desc": "自定义图标",
          "label": ""
        },
        {
          "key": "message",
          "type": ["String"],
          "desc": "弹窗显示文字",
          "label": ""
        },
        {
          "key": "overlayProps",
          "type": ["Object"],
          "desc": "遮罩层属性,透传至 Overlay",
          "label": ""
        },
        {
          "key": "placement",
          "type": ["String"],
          "desc": "弹窗展示位置",
          "label": ""
        },
        {
          "key": "preventScrollThrough",
          "type": ["Boolean"],
          "desc": "防止滚动穿透,即不允许点击和滚动",
          "label": ""
        },
        {
          "key": "showOverlay",
          "type": ["Boolean"],
          "desc": "是否显示遮罩层",
          "label": ""
        },
        {
          "key": "theme",
          "type": ["String"],
          "desc": "提示类型",
          "label": ""
        }
      ],
      "externalClasses": ["t-class"],
      "tpl": "<t-toast id=\"t-toast\" />",
      "path": "./toast/toast"
    },
    "t-transition": {
      "key": "t-transition",
      "label": "动画",
      "icon": "",
      "properties": [
        {
          "key": "appear",
          "type": ["Boolean"],
          "desc": "首次出现是否展示动画",
          "label": ""
        },
        {
          "key": "customClass",
          "type": ["String"],
          "desc": "自定义容器类名",
          "label": ""
        },
        {
          "key": "destoryOnClose",
          "type": ["Boolean"],
          "desc": "隐藏时是否销毁内容",
          "label": ""
        },
        {
          "key": "duration",
          "type": ["Number"],
          "desc": "指定过渡时间",
          "label": ""
        },
        {
          "key": "name",
          "type": ["String"],
          "desc": "过渡类名",
          "label": ""
        },
        {
          "key": "visible",
          "type": ["Boolean"],
          "desc": "是否显示",
          "label": ""
        }
      ],
      "tpl": "<t-transition visible appear></t-transition>",
      "path": "./transition/transition"
    },
    "t-upload": {
      "key": "t-upload",
      "label": "上传",
      "icon": "https://tdesign.gtimg.com/site/miniprogram-doc/doc-upload.png",
      "properties": [
        {
          "key": "addContent",
          "type": ["String"],
          "desc": "添加按钮内容。值为空,使用默认图标渲染;值为 slot 则表示使用插槽渲染;其他值无效。",
          "label": ""
        },
        {
          "key": "allowUploadDuplicateFile",
          "type": ["Boolean"],
          "desc": "是否允许重复上传相同文件名的文件",
          "label": ""
        },
        {
          "key": "config",
          "type": ["Object"],
          "desc": "图片上传配置,视频上传配置,文件上传配置等,包含图片尺寸、图片来源、视频来源、视频拍摄最长时间等。更多细节查看小程序官网。[图片上传](https://developers.weixin.qq.com/miniprogram/dev/api/media/image/wx.chooseImage.html)。[视频上传](https://developers.weixin.qq.com/miniprogram/dev/api/media/video/wx.chooseVideo.html)",
          "label": ""
        },
        {
          "key": "deleteBtn",
          "type": ["String"],
          "desc": "删除图标。值为空,使用默认图标渲染;值为 slot 则表示使用插槽渲染;其他值无效。",
          "label": ""
        },
        {
          "key": "fileListDisplay",
          "type": ["String"],
          "desc": "用于完全自定义文件列表内容",
          "label": ""
        },
        {
          "key": "files",
          "type": ["Array"],
          "desc": "已上传文件列表",
          "label": ""
        },
        {
          "key": "gridConfig",
          "type": ["Object"],
          "desc": "upload组件每行上传图片列数以及图片的宽度和高度",
          "label": ""
        },
        {
          "key": "gutter",
          "type": ["Number"],
          "desc": "预览窗格的 `gutter` 大小,单位 rpx",
          "label": ""
        },
        {
          "key": "imageProps",
          "type": ["Object"],
          "desc": "透传 Image 组件全部属性",
          "label": ""
        },
        {
          "key": "max",
          "type": ["Number"],
          "desc": "用于控制文件上传数量,值为 0 则不限制",
          "label": ""
        },
        {
          "key": "mediaType",
          "type": ["Array"],
          "desc": "支持上传的文件类型,图片或视频",
          "label": ""
        },
        {
          "key": "requestMethod",
          "type": ["String"],
          "desc": "自定义上传方法",
          "label": ""
        },
        {
          "key": "sizeLimit",
          "type": ["Number", "Object"],
          "desc": "图片文件大小限制,单位 KB。可选单位有:`'B' | 'KB' | 'MB' | 'GB'`。示例一:`1000`。示例二:`{ size: 2, unit: 'MB', message: '图片大小不超过 {sizeLimit} MB' }`",
          "label": ""
        }
      ],
      "events": [
        {
          "key": "bind:add",
          "desc": "上传成功后触发,仅包含本次选择的照片;`url` 表示选定视频的临时文件路径 (本地路径)。`duration` 表示选定视频的时间长度。`size`选定视频的数据量大小。更多描述参考 wx.chooseMedia 小程序官网描述",
          "label": ""
        },
        {
          "key": "bind:complete",
          "desc": "上传成功或失败后触发",
          "label": ""
        },
        {
          "key": "bind:fail",
          "desc": "上传失败后触发",
          "label": ""
        },
        {
          "key": "bind:remove",
          "desc": "移除文件时触发",
          "label": ""
        },
        {
          "key": "bind:select-change",
          "desc": "选择文件或图片之后,上传之前,触发该事件。<br />`files` 表示之前已经上传完成的文件列表。<br />`currentSelectedFiles` 表示本次上传选中的文件列表",
          "label": ""
        },
        {
          "key": "bind:success",
          "desc": "上传成功后触发,包含所有上传的文件;`url` 表示选定视频的临时文件路径 (本地路径)。`duration` 表示选定视频的时间长度。`size`选定视频的数据量大小。更多描述参考 wx.chooseMedia 小程序官网描述",
          "label": ""
        }
      ],
      "tpl": "<t-upload />",
      "path": "./upload/upload"
    }
  },
  "common": {
    "properties": {},
    "events": {}
  },
  "menu": [
    {
      "key": "menu-basic",
      "label": "基础",
      "submenu": [
        {
          "key": "subMenu-button",
          "label": "Button 按钮",
          "components": ["t-button"]
        },
        {
          "key": "subMenu-divider",
          "label": "Divider 分割线",
          "components": ["t-divider"]
        },
        {
          "key": "subMenu-fab",
          "label": "Fab 悬浮按钮",
          "components": ["t-fab"]
        },
        {
          "key": "subMenu-icon",
          "label": "Icon 图标",
          "components": ["t-icon"]
        }
      ]
    },
    {
      "key": "menu-nav",
      "label": "导航",
      "submenu": [
        {
          "key": "subMenu-drawer",
          "label": "Drawer 抽屉",
          "components": ["t-drawer"]
        },
        {
          "key": "subMenu-indexes",
          "label": "Indexes 索引",
          "components": ["t-indexes"]
        },
        {
          "key": "subMenu-navbar",
          "label": "Navbar 导航条",
          "components": ["t-navbar"]
        },
        {
          "key": "subMenu-steps",
          "label": "Steps 步骤条",
          "components": ["t-steps"]
        },
        {
          "key": "subMenu-tabbar",
          "label": "TabBar 标签栏",
          "components": ["t-tab-bar"]
        },
        {
          "key": "subMenu-tabs",
          "label": "Tabs 选项卡",
          "components": ["t-tabs"]
        }
      ]
    },
    {
      "key": "menu-input",
      "label": "输入",
      "submenu": [
        {
          "key": "subMenu-checkbox",
          "label": "CheckBox 复选框",
          "components": ["t-checkbox"]
        },
        {
          "key": "subMenu-dateTimePicker",
          "label": "DateTimePicker 时间选择器",
          "components": ["t-date-time-picker"]
        },
        {
          "key": "subMenu-input",
          "label": "Input 输入框",
          "components": ["t-input"]
        },
        {
          "key": "subMenu-picker",
          "label": "Picker 选择器",
          "components": ["t-picker"]
        },
        {
          "key": "subMenu-radio",
          "label": "Radio 单选框",
          "components": ["t-radio"]
        },
        {
          "key": "subMenu-rate",
          "label": "Rate 评分",
          "components": ["t-rate"]
        },
        {
          "key": "subMenu-search",
          "label": "Search 搜索框",
          "components": ["t-search"]
        },
        {
          "key": "subMenu-slider",
          "label": "Slider 滑动选择器",
          "components": ["t-slider"]
        },
        {
          "key": "subMenu-stepper",
          "label": "Stepper 步进器",
          "components": ["t-stepper"]
        },
        {
          "key": "subMenu-switch",
          "label": "Switch 开关",
          "components": ["t-switch"]
        },
        {
          "key": "subMenu-textarea",
          "label": "Textarea 多行文本框",
          "components": ["t-textarea"]
        },
        {
          "key": "subMenu-upload",
          "label": "UpLoad 上传",
          "components": ["t-upload"]
        }
      ]
    },
    {
      "key": "menu-data",
      "label": "数据展示",
      "submenu": [
        {
          "key": "subMenu-avatar",
          "label": "Avatar 头像",
          "components": ["t-avatar"]
        },
        {
          "key": "subMenu-badge",
          "label": "Badge 徽标",
          "components": ["t-badge"]
        },
        {
          "key": "subMenu-cell",
          "label": "Cell 单元格",
          "components": ["t-cell"]
        },
        {
          "key": "subMenu-collapse",
          "label": "Collapse 折叠面板",
          "components": ["t-collapse"]
        },
        {
          "key": "subMenu-dropdown-menu",
          "label": "DropdownMenu 下拉菜单",
          "components": ["t-dropdown-menu"]
        },
        {
          "key": "subMenu-empty",
          "label": "Empty 空状态",
          "components": ["t-empty"]
        },
        {
          "key": "subMenu-footer",
          "label": "Footer 页脚",
          "components": ["t-footer"]
        },
        {
          "key": "subMenu-grid",
          "label": "Grid 宫格",
          "components": ["t-grid"]
        },
        {
          "key": "subMenu-image",
          "label": "Image 图片",
          "components": ["t-image"]
        },
        {
          "key": "subMenu-skeleton",
          "label": "Skeleton 骨架屏",
          "components": ["t-skeleton"]
        },
        {
          "key": "subMenu-sticky",
          "label": "Sticky 吸顶容器",
          "components": ["t-sticky"]
        },
        {
          "key": "subMenu-swiper",
          "label": "Swiper 轮播图",
          "components": ["t-swiper"]
        },
        {
          "key": "subMenu-tag",
          "label": "Tag 标签",
          "components": ["t-tag"]
        }
      ]
    },
    {
      "key": "menu-info",
      "label": "消息提醒",
      "submenu": [
        {
          "key": "subMenu-actionsheet",
          "label": "ActionSheet 动作面板",
          "components": ["t-action-sheet"]
        },
        {
          "key": "subMenu-back-top",
          "label": "BackTop 返回顶部",
          "components": ["t-back-top"]
        },
        {
          "key": "subMenu-dialog",
          "label": "Dialog 弹出框",
          "components": ["t-dialog"]
        },
        {
          "key": "subMenu-loading",
          "label": "Loading 加载",
          "components": ["t-loading"]
        },
        {
          "key": "subMenu-message",
          "label": "Message 消息通知",
          "components": ["t-message"]
        },
        {
          "key": "subMenu-popup",
          "label": "Popup 弹出层",
          "components": ["t-popup"]
        },
        {
          "key": "subMenu-progress",
          "label": "Progress 进度条",
          "components": ["t-progress"]
        },
        {
          "key": "subMenu-pullDownRefresh",
          "label": "PullDownRefresh 下拉刷新",
          "components": ["t-pull-down-refresh"]
        },
        {
          "key": "subMenu-swipeCell",
          "label": "SwipeCell 滑动操作",
          "components": ["t-swipe-cell"]
        },
        {
          "key": "subMenu-toast",
          "label": "Toast 轻提示",
          "components": ["t-toast"]
        }
      ]
    }
  ]
}