You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< view class = "container" >
< text class = "title" > 联系我们 < / text >
< view class = "contact-info" >
< view class = "info-item" >
< text > 📞 电话 : 0755 - 12345678 < / text >
< / view >
< view class = "info-item" >
< text > 📧 邮箱 : info @ xxtech . com < / text >
< / view >
< view class = "info-item" >
< text > 📍 地址 : 深圳市南山区科技园XX大厦10楼 < / text >
< / view >
< / view >
< button class = "map-btn" @click ="openMap" > 查 看 地 图 < / button >
< / view >
< / template >
< script setup >
const openMap = ( ) => {
// 微信小程序可用 wx.openLocation
// H5 可跳转高德/百度地图
uni . showToast ( { title : '地图功能待接入' , icon : 'none' } )
}
< / script >
< style scoped >
. container {
padding : 40 rpx ;
}
. title {
font - size : 44 rpx ;
font - weight : bold ;
text - align : center ;
margin - bottom : 50 rpx ;
color : # 1 a365d ;
}
. info - item {
font - size : 32 rpx ;
margin : 20 rpx 0 ;
padding : 10 rpx 0 ;
}
. map - btn {
margin - top : 60 rpx ;
background : # 1 a365d ;
color : white ;
border : none ;
padding : 20 rpx ;
border - radius : 12 rpx ;
}
< / style >