shopxo/sourcecode/weixin/app.js

872 lines
22 KiB
JavaScript
Raw Normal View History

2018-12-29 18:39:25 +08:00
App({
data: {
2020-09-16 10:41:32 +08:00
// uuid缓存key
cache_user_uuid_key: "cache_user_uuid_key",
2020-09-14 18:53:42 +08:00
// 配置信息缓存key
cache_config_info_key: "cache_config_info_key",
2019-01-02 18:51:34 +08:00
// 用户登录缓存key
cache_user_login_key: "cache_user_login_key",
2018-12-29 18:39:25 +08:00
// 用户信息缓存key
cache_user_info_key: "cache_shop_user_info_key",
// 用户站点信息缓存key
cache_user_merchant_key: "cache_shop_user_merchant_key",
// 设备信息缓存key
cache_system_info_key: "cache_shop_system_info_key",
// 用户地址选择缓存key
cache_buy_user_address_select_key: "cache_buy_user_address_select_key",
// 启动参数缓存key
2018-12-29 18:39:25 +08:00
cache_launch_info_key: "cache_shop_launch_info_key",
// 默认用户头像
default_user_head_src: "/images/default-user.png",
// 成功圆形提示图片
default_round_success_icon: "/images/default-round-success-icon.png",
// 错误圆形提示图片
default_round_error_icon: "/images/default-round-error-icon.png",
2019-01-05 16:17:15 +08:00
// tabbar页面
tabbar_pages: [
2020-01-06 21:21:02 +08:00
"/pages/index/index",
"/pages/goods-category/goods-category",
"/pages/cart/cart",
"/pages/user/user",
2019-01-05 16:17:15 +08:00
],
2018-12-29 18:39:25 +08:00
// 页面标题
common_pages_title: {
"goods_search": "商品搜索",
"goods_detail": "商品详情",
"user_address": "我的地址",
"user_address_save_add": "新增地址",
"user_address_save_edit": "编辑地址",
"buy": "订单确认",
"user_order": "我的订单",
"user_order_detail": "订单详情",
"user_favor": "我的收藏",
"answer_form": "留言",
"answer_list": "问答",
"user_answer_list": "我的留言",
"user": "用户中心",
"goods_category": "分类",
"cart": "购物车",
"message": "消息",
"user_integral": "我的积分",
"user_goods_browse": "我的足迹",
2019-07-11 21:46:04 +08:00
"goods_comment": "商品评论",
2019-10-04 20:50:14 +08:00
"user_orderaftersale": "退款/售后",
2019-10-07 17:25:46 +08:00
"user_orderaftersale_detail": "订单售后",
2019-10-09 18:41:38 +08:00
"user_order_comments": "订单评论",
2019-11-25 21:08:55 +08:00
"extraction_address": "自提地址",
2018-12-29 18:39:25 +08:00
},
// 请求地址
2019-08-04 22:19:21 +08:00
request_url: "{{request_url}}",
2020-09-03 22:12:30 +08:00
request_url: 'http://shopxo.com/',
2020-09-16 10:41:32 +08:00
//request_url: 'https://dev.shopxo.net/',
2018-12-29 18:39:25 +08:00
// 基础信息
application_title: "{{application_title}}",
application_describe: "{{application_describe}}",
2020-02-04 17:18:14 +08:00
2020-09-14 18:53:42 +08:00
// 默认价格符号
2020-09-03 22:12:30 +08:00
price_symbol: "{{price_symbol}}",
price_symbol: "¥"
2018-12-29 18:39:25 +08:00
},
/**
* 小程序初始化
*/
onLaunch(options) {
// 启动参数处理
options = this.launch_params_handle(options);
2018-12-29 18:39:25 +08:00
// 设置设备信息
this.set_system_info();
// 缓存启动参数
wx.setStorage({
key: this.data.cache_launch_info_key,
data: options
});
2020-09-14 18:53:42 +08:00
// 初始化配置
this.init_config();
2018-12-29 18:39:25 +08:00
},
2020-09-14 18:53:42 +08:00
sleep(delay) {
var start = (new Date()).getTime();
while((new Date()).getTime() - start < delay) {
continue;
}
},
2018-12-29 18:39:25 +08:00
/**
* 启动参数处理
2018-12-29 18:39:25 +08:00
*/
launch_params_handle(params) {
// 启动参数处理
if ((params.query || null) != null) {
params = params.query;
2018-12-29 18:39:25 +08:00
}
if ((params.scene || null) != null) {
params = this.url_params_to_json(decodeURIComponent(params.scene));
2018-12-29 18:39:25 +08:00
}
return params;
2018-12-29 18:39:25 +08:00
},
/**
* 获取设备信息
*/
get_system_info() {
2019-06-29 14:36:20 +08:00
let system_info = wx.getStorageSync(this.data.cache_system_info_key) || null;
if (system_info == null) {
2018-12-29 18:39:25 +08:00
return this.set_system_info();
}
2019-06-29 14:36:20 +08:00
return system_info;
2018-12-29 18:39:25 +08:00
},
/**
* 设置设备信息
*/
set_system_info() {
var system_info = wx.getSystemInfoSync();
wx.setStorage({
key: this.data.cache_system_info_key,
data: system_info
});
return system_info;
},
/**
* 请求地址生成
2020-01-02 21:21:40 +08:00
* a 方法
* c 控制器
* plugins 插件标记传参则表示为插件请求
* params url请求参数
2018-12-29 18:39:25 +08:00
*/
2020-01-02 21:21:40 +08:00
get_request_url(a, c, plugins, params) {
2018-12-29 18:39:25 +08:00
a = a || "index";
c = c || "index";
2020-01-02 21:21:40 +08:00
// 是否插件请求
var plugins_params = "";
if ((plugins || null) != null)
{
plugins_params = "&pluginsname=" + plugins + "&pluginscontrol=" + c + "&pluginsaction=" + a;
// 走api统一插件调用控制器
c = "plugins"
a = "index"
}
// 参数处理
2018-12-29 18:39:25 +08:00
params = params || "";
if (params != "" && params.substr(0, 1) != "&") {
params = "&" + params;
}
2020-01-02 21:21:40 +08:00
// 用户信息
2019-01-02 18:42:06 +08:00
var user = this.get_user_cache_info();
2019-06-29 15:11:53 +08:00
var token = (user == false) ? '' : user.token || '';
2020-09-16 10:41:32 +08:00
var uuid = this.request_uuid();
2020-01-02 21:21:40 +08:00
return this.data.request_url +
"index.php?s=/api/" + c + "/" + a + plugins_params+
2019-06-29 15:11:53 +08:00
"&application=app&application_client_type=weixin" +
2020-09-16 10:41:32 +08:00
"&token=" + token +
2018-12-29 18:39:25 +08:00
"&ajax=ajax" +
2020-09-16 10:41:32 +08:00
"&uuid="+uuid+
2020-01-02 21:21:40 +08:00
params;
2018-12-29 18:39:25 +08:00
},
2019-11-28 17:14:13 +08:00
/**
* 获取用户信息,信息不存在则唤醒授权
* object 回调操作对象
* method 回调操作对象的函数
* return 有用户数据直接返回, 则回调调用者
*/
get_user_info(object, method) {
var user = this.get_user_cache_info();
if (user == false) {
// 唤醒用户授权
2019-11-29 11:38:56 +08:00
this.user_login(object, method);
2019-11-28 17:14:13 +08:00
return false;
} else {
return user;
}
},
2018-12-29 18:39:25 +08:00
/**
* 从缓存获取用户信息
*/
2019-01-02 18:42:06 +08:00
get_user_cache_info() {
2019-06-29 14:36:20 +08:00
let user = wx.getStorageSync(this.data.cache_user_info_key) || null;
if (user == null) {
2018-12-29 18:39:25 +08:00
return false;
}
return user;
},
/**
* 用户登录
* object 回调操作对象
* method 回调操作对象的函数
2019-11-29 20:53:08 +08:00
* auth_data 授权数据
2018-12-29 18:39:25 +08:00
*/
2019-01-17 01:24:37 +08:00
user_auth_login(object, method, auth_data) {
2019-10-08 16:20:08 +08:00
var self = this;
2018-12-29 18:39:25 +08:00
wx.checkSession({
success: function () {
2019-10-08 16:20:08 +08:00
var openid = wx.getStorageSync(self.data.cache_user_login_key) || null;
2019-06-29 14:36:20 +08:00
if (openid == null)
2018-12-29 18:39:25 +08:00
{
2019-11-29 11:38:56 +08:00
self.user_login(object, method);
2018-12-29 18:39:25 +08:00
} else {
2019-10-08 16:20:08 +08:00
self.get_user_login_info(object, method, openid, auth_data);
2018-12-29 18:39:25 +08:00
}
},
fail: function () {
2019-11-29 11:38:56 +08:00
self.user_login(object, method);
2018-12-29 18:39:25 +08:00
}
});
},
/**
* 用户登录
* object 回调操作对象
* method 回调操作对象的函数
2019-01-17 01:24:37 +08:00
* auth_data 授权数据
2018-12-29 18:39:25 +08:00
*/
2019-11-29 11:38:56 +08:00
user_login(object, method) {
var openid = wx.getStorageSync(this.data.cache_user_login_key) || null;
if (openid == null)
{
var self = this;
// 加载loding
wx.showLoading({ title: "授权中..." });
wx.login({
success: (res) => {
if (res.code) {
wx.request({
url: self.get_request_url('wechatuserauth', 'user'),
method: 'POST',
data: { authcode: res.code },
dataType: 'json',
header: { 'content-type': 'application/x-www-form-urlencoded' },
success: (res) => {
wx.hideLoading();
if (res.data.code == 0) {
var data = res.data.data;
2020-02-12 12:12:43 +08:00
if ((data.is_user_exist || 0) == 1) {
2019-11-29 11:38:56 +08:00
wx.setStorage({
key: self.data.cache_user_info_key,
data: data,
success: (res) => {
if (typeof object === 'object' && (method || null) != null) {
object[method]();
}
},
fail: () => {
self.showToast('用户信息缓存失败');
2019-11-28 17:14:13 +08:00
}
2019-11-29 11:38:56 +08:00
});
} else {
wx.setStorage({
key: self.data.cache_user_login_key,
data: data.openid
});
self.login_to_auth();
}
2019-11-28 17:14:13 +08:00
} else {
2019-11-29 11:38:56 +08:00
wx.hideLoading();
self.showToast(res.data.msg);
2019-11-28 17:14:13 +08:00
}
2019-11-29 11:38:56 +08:00
},
fail: () => {
2018-12-29 18:39:25 +08:00
wx.hideLoading();
2019-11-29 11:38:56 +08:00
self.showToast('服务器请求出错');
},
});
}
},
fail: (e) => {
wx.hideLoading();
self.showToast('授权失败');
2018-12-29 18:39:25 +08:00
}
2019-11-29 11:38:56 +08:00
});
} else {
this.login_to_auth();
}
},
/**
* 跳转到登录页面授权
*/
login_to_auth() {
wx.showModal({
2019-12-01 00:37:54 +08:00
title: '温馨提示',
content: '授权用户信息',
confirmText: '确认',
cancelText: '暂不',
success: (result) => {
if (result.confirm) {
wx.navigateTo({
url: "/pages/login/login"
});
2019-11-29 11:38:56 +08:00
}
2019-12-01 00:37:54 +08:00
}
});
2018-12-29 18:39:25 +08:00
},
/**
* 获取用户授权信息
* object 回调操作对象
* method 回调操作对象的函数
* openid 用户openid
2019-01-17 01:24:37 +08:00
* auth_data 授权数据
2018-12-29 18:39:25 +08:00
*/
2019-01-17 01:24:37 +08:00
get_user_login_info(object, method, openid, auth_data) {
2019-06-28 23:10:59 +08:00
// 邀请人参数
2019-06-29 14:36:20 +08:00
var params = wx.getStorageSync(this.data.cache_launch_info_key) || null;
var referrer = (params == null) ? 0 : (params.referrer || 0);
2019-08-17 23:49:20 +08:00
2019-01-17 01:24:37 +08:00
// 远程解密数据
2019-11-29 11:38:56 +08:00
wx.showLoading({ title: "授权中..." });
2019-10-08 16:20:08 +08:00
var self = this;
2019-01-17 01:24:37 +08:00
wx.request({
2019-10-08 16:20:08 +08:00
url: self.get_request_url('wechatuserinfo', 'user'),
2019-01-17 01:24:37 +08:00
method: 'POST',
2019-06-28 23:10:59 +08:00
data: {
"encrypted_data": auth_data.encryptedData,
"iv": auth_data.iv,
"openid": openid,
"referrer": referrer
},
2019-01-17 01:24:37 +08:00
dataType: 'json',
header: { 'content-type': 'application/x-www-form-urlencoded' },
success: (res) => {
wx.hideLoading();
if (res.data.code == 0) {
wx.setStorage({
2019-10-08 16:20:08 +08:00
key: self.data.cache_user_info_key,
2019-01-17 01:24:37 +08:00
data: res.data.data,
success: (res) => {
if (typeof object === 'object' && (method || null) != null) {
object[method]();
}
},
fail: () => {
2019-10-08 16:20:08 +08:00
self.showToast('用户信息缓存失败');
2018-12-29 18:39:25 +08:00
}
2019-01-17 01:24:37 +08:00
});
} else {
2019-10-08 16:20:08 +08:00
self.showToast(res.data.msg);
2019-01-17 01:24:37 +08:00
}
2018-12-29 18:39:25 +08:00
},
2019-01-17 01:24:37 +08:00
fail: () => {
2018-12-29 18:39:25 +08:00
wx.hideLoading();
2019-10-08 16:20:08 +08:00
self.showToast('服务器请求出错');
2019-01-17 01:24:37 +08:00
},
2018-12-29 18:39:25 +08:00
});
},
/**
* 字段数据校验
* data 待校验的数据, 一维json对象
2019-11-25 21:08:55 +08:00
* validation 待校验的字段, 格式 [{fields: 'mobile', msg: '请填写手机号码', is_can_zero: 1(是否可以为0)}, ...]
2018-12-29 18:39:25 +08:00
*/
fields_check(data, validation) {
for (var i in validation) {
2019-10-06 16:49:45 +08:00
var temp_value = data[validation[i]["fields"]];
var temp_is_can_zero = validation[i]["is_can_zero"] || null;
if ((temp_value == undefined || temp_value.length == 0 || temp_value == -1) || (temp_is_can_zero == null && temp_value == 0)
) {
2018-12-29 18:39:25 +08:00
this.showToast(validation[i]['msg']);
return false;
}
}
return true;
},
/**
* 获取当前时间戳
*/
get_timestamp() {
return parseInt(new Date().getTime() / 1000);
},
/**
* 获取日期
* format 日期格式默认 yyyy-MM-dd h:m:s
* timestamp 时间戳默认当前时间戳
*/
get_date(format, timestamp) {
var d = new Date((timestamp || this.get_timestamp()) * 1000);
var date = {
"M+": d.getMonth() + 1,
"d+": d.getDate(),
"h+": d.getHours(),
"m+": d.getMinutes(),
"s+": d.getSeconds(),
"q+": Math.floor((d.getMonth() + 3) / 3),
"S+": d.getMilliseconds()
};
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (d.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
}
}
return format;
},
/**
* 获取对象数组的长度元素个数
* obj 要计算长度的元素objectarraystring
*/
get_length(obj) {
var obj_type = typeof obj;
if (obj_type == "string") {
return obj.length;
} else if (obj_type == "object") {
var obj_len = 0;
for (var i in obj) {
obj_len++;
}
return obj_len;
}
return false;
},
/**
* 价格保留两位小数
* price 价格保留两位小数
*/
price_two_decimal(x) {
var f_x = parseFloat(x);
if (isNaN(f_x)) {
return 0;
}
var f_x = Math.round(x * 100) / 100;
var s_x = f_x.toString();
var pos_decimal = s_x.indexOf('.');
if (pos_decimal < 0) {
pos_decimal = s_x.length;
s_x += '.';
}
while (s_x.length <= pos_decimal + 2) {
s_x += '0';
}
return s_x;
},
2019-01-05 16:17:15 +08:00
/**
* 当前地址是否存在tabbar中
*/
is_tabbar_pages(url) {
if (url.indexOf("?") == -1)
{
2020-01-06 21:21:02 +08:00
var value = url;
2019-01-05 16:17:15 +08:00
} else {
var temp_str = url.split("?");
2020-01-06 21:21:02 +08:00
var value = temp_str[0];
2019-01-05 16:17:15 +08:00
}
2020-01-06 21:21:02 +08:00
if ((value || null) == null)
2019-01-05 16:17:15 +08:00
{
return false;
}
var temp_tabbar_pages = this.data.tabbar_pages;
for (var i in temp_tabbar_pages)
{
2020-01-06 21:21:02 +08:00
if (temp_tabbar_pages[i] == value)
2019-01-05 16:17:15 +08:00
{
return true;
}
}
return false;
},
2018-12-31 11:34:09 +08:00
/**
* 事件操作
*/
operation_event(e) {
var value = e.currentTarget.dataset.value || null;
var type = parseInt(e.currentTarget.dataset.type);
if (value != null) {
switch (type) {
// web
case 0:
2019-06-29 23:32:27 +08:00
wx.navigateTo({ url: '/pages/web-view/web-view?url=' + encodeURIComponent(value) });
2018-12-31 11:34:09 +08:00
break;
// 内部页面
case 1:
2019-01-05 16:17:15 +08:00
if (this.is_tabbar_pages(value))
{
wx.switchTab({ url: value });
} else {
wx.navigateTo({ url: value });
}
2018-12-31 11:34:09 +08:00
break;
// 跳转到外部小程序
case 2:
wx.navigateToMiniProgram({ appId: value });
break;
// 跳转到地图查看位置
case 3:
var values = value.split('|');
if (values.length != 4) {
2019-01-08 10:00:22 +08:00
this.showToast('事件值格式有误');
2018-12-31 11:34:09 +08:00
return false;
}
2020-09-14 22:45:31 +08:00
this.open_location(values[2], values[3], values[0], values[1]);
2018-12-31 11:34:09 +08:00
break;
// 拨打电话
case 4:
2019-01-05 16:17:15 +08:00
wx.makePhoneCall({ phoneNumber: value });
2018-12-31 11:34:09 +08:00
break;
}
}
},
2018-12-29 18:39:25 +08:00
/**
* 默认弱提示方法
* msg [string] 提示信息
* status [string] 状态 默认error [正确success, 错误error]
*/
showToast(msg, status)
{
if ((status || 'error') == 'success')
{
wx.showToast({
title: msg,
duration: 3000
});
} else {
wx.showToast({
image: '/images/default-toast-error.png',
title: msg,
duration: 3000
});
}
2019-06-28 16:18:04 +08:00
},
/**
* alert确认框
* title [string] 标题默认空
* msg [string] 提示信息必传
* is_show_cancel [int] 是否显示取消按钮默认显示 0, 1|undefined是
* cancel_text [string] 取消按钮文字默认 取消
* cancel_color [string] 取消按钮的文字颜色必须是 16 进制格式的颜色字符串默认 #000000
* confirm_text [string] 确认按钮文字默认 确认
* confirm_color [string] 确认按钮的文字颜色必须是 16 进制格式的颜色字符串默认 #000000
* object [boject] 回调操作对象点击确认回调参数1取消回调0
* method [string] 回调操作对象的函数
*/
alert(e)
{
var msg = e.msg || null;
if (msg != null)
{
var title = e.title || '';
var is_show_cancel = (e.is_show_cancel == 0) ? false : true;
var cancel_text = e.cancel_text || '取消';
var confirm_text = e.confirm_text || '确认';
2020-08-10 22:05:54 +08:00
var cancel_color = e.cancel_color || '#000000';
var confirm_color = e.confirm_color || '#576B95';
wx.showModal({
title: title,
content: msg,
showCancel: is_show_cancel,
cancelText: cancel_text,
cancelColor: cancel_color,
confirmText: confirm_text,
confirmColor: confirm_color,
success(res) {
if ((e.object || null) != null && typeof e.object === 'object' && (e.method || null) != null) {
e.object[e.method](res.confirm ? 1 : 0);
}
}
});
} else {
self.showToast('提示信息为空 alert');
}
},
2019-06-28 16:18:04 +08:00
/**
* 是否需要登录
* 是否需要绑定手机号码
*/
user_is_need_login(user) {
// 用户信息是否正确
if (user == false)
{
return true;
}
// 是否需要绑定手机号码
if ((user.is_mandatory_bind_mobile || 0) == 1)
{
if ((user.mobile || null) == null)
{
return true;
}
}
return false;
},
/**
* url参数转json对象
*/
url_params_to_json(url_params) {
var json = new Object();
if ((url_params || null) != null)
{
var arr = url_params.split('&');
for(var i = 0; i<arr.length; i++) {
var temp = arr[i].split('=');
json[temp[0]] = temp[1]
}
}
return json;
2019-11-05 15:50:22 +08:00
},
// 拨打电话
call_tel(value) {
if ((value || null) != null) {
wx.makePhoneCall({ phoneNumber: value });
}
},
2018-12-29 18:39:25 +08:00
2019-11-28 17:45:40 +08:00
/**
* 登录校验
* object 回调操作对象
* method 回调操作对象的函数
*/
is_login_check(res, object, method) {
2019-11-26 15:51:26 +08:00
if(res.code == -400)
{
wx.clearStorage();
2019-11-28 17:45:40 +08:00
this.get_user_info(object, method);
2019-11-26 15:51:26 +08:00
return false;
}
return true;
},
2020-01-06 18:53:24 +08:00
/**
* 设置导航reddot
* index tabBar 的哪一项从左边算起0开始
* type 0 移出, 1 添加 默认 0 移出
*/
set_tab_bar_reddot(index, type) {
if (index !== undefined && index !== null)
{
if ((type || 0) == 0)
{
wx.hideTabBarRedDot({ index: Number(index) });
} else {
wx.showTabBarRedDot({ index: Number(index) });
}
}
},
/**
* 设置导航车badge
* index tabBar 的哪一项从左边算起0开始
* type 0 移出, 1 添加 默认 0 移出
* value 显示的文本超过 4 个字符则显示成 ...type参数为1的情况下有效
*/
set_tab_bar_badge(index, type, value) {
if (index !== undefined && index !== null)
{
if ((type || 0) == 0) {
wx.removeTabBarBadge({ index: Number(index) });
} else {
2020-01-06 19:37:30 +08:00
wx.setTabBarBadge({ index: Number(index), "text": value.toString() });
2020-01-06 18:53:24 +08:00
}
}
},
2020-08-07 01:33:20 +08:00
// 显示分享菜单
show_share_menu() {
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
});
},
2020-09-14 18:53:42 +08:00
/**
* 获取配置信息可指定默认值
* key 数据key支持多级读取 . 分割key名称
* default_value 默认值
*/
get_config(key, default_value) {
var value = null;
2020-09-16 10:41:32 +08:00
var config = wx.getStorageSync(this.data.cache_config_info_key) || null;
2020-09-14 18:53:42 +08:00
if(config != null)
{
// 数据读取
var arr = key.split('.');
if(arr.length == 1)
{
value = config[key] == undefined ? null : config[key];
} else {
value = config;
for(var i in arr)
{
if(value[arr[i]] != undefined)
{
value = value[arr[i]];
} else {
value = null;
break;
}
}
}
}
return (value === null) ? ((default_value === undefined) ? value : default_value) : value;
},
// 初始化 配置信息
init_config() {
var self = this;
wx.request({
url: this.get_request_url('common', 'base'),
method: 'POST',
data: {},
dataType: 'json',
header: { 'content-type': 'application/x-www-form-urlencoded' },
success: (res) => {
if (res.data.code == 0) {
wx.setStorage({
key: this.data.cache_config_info_key,
data: res.data.data,
fail: () => {
this.showToast('配置信息缓存失败');
}
});
} else {
this.showToast(res.data.msg);
}
},
fail: () => {
this.showToast('服务器请求出错');
},
});
},
/**
* 配置是否有效(100毫秒检验一次最多检验100次)
* object 回调操作对象
* method 回调操作对象的函数
*/
is_config(object, method) {
var self = this;
var count = 0;
var timer = setInterval(function()
{
if(self.get_config('status') == 1)
{
clearInterval(timer);
if (typeof object === 'object' && (method || null) != null) {
object[method](true);
}
}
count++;
if(count >= 100)
{
clearInterval(timer);
}
}, 100);
},
2020-09-14 22:45:31 +08:00
/**
* 百度坐标BD-09到火星坐标GCJ02(高德谷歌腾讯坐标)
* object 回调操作对象
* method 回调操作对象的函数
*/
map_bd_to_gcj(lng, lat) {
  let x_pi = 3.14159265358979324 * 3000.0 / 180.0;
  let x = lng - 0.0065;
  let y = lat - 0.006;
  let z = Math.sqrt(x * x + y * y) + 0.00002 * Math.sin(y * x_pi);
  let theta = Math.atan2(y, x) + 0.000003 * Math.cos(x * x_pi);
  let lngs = z * Math.cos(theta);
  let lats = z * Math.sin(theta);
  return {
    lng: lngs,
    lat: lats
  };
},
/**
* 百度坐标BD-09到火星坐标GCJ02(高德谷歌腾讯坐标)
* lng 经度
* lat 纬度
* name 地图上面显示的名称
* address 地图上面显示的详细地址
* scale 缩放比例范围5~18
*/
open_location(lng, lat, name, address, scale) {
if(lng == undefined || lat == undefined || lng == '' || lat == '') {
this.showToast('坐标有误');
return false;
}
// 转换坐标打开位置
var position = this.map_bd_to_gcj(parseFloat(lng), parseFloat(lat));
wx.openLocation({
name: name || '',
address: address || '',
scale: scale || 18,
longitude: position.lng,
latitude: position.lat
});
},
2020-09-14 21:58:07 +08:00
2020-09-16 10:41:32 +08:00
// uuid生成
uuid() {
var d = new Date().getTime();
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);
});
},
// 获取当前uuid
request_uuid() {
var uuid = wx.getStorageSync(this.data.cache_user_uuid_key) || null;
if(uuid == null) {
uuid = this.uuid();
wx.setStorage({
key: this.data.cache_user_uuid_key,
data: uuid,
fail: () => {
this.showToast('uuid缓存失败');
}
});
}
return uuid;
},
2018-12-29 18:39:25 +08:00
});