chore: 🔨 更换ip归属地查询接口 (#160)

Co-authored-by: tk <fiyne1a@dingtalk.com>
This commit is contained in:
nsnail 2024-07-23 09:38:07 +08:00 committed by GitHub
parent 33e60a5bd7
commit e1bea2ec31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ export default {
created() {
if (this.ip) {
this.region = '...'
http.get(`http://ip.yaopy.com/?ip=${this.ip}`).then((x) => {
http.get(`http://ip.line92.com/?ip=${this.ip}`).then((x) => {
this.region = x.region
})
}