// about.js var app = getApp() var util = require("../../utils/util.js"); var api = require("../../config/api.js"); Page({ /** * 页面的初始数据 */ data: { load_statue: true, shopInfo: { name: '聚惠星', address: 'https://www.shequlianshang.com/dts/index.html', latitude: 27.4871724214, longitude: 110.8950504844, linkPhone: '19908488612', qqNumber: '686432822' }, }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { }, showLocation: function (e) { var that = this wx.openLocation({ latitude: that.data.shopInfo.latitude, longitude: that.data.shopInfo.longitude, name: that.data.shopInfo.name, address: that.data.shopInfo.address, }) }, callPhone: function (e) { var that = this wx.makePhoneCall({ phoneNumber: that.data.shopInfo.linkPhone, }) }, reLoad: function (e) { this.loadShopInfo(); } })