mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-28 04:48:47 +08:00
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import useRequest from '../index'
|
|
|
|
/**
|
|
*
|
|
* @returns 测试
|
|
*
|
|
* @medthod get
|
|
*/
|
|
export const onAxiosTest = async (city: string) => {
|
|
return useRequest({
|
|
method: 'get',
|
|
url: `https://www.tianqiapi.com/api?version=v9&appid=23035354&appsecret=8YvlPNrz&city=${city}`,
|
|
})
|
|
}
|