Skip to content

Commit

Permalink
fix: 地址卡片 拼接路径引号错误
Browse files Browse the repository at this point in the history
  • Loading branch information
aweikalee authored Jun 14, 2024
1 parent 5fef80d commit ef24080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Schedule/components/CardAddress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class ScheduleCard extends Vue {
if (os === 'ios' || os === 'android') {
switch (this.$store.state.mapType){
case 'baidu':
return 'baidumap://map/marker?location=${value.y},${value.x}&title=${value.title}&content=${value.address}'
return `baidumap://map/marker?location=${value.y},${value.x}&title=${value.title}&content=${value.address}`
case 'google':
return `https://www.google.com/maps/search/?api=1&query=${value.y},${value.x}`
}
Expand Down

0 comments on commit ef24080

Please sign in to comment.