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
| export default [
| {
| "wid":"00",
| "weather":"晴",
| images: [require('./晴.png')]
| },
| {
| "wid":"01",
| "weather":"多云",
| images: [require('./多云.png')]
| },
| {
| "wid":"02",
| "weather":"阴",
| images: [require('./阴.png')]
| },
| {
| "wid":"03",
| "weather":"阵雨",
| images: [require('./阵雨.png')]
| },
| {
| "wid":"04",
| "weather":"雷阵雨",
| images: [require('./雷阵雨.png')]
| },
| {
| "wid":"05",
| "weather":"雷阵雨伴有冰雹" ,
| images: [require('./雷阵雨伴有冰雹.png')]
| },
| {
| "wid":"06",
| "weather":"雨夹雪",
| images: [require('./雨夹雪.png')]
| },
| {
| "wid":"07",
| "weather":"小雨",
| images: [require('./小雨.png')]
| },
| {
| "wid":"08",
| "weather":"中雨",
| images: [require('./中雨.png')]
| },
| {
| "wid":"09",
| "weather":"大雨",
| images: [require('./大雨.png')]
| },
| {
| "wid":"10",
| "weather":"暴雨",
| images: [require('./暴雨.png')]
| },
| {
| "wid":"11",
| "weather":"大暴雨",
| images: [require('./大暴雨.png')]
| },
| {
| "wid":"12",
| "weather":"特大暴雨",
| images: [require('./特大暴雨.png')]
| },
| {
| "wid":"13",
| "weather":"阵雪",
| images: [require('./阵雪.png')]
| },
| {
| "wid":"14",
| "weather":"小雪",
| images: [require('./小雪.png')]
| },
| {
| "wid":"15",
| "weather":"中雪",
| images: [require('./中雪.png')]
| },
| {
| "wid":"16",
| "weather":"大雪",
| images: [require('./大雪.png')]
| },
| {
| "wid":"17",
| "weather":"暴雪",
| images: [require('./暴雪.png')]
| },
| {
| "wid":"18",
| "weather":"雾",
| images: [require('./雾.png')]
| },
| {
| "wid":"19",
| "weather":"冻雨",
| images: [require('./冻雨.png')]
| },
| {
| "wid":"20",
| "weather":"沙尘暴",
| images: [require('./沙尘暴.png')]
| },
| {
| "wid":"21",
| "weather":"小到中雨",
| images: [require('./小雨.png'), require('./中雨.png')]
| },
| {
| "wid":"22",
| "weather":"中到大雨",
| images: [require('./中雨.png'), require('./大雨.png')]
| },
| {
| "wid":"23",
| "weather":"大到暴雨",
| images: [require('./大雨.png'), require('./暴雨.png')]
| },
| {
| "wid":"24",
| "weather":"暴雨到大暴雨",
| images: [require('./暴雨.png'), require('./大暴雨.png')]
| },
| {
| "wid":"25",
| "weather":"大暴雨到特大暴雨",
| images: [require('./大暴雨.png'), require('./特大暴雨.png')]
| },
| {
| "wid":"26",
| "weather":"小到中雪",
| images: [require('./小雪.png'), require('./中雪.png')]
| },
| {
| "wid":"27",
| "weather":"中到大雪",
| images: [require('./中雪.png'), require('./大雪.png')]
| },
| {
| "wid":"28",
| "weather":"大到暴雪",
| images: [require('./大雪.png'), require('./暴雪.png')]
| },
| {
| "wid":"29",
| "weather":"浮尘",
| images: [require('./浮尘.png')],
| },
| {
| "wid":"30",
| "weather":"扬沙",
| images: [require('./扬沙.png')],
| },
| {
| "wid":"31",
| "weather":"强沙尘暴",
| images: [require('./扬沙.png')],
| },
| {
| "wid":"32",
| "weather":"多云转晴",
| images: [require('./多云.png'), require('./晴.png')]
| },
| {
| "wid":"32",
| "weather":"晴转多云",
| images: [require('./晴.png'), require('./多云.png')]
| },
| {
| "wid":"53",
| "weather":"霾",
| images: [require('./霾.png')],
| }
| ]
|
|