From efd58a0571e92c800e43ceee5c7e6a02c368ea54 Mon Sep 17 00:00:00 2001
From: Sliverber <2622874537@qq.com>
Date: Tue, 2 Jul 2024 18:07:01 +0800
Subject: [PATCH] 11
---
common/http.interceptor.js | 3 +-
common/qqmap-wx-jssdk.js | 1122 +++++++++++++++++++++++++
common/qqmap-wx-jssdk.min.js | 1 +
manifest.json | 11 +-
page_fix/fix_index.vue | 272 +++---
page_fix/repair/repair_detail.vue | 5 +-
page_user/agreement.vue | 12 +-
page_user/bulelink.vue | 32 +-
page_user/khfw/khfw.vue | 9 +-
page_user/word.vue | 39 +-
page_user/yczn.vue | 31 +-
pages/index/index.vue | 79 +-
pages/my.vue | 2 +-
pages_admin/admin_index.vue | 562 +++++++------
pages_admin/worke/worke_Operation.vue | 100 ++-
15 files changed, 1808 insertions(+), 472 deletions(-)
create mode 100644 common/qqmap-wx-jssdk.js
create mode 100644 common/qqmap-wx-jssdk.min.js
diff --git a/common/http.interceptor.js b/common/http.interceptor.js
index c8c80c1..4d70924 100644
--- a/common/http.interceptor.js
+++ b/common/http.interceptor.js
@@ -35,7 +35,8 @@ const install = (Vue, vm) => {
},
// ......
});
-
+ // 创享 wx3428c498d5061192
+ // 嵛山岛 wx4d178f8c80348214
// 请求拦截部分,如配置,每次请求前都会执行
Vue.prototype.$u.http.interceptor.request = (config) => {
// 引用token
diff --git a/common/qqmap-wx-jssdk.js b/common/qqmap-wx-jssdk.js
new file mode 100644
index 0000000..595b65b
--- /dev/null
+++ b/common/qqmap-wx-jssdk.js
@@ -0,0 +1,1122 @@
+/**
+ * 微信小程序JavaScriptSDK
+ *
+ * @version 1.2
+ * @date 2019-03-06
+ */
+
+var ERROR_CONF = {
+ KEY_ERR: 311,
+ KEY_ERR_MSG: 'key格式错误',
+ PARAM_ERR: 310,
+ PARAM_ERR_MSG: '请求参数信息有误',
+ SYSTEM_ERR: 600,
+ SYSTEM_ERR_MSG: '系统错误',
+ WX_ERR_CODE: 1000,
+ WX_OK_CODE: 200
+};
+var BASE_URL = 'https://apis.map.qq.com/ws/';
+var URL_SEARCH = BASE_URL + 'place/v1/search';
+var URL_SUGGESTION = BASE_URL + 'place/v1/suggestion';
+var URL_GET_GEOCODER = BASE_URL + 'geocoder/v1/';
+var URL_CITY_LIST = BASE_URL + 'district/v1/list';
+var URL_AREA_LIST = BASE_URL + 'district/v1/getchildren';
+var URL_DISTANCE = BASE_URL + 'distance/v1/';
+var URL_DIRECTION = BASE_URL + 'direction/v1/';
+var MODE = {
+ driving: 'driving',
+ transit: 'transit'
+};
+var EARTH_RADIUS = 6378136.49;
+var Utils = {
+ /**
+ * md5加密方法
+ * 版权所有©2011 Sebastian Tschan,https://blueimp.net
+ */
+ safeAdd(x, y) {
+ var lsw = (x & 0xffff) + (y & 0xffff);
+ var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xffff);
+ },
+ bitRotateLeft(num, cnt) {
+ return (num << cnt) | (num >>> (32 - cnt));
+ },
+ md5cmn(q, a, b, x, s, t) {
+ return this.safeAdd(this.bitRotateLeft(this.safeAdd(this.safeAdd(a, q), this.safeAdd(x, t)), s), b);
+ },
+ md5ff(a, b, c, d, x, s, t) {
+ return this.md5cmn((b & c) | (~b & d), a, b, x, s, t);
+ },
+ md5gg(a, b, c, d, x, s, t) {
+ return this.md5cmn((b & d) | (c & ~d), a, b, x, s, t);
+ },
+ md5hh(a, b, c, d, x, s, t) {
+ return this.md5cmn(b ^ c ^ d, a, b, x, s, t);
+ },
+ md5ii(a, b, c, d, x, s, t) {
+ return this.md5cmn(c ^ (b | ~d), a, b, x, s, t);
+ },
+ binlMD5(x, len) {
+ /* append padding */
+ x[len >> 5] |= 0x80 << (len % 32);
+ x[((len + 64) >>> 9 << 4) + 14] = len;
+
+ var i;
+ var olda;
+ var oldb;
+ var oldc;
+ var oldd;
+ var a = 1732584193;
+ var b = -271733879;
+ var c = -1732584194;
+ var d = 271733878;
+
+ for (i = 0; i < x.length; i += 16) {
+ olda = a;
+ oldb = b;
+ oldc = c;
+ oldd = d;
+
+ a = this.md5ff(a, b, c, d, x[i], 7, -680876936);
+ d = this.md5ff(d, a, b, c, x[i + 1], 12, -389564586);
+ c = this.md5ff(c, d, a, b, x[i + 2], 17, 606105819);
+ b = this.md5ff(b, c, d, a, x[i + 3], 22, -1044525330);
+ a = this.md5ff(a, b, c, d, x[i + 4], 7, -176418897);
+ d = this.md5ff(d, a, b, c, x[i + 5], 12, 1200080426);
+ c = this.md5ff(c, d, a, b, x[i + 6], 17, -1473231341);
+ b = this.md5ff(b, c, d, a, x[i + 7], 22, -45705983);
+ a = this.md5ff(a, b, c, d, x[i + 8], 7, 1770035416);
+ d = this.md5ff(d, a, b, c, x[i + 9], 12, -1958414417);
+ c = this.md5ff(c, d, a, b, x[i + 10], 17, -42063);
+ b = this.md5ff(b, c, d, a, x[i + 11], 22, -1990404162);
+ a = this.md5ff(a, b, c, d, x[i + 12], 7, 1804603682);
+ d = this.md5ff(d, a, b, c, x[i + 13], 12, -40341101);
+ c = this.md5ff(c, d, a, b, x[i + 14], 17, -1502002290);
+ b = this.md5ff(b, c, d, a, x[i + 15], 22, 1236535329);
+
+ a = this.md5gg(a, b, c, d, x[i + 1], 5, -165796510);
+ d = this.md5gg(d, a, b, c, x[i + 6], 9, -1069501632);
+ c = this.md5gg(c, d, a, b, x[i + 11], 14, 643717713);
+ b = this.md5gg(b, c, d, a, x[i], 20, -373897302);
+ a = this.md5gg(a, b, c, d, x[i + 5], 5, -701558691);
+ d = this.md5gg(d, a, b, c, x[i + 10], 9, 38016083);
+ c = this.md5gg(c, d, a, b, x[i + 15], 14, -660478335);
+ b = this.md5gg(b, c, d, a, x[i + 4], 20, -405537848);
+ a = this.md5gg(a, b, c, d, x[i + 9], 5, 568446438);
+ d = this.md5gg(d, a, b, c, x[i + 14], 9, -1019803690);
+ c = this.md5gg(c, d, a, b, x[i + 3], 14, -187363961);
+ b = this.md5gg(b, c, d, a, x[i + 8], 20, 1163531501);
+ a = this.md5gg(a, b, c, d, x[i + 13], 5, -1444681467);
+ d = this.md5gg(d, a, b, c, x[i + 2], 9, -51403784);
+ c = this.md5gg(c, d, a, b, x[i + 7], 14, 1735328473);
+ b = this.md5gg(b, c, d, a, x[i + 12], 20, -1926607734);
+
+ a = this.md5hh(a, b, c, d, x[i + 5], 4, -378558);
+ d = this.md5hh(d, a, b, c, x[i + 8], 11, -2022574463);
+ c = this.md5hh(c, d, a, b, x[i + 11], 16, 1839030562);
+ b = this.md5hh(b, c, d, a, x[i + 14], 23, -35309556);
+ a = this.md5hh(a, b, c, d, x[i + 1], 4, -1530992060);
+ d = this.md5hh(d, a, b, c, x[i + 4], 11, 1272893353);
+ c = this.md5hh(c, d, a, b, x[i + 7], 16, -155497632);
+ b = this.md5hh(b, c, d, a, x[i + 10], 23, -1094730640);
+ a = this.md5hh(a, b, c, d, x[i + 13], 4, 681279174);
+ d = this.md5hh(d, a, b, c, x[i], 11, -358537222);
+ c = this.md5hh(c, d, a, b, x[i + 3], 16, -722521979);
+ b = this.md5hh(b, c, d, a, x[i + 6], 23, 76029189);
+ a = this.md5hh(a, b, c, d, x[i + 9], 4, -640364487);
+ d = this.md5hh(d, a, b, c, x[i + 12], 11, -421815835);
+ c = this.md5hh(c, d, a, b, x[i + 15], 16, 530742520);
+ b = this.md5hh(b, c, d, a, x[i + 2], 23, -995338651);
+
+ a = this.md5ii(a, b, c, d, x[i], 6, -198630844);
+ d = this.md5ii(d, a, b, c, x[i + 7], 10, 1126891415);
+ c = this.md5ii(c, d, a, b, x[i + 14], 15, -1416354905);
+ b = this.md5ii(b, c, d, a, x[i + 5], 21, -57434055);
+ a = this.md5ii(a, b, c, d, x[i + 12], 6, 1700485571);
+ d = this.md5ii(d, a, b, c, x[i + 3], 10, -1894986606);
+ c = this.md5ii(c, d, a, b, x[i + 10], 15, -1051523);
+ b = this.md5ii(b, c, d, a, x[i + 1], 21, -2054922799);
+ a = this.md5ii(a, b, c, d, x[i + 8], 6, 1873313359);
+ d = this.md5ii(d, a, b, c, x[i + 15], 10, -30611744);
+ c = this.md5ii(c, d, a, b, x[i + 6], 15, -1560198380);
+ b = this.md5ii(b, c, d, a, x[i + 13], 21, 1309151649);
+ a = this.md5ii(a, b, c, d, x[i + 4], 6, -145523070);
+ d = this.md5ii(d, a, b, c, x[i + 11], 10, -1120210379);
+ c = this.md5ii(c, d, a, b, x[i + 2], 15, 718787259);
+ b = this.md5ii(b, c, d, a, x[i + 9], 21, -343485551);
+
+ a = this.safeAdd(a, olda);
+ b = this.safeAdd(b, oldb);
+ c = this.safeAdd(c, oldc);
+ d = this.safeAdd(d, oldd);
+ }
+ return [a, b, c, d];
+ },
+ binl2rstr(input) {
+ var i;
+ var output = '';
+ var length32 = input.length * 32;
+ for (i = 0; i < length32; i += 8) {
+ output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xff);
+ }
+ return output;
+ },
+ rstr2binl(input) {
+ var i;
+ var output = [];
+ output[(input.length >> 2) - 1] = undefined;
+ for (i = 0; i < output.length; i += 1) {
+ output[i] = 0;
+ }
+ var length8 = input.length * 8;
+ for (i = 0; i < length8; i += 8) {
+ output[i >> 5] |= (input.charCodeAt(i / 8) & 0xff) << (i % 32);
+ }
+ return output;
+ },
+ rstrMD5(s) {
+ return this.binl2rstr(this.binlMD5(this.rstr2binl(s), s.length * 8));
+ },
+ rstrHMACMD5(key, data) {
+ var i;
+ var bkey = this.rstr2binl(key);
+ var ipad = [];
+ var opad = [];
+ var hash;
+ ipad[15] = opad[15] = undefined;
+ if (bkey.length > 16) {
+ bkey = this.binlMD5(bkey, key.length * 8);
+ }
+ for (i = 0; i < 16; i += 1) {
+ ipad[i] = bkey[i] ^ 0x36363636;
+ opad[i] = bkey[i] ^ 0x5c5c5c5c;
+ }
+ hash = this.binlMD5(ipad.concat(this.rstr2binl(data)), 512 + data.length * 8);
+ return this.binl2rstr(this.binlMD5(opad.concat(hash), 512 + 128));
+ },
+ rstr2hex(input) {
+ var hexTab = '0123456789abcdef';
+ var output = '';
+ var x;
+ var i;
+ for (i = 0; i < input.length; i += 1) {
+ x = input.charCodeAt(i);
+ output += hexTab.charAt((x >>> 4) & 0x0f) + hexTab.charAt(x & 0x0f);
+ }
+ return output;
+ },
+ str2rstrUTF8(input) {
+ return unescape(encodeURIComponent(input));
+ },
+ rawMD5(s) {
+ return this.rstrMD5(this.str2rstrUTF8(s));
+ },
+ hexMD5(s) {
+ return this.rstr2hex(this.rawMD5(s));
+ },
+ rawHMACMD5(k, d) {
+ return this.rstrHMACMD5(this.str2rstrUTF8(k), str2rstrUTF8(d));
+ },
+ hexHMACMD5(k, d) {
+ return this.rstr2hex(this.rawHMACMD5(k, d));
+ },
+
+ md5(string, key, raw) {
+ if (!key) {
+ if (!raw) {
+ return this.hexMD5(string);
+ }
+ return this.rawMD5(string);
+ }
+ if (!raw) {
+ return this.hexHMACMD5(key, string);
+ }
+ return this.rawHMACMD5(key, string);
+ },
+ /**
+ * 得到md5加密后的sig参数
+ * @param {Object} requestParam 接口参数
+ * @param {String} sk签名字符串
+ * @param {String} featrue 方法名
+ * @return 返回加密后的sig参数
+ */
+ getSig(requestParam, sk, feature, mode) {
+ var sig = null;
+ var requestArr = [];
+ Object.keys(requestParam).sort().forEach(function(key){
+ requestArr.push(key + '=' + requestParam[key]);
+ });
+ if (feature == 'search') {
+ sig = '/ws/place/v1/search?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'suggest') {
+ sig = '/ws/place/v1/suggestion?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'reverseGeocoder') {
+ sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'geocoder') {
+ sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'getCityList') {
+ sig = '/ws/district/v1/list?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'getDistrictByCityId') {
+ sig = '/ws/district/v1/getchildren?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'calculateDistance') {
+ sig = '/ws/distance/v1/?' + requestArr.join('&') + sk;
+ }
+ if (feature == 'direction') {
+ sig = '/ws/direction/v1/' + mode + '?' + requestArr.join('&') + sk;
+ }
+ sig = this.md5(sig);
+ return sig;
+ },
+ /**
+ * 得到终点query字符串
+ * @param {Array|String} 检索数据
+ */
+ location2query(data) {
+ if (typeof data == 'string') {
+ return data;
+ }
+ var query = '';
+ for (var i = 0; i < data.length; i++) {
+ var d = data[i];
+ if (!!query) {
+ query += ';';
+ }
+ if (d.location) {
+ query = query + d.location.lat + ',' + d.location.lng;
+ }
+ if (d.latitude && d.longitude) {
+ query = query + d.latitude + ',' + d.longitude;
+ }
+ }
+ return query;
+ },
+
+ /**
+ * 计算角度
+ */
+ rad(d) {
+ return d * Math.PI / 180.0;
+ },
+ /**
+ * 处理终点location数组
+ * @return 返回终点数组
+ */
+ getEndLocation(location){
+ var to = location.split(';');
+ var endLocation = [];
+ for (var i = 0; i < to.length; i++) {
+ endLocation.push({
+ lat: parseFloat(to[i].split(',')[0]),
+ lng: parseFloat(to[i].split(',')[1])
+ })
+ }
+ return endLocation;
+ },
+
+ /**
+ * 计算两点间直线距离
+ * @param a 表示纬度差
+ * @param b 表示经度差
+ * @return 返回的是距离,单位m
+ */
+ getDistance(latFrom, lngFrom, latTo, lngTo) {
+ var radLatFrom = this.rad(latFrom);
+ var radLatTo = this.rad(latTo);
+ var a = radLatFrom - radLatTo;
+ var b = this.rad(lngFrom) - this.rad(lngTo);
+ var distance = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLatFrom) * Math.cos(radLatTo) * Math.pow(Math.sin(b / 2), 2)));
+ distance = distance * EARTH_RADIUS;
+ distance = Math.round(distance * 10000) / 10000;
+ return parseFloat(distance.toFixed(0));
+ },
+ /**
+ * 使用微信接口进行定位
+ */
+ getWXLocation(success, fail, complete) {
+ wx.getLocation({
+ type: 'gcj02',
+ success: success,
+ fail: fail,
+ complete: complete
+ });
+ },
+
+ /**
+ * 获取location参数
+ */
+ getLocationParam(location) {
+ if (typeof location == 'string') {
+ var locationArr = location.split(',');
+ if (locationArr.length === 2) {
+ location = {
+ latitude: location.split(',')[0],
+ longitude: location.split(',')[1]
+ };
+ } else {
+ location = {};
+ }
+ }
+ return location;
+ },
+
+ /**
+ * 回调函数默认处理
+ */
+ polyfillParam(param) {
+ param.success = param.success || function () { };
+ param.fail = param.fail || function () { };
+ param.complete = param.complete || function () { };
+ },
+
+ /**
+ * 验证param对应的key值是否为空
+ *
+ * @param {Object} param 接口参数
+ * @param {String} key 对应参数的key
+ */
+ checkParamKeyEmpty(param, key) {
+ if (!param[key]) {
+ var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key +'参数格式有误');
+ param.fail(errconf);
+ param.complete(errconf);
+ return true;
+ }
+ return false;
+ },
+
+ /**
+ * 验证参数中是否存在检索词keyword
+ *
+ * @param {Object} param 接口参数
+ */
+ checkKeyword(param){
+ return !this.checkParamKeyEmpty(param, 'keyword');
+ },
+
+ /**
+ * 验证location值
+ *
+ * @param {Object} param 接口参数
+ */
+ checkLocation(param) {
+ var location = this.getLocationParam(param.location);
+ if (!location || !location.latitude || !location.longitude) {
+ var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误');
+ param.fail(errconf);
+ param.complete(errconf);
+ return false;
+ }
+ return true;
+ },
+
+ /**
+ * 构造错误数据结构
+ * @param {Number} errCode 错误码
+ * @param {Number} errMsg 错误描述
+ */
+ buildErrorConfig(errCode, errMsg) {
+ return {
+ status: errCode,
+ message: errMsg
+ };
+ },
+
+ /**
+ *
+ * 数据处理函数
+ * 根据传入参数不同处理不同数据
+ * @param {String} feature 功能名称
+ * search 地点搜索
+ * suggest关键词提示
+ * reverseGeocoder逆地址解析
+ * geocoder地址解析
+ * getCityList获取城市列表:父集
+ * getDistrictByCityId获取区县列表:子集
+ * calculateDistance距离计算
+ * @param {Object} param 接口参数
+ * @param {Object} data 数据
+ */
+ handleData(param,data,feature){
+ if (feature == 'search') {
+ var searchResult = data.data;
+ var searchSimplify = [];
+ for (var i = 0; i < searchResult.length; i++) {
+ searchSimplify.push({
+ id: searchResult[i].id || null,
+ title: searchResult[i].title || null,
+ latitude: searchResult[i].location && searchResult[i].location.lat || null,
+ longitude: searchResult[i].location && searchResult[i].location.lng || null,
+ address: searchResult[i].address || null,
+ category: searchResult[i].category || null,
+ tel: searchResult[i].tel || null,
+ adcode: searchResult[i].ad_info && searchResult[i].ad_info.adcode || null,
+ city: searchResult[i].ad_info && searchResult[i].ad_info.city || null,
+ district: searchResult[i].ad_info && searchResult[i].ad_info.district || null,
+ province: searchResult[i].ad_info && searchResult[i].ad_info.province || null
+ })
+ }
+ param.success(data, {
+ searchResult: searchResult,
+ searchSimplify: searchSimplify
+ })
+ } else if (feature == 'suggest') {
+ var suggestResult = data.data;
+ var suggestSimplify = [];
+ for (var i = 0; i < suggestResult.length; i++) {
+ suggestSimplify.push({
+ adcode: suggestResult[i].adcode || null,
+ address: suggestResult[i].address || null,
+ category: suggestResult[i].category || null,
+ city: suggestResult[i].city || null,
+ district: suggestResult[i].district || null,
+ id: suggestResult[i].id || null,
+ latitude: suggestResult[i].location && suggestResult[i].location.lat || null,
+ longitude: suggestResult[i].location && suggestResult[i].location.lng || null,
+ province: suggestResult[i].province || null,
+ title: suggestResult[i].title || null,
+ type: suggestResult[i].type || null
+ })
+ }
+ param.success(data, {
+ suggestResult: suggestResult,
+ suggestSimplify: suggestSimplify
+ })
+ } else if (feature == 'reverseGeocoder') {
+ var reverseGeocoderResult = data.result;
+ var reverseGeocoderSimplify = {
+ address: reverseGeocoderResult.address || null,
+ latitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lat || null,
+ longitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lng || null,
+ adcode: reverseGeocoderResult.ad_info && reverseGeocoderResult.ad_info.adcode || null,
+ city: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.city || null,
+ district: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.district || null,
+ nation: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.nation || null,
+ province: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.province || null,
+ street: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street || null,
+ street_number: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street_number || null,
+ recommend: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.recommend || null,
+ rough: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.rough || null
+ };
+ if (reverseGeocoderResult.pois) {//判断是否返回周边poi
+ var pois = reverseGeocoderResult.pois;
+ var poisSimplify = [];
+ for (var i = 0;i < pois.length;i++) {
+ poisSimplify.push({
+ id: pois[i].id || null,
+ title: pois[i].title || null,
+ latitude: pois[i].location && pois[i].location.lat || null,
+ longitude: pois[i].location && pois[i].location.lng || null,
+ address: pois[i].address || null,
+ category: pois[i].category || null,
+ adcode: pois[i].ad_info && pois[i].ad_info.adcode || null,
+ city: pois[i].ad_info && pois[i].ad_info.city || null,
+ district: pois[i].ad_info && pois[i].ad_info.district || null,
+ province: pois[i].ad_info && pois[i].ad_info.province || null
+ })
+ }
+ param.success(data,{
+ reverseGeocoderResult: reverseGeocoderResult,
+ reverseGeocoderSimplify: reverseGeocoderSimplify,
+ pois: pois,
+ poisSimplify: poisSimplify
+ })
+ } else {
+ param.success(data, {
+ reverseGeocoderResult: reverseGeocoderResult,
+ reverseGeocoderSimplify: reverseGeocoderSimplify
+ })
+ }
+ } else if (feature == 'geocoder') {
+ var geocoderResult = data.result;
+ var geocoderSimplify = {
+ title: geocoderResult.title || null,
+ latitude: geocoderResult.location && geocoderResult.location.lat || null,
+ longitude: geocoderResult.location && geocoderResult.location.lng || null,
+ adcode: geocoderResult.ad_info && geocoderResult.ad_info.adcode || null,
+ province: geocoderResult.address_components && geocoderResult.address_components.province || null,
+ city: geocoderResult.address_components && geocoderResult.address_components.city || null,
+ district: geocoderResult.address_components && geocoderResult.address_components.district || null,
+ street: geocoderResult.address_components && geocoderResult.address_components.street || null,
+ street_number: geocoderResult.address_components && geocoderResult.address_components.street_number || null,
+ level: geocoderResult.level || null
+ };
+ param.success(data,{
+ geocoderResult: geocoderResult,
+ geocoderSimplify: geocoderSimplify
+ });
+ } else if (feature == 'getCityList') {
+ var provinceResult = data.result[0];
+ var cityResult = data.result[1];
+ var districtResult = data.result[2];
+ param.success(data,{
+ provinceResult: provinceResult,
+ cityResult: cityResult,
+ districtResult: districtResult
+ });
+ } else if (feature == 'getDistrictByCityId') {
+ var districtByCity = data.result[0];
+ param.success(data, districtByCity);
+ } else if (feature == 'calculateDistance') {
+ var calculateDistanceResult = data.result.elements;
+ var distance = [];
+ for (var i = 0; i < calculateDistanceResult.length; i++){
+ distance.push(calculateDistanceResult[i].distance);
+ }
+ param.success(data, {
+ calculateDistanceResult: calculateDistanceResult,
+ distance: distance
+ });
+ } else if (feature == 'direction') {
+ var direction = data.result.routes;
+ param.success(data,direction);
+ } else {
+ param.success(data);
+ }
+ },
+
+ /**
+ * 构造微信请求参数,公共属性处理
+ *
+ * @param {Object} param 接口参数
+ * @param {Object} param 配置项
+ * @param {String} feature 方法名
+ */
+ buildWxRequestConfig(param, options, feature) {
+ var that = this;
+ options.header = { "content-type": "application/json" };
+ options.method = 'GET';
+ options.success = function (res) {
+ var data = res.data;
+ if (data.status === 0) {
+ that.handleData(param, data, feature);
+ } else {
+ param.fail(data);
+ }
+ };
+ options.fail = function (res) {
+ res.statusCode = ERROR_CONF.WX_ERR_CODE;
+ param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ };
+ options.complete = function (res) {
+ var statusCode = +res.statusCode;
+ switch(statusCode) {
+ case ERROR_CONF.WX_ERR_CODE: {
+ param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ break;
+ }
+ case ERROR_CONF.WX_OK_CODE: {
+ var data = res.data;
+ if (data.status === 0) {
+ param.complete(data);
+ } else {
+ param.complete(that.buildErrorConfig(data.status, data.message));
+ }
+ break;
+ }
+ default:{
+ param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG));
+ }
+
+ }
+ };
+ return options;
+ },
+
+ /**
+ * 处理用户参数是否传入坐标进行不同的处理
+ */
+ locationProcess(param, locationsuccess, locationfail, locationcomplete) {
+ var that = this;
+ locationfail = locationfail || function (res) {
+ res.statusCode = ERROR_CONF.WX_ERR_CODE;
+ param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ };
+ locationcomplete = locationcomplete || function (res) {
+ if (res.statusCode == ERROR_CONF.WX_ERR_CODE) {
+ param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ }
+ };
+ if (!param.location) {
+ that.getWXLocation(locationsuccess, locationfail, locationcomplete);
+ } else if (that.checkLocation(param)) {
+ var location = Utils.getLocationParam(param.location);
+ locationsuccess(location);
+ }
+ }
+};
+
+
+class QQMapWX {
+
+ /**
+ * 构造函数
+ *
+ * @param {Object} options 接口参数,key 为必选参数
+ */
+ constructor(options) {
+ if (!options.key) {
+ throw Error('key值不能为空');
+ }
+ this.key = options.key;
+ };
+
+ /**
+ * POI周边检索
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 参数对象结构可以参考
+ * @see http://lbs.qq.com/webservice_v1/guide-search.html
+ */
+ search(options) {
+ var that = this;
+ options = options || {};
+
+ Utils.polyfillParam(options);
+
+ if (!Utils.checkKeyword(options)) {
+ return;
+ }
+
+ var requestParam = {
+ keyword: options.keyword,
+ orderby: options.orderby || '_distance',
+ page_size: options.page_size || 10,
+ page_index: options.page_index || 1,
+ output: 'json',
+ key: that.key
+ };
+
+ if (options.address_format) {
+ requestParam.address_format = options.address_format;
+ }
+
+ if (options.filter) {
+ requestParam.filter = options.filter;
+ }
+
+ var distance = options.distance || "1000";
+ var auto_extend = options.auto_extend || 1;
+ var region = null;
+ var rectangle = null;
+
+ //判断城市限定参数
+ if (options.region) {
+ region = options.region;
+ }
+
+ //矩形限定坐标(暂时只支持字符串格式)
+ if (options.rectangle) {
+ rectangle = options.rectangle;
+ }
+
+ var locationsuccess = function (result) {
+ if (region && !rectangle) {
+ //城市限定参数拼接
+ requestParam.boundary = "region(" + region + "," + auto_extend + "," + result.latitude + "," + result.longitude + ")";
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'search');
+ }
+ } else if (rectangle && !region) {
+ //矩形搜索
+ requestParam.boundary = "rectangle(" + rectangle + ")";
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'search');
+ }
+ } else {
+ requestParam.boundary = "nearby(" + result.latitude + "," + result.longitude + "," + distance + "," + auto_extend + ")";
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'search');
+ }
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_SEARCH,
+ data: requestParam
+ }, 'search'));
+ };
+ Utils.locationProcess(options, locationsuccess);
+ };
+
+ /**
+ * sug模糊检索
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 参数对象结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-suggestion.html
+ */
+ getSuggestion(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (!Utils.checkKeyword(options)) {
+ return;
+ }
+
+ var requestParam = {
+ keyword: options.keyword,
+ region: options.region || '全国',
+ region_fix: options.region_fix || 0,
+ policy: options.policy || 0,
+ page_size: options.page_size || 10,//控制显示条数
+ page_index: options.page_index || 1,//控制页数
+ get_subpois : options.get_subpois || 0,//返回子地点
+ output: 'json',
+ key: that.key
+ };
+ //长地址
+ if (options.address_format) {
+ requestParam.address_format = options.address_format;
+ }
+ //过滤
+ if (options.filter) {
+ requestParam.filter = options.filter;
+ }
+ //排序
+ if (options.location) {
+ var locationsuccess = function (result) {
+ requestParam.location = result.latitude + ',' + result.longitude;
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest');
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_SUGGESTION,
+ data: requestParam
+ }, "suggest"));
+ };
+ Utils.locationProcess(options, locationsuccess);
+ } else {
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest');
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_SUGGESTION,
+ data: requestParam
+ }, "suggest"));
+ }
+ };
+
+ /**
+ * 逆地址解析
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-gcoder.html
+ */
+ reverseGeocoder(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+ var requestParam = {
+ coord_type: options.coord_type || 5,
+ get_poi: options.get_poi || 0,
+ output: 'json',
+ key: that.key
+ };
+ if (options.poi_options) {
+ requestParam.poi_options = options.poi_options
+ }
+
+ var locationsuccess = function (result) {
+ requestParam.location = result.latitude + ',' + result.longitude;
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'reverseGeocoder');
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_GET_GEOCODER,
+ data: requestParam
+ }, 'reverseGeocoder'));
+ };
+ Utils.locationProcess(options, locationsuccess);
+ };
+
+ /**
+ * 地址解析
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-geocoder.html
+ */
+ geocoder(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'address')) {
+ return;
+ }
+
+ var requestParam = {
+ address: options.address,
+ output: 'json',
+ key: that.key
+ };
+
+ //城市限定
+ if (options.region) {
+ requestParam.region = options.region;
+ }
+
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'geocoder');
+ }
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_GET_GEOCODER,
+ data: requestParam
+ },'geocoder'));
+ };
+
+
+ /**
+ * 获取城市列表
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-region.html
+ */
+ getCityList(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+ var requestParam = {
+ output: 'json',
+ key: that.key
+ };
+
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'getCityList');
+ }
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_CITY_LIST,
+ data: requestParam
+ },'getCityList'));
+ };
+
+ /**
+ * 获取对应城市ID的区县列表
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-region.html
+ */
+ getDistrictByCityId(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'id')) {
+ return;
+ }
+
+ var requestParam = {
+ id: options.id || '',
+ output: 'json',
+ key: that.key
+ };
+
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'getDistrictByCityId');
+ }
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_AREA_LIST,
+ data: requestParam
+ },'getDistrictByCityId'));
+ };
+
+ /**
+ * 用于单起点到多终点的路线距离(非直线距离)计算:
+ * 支持两种距离计算方式:步行和驾车。
+ * 起点到终点最大限制直线距离10公里。
+ *
+ * 新增直线距离计算。
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-distance.html
+ */
+ calculateDistance(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'to')) {
+ return;
+ }
+
+ var requestParam = {
+ mode: options.mode || 'walking',
+ to: Utils.location2query(options.to),
+ output: 'json',
+ key: that.key
+ };
+
+ if (options.from) {
+ options.location = options.from;
+ }
+
+ //计算直线距离
+ if(requestParam.mode == 'straight'){
+ var locationsuccess = function (result) {
+ var locationTo = Utils.getEndLocation(requestParam.to);//处理终点坐标
+ var data = {
+ message:"query ok",
+ result:{
+ elements:[]
+ },
+ status:0
+ };
+ for (var i = 0; i < locationTo.length; i++) {
+ data.result.elements.push({//将坐标存入
+ distance: Utils.getDistance(result.latitude, result.longitude, locationTo[i].lat, locationTo[i].lng),
+ duration:0,
+ from:{
+ lat: result.latitude,
+ lng:result.longitude
+ },
+ to:{
+ lat: locationTo[i].lat,
+ lng: locationTo[i].lng
+ }
+ });
+ }
+ var calculateResult = data.result.elements;
+ var distanceResult = [];
+ for (var i = 0; i < calculateResult.length; i++) {
+ distanceResult.push(calculateResult[i].distance);
+ }
+ return options.success(data,{
+ calculateResult: calculateResult,
+ distanceResult: distanceResult
+ });
+ };
+
+ Utils.locationProcess(options, locationsuccess);
+ } else {
+ var locationsuccess = function (result) {
+ requestParam.from = result.latitude + ',' + result.longitude;
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'calculateDistance');
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_DISTANCE,
+ data: requestParam
+ },'calculateDistance'));
+ };
+
+ Utils.locationProcess(options, locationsuccess);
+ }
+ };
+
+ /**
+ * 路线规划:
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * https://lbs.qq.com/webservice_v1/guide-road.html
+ */
+ direction(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'to')) {
+ return;
+ }
+
+ var requestParam = {
+ output: 'json',
+ key: that.key
+ };
+
+ //to格式处理
+ if (typeof options.to == 'string') {
+ requestParam.to = options.to;
+ } else {
+ requestParam.to = options.to.latitude + ',' + options.to.longitude;
+ }
+ //初始化局部请求域名
+ var SET_URL_DIRECTION = null;
+ //设置默认mode属性
+ options.mode = options.mode || MODE.driving;
+
+ //设置请求域名
+ SET_URL_DIRECTION = URL_DIRECTION + options.mode;
+
+ if (options.from) {
+ options.location = options.from;
+ }
+
+ if (options.mode == MODE.driving) {
+ if (options.from_poi) {
+ requestParam.from_poi = options.from_poi;
+ }
+ if (options.heading) {
+ requestParam.heading = options.heading;
+ }
+ if (options.speed) {
+ requestParam.speed = options.speed;
+ }
+ if (options.accuracy) {
+ requestParam.accuracy = options.accuracy;
+ }
+ if (options.road_type) {
+ requestParam.road_type = options.road_type;
+ }
+ if (options.to_poi) {
+ requestParam.to_poi = options.to_poi;
+ }
+ if (options.from_track) {
+ requestParam.from_track = options.from_track;
+ }
+ if (options.waypoints) {
+ requestParam.waypoints = options.waypoints;
+ }
+ if (options.policy) {
+ requestParam.policy = options.policy;
+ }
+ if (options.plate_number) {
+ requestParam.plate_number = options.plate_number;
+ }
+ }
+
+ if (options.mode == MODE.transit) {
+ if (options.departure_time) {
+ requestParam.departure_time = options.departure_time;
+ }
+ if (options.policy) {
+ requestParam.policy = options.policy;
+ }
+ }
+
+ var locationsuccess = function (result) {
+ requestParam.from = result.latitude + ',' + result.longitude;
+ if (options.sig) {
+ requestParam.sig = Utils.getSig(requestParam, options.sig, 'direction',options.mode);
+ }
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: SET_URL_DIRECTION,
+ data: requestParam
+ }, 'direction'));
+ };
+
+ Utils.locationProcess(options, locationsuccess);
+ }
+};
+
+module.exports = QQMapWX;
\ No newline at end of file
diff --git a/common/qqmap-wx-jssdk.min.js b/common/qqmap-wx-jssdk.min.js
new file mode 100644
index 0000000..8fa1477
--- /dev/null
+++ b/common/qqmap-wx-jssdk.min.js
@@ -0,0 +1 @@
+var ERROR_CONF = { KEY_ERR: 311, KEY_ERR_MSG: 'key格式错误', PARAM_ERR: 310, PARAM_ERR_MSG: '请求参数信息有误', SYSTEM_ERR: 600, SYSTEM_ERR_MSG: '系统错误', WX_ERR_CODE: 1000, WX_OK_CODE: 200 }; var BASE_URL = 'https://apis.map.qq.com/ws/'; var URL_SEARCH = BASE_URL + 'place/v1/search'; var URL_SUGGESTION = BASE_URL + 'place/v1/suggestion'; var URL_GET_GEOCODER = BASE_URL + 'geocoder/v1/'; var URL_CITY_LIST = BASE_URL + 'district/v1/list'; var URL_AREA_LIST = BASE_URL + 'district/v1/getchildren'; var URL_DISTANCE = BASE_URL + 'distance/v1/'; var URL_DIRECTION = BASE_URL + 'direction/v1/'; var MODE = { driving: 'driving', transit: 'transit' }; var EARTH_RADIUS = 6378136.49; var Utils = { safeAdd(x, y) { var lsw = (x & 0xffff) + (y & 0xffff); var msw = (x >> 16) + (y >> 16) + (lsw >> 16); return (msw << 16) | (lsw & 0xffff) }, bitRotateLeft(num, cnt) { return (num << cnt) | (num >>> (32 - cnt)) }, md5cmn(q, a, b, x, s, t) { return this.safeAdd(this.bitRotateLeft(this.safeAdd(this.safeAdd(a, q), this.safeAdd(x, t)), s), b) }, md5ff(a, b, c, d, x, s, t) { return this.md5cmn((b & c) | (~b & d), a, b, x, s, t) }, md5gg(a, b, c, d, x, s, t) { return this.md5cmn((b & d) | (c & ~d), a, b, x, s, t) }, md5hh(a, b, c, d, x, s, t) { return this.md5cmn(b ^ c ^ d, a, b, x, s, t) }, md5ii(a, b, c, d, x, s, t) { return this.md5cmn(c ^ (b | ~d), a, b, x, s, t) }, binlMD5(x, len) { x[len >> 5] |= 0x80 << (len % 32); x[((len + 64) >>> 9 << 4) + 14] = len; var i; var olda; var oldb; var oldc; var oldd; var a = 1732584193; var b = -271733879; var c = -1732584194; var d = 271733878; for (i = 0; i < x.length; i += 16) { olda = a; oldb = b; oldc = c; oldd = d; a = this.md5ff(a, b, c, d, x[i], 7, -680876936); d = this.md5ff(d, a, b, c, x[i + 1], 12, -389564586); c = this.md5ff(c, d, a, b, x[i + 2], 17, 606105819); b = this.md5ff(b, c, d, a, x[i + 3], 22, -1044525330); a = this.md5ff(a, b, c, d, x[i + 4], 7, -176418897); d = this.md5ff(d, a, b, c, x[i + 5], 12, 1200080426); c = this.md5ff(c, d, a, b, x[i + 6], 17, -1473231341); b = this.md5ff(b, c, d, a, x[i + 7], 22, -45705983); a = this.md5ff(a, b, c, d, x[i + 8], 7, 1770035416); d = this.md5ff(d, a, b, c, x[i + 9], 12, -1958414417); c = this.md5ff(c, d, a, b, x[i + 10], 17, -42063); b = this.md5ff(b, c, d, a, x[i + 11], 22, -1990404162); a = this.md5ff(a, b, c, d, x[i + 12], 7, 1804603682); d = this.md5ff(d, a, b, c, x[i + 13], 12, -40341101); c = this.md5ff(c, d, a, b, x[i + 14], 17, -1502002290); b = this.md5ff(b, c, d, a, x[i + 15], 22, 1236535329); a = this.md5gg(a, b, c, d, x[i + 1], 5, -165796510); d = this.md5gg(d, a, b, c, x[i + 6], 9, -1069501632); c = this.md5gg(c, d, a, b, x[i + 11], 14, 643717713); b = this.md5gg(b, c, d, a, x[i], 20, -373897302); a = this.md5gg(a, b, c, d, x[i + 5], 5, -701558691); d = this.md5gg(d, a, b, c, x[i + 10], 9, 38016083); c = this.md5gg(c, d, a, b, x[i + 15], 14, -660478335); b = this.md5gg(b, c, d, a, x[i + 4], 20, -405537848); a = this.md5gg(a, b, c, d, x[i + 9], 5, 568446438); d = this.md5gg(d, a, b, c, x[i + 14], 9, -1019803690); c = this.md5gg(c, d, a, b, x[i + 3], 14, -187363961); b = this.md5gg(b, c, d, a, x[i + 8], 20, 1163531501); a = this.md5gg(a, b, c, d, x[i + 13], 5, -1444681467); d = this.md5gg(d, a, b, c, x[i + 2], 9, -51403784); c = this.md5gg(c, d, a, b, x[i + 7], 14, 1735328473); b = this.md5gg(b, c, d, a, x[i + 12], 20, -1926607734); a = this.md5hh(a, b, c, d, x[i + 5], 4, -378558); d = this.md5hh(d, a, b, c, x[i + 8], 11, -2022574463); c = this.md5hh(c, d, a, b, x[i + 11], 16, 1839030562); b = this.md5hh(b, c, d, a, x[i + 14], 23, -35309556); a = this.md5hh(a, b, c, d, x[i + 1], 4, -1530992060); d = this.md5hh(d, a, b, c, x[i + 4], 11, 1272893353); c = this.md5hh(c, d, a, b, x[i + 7], 16, -155497632); b = this.md5hh(b, c, d, a, x[i + 10], 23, -1094730640); a = this.md5hh(a, b, c, d, x[i + 13], 4, 681279174); d = this.md5hh(d, a, b, c, x[i], 11, -358537222); c = this.md5hh(c, d, a, b, x[i + 3], 16, -722521979); b = this.md5hh(b, c, d, a, x[i + 6], 23, 76029189); a = this.md5hh(a, b, c, d, x[i + 9], 4, -640364487); d = this.md5hh(d, a, b, c, x[i + 12], 11, -421815835); c = this.md5hh(c, d, a, b, x[i + 15], 16, 530742520); b = this.md5hh(b, c, d, a, x[i + 2], 23, -995338651); a = this.md5ii(a, b, c, d, x[i], 6, -198630844); d = this.md5ii(d, a, b, c, x[i + 7], 10, 1126891415); c = this.md5ii(c, d, a, b, x[i + 14], 15, -1416354905); b = this.md5ii(b, c, d, a, x[i + 5], 21, -57434055); a = this.md5ii(a, b, c, d, x[i + 12], 6, 1700485571); d = this.md5ii(d, a, b, c, x[i + 3], 10, -1894986606); c = this.md5ii(c, d, a, b, x[i + 10], 15, -1051523); b = this.md5ii(b, c, d, a, x[i + 1], 21, -2054922799); a = this.md5ii(a, b, c, d, x[i + 8], 6, 1873313359); d = this.md5ii(d, a, b, c, x[i + 15], 10, -30611744); c = this.md5ii(c, d, a, b, x[i + 6], 15, -1560198380); b = this.md5ii(b, c, d, a, x[i + 13], 21, 1309151649); a = this.md5ii(a, b, c, d, x[i + 4], 6, -145523070); d = this.md5ii(d, a, b, c, x[i + 11], 10, -1120210379); c = this.md5ii(c, d, a, b, x[i + 2], 15, 718787259); b = this.md5ii(b, c, d, a, x[i + 9], 21, -343485551); a = this.safeAdd(a, olda); b = this.safeAdd(b, oldb); c = this.safeAdd(c, oldc); d = this.safeAdd(d, oldd) } return [a, b, c, d] }, binl2rstr(input) { var i; var output = ''; var length32 = input.length * 32; for (i = 0; i < length32; i += 8) { output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xff) } return output }, rstr2binl(input) { var i; var output = []; output[(input.length >> 2) - 1] = undefined; for (i = 0; i < output.length; i += 1) { output[i] = 0 } var length8 = input.length * 8; for (i = 0; i < length8; i += 8) { output[i >> 5] |= (input.charCodeAt(i / 8) & 0xff) << (i % 32) } return output }, rstrMD5(s) { return this.binl2rstr(this.binlMD5(this.rstr2binl(s), s.length * 8)) }, rstrHMACMD5(key, data) { var i; var bkey = this.rstr2binl(key); var ipad = []; var opad = []; var hash; ipad[15] = opad[15] = undefined; if (bkey.length > 16) { bkey = this.binlMD5(bkey, key.length * 8) } for (i = 0; i < 16; i += 1) { ipad[i] = bkey[i] ^ 0x36363636; opad[i] = bkey[i] ^ 0x5c5c5c5c } hash = this.binlMD5(ipad.concat(this.rstr2binl(data)), 512 + data.length * 8); return this.binl2rstr(this.binlMD5(opad.concat(hash), 512 + 128)) }, rstr2hex(input) { var hexTab = '0123456789abcdef'; var output = ''; var x; var i; for (i = 0; i < input.length; i += 1) { x = input.charCodeAt(i); output += hexTab.charAt((x >>> 4) & 0x0f) + hexTab.charAt(x & 0x0f) } return output }, str2rstrUTF8(input) { return unescape(encodeURIComponent(input)) }, rawMD5(s) { return this.rstrMD5(this.str2rstrUTF8(s)) }, hexMD5(s) { return this.rstr2hex(this.rawMD5(s)) }, rawHMACMD5(k, d) { return this.rstrHMACMD5(this.str2rstrUTF8(k), str2rstrUTF8(d)) }, hexHMACMD5(k, d) { return this.rstr2hex(this.rawHMACMD5(k, d)) }, md5(string, key, raw) { if (!key) { if (!raw) { return this.hexMD5(string) } return this.rawMD5(string) } if (!raw) { return this.hexHMACMD5(key, string) } return this.rawHMACMD5(key, string) }, getSig(requestParam, sk, feature, mode) { var sig = null; var requestArr = []; Object.keys(requestParam).sort().forEach(function (key) { requestArr.push(key + '=' + requestParam[key]) }); if (feature == 'search') { sig = '/ws/place/v1/search?' + requestArr.join('&') + sk } if (feature == 'suggest') { sig = '/ws/place/v1/suggestion?' + requestArr.join('&') + sk } if (feature == 'reverseGeocoder') { sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk } if (feature == 'geocoder') { sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk } if (feature == 'getCityList') { sig = '/ws/district/v1/list?' + requestArr.join('&') + sk } if (feature == 'getDistrictByCityId') { sig = '/ws/district/v1/getchildren?' + requestArr.join('&') + sk } if (feature == 'calculateDistance') { sig = '/ws/distance/v1/?' + requestArr.join('&') + sk } if (feature == 'direction') { sig = '/ws/direction/v1/' + mode + '?' + requestArr.join('&') + sk } sig = this.md5(sig); return sig }, location2query(data) { if (typeof data == 'string') { return data } var query = ''; for (var i = 0; i < data.length; i++) { var d = data[i]; if (!!query) { query += ';' } if (d.location) { query = query + d.location.lat + ',' + d.location.lng } if (d.latitude && d.longitude) { query = query + d.latitude + ',' + d.longitude } } return query }, rad(d) { return d * Math.PI / 180.0 }, getEndLocation(location) { var to = location.split(';'); var endLocation = []; for (var i = 0; i < to.length; i++) { endLocation.push({ lat: parseFloat(to[i].split(',')[0]), lng: parseFloat(to[i].split(',')[1]) }) } return endLocation }, getDistance(latFrom, lngFrom, latTo, lngTo) { var radLatFrom = this.rad(latFrom); var radLatTo = this.rad(latTo); var a = radLatFrom - radLatTo; var b = this.rad(lngFrom) - this.rad(lngTo); var distance = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLatFrom) * Math.cos(radLatTo) * Math.pow(Math.sin(b / 2), 2))); distance = distance * EARTH_RADIUS; distance = Math.round(distance * 10000) / 10000; return parseFloat(distance.toFixed(0)) }, getWXLocation(success, fail, complete) { wx.getLocation({ type: 'gcj02', success: success, fail: fail, complete: complete }) }, getLocationParam(location) { if (typeof location == 'string') { var locationArr = location.split(','); if (locationArr.length === 2) { location = { latitude: location.split(',')[0], longitude: location.split(',')[1] } } else { location = {} } } return location }, polyfillParam(param) { param.success = param.success || function () { }; param.fail = param.fail || function () { }; param.complete = param.complete || function () { } }, checkParamKeyEmpty(param, key) { if (!param[key]) { var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key + '参数格式有误'); param.fail(errconf); param.complete(errconf); return true } return false }, checkKeyword(param) { return !this.checkParamKeyEmpty(param, 'keyword') }, checkLocation(param) { var location = this.getLocationParam(param.location); if (!location || !location.latitude || !location.longitude) { var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误'); param.fail(errconf); param.complete(errconf); return false } return true }, buildErrorConfig(errCode, errMsg) { return { status: errCode, message: errMsg } }, handleData(param, data, feature) { if (feature == 'search') { var searchResult = data.data; var searchSimplify = []; for (var i = 0; i < searchResult.length; i++) { searchSimplify.push({ id: searchResult[i].id || null, title: searchResult[i].title || null, latitude: searchResult[i].location && searchResult[i].location.lat || null, longitude: searchResult[i].location && searchResult[i].location.lng || null, address: searchResult[i].address || null, category: searchResult[i].category || null, tel: searchResult[i].tel || null, adcode: searchResult[i].ad_info && searchResult[i].ad_info.adcode || null, city: searchResult[i].ad_info && searchResult[i].ad_info.city || null, district: searchResult[i].ad_info && searchResult[i].ad_info.district || null, province: searchResult[i].ad_info && searchResult[i].ad_info.province || null }) } param.success(data, { searchResult: searchResult, searchSimplify: searchSimplify }) } else if (feature == 'suggest') { var suggestResult = data.data; var suggestSimplify = []; for (var i = 0; i < suggestResult.length; i++) { suggestSimplify.push({ adcode: suggestResult[i].adcode || null, address: suggestResult[i].address || null, category: suggestResult[i].category || null, city: suggestResult[i].city || null, district: suggestResult[i].district || null, id: suggestResult[i].id || null, latitude: suggestResult[i].location && suggestResult[i].location.lat || null, longitude: suggestResult[i].location && suggestResult[i].location.lng || null, province: suggestResult[i].province || null, title: suggestResult[i].title || null, type: suggestResult[i].type || null }) } param.success(data, { suggestResult: suggestResult, suggestSimplify: suggestSimplify }) } else if (feature == 'reverseGeocoder') { var reverseGeocoderResult = data.result; var reverseGeocoderSimplify = { address: reverseGeocoderResult.address || null, latitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lat || null, longitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lng || null, adcode: reverseGeocoderResult.ad_info && reverseGeocoderResult.ad_info.adcode || null, city: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.city || null, district: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.district || null, nation: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.nation || null, province: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.province || null, street: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street || null, street_number: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street_number || null, recommend: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.recommend || null, rough: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.rough || null }; if (reverseGeocoderResult.pois) { var pois = reverseGeocoderResult.pois; var poisSimplify = []; for (var i = 0; i < pois.length; i++) { poisSimplify.push({ id: pois[i].id || null, title: pois[i].title || null, latitude: pois[i].location && pois[i].location.lat || null, longitude: pois[i].location && pois[i].location.lng || null, address: pois[i].address || null, category: pois[i].category || null, adcode: pois[i].ad_info && pois[i].ad_info.adcode || null, city: pois[i].ad_info && pois[i].ad_info.city || null, district: pois[i].ad_info && pois[i].ad_info.district || null, province: pois[i].ad_info && pois[i].ad_info.province || null }) } param.success(data, { reverseGeocoderResult: reverseGeocoderResult, reverseGeocoderSimplify: reverseGeocoderSimplify, pois: pois, poisSimplify: poisSimplify }) } else { param.success(data, { reverseGeocoderResult: reverseGeocoderResult, reverseGeocoderSimplify: reverseGeocoderSimplify }) } } else if (feature == 'geocoder') { var geocoderResult = data.result; var geocoderSimplify = { title: geocoderResult.title || null, latitude: geocoderResult.location && geocoderResult.location.lat || null, longitude: geocoderResult.location && geocoderResult.location.lng || null, adcode: geocoderResult.ad_info && geocoderResult.ad_info.adcode || null, province: geocoderResult.address_components && geocoderResult.address_components.province || null, city: geocoderResult.address_components && geocoderResult.address_components.city || null, district: geocoderResult.address_components && geocoderResult.address_components.district || null, street: geocoderResult.address_components && geocoderResult.address_components.street || null, street_number: geocoderResult.address_components && geocoderResult.address_components.street_number || null, level: geocoderResult.level || null }; param.success(data, { geocoderResult: geocoderResult, geocoderSimplify: geocoderSimplify }) } else if (feature == 'getCityList') { var provinceResult = data.result[0]; var cityResult = data.result[1]; var districtResult = data.result[2]; param.success(data, { provinceResult: provinceResult, cityResult: cityResult, districtResult: districtResult }) } else if (feature == 'getDistrictByCityId') { var districtByCity = data.result[0]; param.success(data, districtByCity) } else if (feature == 'calculateDistance') { var calculateDistanceResult = data.result.elements; var distance = []; for (var i = 0; i < calculateDistanceResult.length; i++) { distance.push(calculateDistanceResult[i].distance) } param.success(data, { calculateDistanceResult: calculateDistanceResult, distance: distance }) } else if (feature == 'direction') { var direction = data.result.routes; param.success(data, direction) } else { param.success(data) } }, buildWxRequestConfig(param, options, feature) { var that = this; options.header = { "content-type": "application/json" }; options.method = 'GET'; options.success = function (res) { var data = res.data; if (data.status === 0) { that.handleData(param, data, feature) } else { param.fail(data) } }; options.fail = function (res) { res.statusCode = ERROR_CONF.WX_ERR_CODE; param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)) }; options.complete = function (res) { var statusCode = +res.statusCode; switch (statusCode) { case ERROR_CONF.WX_ERR_CODE: { param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)); break } case ERROR_CONF.WX_OK_CODE: { var data = res.data; if (data.status === 0) { param.complete(data) } else { param.complete(that.buildErrorConfig(data.status, data.message)) } break } default: { param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG)) } } }; return options }, locationProcess(param, locationsuccess, locationfail, locationcomplete) { var that = this; locationfail = locationfail || function (res) { res.statusCode = ERROR_CONF.WX_ERR_CODE; param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)) }; locationcomplete = locationcomplete || function (res) { if (res.statusCode == ERROR_CONF.WX_ERR_CODE) { param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)) } }; if (!param.location) { that.getWXLocation(locationsuccess, locationfail, locationcomplete) } else if (that.checkLocation(param)) { var location = Utils.getLocationParam(param.location); locationsuccess(location) } } }; class QQMapWX { constructor(options) { if (!options.key) { throw Error('key值不能为空') } this.key = options.key }; search(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (!Utils.checkKeyword(options)) { return } var requestParam = { keyword: options.keyword, orderby: options.orderby || '_distance', page_size: options.page_size || 10, page_index: options.page_index || 1, output: 'json', key: that.key }; if (options.address_format) { requestParam.address_format = options.address_format } if (options.filter) { requestParam.filter = options.filter } var distance = options.distance || "1000"; var auto_extend = options.auto_extend || 1; var region = null; var rectangle = null; if (options.region) { region = options.region } if (options.rectangle) { rectangle = options.rectangle } var locationsuccess = function (result) { if (region && !rectangle) { requestParam.boundary = "region(" + region + "," + auto_extend + "," + result.latitude + "," + result.longitude + ")"; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'search') } } else if (rectangle && !region) { requestParam.boundary = "rectangle(" + rectangle + ")"; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'search') } } else { requestParam.boundary = "nearby(" + result.latitude + "," + result.longitude + "," + distance + "," + auto_extend + ")"; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'search') } } wx.request(Utils.buildWxRequestConfig(options, { url: URL_SEARCH, data: requestParam }, 'search')) }; Utils.locationProcess(options, locationsuccess) }; getSuggestion(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (!Utils.checkKeyword(options)) { return } var requestParam = { keyword: options.keyword, region: options.region || '全国', region_fix: options.region_fix || 0, policy: options.policy || 0, page_size: options.page_size || 10, page_index: options.page_index || 1, get_subpois: options.get_subpois || 0, output: 'json', key: that.key }; if (options.address_format) { requestParam.address_format = options.address_format } if (options.filter) { requestParam.filter = options.filter } if (options.location) { var locationsuccess = function (result) { requestParam.location = result.latitude + ',' + result.longitude; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_SUGGESTION, data: requestParam }, "suggest")) }; Utils.locationProcess(options, locationsuccess) } else { if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_SUGGESTION, data: requestParam }, "suggest")) } }; reverseGeocoder(options) { var that = this; options = options || {}; Utils.polyfillParam(options); var requestParam = { coord_type: options.coord_type || 5, get_poi: options.get_poi || 0, output: 'json', key: that.key }; if (options.poi_options) { requestParam.poi_options = options.poi_options } var locationsuccess = function (result) { requestParam.location = result.latitude + ',' + result.longitude; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'reverseGeocoder') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_GET_GEOCODER, data: requestParam }, 'reverseGeocoder')) }; Utils.locationProcess(options, locationsuccess) }; geocoder(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (Utils.checkParamKeyEmpty(options, 'address')) { return } var requestParam = { address: options.address, output: 'json', key: that.key }; if (options.region) { requestParam.region = options.region } if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'geocoder') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_GET_GEOCODER, data: requestParam }, 'geocoder')) }; getCityList(options) { var that = this; options = options || {}; Utils.polyfillParam(options); var requestParam = { output: 'json', key: that.key }; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'getCityList') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_CITY_LIST, data: requestParam }, 'getCityList')) }; getDistrictByCityId(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (Utils.checkParamKeyEmpty(options, 'id')) { return } var requestParam = { id: options.id || '', output: 'json', key: that.key }; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'getDistrictByCityId') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_AREA_LIST, data: requestParam }, 'getDistrictByCityId')) }; calculateDistance(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (Utils.checkParamKeyEmpty(options, 'to')) { return } var requestParam = { mode: options.mode || 'walking', to: Utils.location2query(options.to), output: 'json', key: that.key }; if (options.from) { options.location = options.from } if (requestParam.mode == 'straight') { var locationsuccess = function (result) { var locationTo = Utils.getEndLocation(requestParam.to); var data = { message: "query ok", result: { elements: [] }, status: 0 }; for (var i = 0; i < locationTo.length; i++) { data.result.elements.push({ distance: Utils.getDistance(result.latitude, result.longitude, locationTo[i].lat, locationTo[i].lng), duration: 0, from: { lat: result.latitude, lng: result.longitude }, to: { lat: locationTo[i].lat, lng: locationTo[i].lng } }) } var calculateResult = data.result.elements; var distanceResult = []; for (var i = 0; i < calculateResult.length; i++) { distanceResult.push(calculateResult[i].distance) } return options.success(data, { calculateResult: calculateResult, distanceResult: distanceResult }) }; Utils.locationProcess(options, locationsuccess) } else { var locationsuccess = function (result) { requestParam.from = result.latitude + ',' + result.longitude; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'calculateDistance') } wx.request(Utils.buildWxRequestConfig(options, { url: URL_DISTANCE, data: requestParam }, 'calculateDistance')) }; Utils.locationProcess(options, locationsuccess) } }; direction(options) { var that = this; options = options || {}; Utils.polyfillParam(options); if (Utils.checkParamKeyEmpty(options, 'to')) { return } var requestParam = { output: 'json', key: that.key }; if (typeof options.to == 'string') { requestParam.to = options.to } else { requestParam.to = options.to.latitude + ',' + options.to.longitude } var SET_URL_DIRECTION = null; options.mode = options.mode || MODE.driving; SET_URL_DIRECTION = URL_DIRECTION + options.mode; if (options.from) { options.location = options.from } if (options.mode == MODE.driving) { if (options.from_poi) { requestParam.from_poi = options.from_poi } if (options.heading) { requestParam.heading = options.heading } if (options.speed) { requestParam.speed = options.speed } if (options.accuracy) { requestParam.accuracy = options.accuracy } if (options.road_type) { requestParam.road_type = options.road_type } if (options.to_poi) { requestParam.to_poi = options.to_poi } if (options.from_track) { requestParam.from_track = options.from_track } if (options.waypoints) { requestParam.waypoints = options.waypoints } if (options.policy) { requestParam.policy = options.policy } if (options.plate_number) { requestParam.plate_number = options.plate_number } } if (options.mode == MODE.transit) { if (options.departure_time) { requestParam.departure_time = options.departure_time } if (options.policy) { requestParam.policy = options.policy } } var locationsuccess = function (result) { requestParam.from = result.latitude + ',' + result.longitude; if (options.sig) { requestParam.sig = Utils.getSig(requestParam, options.sig, 'direction', options.mode) } wx.request(Utils.buildWxRequestConfig(options, { url: SET_URL_DIRECTION, data: requestParam }, 'direction')) }; Utils.locationProcess(options, locationsuccess) } }; module.exports = QQMapWX;
\ No newline at end of file
diff --git a/manifest.json b/manifest.json
index cad1f86..18eaddc 100644
--- a/manifest.json
+++ b/manifest.json
@@ -78,5 +78,14 @@
"uniStatistics" : {
"enable" : false
},
- "vueVersion" : "2"
+ "vueVersion" : "2",
+ "h5" : {
+ "sdkConfigs" : {
+ "maps" : {
+ "qqmap" : {
+ "key" : "E7OBZ-KRKWW-5VKRH-36XXR-TB3NS-MUFHB"
+ }
+ }
+ }
+ }
}
diff --git a/page_fix/fix_index.vue b/page_fix/fix_index.vue
index 7c7c4c2..c6fcdae 100644
--- a/page_fix/fix_index.vue
+++ b/page_fix/fix_index.vue
@@ -11,6 +11,14 @@
mode="">
+
+
+ 车辆扫码
+
+
+ 车辆搜索
+
+
维修换电
@@ -70,14 +78,18 @@
this.$store.dispatch('userInfo', this.$u).then(() => {
// 执行其他操作...
});
+
+
+
+
+ this.getordernum()
+ },
+ onLoad() {
if(uni.getStorageSync('adminAreaid')){
this.areaId = uni.getStorageSync('adminAreaid')
}
this.getArea()
-
-
- this.getordernum()
},
computed: {
userId() {
@@ -85,44 +97,122 @@
},
},
methods: {
+ topages() {
+ uni.navigateTo({
+ url: '/pages_admin/order/search_device'
+ })
+ },
+ qecodelock() {
+ uni.scanCode({
+ onlyFromCamera: true,
+ scanType: ['qrCode'],
+ success: res => {
+
+ let sn = null;
+ let queryParams = res.result.split('?')[1];
+ if (queryParams) {
+ let params = queryParams.split('&');
+ params.forEach(param => {
+ let [key, value] = param.split('=');
+ if (key === 'sn') {
+ sn = value;
+ }
+ });
+ }
+
+ this.sn = sn
+ if (this.sn != '') {
+ uni.navigateTo({
+ url: '/pages_admin/order/device_detail?id=' + this.sn
+ })
+ }
+
+ },
+ fail: err => {
+ console.error('扫描失败:', err);
+ uni.showToast({
+ title: '扫描失败',
+ icon: 'none'
+ });
+ }
+ });
+ },
toggleIconAndCallout() {
this.showIconAndCallout = !this.showIconAndCallout;
- if (this.showIconAndCallout) {
- const newMarkers = [];
- this.parkingList.forEach(item => {
- newMarkers.push({
- id: parseFloat(item.parkingId),
- latitude: parseFloat(item.latitude),
- longitude: parseFloat(item.longitude),
- width: 20,
- height: 28.95,
- iconPath: item.type == 1 ?
- 'https://lxnapi.ccttiot.com/bike/img/static/up2xXqAgwCX5iER600k3' : item
- .type == 2 ?
- 'https://lxnapi.ccttiot.com/bike/img/static/u53BAQcFIX3vxsCzEZ7t' :
- ' https://lxnapi.ccttiot.com/bike/img/static/uDNY5Q4zOiZTCBTA2Jdq',
- callout: {
- content: item.parkingName,
- color: '#ffffff',
- fontSize: 14,
- borderRadius: 10,
- bgColor: item.type == 1 ? '#3A7EDB' : item.type == 2 ? '#FFC107' :
- '#FF473E',
- padding: 6,
- display: 'ALWAYS'
- },
- isCalloutVisible: true // 添加标记
- });
- });
- this.$set(this, 'markers', [...this.markers, ...newMarkers]);
- } else {
- // 过滤掉所有气泡显示的标记
- this.$set(this, 'markers', this.markers.filter(marker => !marker.isCalloutVisible));
- }
-
+ this.markers.forEach(marker => {
+ if (marker.isParking) {
+ marker.callout.display = this.showIconAndCallout ? 'ALWAYS' : 'BYCLICK';
+ }
+ });
},
+ getParking() {
+ let data = {
+ areaId: this.areaId
+ };
+ this.$u.get('/app/parking/list?', data).then((res) => {
+ if (res.code === 200) {
+ const newMarkers = [];
+ const type1Data = [];
+ const type2Data = [];
+ const type3Data = [];
+ res.rows.forEach(row => {
+ if (row.type == 1) {
+ type1Data.push(row);
+ } else if (row.type == 2) {
+ type2Data.push(row);
+ } else if (row.type == 3) {
+ type3Data.push(row);
+ }
+ newMarkers.push({
+ id: parseFloat(row.parkingId),
+ latitude: parseFloat(row.latitude),
+ longitude: parseFloat(row.longitude),
+ width: 20,
+ height: 29,
+ iconPath: row.type == 1 ?
+ 'https://lxnapi.ccttiot.com/bike/img/static/up2xXqAgwCX5iER600k3' :
+ row.type == 2 ?
+ 'https://lxnapi.ccttiot.com/bike/img/static/u53BAQcFIX3vxsCzEZ7t' :
+ 'https://lxnapi.ccttiot.com/bike/img/static/uDNY5Q4zOiZTCBTA2Jdq',
+ callout: {
+ content: row.parkingName,
+ color: '#ffffff',
+ fontSize: 14,
+ borderRadius: 10,
+ bgColor: row.type == 1 ? '#3A7EDB' : row.type == 2 ?
+ '#FFC107' : '#FF473E',
+ padding: 6,
+ display: 'BYCLICK'
+ },
+ isParking: true
+ });
+ });
+
+ this.$set(this, 'markers', [...this.markers, ...newMarkers]);
+
+ const validBoundaries1 = type1Data.map(row => row.boundaryStr).filter(boundary =>
+ typeof boundary === 'string' && boundary.trim() !== '');
+ const polylines1 = this.convertBoundaryToPolylines(validBoundaries1, 1);
+
+ const validBoundaries2 = type2Data.map(row => row.boundaryStr).filter(boundary =>
+ typeof boundary === 'string' && boundary.trim() !== '');
+ const polylines2 = this.convertBoundaryToPolylines(validBoundaries2, 2);
+
+ const validBoundaries3 = type3Data.map(row => row.boundaryStr).filter(boundary =>
+ typeof boundary === 'string' && boundary.trim() !== '');
+ const polylines3 = this.convertBoundaryToPolylines(validBoundaries3, 3);
+
+ this.polyline = this.polyline.concat(polylines1, polylines2, polylines3);
+
+ } else {
+ console.error("Error fetching parking data:", res);
+ }
+ }).catch(error => {
+ console.error("Error fetching parking data:", error);
+ });
+ },
onMarkerTap(e) {
console.log('点击了标记:', e);
this.sn = e.detail.markerId;
@@ -137,7 +227,7 @@
let data ={
areaId:this.areaId
}
- this.$u.get(`/appVerify/adminOrder/list?adminId=` ,data).then((res) => {
+ this.$u.get(`/appVerify/adminOrder/list?` ,data).then((res) => {
if (res.code == 200) {
console.log('调用了');
this.listData = res.rows;
@@ -206,15 +296,24 @@
});
},
getArea() {
- this.$u.get('/app/area/list').then((res) => {
- if (res.code === 200) {
- const polylines = res.rows.filter(area => area.boundaryStr)
- .map(area => this.convertBoundaryToPolyline(area.boundaryStr));
- this.polyline = polylines;
+
+ let id = this.areaId
+ this.$u.get("/app/area/" + id).then((res) => {
+
+ if (res.code == 200) {
+ this.latitude =res.data.latitude
+ this.longitude = res.data.longitude
+ // this.areaInfo = res.data
+ const polylines = this.convertBoundaryToPolyline(res.data.boundaryStr)
+ this.polyline.push(polylines)
this.getmarks()
+ } else {
+ uni.showToast({
+ title: res.msg,
+ icon: 'none',
+ duration: 2000
+ });
}
- }).catch(error => {
- console.error("获取区域数据失败:", error);
});
},
convertBoundaryToPolylines(boundaries,num) {
@@ -303,52 +402,7 @@
}
},
- getParking() {
- // 发送请求获取数据\
- let data ={
- areaId:this.areaId
- }
- this.$u.get('/app/parking/list?',data).then((res) => {
- if (res.code === 200) {
- // 处理接口返回的数据
- const type1Data = [];
- const type2Data = [];
- const type3Data = [];
-
- res.rows.forEach(row => {
- if (row.type == 1) {
- type1Data.push(row);
- } else if (row.type == 2) {
- type2Data.push(row);
- } else if (row.type == 3) {
- type3Data.push(row);
- }
- });
- const validBoundaries = type1Data.map(row => row.boundaryStr).filter(boundary =>
- typeof boundary === 'string' && boundary.trim() !== '');
- const polylines = this.convertBoundaryToPolylines(validBoundaries,1);
-
-
- const validBoundaries1 = type2Data.map(row => row.boundaryStr).filter(boundary =>
- typeof boundary === 'string' && boundary.trim() !== '');
- const polylines1 = this.convertBoundaryToPolylines(validBoundaries1,2);
-
- const validBoundaries2 = type3Data.map(row => row.boundaryStr).filter(boundary =>
- typeof boundary === 'string' && boundary.trim() !== '');
- const polylines2 = this.convertBoundaryToPolylines(validBoundaries2,3);
- // 将处理后的数据添加到 this.polyline 中
- this.polyline = this.polyline.concat(polylines2);
- this.polyline = this.polyline.concat(polylines1);
- this.polyline = this.polyline.concat(polylines);
- // console.log(this.polyline);
- this.parkingList = res.rows
-
- }
- }).catch(error => {
- console.error("Error fetching parking data:", error);
- });
- },
convertBoundaryToPolyline(boundary) {
if (!boundary) return null;
const points = JSON.parse(boundary).map(coord => ({
@@ -374,11 +428,11 @@
.page {
width: 750rpx;
-
+ height: 100vh;
.map {
position: relative;
width: 750rpx;
- height: 1250rpx;
+ height: 65vh;
.park {
position: absolute;
@@ -399,13 +453,41 @@
}
}
}
-
+ .btn_box {
+ width: 100%;
+ display: flex;
+ flex-wrap: nowrap;
+
+ .btn1 {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 376rpx;
+ height: 5vh;
+ background: #D4ECFF;
+ font-weight: 500;
+ font-size: 40rpx;
+ color: #4C97E7;
+ }
+
+ .btn2 {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 374rpx;
+ height: 5vh;
+ background: #4C97E7;
+ font-weight: 500;
+ font-size: 40rpx;
+ color: #FFFFFF;
+ }
+ }
.bot {
padding: 40rpx 32rpx;
- position: fixed;
- bottom: 0;
+ // position: fixed;
+ // bottom: 0;
width: 750rpx;
- height: 272rpx;
+ height: 30vh;
background: #fff;
border-radius: 60rpx 60rpx 0 0;
diff --git a/page_fix/repair/repair_detail.vue b/page_fix/repair/repair_detail.vue
index 32fcf82..52caa6a 100644
--- a/page_fix/repair/repair_detail.vue
+++ b/page_fix/repair/repair_detail.vue
@@ -801,7 +801,10 @@
this.$u.get(`/appVerify/adminOrder/` + this.id).then((res) => {
if (res.code == 200) {
this.info=res.data
- this.mac=res.data.mac
+ this.mac=res.data.device.mac
+ if(res.data.device.onlineStatus==0){
+ this.Binddevice()
+ }
this.latitude=parseFloat(this.info.device.latitude)
this.longitude=parseFloat(this.info.device.longitude)
this.historyList()
diff --git a/page_user/agreement.vue b/page_user/agreement.vue
index 85a2050..cd2dd13 100644
--- a/page_user/agreement.vue
+++ b/page_user/agreement.vue
@@ -101,17 +101,11 @@
},
getagree() {
- let ids = 0
- let id= uni.getStorageSync('deptId');
- if(id==100){
- ids=15
- }else if(id==101){
- ids=14
- }
+
- this.$u.get(`/app/article/list?areaId=${ids}&tag=agreement`).then((res) => {
+ this.$u.get(`/app/article/9`).then((res) => {
if (res.code === 200) {
- this.info = res.rows[0];
+ this.info = res.data;
this.insertPhoneNumberAndDate();
} else {
uni.showToast({
diff --git a/page_user/bulelink.vue b/page_user/bulelink.vue
index 4d28343..ac6ed0a 100644
--- a/page_user/bulelink.vue
+++ b/page_user/bulelink.vue
@@ -1,6 +1,6 @@
-
@@ -16,11 +16,11 @@
backgroundColor: "#fff",
},
content: '',
- info:{}
+ wordinfo:{}
}
},
onLoad() {
- this.getword()
+ this.getword(18)
},
methods: {
// getclass() {
@@ -40,21 +40,19 @@
// }
// });
// },
- getword() {
-
- this.$u.get("/app/article/list?classifyId=" + 100).then((res) => {
-
- if (res.code == 200) {
- this.info = res.rows.find(item => item.articleId == 18);
- this.content = this.info.content
- this.content = this.replaceImgWithImage(this.content)
-
+ getword(id) {
+
+ this.$u.get(`/app/article/`+id).then((res) => {
+ if (res.code === 200) {
+ this.wordinfo=res.data
+ this.content = this.replaceImgWithImage(this.wordinfo.content);
+
} else {
- // uni.showToast({
- // title: res.msg,
- // icon: 'none',
- // duration: 2000
- // });
+ uni.showToast({
+ title: res.msg,
+ icon: 'none',
+ duration: 2000
+ });
}
});
},
diff --git a/page_user/khfw/khfw.vue b/page_user/khfw/khfw.vue
index 2060ea0..2090f89 100644
--- a/page_user/khfw/khfw.vue
+++ b/page_user/khfw/khfw.vue
@@ -180,7 +180,7 @@
const encodedContent = encodeURIComponent(JSON.stringify(item.content));
// 跳转到新页面并传递编码后的 title 和 content
uni.navigateTo({
- url: `/page_user/word?title=${encodedTitle}&content=${encodedContent}`
+ url: `/page_user/word?id=`+item.articleId
});
},
changeitx(itme,index){
@@ -237,6 +237,7 @@
.page {
width: 750rpx;
+ padding-bottom: 300rpx;
.pops {
padding: 46rpx 36rpx;
position: fixed;
@@ -465,6 +466,12 @@
}
}
}
+ .qs_li:first-child{
+ margin-top: 40rpx;
+ }
+ .qs_li:last-child{
+ border-bottom: 2rpx solid #fff;
+ }
.qs_li{
margin-top: 10rpx;
display: flex;
diff --git a/page_user/word.vue b/page_user/word.vue
index e55ed8e..40b84cb 100644
--- a/page_user/word.vue
+++ b/page_user/word.vue
@@ -1,6 +1,6 @@
-
@@ -17,25 +17,40 @@
userinfo: {},
areaInfo: {},
content: '',
- title: ''
+ title: '',
+ wordinfo:{}
+
}
},
onLoad(options) {
- if (options.title && options.content) {
+ if (options.id ) {
// 解码 title 和 content
- const title = decodeURIComponent(options.title);
- const content = JSON.parse(decodeURIComponent(options.content));
- // 设置数据
- this.title = title
- this.content = content
- this.content = this.replaceImgWithImage(this.content);
+ let id =options.id
+ this.getword(id)
+ // this.content = this.replaceImgWithImage(this.content);
// this.insertPhoneNumberAndDate()
- console.log(this.content, 'this.contentthis.contentthis.contentthis.content');
+ // console.log(this.content, 'this.contentthis.contentthis.contentthis.content');
}
},
methods: {
-
+
+ getword(id) {
+
+ this.$u.get(`/app/article/`+id).then((res) => {
+ if (res.code === 200) {
+ this.wordinfo=res.data
+ this.content = this.replaceImgWithImage(this.wordinfo.content);
+
+ } else {
+ uni.showToast({
+ title: res.msg,
+ icon: 'none',
+ duration: 2000
+ });
+ }
+ });
+ },
getagree() {
let id = uni.getStorageSync('areaId');
this.$u.get(`/app/article/list?areaId=${id}&tag=agreement`).then((res) => {
@@ -78,7 +93,7 @@
.page {
width: 750rpx;
-
+ padding-bottom: 100rpx;
.cont {
margin-top: 34rpx ;
margin: 0 auto;
diff --git a/page_user/yczn.vue b/page_user/yczn.vue
index 8b4ce6a..bec8125 100644
--- a/page_user/yczn.vue
+++ b/page_user/yczn.vue
@@ -15,11 +15,12 @@
bgc: {
backgroundColor: "#fff",
},
- content: ''
+ content: '',
+ wordinfo:{}
}
},
onLoad() {
- this.getword()
+ this.getword(19)
},
methods: {
// getclass() {
@@ -39,21 +40,19 @@
// }
// });
// },
- getword() {
-
- this.$u.get("/app/article/list?classifyId=" + 100).then((res) => {
-
- if (res.code == 200) {
- let abb = res.rows.find(item => item.articleId == 19);
- this.content = abb.content
- this.content = this.replaceImgWithImage(this.content)
-
+ getword(id) {
+
+ this.$u.get(`/app/article/`+id).then((res) => {
+ if (res.code === 200) {
+ this.wordinfo=res.data
+ this.content = this.replaceImgWithImage(this.wordinfo.content);
+
} else {
- // uni.showToast({
- // title: res.msg,
- // icon: 'none',
- // duration: 2000
- // });
+ uni.showToast({
+ title: res.msg,
+ icon: 'none',
+ duration: 2000
+ });
}
});
},
diff --git a/pages/index/index.vue b/pages/index/index.vue
index b695a14..57e0ea0 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -23,7 +23,7 @@
@@ -805,6 +805,7 @@
const app = getApp();
var xBlufi = require("@/utils/blufi/xBlufi.js");
let _this = null;
+ import QQMapWX from '@/common/qqmap-wx-jssdk.js'
export default {
data() {
return {
@@ -917,6 +918,10 @@
statusBarHeight: 0,
// 导航栏高度
navBarHeight: 0,
+
+ mappolyline: [],
+ qqmapsdk: {},
+ index: 0,
}
},
watch: {
@@ -944,6 +949,10 @@
// #endif
+ this.qqmapsdk = new QQMapWX({
+ key: 'E7OBZ-KRKWW-5VKRH-36XXR-TB3NS-MUFHB' // 自己申请的key值
+ });
+
this.gps.deptId = uni.getStorageSync('deptId');
if (e.q) {
@@ -1076,7 +1085,7 @@
that.latitude = lb.latitude;
that.longitude = lb.longitude;
-
+ that.routePlanning(27.10557727,120.25709224)
console.log(that.areaInfo, 'that.areaInfo');
that.getArea()
if (that.qParam != 'null' && that.showagre == false) {
@@ -1164,6 +1173,11 @@
},
onBeforeUnmount() {
+ if (this.timers) {
+ clearInterval(this.timers);
+ this.timers = null;
+ console.log('定时器已清除');
+ }
xBlufi.listenDeviceMsgEvent(false, this.funListenDeviceMsgEvent);
xBlufi.notifyStartDiscoverBle({
'isStart': false
@@ -1204,10 +1218,59 @@
},
},
methods: {
+ routePlanning(end_lat,end_long) {
+ console.log('调用了');
+ let that = this
+ that.qqmapsdk.direction({
+ mode: 'driving', // 驾车
+ from: { // 起始位置(当前位置)坐标
+ latitude: that.latitude,
+ longitude: that.longitude
+ },
+ to: { // 目的地坐标
+ latitude: end_lat,
+ longitude: end_long,
+ },
+ // 目的地位置坐标
+ success(res) {
+ // console.log(res)
+ var coors = res.result.routes[0].polyline
+ var pl = [] // 点串数组
+ // 坐标解压(返回的点串坐标,通过前向差分进行压缩)
+ var kr = 1000000
+ for (var i = 2; i < coors.length; i++) {
+ coors[i] = Number(coors[i - 2]) + Number(coors[i]) / kr
+ }
+ // 将解压后的坐标放入点串数组pl中
+ for (var i = 0; i < coors.length; i += 2) {
+ pl.push({
+ latitude: coors[i],
+ longitude: coors[i + 1]
+ })
+ }
+ console.log('点串数组', pl)
+ // 设置polyline属性,将路线显示出来,将解压坐标第一个数据作为起点
+ that.mappolyline = [{
+ points: pl,
+ color: '#367EEF', // 线的填充色
+ width: 3, // 折现宽度
+ borderWidth: 2, // 边线宽度
+ borderColor: '#5B98FD', // 边线颜色
+ lineCap: 'square', // 线端头
+ showArrow: true, // 沿线路方向显示箭头
+ }]
+ console.log(that.mappolyline,'that.mappolylinethat.mappolyline');
+ },
+ fail(res) {
+ console.log('resresresresresresres',res)
+ }
+ })
+ },
+
totxtpage() {
this.seeDetail = true
uni.navigateTo({
- url:'/page_user/bulelink'
+ url: '/page_user/bulelink'
})
},
offopencar() {
@@ -4484,7 +4547,7 @@
// duration: 4000
// });
// } else
- if (this.deviceInfos.status == 0) {
+ if (this.deviceInfos.status == 0) {
uni.showToast({
title: '车辆未上架,请使用其他车辆',
icon: 'none',
@@ -4527,7 +4590,8 @@
duration: 4000
});
} else if (this.deviceInfos.status == 1) {
- this.showdevice = true;
+ this.routePlanning(res.data.latitude,res.data.longitude)
+ this.showdevice = true
this.type = 1;
this.deviceIndex = 1;
}
@@ -4569,6 +4633,7 @@
this.deviceInfos = res.data;
if (num == 0) {
+ this.routePlanning(res.data.latitude,res.data.longitude)
this.showdevice = true;
this.type = 0;
} else {
@@ -4581,7 +4646,7 @@
// duration: 4000
// });
// } else
- if (this.deviceInfos
+ if (this.deviceInfos
.status ==
0) {
uni.showToast({
@@ -4640,6 +4705,7 @@
} else if (this.deviceInfos
.status ==
1) {
+ this.routePlanning(res.data.latitude,res.data.longitude)
this.showdevice = true;
this.type = 1;
this.deviceIndex = 1;
@@ -4871,6 +4937,7 @@
.navBarBox {
position: fixed;
z-index: 10;
+ background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
.navBar {
width: 100vw;
diff --git a/pages/my.vue b/pages/my.vue
index e496ed6..c6a449b 100644
--- a/pages/my.vue
+++ b/pages/my.vue
@@ -280,7 +280,7 @@
confirm(e){
// console.log(e);
uni.setStorageSync('adminAreaid', e[0].value);
- if(this.totype=2){
+ if(this.totype==2){
uni.navigateTo({
url:'/pages_admin/admin_index'
diff --git a/pages_admin/admin_index.vue b/pages_admin/admin_index.vue
index c9648e2..f4524a3 100644
--- a/pages_admin/admin_index.vue
+++ b/pages_admin/admin_index.vue
@@ -12,14 +12,14 @@
+ :decorationVisible="true" @change="handleRangeChange" >
@@ -149,7 +149,7 @@
statusidx: 7,
deviceNum: {},
areaId: 0,
- showIconAndCallout:false
+ showIconAndCallout: false
}
@@ -165,15 +165,15 @@
// this.getareaid()
- if(uni.getStorageSync('adminAreaid')){
+ if (uni.getStorageSync('adminAreaid')) {
this.areaId = uni.getStorageSync('adminAreaid')
this.getArea()
-
+
this.allVehicleNum()
}
-
+
// this.getmarks();
},
onLoad() {
@@ -182,15 +182,15 @@
uni.getLocation({
type: 'wgs84',
success: function(lb) {
-
-
+
+
// that.latitude = Number(lb.latitude.toFixed(5)) - 0.005
// that.longitude = Number(lb.longitude.toFixed(5)) + 0.005
console.log(that.areaInfo, 'that.areaInfo');
// that.setMapScale()
// that.getmarks()
-
-
+
+
//
},
fail: function(error) {
@@ -202,7 +202,7 @@
// that.getmarks()
// 在这里处理获取位置信息失败的情况
}
-
+
})
},
computed: {
@@ -211,44 +211,34 @@
},
},
methods: {
- toggleIconAndCallout() {
- this.showIconAndCallout = !this.showIconAndCallout;
- if (this.showIconAndCallout) {
- const newMarkers = [];
- this.parkingList.forEach(item => {
- newMarkers.push({
- id: parseFloat(item.parkingId),
- latitude: parseFloat(item.latitude),
- longitude: parseFloat(item.longitude),
- width: 20,
- height: 28.95,
- iconPath: item.type == 1 ?'https://lxnapi.ccttiot.com/bike/img/static/up2xXqAgwCX5iER600k3':item.type == 2 ?'https://lxnapi.ccttiot.com/bike/img/static/u53BAQcFIX3vxsCzEZ7t' :' https://lxnapi.ccttiot.com/bike/img/static/uDNY5Q4zOiZTCBTA2Jdq',
- callout: {
- content: item.parkingName,
- color: '#ffffff',
- fontSize: 14,
- borderRadius: 10,
- bgColor: item.type == 1 ? '#3A7EDB' : item.type == 2 ? '#FFC107' :
- '#FF473E',
- padding: 6,
- display: 'ALWAYS'
- },
- isCalloutVisible: true // 添加标记
- });
- });
- this.$set(this, 'markers', [...this.markers, ...newMarkers]);
- } else {
- // 过滤掉所有气泡显示的标记
- this.$set(this, 'markers', this.markers.filter(marker => !marker.isCalloutVisible));
+ onMapRegionChange(event) {
+ // console.log('regionchange', event)
+ // console.log('当前地图缩放级别:', event.detail.scale);
+ if (event.detail.type == 'end'&&event.detail.scale>17) {
+ this.getCenterLanLat()
}
-
+ // 你可以在这里执行你需要的操作
+ },
+ getCenterLanLat() {
+ let that = this
+ uni.createMapContext("map", this).getCenterLocation({
+ type: 'gcj02',
+ success: (res) => {
+ console.log("当前地图中心的经纬度", res)
+ // that.gps.latitude = res.latitude;
+ // that.gps.longitude = res.longitude;
+ // that.getAreas()
+ //其他逻辑
+ },
+ fail: (err) => {}
+ })
},
getareaid() {
this.$u.post('/appVerify/getAreaId').then((res) => {
if (res.code == 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
// this.areaId=res.data
-
+
// console.log(this.polyline);
} else {
this.areaId = 14
@@ -340,6 +330,134 @@
this.statusidx = ids
this.getmarks()
},
+
+ format(val) {
+ return val + '%'
+ },
+ handleRangeChange(e) {
+ // 每次滑动时清除之前的定时器
+ clearTimeout(timerId);
+ // 设置一个新的定时器,在滑动停止后 500ms 执行 getmarks 方法
+ timerId = setTimeout(() => {
+ this.rangeValue = e;
+ this.getmarks();
+ }, 500);
+ },
+ onMarkerTap(e) {
+ if (e.type === 'markertap') {
+ console.log('点击了标记:', e.markerId);
+ // 这里可以根据需要处理点击标记的逻辑
+ // 阻止事件冒泡
+
+ this.sn = e.markerId
+ for (let i = 0; i < this.listData.length; i++) {
+
+ if (this.listData[i].sn == this.sn) {
+ uni.navigateTo({
+ url: '/pages_admin/order/device_detail?id=' + this.sn
+ })
+ }
+ }
+ // this.listData
+
+ }
+
+ },
+ todetail() {
+ for (let item of this.fixdata) {
+ if (item.sn == this.sn) {
+ uni.navigateTo({
+ url: '/page_fix/repair/repair_detail?id=' + item.id
+ })
+ }
+ }
+
+ for (let item of this.eledata) {
+ if (item.sn == this.sn) {
+ uni.navigateTo({
+ url: '/page_fix/repair/repair_detail?id=' + item.id
+ })
+ }
+ }
+
+
+ },
+
+
+
+ getArea() {
+
+ let id = this.areaId
+ this.$u.get("/app/area/" + id).then((res) => {
+
+ if (res.code == 200) {
+ this.latitude = res.data.latitude
+ this.longitude = res.data.longitude
+ // this.areaInfo = res.data
+ const polylines = this.convertBoundaryToPolyline(res.data.boundaryStr)
+ this.polyline.push(polylines)
+ this.getmarks()
+ setTimeout(()=>{
+ this.getParking()
+ },500)
+
+ } else {
+ uni.showToast({
+ title: res.msg,
+ icon: 'none',
+ duration: 2000
+ });
+ }
+ });
+ },
+ convertBoundaryToPolylines(boundaries, num) {
+ const colorMap = {
+ 1: {
+ fillColor: "#3A7EDB10",
+ strokeColor: "#3A7EDB"
+ },
+ 2: {
+ fillColor: "#FFF5D640",
+ strokeColor: "#FFC107"
+ },
+ 3: {
+ fillColor: "#FFD1CF40",
+ strokeColor: "#FF473E"
+ }
+ };
+
+ if (!colorMap[num]) {
+ console.error("Invalid type number:", num);
+ return [];
+ }
+
+ return boundaries.map(boundary => {
+ if (!boundary) return null;
+ let coords;
+ try {
+ coords = JSON.parse(boundary);
+ } catch (error) {
+ console.error("Error parsing boundary JSON:", error);
+ return null;
+ }
+ if (!Array.isArray(coords)) {
+ console.error("Parsed boundary is not an array:", coords);
+ return null;
+ }
+ const points = coords.map(coord => ({
+ latitude: parseFloat(coord[1]),
+ longitude: parseFloat(coord[0])
+ }));
+ return {
+ points: points,
+ fillColor: colorMap[num].fillColor,
+ strokeColor: colorMap[num].strokeColor,
+ strokeWidth: 2, //描边宽度
+ zIndex: 1, //层级
+ };
+ }).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
+
+ },
markstause() {
// console.log(this.status9, 'aaaaaaa');
this.status0.forEach(item => {
@@ -371,6 +489,7 @@
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
+ // joinCluster: true,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
@@ -412,6 +531,7 @@
// title: item.deviceName,
width: 40,
height: 40,
+ // joinCluster: true,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '骑行' + item.remainingPower + '%', // 修改为你想要显示的文字内容
@@ -432,6 +552,7 @@
// title: item.deviceName,
width: 40,
height: 40,
+ // joinCluster: true,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '锁车' + item.remainingPower + '%', // 修改为你想要显示的文字内容
@@ -489,26 +610,25 @@
},
getmarks() {
-
- this.markers = []
- this.status0 = []
- this.status1 = []
- this.status2 = []
- this.status3 = []
- this.status4 = []
- this.status8 = []
- this.status9 = []
+ this.markers = [];
+ this.status0 = [];
+ this.status1 = [];
+ this.status2 = [];
+ this.status3 = [];
+ this.status4 = [];
+ this.status8 = [];
+ this.status9 = [];
let data = {
powerStart: this.rangeValue[0],
powerEnd: this.rangeValue[1],
sort: 'desc',
areaId: this.areaId
- }
+ };
if (this.statusidx != 7 && this.statusidx != 9) {
- data.status = this.statusidx
+ data.status = this.statusidx;
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
- this.showmap = true
+ this.showmap = true;
this.listData = res.data;
res.data.forEach(item => {
if (item.onlineStatus == 0) {
@@ -516,7 +636,6 @@
} else {
if (item.status == 0) {
this.status0.push(item);
-
} else if (item.status == 1) {
this.status1.push(item);
} else if (item.status == 2) {
@@ -529,25 +648,19 @@
this.status8.push(item);
}
}
-
-
- // 可以在这里执行其他针对每个项的操作
});
- this.markstause()
- // this.getParking()
- // this.markers = markers;
-
+ this.markstause();
} else {
- // 处理接口返回错误的情况
+ // Handle API error
}
}).catch(error => {
- // 处理接口请求失败的情况
+ // Handle request error
});
- } else if (this.statusidx == 7) {
- data.status = ''
+ } else if (this.statusidx == 7 ) {
+ data.status = '';
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
- this.showmap = true
+ this.showmap = true;
this.listData = res.data;
res.data.forEach(item => {
if (item.onlineStatus == 0) {
@@ -555,7 +668,6 @@
} else {
if (item.status == 0) {
this.status0.push(item);
-
} else if (item.status == 1) {
this.status1.push(item);
} else if (item.status == 2) {
@@ -568,217 +680,100 @@
this.status8.push(item);
}
}
-
-
- // 可以在这里执行其他针对每个项的操作
});
- this.markstause()
- // this.getParking()
- // this.markers = markers;
-
+ this.markstause();
} else {
- // 处理接口返回错误的情况
+ // Handle API error
}
}).catch(error => {
- // 处理接口请求失败的情况
+ // Handle request error
});
- } else if (this.statusidx == 9) {
+ }else if ( this.statusidx == 9) {
data.status = ''
+ data.onlineStatus=0
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
- this.showmap = true
+ this.showmap = true;
this.listData = res.data;
res.data.forEach(item => {
-
if (item.onlineStatus == 0) {
this.status9.push(item);
+ } else {
+ if (item.status == 0) {
+ this.status0.push(item);
+ } else if (item.status == 1) {
+ this.status1.push(item);
+ } else if (item.status == 2) {
+ this.status2.push(item);
+ } else if (item.status == 3) {
+ this.status3.push(item);
+ } else if (item.status == 4) {
+ this.status4.push(item);
+ } else if (item.status == 8) {
+ this.status8.push(item);
+ }
}
- // 可以在这里执行其他针对每个项的操作
});
- this.markstause()
- // this.getParking()
- // this.markers = markers;
-
+ this.markstause();
} else {
- // 处理接口返回错误的情况
+ // Handle API error
}
}).catch(error => {
- // 处理接口请求失败的情况
+ // Handle request error
});
}
-
- this.getParking()
- },
- format(val) {
- return val + '%'
- },
- handleRangeChange(e) {
- // 每次滑动时清除之前的定时器
- clearTimeout(timerId);
- // 设置一个新的定时器,在滑动停止后 500ms 执行 getmarks 方法
- timerId = setTimeout(() => {
- this.rangeValue = e;
- this.getmarks();
- }, 500);
- },
- onMarkerTap(e) {
- if (e.type === 'markertap') {
- console.log('点击了标记:', e.markerId);
- // 这里可以根据需要处理点击标记的逻辑
- // 阻止事件冒泡
-
- this.sn = e.markerId
- for (let i = 0; i < this.listData.length; i++) {
-
- if (this.listData[i].sn == this.sn) {
- uni.navigateTo({
- url: '/pages_admin/order/device_detail?id=' + this.sn
- })
- }
- }
- // this.listData
-
- }
-
- },
- todetail() {
- for (let item of this.fixdata) {
- if (item.sn == this.sn) {
- uni.navigateTo({
- url: '/page_fix/repair/repair_detail?id=' + item.id
- })
- }
- }
-
- for (let item of this.eledata) {
- if (item.sn == this.sn) {
- uni.navigateTo({
- url: '/page_fix/repair/repair_detail?id=' + item.id
- })
- }
- }
-
-
- },
-
-
-
- getArea() {
- let id = this.areaId
- this.$u.get("/app/area/" + id).then((res) => {
-
- if (res.code == 200) {
- this.latitude =res.data.latitude
- this.longitude = res.data.longitude
- // this.areaInfo = res.data
- const polylines = this.convertBoundaryToPolyline(res.data.boundaryStr)
- this.polyline.push(polylines)
- this.getmarks()
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none',
- duration: 2000
- });
+ this.clusterMarkers(); // 调用聚合方法
+ },
+ clusterMarkers() {
+ this.markers.forEach(marker => {
+ let added = false;
+ for (let i = 0; i < this.clusters.length; i++) {
+ const cluster = this.clusters[i];
+ const distance = this.calculateDistance(cluster.latitude, cluster.longitude, marker.latitude, marker.longitude);
+ if (distance < this.clusterRadius) {
+ // 合并到现有聚合
+ cluster.markers.push(marker);
+ cluster.latitude = (cluster.latitude * cluster.markers.length + marker.latitude) / (cluster.markers.length + 1);
+ cluster.longitude = (cluster.longitude * cluster.markers.length + marker.longitude) / (cluster.markers.length + 1);
+ added = true;
+ break;
+ }
+ }
+ if (!added) {
+ // 创建新的聚合
+ this.clusters.push({
+ latitude: marker.latitude,
+ longitude: marker.longitude,
+ markers: [marker]
+ });
+ }
+ });
+ },
+ // 计算两点间的距离
+ calculateDistance(lat1, lon1, lat2, lon2) {
+ const p = 0.017453292519943295; // Math.PI / 180
+ const c = Math.cos;
+ const a = 0.5 - c((lat2 - lat1) * p)/2 +
+ c(lat1 * p) * c(lat2 * p) *
+ (1 - c((lon2 - lon1) * p))/2;
+ return 12742 * Math.asin(Math.sqrt(a)); // 2 * R; R = 6371 km
+ },
+ toggleIconAndCallout() {
+ this.showIconAndCallout = !this.showIconAndCallout;
+ this.markers.forEach(marker => {
+ if (marker.isParking) {
+ marker.callout.display = this.showIconAndCallout ? 'ALWAYS' : 'BYCLICK';
}
});
},
- convertBoundaryToPolylines(boundaries, num) {
- if (num == 1) {
- console.log('判断');
- return boundaries.map(boundary => {
- if (!boundary) return null;
- let coords;
- try {
- coords = JSON.parse(boundary);
- } catch (error) {
- console.error("Error parsing boundary JSON:", error);
- return null;
- }
- if (!Array.isArray(coords)) {
- console.error("Parsed boundary is not an array:", coords);
- return null;
- }
- const points = coords.map(coord => ({
- latitude: coord[1],
- longitude: coord[0]
- }));
- return {
- points: points,
- fillColor: "#3A7EDB10", //填充颜色
- strokeColor: "#3A7EDB", //描边颜色
- strokeWidth: 2, //描边宽度
- zIndex: 1, //层级
-
- };
- }).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
- } else if (num == 2) {
- return boundaries.map(boundary => {
- if (!boundary) return null;
- let coords;
- try {
- coords = JSON.parse(boundary);
- } catch (error) {
- console.error("Error parsing boundary JSON:", error);
- return null;
- }
- if (!Array.isArray(coords)) {
- console.error("Parsed boundary is not an array:", coords);
- return null;
- }
- const points = coords.map(coord => ({
- latitude: coord[1],
- longitude: coord[0]
- }));
- return {
- points: points,
- fillColor: "#FFF5D640", //填充颜色
- strokeColor: "#FFC107", //描边颜色
- strokeWidth: 2, //描边宽度
- zIndex: 1, //层级
-
- };
- }).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
- } else if (num == 3) {
- return boundaries.map(boundary => {
- if (!boundary) return null;
- let coords;
- try {
- coords = JSON.parse(boundary);
- } catch (error) {
- console.error("Error parsing boundary JSON:", error);
- return null;
- }
- if (!Array.isArray(coords)) {
- console.error("Parsed boundary is not an array:", coords);
- return null;
- }
- const points = coords.map(coord => ({
- latitude: coord[1],
- longitude: coord[0]
- }));
- return {
- points: points,
- fillColor: "#FFD1CF40", //填充颜色
- strokeColor: "#FF473E", //描边颜色
- strokeWidth: 2, //描边宽度
- zIndex: 1, //层级
-
- };
- }).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
- }
-
- },
getParking() {
- // 发送请求获取数据
let data = {
-
areaId: this.areaId
- }
- this.$u.get('/app/parking/list?',data).then((res) => {
+ };
+ this.$u.get('/app/parking/list?', data).then((res) => {
if (res.code === 200) {
- // 处理接口返回的数据
+ const newMarkers = [];
const type1Data = [];
const type2Data = [];
const type3Data = [];
@@ -791,39 +786,64 @@
} else if (row.type == 3) {
type3Data.push(row);
}
+
+ newMarkers.push({
+ id: parseFloat(row.parkingId),
+ latitude: parseFloat(row.latitude),
+ longitude: parseFloat(row.longitude),
+ width: 20,
+ height: 29,
+ iconPath: row.type == 1 ?
+ 'https://lxnapi.ccttiot.com/bike/img/static/up2xXqAgwCX5iER600k3' :
+ row.type == 2 ?
+ 'https://lxnapi.ccttiot.com/bike/img/static/u53BAQcFIX3vxsCzEZ7t' :
+ 'https://lxnapi.ccttiot.com/bike/img/static/uDNY5Q4zOiZTCBTA2Jdq',
+ callout: {
+ content: row.parkingName,
+ color: '#ffffff',
+ fontSize: 14,
+ borderRadius: 10,
+ bgColor: row.type == 1 ? '#3A7EDB' : row.type == 2 ?
+ '#FFC107' : '#FF473E',
+ padding: 6,
+ display: 'BYCLICK'
+ },
+ isParking: true
+ });
});
- const validBoundaries = type1Data.map(row => row.boundaryStr).filter(boundary =>
- typeof boundary === 'string' && boundary.trim() !== '');
- const polylines = this.convertBoundaryToPolylines(validBoundaries, 1);
+ this.$set(this, 'markers', [...this.markers, ...newMarkers]);
- const validBoundaries1 = type2Data.map(row => row.boundaryStr).filter(boundary =>
+ const validBoundaries1 = type1Data.map(row => row.boundaryStr).filter(boundary =>
typeof boundary === 'string' && boundary.trim() !== '');
- const polylines1 = this.convertBoundaryToPolylines(validBoundaries1, 2);
+ const polylines1 = this.convertBoundaryToPolylines(validBoundaries1, 1);
- const validBoundaries2 = type3Data.map(row => row.boundaryStr).filter(boundary =>
+ const validBoundaries2 = type2Data.map(row => row.boundaryStr).filter(boundary =>
typeof boundary === 'string' && boundary.trim() !== '');
- const polylines2 = this.convertBoundaryToPolylines(validBoundaries2, 3);
- // 将处理后的数据添加到 this.polyline 中
- this.polyline = this.polyline.concat(polylines2);
- this.polyline = this.polyline.concat(polylines1);
- this.polyline = this.polyline.concat(polylines);
- console.log(this.polyline, 'this.polyline');
- // console.log(this.polyline);
- this.parkingList = res.rows
+ const polylines2 = this.convertBoundaryToPolylines(validBoundaries2, 2);
+
+ const validBoundaries3 = type3Data.map(row => row.boundaryStr).filter(boundary =>
+ typeof boundary === 'string' && boundary.trim() !== '');
+ const polylines3 = this.convertBoundaryToPolylines(validBoundaries3, 3);
+
+ this.polyline = this.polyline.concat(polylines1, polylines2, polylines3);
+
+ } else {
+ console.error("Error fetching parking data:", res);
}
}).catch(error => {
console.error("Error fetching parking data:", error);
});
},
+
convertBoundaryToPolyline(boundary) {
if (!boundary) return null;
-
+
const points = JSON.parse(boundary).map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
-
+
const polyline = {
points: points,
fillColor: "#55888840", //填充颜色
@@ -831,7 +851,7 @@
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
-
+
return polyline;
},
}
@@ -878,6 +898,7 @@
}
+
.park {
position: fixed;
display: flex;
@@ -890,12 +911,13 @@
width: 82rpx;
height: 82rpx;
z-index: 10;
-
+
.img {
width: 82rpx;
height: 82rpx;
}
}
+
.btn_box {
width: 100%;
display: flex;
diff --git a/pages_admin/worke/worke_Operation.vue b/pages_admin/worke/worke_Operation.vue
index 759a8b5..bddce9e 100644
--- a/pages_admin/worke/worke_Operation.vue
+++ b/pages_admin/worke/worke_Operation.vue
@@ -1,5 +1,5 @@
-
+
@@ -37,18 +37,26 @@
- 总营收 ¥{{info.income.totalIncome}}
+ 总营收
+ ¥{{info.income.totalIncome}}
+ ¥--
- 累计待支付 ¥{{info.income.totalUnpaid}}
+ 累计待支付
+ ¥{{info.income.totalUnpaid}}
+ ¥--
- 已支付 ¥{{info.income.totalPaid}}
+ 已支付
+ ¥{{info.income.totalPaid}}
+ ¥--
- 已退款 ¥{{info.income.totalRefund}}
+ 已退款
+ ¥{{info.income.totalRefund}}
+ ¥--
@@ -65,21 +73,27 @@
-
+
已支付:¥{{info.income.totalRidingFee}}
-
- 已支付:¥{{info.income.totalRidingRefund}}
+
+ 已支付:¥--
+
+
+ 已支付:¥{{info.income.totalDispatchFee}}
+
+
+ 已支付:¥--
- 已退款:¥{{info.income.totalDispatchFee}}
+ 已退款:¥{{ displayAmount(info.income.totalRidingRefund)}}
- 已退款:¥{{info.income.totalDispatchRefund}}
+ 已退款:¥{{ displayAmount(info.income.totalDispatchRefund)}}
@@ -95,20 +109,20 @@
- 已支付:¥{{info.income.totalAppointmentFee}}
+ 已支付:¥{{displayAmount(info.income.totalAppointmentFee) }}
- 已支付:¥{{info.income.totalAppointmentRefund}}
+ 已支付:¥{{displayAmount(info.income.totalManageFee) }}
- 已退款:¥{{info.income.totalManageFee}}
+ 已退款:¥{{displayAmount(info.income.totalAppointmentRefund) }}
- 已退款:¥{{info.income.totalManageRefund}}
+ 已退款:¥{{displayAmount(info.income.totalManageRefund) }}
@@ -121,7 +135,7 @@
- {{info.order.ridingOrder}}
+ {{displayAmount(info.order.ridingOrder) }}
新增行程订单
@@ -129,7 +143,7 @@
- {{info.order.paidOrder}}
+ {{displayAmount(info.order.paidOrder) }}
已支付订单
@@ -137,7 +151,7 @@
- {{info.order.refundOrder}}
+ {{displayAmount(info.order.refundOrder)}}
已退款订单
@@ -145,7 +159,7 @@
- {{info.order.unpaidOrder}}
+ {{displayAmount(info.order.unpaidOrder) }}
待支付订单
@@ -162,7 +176,7 @@
- {{info.device.inOperationDevice}}
+ {{displayAmount(info.device.inOperationDevice)}}
运营中车辆
@@ -170,7 +184,7 @@
- {{info.device.inOrderDevice}}
+ {{displayAmount(info.device.inOrderDevice)}}
有订单车辆
@@ -178,7 +192,7 @@
- {{info.device.noOrderDevice}}
+ {{displayAmount(info.device.noOrderDevice)}}
无订单车辆
@@ -196,7 +210,7 @@
- {{info.user.totalUser}}
+ {{ displayAmount(info.user.totalUser)}}
用户总数
@@ -204,7 +218,7 @@
- {{info.user.newUser}}
+ {{displayAmount(info.user.newUser) }}
新增用户
@@ -212,7 +226,7 @@
- {{info.user.leaseUser}}
+ {{displayAmount(info.user.leaseUser) }}
租赁用户
@@ -221,10 +235,8 @@
-
-
+
+
@@ -248,24 +260,28 @@
second: false
},
cutidx: 0,
- info:{},
- areaId:0,
+ info: {},
+ areaId: 0,
+ loading:false
}
},
onLoad() {
let today = new Date();
// 获取七天前的日期
-
+
// 格式化日期为 yyyy-MM-dd
this.firsTime = this.formatDate(today);
this.lasTime = this.formatDate(today);
- if(uni.getStorageSync('adminAreaid')){
+ if (uni.getStorageSync('adminAreaid')) {
this.areaId = uni.getStorageSync('adminAreaid')
this.operatingData()
}
-
+
},
- methods:{
+ methods: {
+ displayAmount(amount) {
+ return amount ? amount : '--';
+ },
changeTime(num) {
if (num == 0) {
this.cutidx = num;
@@ -278,7 +294,7 @@
let yesterday = new Date();
yesterday.setDate(yesterday.getDate() - 1);
this.firsTime = this.formatDate(yesterday);
- this.lasTime = this.formatDate(new Date());
+ this.lasTime =this.formatDate(yesterday);
this.operatingData()
} else if (num == 2) {
this.cutidx = num;
@@ -307,30 +323,30 @@
let data = {
timeStart: this.firsTime,
timeEnd: this.lasTime,
- areaId:this.areaId
+ areaId: this.areaId
}
this.$u.get('/appVerify/operatingData', data).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
- this.info=res.data
+ this.info = res.data
+ this.loading=true
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
confirm1(e) {
-
+
this.firsTime = e.year + '-' + e.month + '-' + e.day
- this.cutidx=-1
+ this.cutidx = -1
},
confirm2(e) {
this.lasTime = e.year + '-' + e.month + '-' + e.day
- this.cutidx=-1
+ this.cutidx = -1
},
}
-
+
}
-