JIALDemo/target/classes/static/style/js/index.js

7 lines
132 B
JavaScript
Raw Normal View History

2023-12-24 13:39:07 +08:00
const getWeatherInfo = (params) => {
return $axios({
url: '/api/weather',
2024-01-11 08:30:14 +08:00
method: 'get',
2023-12-24 13:39:07 +08:00
params
})
}