
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
const util = require('../../utils/util.js');
|
|
const api = require('../../config/api.js');
|
|
|
|
//获取应用实例
|
|
const app = getApp();
|
|
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
name: 'litemall',
|
|
address: 'https://github.com/linlinjava/litemall',
|
|
latitude: '31.201900',
|
|
longitude: '121.587839',
|
|
phone: '021-xxxx-xxxx',
|
|
qq: '705144434'
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
this.getAbout()
|
|
},
|
|
getAbout: function () {
|
|
let that = this;
|
|
util.request(api.AboutUrl).then(function (res) {
|
|
if (res.errno === 0) {
|
|
that.setData({
|
|
name: res.data.name,
|
|
address: res.data.address,
|
|
phone: res.data.phone,
|
|
qq: res.data.qq,
|
|
latitude: res.data.latitude,
|
|
longitude: res.data.longitude
|
|
});
|
|
}
|
|
});
|
|
},
|
|
showLocation: function (e) {
|
|
var that = this
|
|
wx.openLocation({
|
|
latitude: parseFloat(that.data.latitude),
|
|
longitude: parseFloat(that.data.longitude),
|
|
name: that.data.name,
|
|
address: that.data.address,
|
|
})
|
|
},
|
|
callPhone: function (e) {
|
|
var that = this
|
|
wx.makePhoneCall({
|
|
phoneNumber: that.data.phone,
|
|
})
|
|
}
|
|
}) |