mirror of
https://github.com/imsyy/home.git
synced 2024-11-16 11:42:18 +08:00
commit
4b60e7edf1
|
@ -48,14 +48,14 @@ const getWeatherData = async () => {
|
||||||
console.log(result);
|
console.log(result);
|
||||||
const data = result.result;
|
const data = result.result;
|
||||||
weatherData.adCode = {
|
weatherData.adCode = {
|
||||||
city: data.city.city_name || "未知地区",
|
city: data.city.City || "未知地区",
|
||||||
// adcode: data.city.cityId,
|
// adcode: data.city.cityId,
|
||||||
};
|
};
|
||||||
weatherData.weather = {
|
weatherData.weather = {
|
||||||
weather: data.condition.condition,
|
weather: data.condition.day_weather,
|
||||||
temperature: data.condition.temp,
|
temperature: (+data.condition.max_degree + +data.condition.min_degree) / 2,
|
||||||
winddirection: data.condition.windDir,
|
winddirection: data.condition.day_wind_direction,
|
||||||
windpower: data.condition.windLevel,
|
windpower: data.condition.day_wind_power,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
// 获取 Adcode
|
// 获取 Adcode
|
||||||
|
|
Loading…
Reference in New Issue
Block a user