| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // about.js
- var app = getApp()
- var util = require("../../utils/util.js");
- var api = require("../../config/api.js");
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- load_statue: true,
- shopInfo: {
- name: 'litemall',
- address: 'https://github.com/linlinjava/litemall',
- latitude: 31.201900,
- longitude: 121.587839,
- linkPhone: '021-xxxx-xxxx',
- qqNumber: '738696120'
- },
- },
- /**
- * 生命周期函数--监听页面加载
- */
- 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();
- }
- })
|