Page({ data: { bannerList: [ 'http://192.168.1.11:8089/uploads/20250630/054c53776891b766c6f1bd65059a5b27.jpg', 'http://192.168.1.11:8089/uploads/20250630/c7f45ec56c19eac42a23c5e987cacc93.jpg' ], company: { name: '某某汽车服务有限公司', address: '上海市浦东新区世纪大道100号', latitude: 31.2304, // 地图坐标 longitude: 121.4737, phone: '021-88888888' }, carList: [ { id: 1, title: '丰田 卡罗拉 1.2T 自动', image: 'http://192.168.1.11:8089/uploads/20250630/c7f45ec56c19eac42a23c5e987cacc93.jpg', registerDate: '2021-05', mileage: 3.5, emission: '国六' }, { id: 2, title: '本田 思域 1.5T 手动', image: 'http://192.168.1.11:8089/uploads/20250630/c7f45ec56c19eac42a23c5e987cacc93.jpg', registerDate: '2020-08', mileage: 5.2, emission: '国五' } ] }, openMap() { const { latitude, longitude, address, name } = this.data.company wx.openLocation({ latitude, longitude, scale: 18, name, address }) } })