|
|
|
@ -41,6 +41,22 @@ const instance = defineStore('user', { |
|
|
|
|
let { lat: latitude, lng: longitude } = result.position |
|
|
|
|
this.position = { latitude, longitude } |
|
|
|
|
} else { |
|
|
|
|
switch (result.status) { |
|
|
|
|
case 1: |
|
|
|
|
Notify({ |
|
|
|
|
message: '用户拒绝对获取地理位置的请求。', |
|
|
|
|
type: 'danger', |
|
|
|
|
duration: 1000 |
|
|
|
|
}) |
|
|
|
|
break |
|
|
|
|
default: |
|
|
|
|
Notify({ |
|
|
|
|
message: '定位获取失败,请退出重试。', |
|
|
|
|
type: 'danger', |
|
|
|
|
duration: 1000 |
|
|
|
|
}) |
|
|
|
|
break |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|