12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367 |
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import {
- TOKENNAME,
- HTTP_REQUEST_URL
- } from '../config/app.js';
- import store from '../store';
- import {
- customerType
- } from '@/api/api.js'
- // #ifdef APP-PLUS
- import permision from "./permission.js"
- // #endif
- export default {
- /**
- * opt object | string
- * to_url object | string
- * 例:
- * this.Tips('/pages/test/test'); 跳转不提示
- * this.Tips({title:'提示'},'/pages/test/test'); 提示并跳转
- * this.Tips({title:'提示'},{tab:1,url:'/pages/index/index'}); 提示并跳转值table上
- * tab=1 一定时间后跳转至 table上
- * tab=2 一定时间后跳转至非 table上
- * tab=3 一定时间后返回上页面
- * tab=4 关闭所有页面,打开到应用内的某个页面
- * tab=5 关闭当前页面,跳转到应用内的某个页面
- */
- Tips: function(opt, to_url) {
- if (typeof opt == 'string') {
- to_url = opt;
- opt = {};
- }
- let title = opt.title || '',
- icon = opt.icon || 'none',
- endtime = opt.endtime || 2000,
- success = opt.success;
- if (title) uni.showToast({
- title: title,
- icon: icon,
- duration: endtime,
- success
- })
- if (to_url != undefined) {
- if (typeof to_url == 'object') {
- let tab = to_url.tab || 1,
- url = to_url.url || '';
- switch (tab) {
- case 1:
- //一定时间后跳转至 table
- setTimeout(function() {
- uni.navigateTo({
- url: url
- })
- }, endtime);
- break;
- case 2:
- //跳转至非table页面
- setTimeout(function() {
- uni.navigateTo({
- url: url,
- })
- }, endtime);
- break;
- case 3:
- //返回上页面
- setTimeout(function() {
- // #ifndef H5
- uni.navigateBack({
- delta: parseInt(url),
- })
- // #endif
- // #ifdef H5
- history.back();
- // #endif
- }, endtime);
- break;
- case 4:
- //关闭所有页面,打开到应用内的某个页面
- setTimeout(function() {
- uni.reLaunch({
- url: url,
- })
- }, endtime);
- break;
- case 5:
- //关闭当前页面,跳转到应用内的某个页面
- setTimeout(function() {
- uni.redirectTo({
- url: url,
- })
- }, endtime);
- break;
- }
- } else if (typeof to_url == 'function') {
- setTimeout(function() {
- to_url && to_url();
- }, endtime);
- } else {
- //没有提示时跳转不延迟
- setTimeout(function() {
- uni.navigateTo({
- url: to_url,
- })
- }, title ? endtime : 0);
- }
- }
- },
- // 处理价格
- HandlePrice: function(num, type) {
- let obj = []
- if (typeof num == 'number') {
- obj = num.toString().split(".");
- } else {
- obj = num.split(".");
- }
- if (type) {
- if (obj.length) {
- return '.' + obj[1];
- } else {
- return ''
- }
- } else {
- return obj[0];
- }
- },
- // 将网络图片转化为base64
- getBase64Image: function(imageUrl) {
- return new Promise((resolve, reject) => {
- uni.request({
- url: imageUrl, // 服务器图片地址
- responseType: 'arraybuffer', // 设置响应类型为arraybuffer以接收二进制数据
- success: (res) => {
- let base64Image = 'data:image/jpeg;base64,' + uni.arrayBufferToBase64(res
- .data);
- resolve(base64Image);
- },
- fail: (err) => {
- reject(err);
- }
- });
- });
- },
- // 计算头部自定义导航高度;
- getWXStatusHeight() {
- // 获取距上
- const barTop = uni.getSystemInfoSync().statusBarHeight;
- // #ifdef MP
- // 获取胶囊按钮位置信息
- const menuButtonInfo = wx.getMenuButtonBoundingClientRect() || 0
- // 获取导航栏高度
- const barHeight = menuButtonInfo.height + (menuButtonInfo.top - barTop) * 2
- let barWidth = menuButtonInfo.width
- // #endif
- // #ifndef MP
- // 获取导航栏高度
- const barHeight = parseInt(barTop) + 10;
- let barWidth = '100%'
- // #endif
- return {
- barHeight,
- barTop,
- barWidth
- }
- },
- /**
- * 省市区地址分解
- */
- addressInfo: function(str) {
- let reg = /.+?(省|市|自治区|自治州|行政区|盟|旗|县|区)/g // 省市区的正则
- const area = str.match(reg) // 分割省市区
- let citys = ['北京市', '天津市', '上海市', '重庆市']
- let address_component = {
- city: "",
- district: "",
- province: area[0]
- }
- if (citys.indexOf(area[0]) == -1) {
- address_component.city = area[1]
- address_component.district = area[2]
- } else {
- address_component.city = area[0]
- address_component.district = area[1]
- }
- return address_component
- },
- /**
- * 跳转路径封装函数
- * @param url 跳转路径
- * 选择跳转到其他小程序时,在h5也可以跳转路径
- */
- JumpPath: function(url) {
- let arr = url.split('@APPID=');
- if (arr.length > 1) {
- //#ifdef MP
- uni.navigateToMiniProgram({
- appId: arr[arr.length - 1], // 此为生活缴费appid
- path: arr[0], // 此为生活缴费首页路径
- envVersion: "release",
- success: res => {
- console.log("打开成功", res);
- },
- fail: err => {
- console.log('sgdhgf', err);
- }
- })
- //#endif
- //#ifndef MP
- this.Tips({
- title: 'h5与app端不支持跳转外部小程序'
- });
- //#endif
- } else {
- if (url == '/pages/short_video/appSwiper/index' || url == '/pages/short_video/nvueSwiper/index') {
- //#ifdef APP
- url = '/pages/short_video/appSwiper/index'
- //#endif
- //#ifndef APP
- url = '/pages/short_video/nvueSwiper/index'
- //#endif
- }
- if (url.indexOf("http") != -1) {
- // #ifdef H5
- location.href = url;
- // #endif
- // #ifdef MP || APP-PLUS
- uni.navigateTo({
- url: `/pages/annex/web_view/index?url=${url}`
- });
- // #endif
- } else {
- if (['/pages/goods_cate/goods_cate', '/pages/order_addcart/order_addcart', '/pages/user/index',
- '/pages/index/index'
- ]
- .indexOf(url) == -1) {
- uni.navigateTo({
- url: url
- })
- } else {
- uni.reLaunch({
- url: url
- })
- }
- }
- }
- },
- /**
- * 移除数组中的某个数组并组成新的数组返回
- * @param array array 需要移除的数组
- * @param int index 需要移除的数组的键值
- * @param string | int 值
- * @return array
- *
- */
- ArrayRemove: function(array, index, value) {
- const valueArray = [];
- if (array instanceof Array) {
- for (let i = 0; i < array.length; i++) {
- if (typeof index == 'number' && array[index] != i) {
- valueArray.push(array[i]);
- } else if (typeof index == 'string' && array[i][index] != value) {
- valueArray.push(array[i]);
- }
- }
- }
- return valueArray;
- },
- /**
- * 生成海报获取文字
- * @param string text 为传入的文本
- * @param int num 为单行显示的字节长度
- * @return array
- */
- textByteLength: function(text, num) {
- let strLength = 0;
- let rows = 1;
- let str = 0;
- let arr = [];
- for (let j = 0; j < text.length; j++) {
- if (text.charCodeAt(j) > 255) {
- strLength += 2;
- if (strLength > rows * num) {
- strLength++;
- arr.push(text.slice(str, j));
- str = j;
- rows++;
- }
- } else {
- strLength++;
- if (strLength > rows * num) {
- arr.push(text.slice(str, j));
- str = j;
- rows++;
- }
- }
- }
- arr.push(text.slice(str, text.length));
- return [strLength, arr, rows] // [处理文字的总字节长度,每行显示内容的数组,行数]
- },
- /**
- * 获取分享海报
- * @param array arr2 海报素材
- * @param string store_name 素材文字
- * @param string price 价格
- * @param string ot_price 原始价格
- * @param function successFn 回调函数
- *
- *
- */
- PosterCanvas: function(fontColor, themeColor, siteName, arr2, store_name, price, ot_price, posterTitle, successFn) {
- let that = this;
- // uni.showLoading({
- // title: '海报生成中',
- // mask: true
- // });
- const ctx = uni.createCanvasContext('myCanvas');
- ctx.clearRect(0, 0, 0, 0);
- /**
- * 只能获取合法域名下的图片信息,本地调试无法获取
- *
- */
- ctx.fillStyle = '#fff';
- ctx.fillRect(0, 0, 750, 1306);
- uni.getImageInfo({
- src: arr2[0],
- success: function(res) {
- const WIDTH = res.width;
- // const HEIGHT = res.height;
- // ctx.drawImage(arr2[0], 0, 0, WIDTH, 1050);
- ctx.save();
- ctx.setFillStyle(themeColor);
- ctx.fillRect(0, 0, WIDTH, 108);
- ctx.setFontSize(33)
- ctx.setFillStyle('#fff');
- ctx.setTextAlign('center');
- ctx.fillText(posterTitle, WIDTH / 2, 65);
- ctx.save();
- ctx.drawImage(arr2[1], 32, 141, 685, 685);
- ctx.save();
- // ctx.setFillStyle(themeColor);
- // ctx.fillRect(32, 847, 85, 40);
- // ctx.setFontSize(30)
- // ctx.setFillStyle('#fff');
- // ctx.setTextAlign('left');
- // ctx.fillText('商城', 43, 878);
- // ctx.save();
- // ctx.setFontSize(36)
- // ctx.setFillStyle('#000');
- // ctx.fillText(siteName, 140, 880);
- // ctx.save();
- // const CONTENT_ROW_LENGTH = 36;
- const CONTENT_ROW_LENGTH = 35;
- let [contentLeng, contentArray, contentRows] = that.textByteLength(store_name,
- CONTENT_ROW_LENGTH);
- if (contentRows > 2) {
- contentRows = 2;
- let textArray = contentArray.slice(0, 2);
- textArray[textArray.length - 1] += '...';
- contentArray = textArray;
- }
- ctx.setTextAlign('left');
- ctx.setFontSize(38);
- ctx.setFillStyle('#000');
- let contentHh = 38;
- for (let m = 0; m < contentArray.length; m++) {
- if (m) {
- ctx.fillText(contentArray[m], 30, 900 + contentHh * m + 18);
- } else {
- ctx.fillText(contentArray[m], 30, 900 + contentHh * m);
- }
- }
- ctx.save();
- ctx.setTextAlign('left')
- ctx.setFontSize(32);
- ctx.setFillStyle('#999');
- ctx.fillText('¥' + ot_price, 30, 1148 + contentHh);
- var underline = function(ctx, text, x, y, size, color, thickness, offset) {
- var width = ctx.measureText(text).width;
- switch (ctx.textAlign) {
- case "center":
- x -= (width / 2);
- break;
- case "right":
- x -= width;
- break;
- }
- y += size + offset;
- ctx.beginPath();
- ctx.strokeStyle = color;
- ctx.lineWidth = thickness;
- ctx.moveTo(x, y);
- ctx.lineTo(x + width, y);
- ctx.stroke();
- }
- underline(ctx, '¥' + ot_price, 30, 1146, 28, '#999', 2, 0);
- ctx.save();
- ctx.setTextAlign('left')
- ctx.setFontSize(54);
- ctx.setFillStyle(fontColor);
- ctx.fillText('¥' + price, 20, 1070 + contentHh);
- ctx.save();
- ctx.setFillStyle('#F5F5F5');
- ctx.fillRect(0, 1222, WIDTH, 84);
- ctx.setFontSize(28);
- ctx.setFillStyle('#999');
- ctx.setTextAlign('center');
- ctx.fillText('长按识别图中的二维码查看商品详情', WIDTH / 2, 1272);
- ctx.save();
- let r = 93;
- let d = r * 2;
- let cx = WIDTH - d - 30;
- // let cy = 1112;
- let cy = 1000;
- ctx.arc(cx + r, cy + r, r, 0, 2 * Math.PI);
- ctx.drawImage(arr2[2], cx, cy, d, d);
- ctx.restore();
- // ctx.setTextAlign('left')
- // ctx.setFontSize(28);
- // ctx.setFillStyle('#999');
- // ctx.fillText('长按或扫描查看', 490, 1030 + contentHh);
- ctx.draw(true, function() {
- uni.canvasToTempFilePath({
- canvasId: 'myCanvas',
- fileType: 'png',
- // destWidth: WIDTH,
- // destHeight: HEIGHT,
- success: function(res) {
- // uni.hideLoading();
- successFn && successFn(res.tempFilePath);
- }
- })
- });
- },
- fail: function(err) {
- // uni.hideLoading();
- that.Tips({
- title: '无法获取图片信息'
- });
- }
- })
- },
- /**
- * 获取砍价/拼团海报
- * @param array arr2 海报素材 背景图
- * @param string store_name 素材文字
- * @param string price 价格
- * @param string ot_price 原始价格
- * @param function successFn 回调函数
- *
- *
- */
- bargainPosterCanvas: function(arr2, title, label, msg, price, wd, hg, successFn) {
- let that = this;
- const ctx = uni.createCanvasContext('myCanvas');
- ctx.clearRect(0, 0, 0, 0);
- /**
- * 只能获取合法域名下的图片信息,本地调试无法获取
- *
- */
- ctx.fillStyle = '#fff';
- ctx.fillRect(0, 0, wd * 2, hg * 2);
- uni.getImageInfo({
- src: arr2[0],
- success: function(res) {
- const WIDTH = res.width;
- const HEIGHT = res.height;
- ctx.drawImage(arr2[0], 0, 0, wd, hg);
- // 保证在不同机型对应坐标准确
- let labelx = 0.6500 //标签x
- let labely = 0.166 //标签y
- let pricex = 0.1857 //价格x
- let pricey = 0.180 //价格x
- let codex = 0.385 //二维码
- let codey = 0.77
- let picturex = 0.1571 //商品图左上点
- let picturey = 0.2916
- let picturebx = 0.6857 //商品图右下点
- let pictureby = 0.3916
- let msgx = 0.1036 //msg
- let msgy = 0.2306
- let codew = 0.25
- ctx.drawImage(arr2[1], wd * picturex, hg * picturey, wd * picturebx, hg * pictureby);
- ctx.drawImage(arr2[2], wd * codex, hg * codey, wd * codew, wd * codew);
- ctx.save();
- //标题
- const CONTENT_ROW_LENGTH = 28;
- let [contentLeng, contentArray, contentRows] = that.textByteLength(title,
- CONTENT_ROW_LENGTH);
- if (contentRows > 2) {
- contentRows = 2;
- let textArray = contentArray.slice(0, 2);
- textArray[textArray.length - 1] += '…';
- contentArray = textArray;
- }
- ctx.setTextAlign('left');
- ctx.setFillStyle('#000');
- if (contentArray.length < 2) {
- ctx.setFontSize(20);
- } else {
- ctx.setFontSize(20);
- }
- let contentHh = 8;
- for (let m = 0; m < contentArray.length; m++) {
- if (m) {
- ctx.fillText(contentArray[m], wd * msgx, 35 + contentHh * m + 18, 1100);
- } else {
- ctx.fillText(contentArray[m], wd * msgx, 35, 1100);
- }
- }
- // 标签内容
- ctx.setTextAlign('left')
- ctx.setFontSize(16);
- ctx.setFillStyle('#FFF');
- ctx.fillText(label, wd * labelx, hg * labely);
- ctx.save();
- // 价格
- ctx.setFillStyle('red');
- ctx.setFontSize(26);
- ctx.fillText(price, wd * pricex, hg * pricey);
- ctx.save();
- // msg
- ctx.setFillStyle('#333');
- ctx.setFontSize(16);
- ctx.fillText(msg, wd * msgx, hg * msgy);
- ctx.save();
- ctx.draw(true, () => {
- uni.canvasToTempFilePath({
- canvasId: 'myCanvas',
- fileType: 'png',
- quality: 1,
- success: (res) => {
- successFn && successFn(res.tempFilePath);
- uni.hideLoading();
- }
- })
- });
- },
- fail: function(err) {
- uni.hideLoading();
- that.Tips({
- title: '无法获取图片信息'
- });
- }
- })
- },
- /**
- * 图片圆角设置
- * @param string x x轴位置
- * @param string y y轴位置
- * @param string w 图片宽
- * @param string y 图片高
- * @param string r 圆角值
- */
- handleBorderRect(ctx, x, y, w, h, r) {
- ctx.beginPath();
- // 左上角
- ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
- ctx.moveTo(x + r, y);
- ctx.lineTo(x + w - r, y);
- ctx.lineTo(x + w, y + r);
- // 右上角
- ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI);
- ctx.lineTo(x + w, y + h - r);
- ctx.lineTo(x + w - r, y + h);
- // 右下角
- ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
- ctx.lineTo(x + r, y + h);
- ctx.lineTo(x, y + h - r);
- // 左下角
- ctx.arc(x + r, y + h - r, r, 0.5 * Math.PI, Math.PI);
- ctx.lineTo(x, y + r);
- ctx.lineTo(x + r, y);
- ctx.fill();
- ctx.closePath();
- },
- /**
- * 用户信息分享海报
- * @param array arr2 海报素材 1背景 0二维码
- * @param string nickname 昵称
- * @param string sitename 价格
- * @param function successFn 回调函数
- *
- *
- */
- userPosterCanvas: function(arr2, nickname, sitename, index, w, h, successFn) {
- let that = this;
- // uni.showLoading({
- // title: '海报生成中',
- // mask: true
- // });
- const ctx = uni.createCanvasContext('myCanvas' + index);
- ctx.clearRect(0, 0, 0, 0);
- /**
- * 只能获取合法域名下的图片信息,本地调试无法获取
- *
- */
- uni.getImageInfo({
- src: arr2[1],
- success: function(res) {
- // const WIDTH = res.width;
- // const HEIGHT = res.height;
- ctx.fillStyle = '#fff';
- console.log(0, 0, w, h,'0, 0, w, h')
- ctx.fillRect(0, 0, w, h);
- ctx.drawImage(arr2[1], 0, 0, w, h);
- ctx.save();
- ctx.setFontSize(16);
- ctx.setFillStyle('#333');
- // #ifdef APP
- ctx.fillText(nickname, w/18*3, h*0.82);
- // #endif
- // #ifndef APP
- ctx.fillText(nickname, w/18*3, h*0.82);
- // #endif
-
- // #ifdef APP
- ctx.drawImage(arr2[0], w/2-50, h/2-50, 100, 100);
- // #endif
- // #ifndef APP
- ctx.drawImage(arr2[0], w/2-50, h/2-50, 100, 100);
- // #endif
- ctx.save();
- ctx.save();
- const CONTENT_ROW_LENGTH = 25;
- const store_name = '邀请您加入' + sitename;
- let [contentLeng, contentArray, contentRows] = that.textByteLength(store_name,
- CONTENT_ROW_LENGTH);
- if (contentRows > 2) {
- contentRows = 2;
- let textArray = contentArray.slice(0, 2);
- textArray[textArray.length - 1] += '...';
- contentArray = textArray;
- }
- ctx.setTextAlign('left');
- ctx.setFillStyle('#999999');
- ctx.setFontSize(12);
- let contentHh = 38;
- for (let m = 0; m < contentArray.length; m++) {
- if (m) {
- ctx.fillText(contentArray[m], w/18*3, h*0.85);
- } else {
- ctx.fillText(contentArray[m], w/18*3, h*0.85);
- }
- }
- ctx.save();
- // #ifdef APP
- that.handleBorderRect(ctx, w/18*1, h*0.80, 24, 24, 12)
- // #endif
- // #ifndef APP
- that.handleBorderRect(ctx, w/18*1, h*0.80, 24, 24, 12)
- // #endif
- ctx.clip();
- // #ifdef APP
- ctx.drawImage(arr2[2],w/18*1, h*0.80, 24, 24);
- // #endif
- // #ifndef APP
- ctx.drawImage(arr2[2], w/18*1, h*0.80, 24, 24);
- // #endif
- ctx.draw(true, function() {
- uni.canvasToTempFilePath({
- canvasId: 'myCanvas' + index,
- fileType: 'png',
- quality: 1,
- success: function(res) {
- uni.hideLoading();
- successFn && successFn(res.tempFilePath);
- }
- })
- });
- },
- fail: function(err) {
- uni.hideLoading();
- that.Tips({
- title: ''
- });
- }
- })
- },
- // uniapp 判断 IOS和Android的GPS是否开启
- checkOpenGPSServiceByAndroidIOS() {
- let system = uni.getSystemInfoSync(); // 获取系统信息
- console.log('yyy', system);
- if (system.platform === 'android') { // 判断平台
- var context = plus.android.importClass("android.content.Context");
- var locationManager = plus.android.importClass("android.location.LocationManager");
- var main = plus.android.runtimeMainActivity();
- var mainSvr = main.getSystemService(context.LOCATION_SERVICE);
- if (!mainSvr.isProviderEnabled(locationManager.GPS_PROVIDER)) {
- return false
- } else {
- return true
- }
- } else if (system.platform === 'ios' || 'devtools') {
- var cllocationManger = plus.ios.import("CLLocationManager");
- var enable = cllocationManger.locationServicesEnabled();
- var status = cllocationManger.authorizationStatus();
- plus.ios.deleteObject(cllocationManger);
- if (enable && status != 2) {
- return true
- console.log("手机系统的定位已经打开");
- } else {
- return false
- console.log("手机系统的定位没有打开");
- }
- }
- },
- /*
- * 单图上传
- * @param object opt
- * @param callable successCallback 成功执行方法 data
- * @param callable errorCallback 失败执行方法
- */
- uploadImageOne: function(opt, successCallback, errorCallback) {
- let that = this;
- // #ifdef APP
- let boolad = uni.getStorageSync("boolLoad") || false
- // if (permision.isIOS) {
- if (boolad) {
- upimg()
- } else {
- let title = '申请相册权限';
- let content = "是否允许访问相册用于上传图片?"
- uni.showModal({
- title,
- content,
- cancelText: '拒绝',
- confirmText: '允许',
- success: res => {
- if (res.confirm) {
- uni.setStorageSync("boolLoad", true)
- upimg()
- }
- },
- });
- }
- // #endif
- // #ifndef APP
- upimg()
- // #endif
- function upimg() {
- if (typeof opt === 'string') {
- let url = opt;
- opt = {};
- opt.url = url;
- }
- let count = opt.count || 1,
- sizeType = opt.sizeType || ['compressed'],
- sourceType = opt.sourceType || ['album', 'camera'],
- is_load = opt.is_load || true,
- uploadUrl = opt.url || '',
- inputName = opt.name || 'pics',
- fileType = opt.fileType || 'image';
- uni.chooseImage({
- count: count, //最多可以选择的图片总数
- sizeType: sizeType, // 可以指定是原图还是压缩图,默认二者都有
- sourceType: sourceType, // 可以指定来源是相册还是相机,默认二者都有
- success: function(res) {
- //启动上传等待中...
- uni.showLoading({
- title: '图片上传中',
- });
- uni.uploadFile({
- url: HTTP_REQUEST_URL + '/api/' + uploadUrl,
- filePath: res.tempFilePaths[0],
- fileType: fileType,
- name: inputName,
- formData: {
- 'filename': inputName
- },
- header: {
- // #ifdef MP
- "Content-Type": "multipart/form-data",
- // #endif
- [TOKENNAME]: 'Bearer ' + store.state.app.token
- },
- success: function(res) {
- uni.hideLoading();
- if (res.statusCode == 403) {
- that.Tips({
- title: res.data
- });
- } else if (res.statusCode == 413) {
- that.Tips({
- title: '上传图片失败,请重新上传小尺寸图片'
- });
- } else {
- let data = res.data ? JSON.parse(res.data) : {};
- if (data.status == 200) {
- successCallback && successCallback(data)
- } else {
- errorCallback && errorCallback(data);
- that.Tips({
- title: data.msg
- });
- }
- }
- },
- fail: function(res) {
- uni.hideLoading();
- that.Tips({
- title: '上传图片失败'
- });
- }
- })
- }
- })
- }
- },
- /*
- * 单图上传压缩版
- * @param object opt
- * @param callable successCallback 成功执行方法 data
- * @param callable errorCallback 失败执行方法
- */
- uploadImageChange: function(opt, successCallback, errorCallback, sizeCallback) {
- let that = this;
- // #ifdef APP
- let boolad = uni.getStorageSync("boolLoad") || false
- // if (permision.isIOS) {
- if (boolad || plus.os.name == "iOS") {
- upimg()
- } else {
- let title = '申请相册及相机权限';
- let content = "是否允许访问相册和相机用于拍摄上传图片?"
- uni.showModal({
- title,
- content,
- cancelText: '拒绝',
- confirmText: '允许',
- success: res => {
- if (res.confirm) {
- uni.setStorageSync("boolLoad", true)
- upimg()
- }
- },
- });
- }
- // #endif
- // #ifndef APP
- upimg()
- // #endif
- function upimg() {
- if (typeof opt === 'string') {
- let url = opt;
- opt = {};
- opt.url = url;
- }
- let count = opt.count || 1,
- sizeType = opt.sizeType || ['compressed'],
- sourceType = opt.sourceType || ['album', 'camera'],
- is_load = opt.is_load || true,
- uploadUrl = opt.url || '',
- inputName = opt.name || 'pics',
- fileType = opt.fileType || 'image';
- uni.chooseImage({
- count: count, //最多可以选择的图片总数
- sizeType: sizeType, // 可以指定是原图还是压缩图,默认二者都有
- sourceType: sourceType, // 可以指定来源是相册还是相机,默认二者都有
- success: function(res) {
- //启动上传等待中...
- let imgSrc
- let objImg = res.tempFilePaths;
- objImg.forEach(item => {
- uni.getImageInfo({
- src: item,
- success(ress) {
- uni.showLoading({
- title: '图片上传中',
- });
- if (res.tempFiles[0].size <= 2097152) {
- uploadImg(ress.path)
- return
- }
- // uploadImg(canvasPath.tempFilePath)
- let canvasWidth, canvasHeight, xs, maxWidth = 750
- xs = ress.width / ress.height // 宽高比例
- if (ress.width > maxWidth) {
- canvasWidth = maxWidth // 这里是最大限制宽度
- canvasHeight = maxWidth / xs
- } else {
- canvasWidth = ress.width
- canvasHeight = ress.height
- }
- sizeCallback && sizeCallback({
- w: canvasWidth,
- h: canvasHeight
- })
- let canvas = uni.createCanvasContext('canvas');
- canvas.width = canvasWidth
- canvas.height = canvasHeight
- canvas.clearRect(0, 0, canvasWidth, canvasHeight);
- canvas.drawImage(ress.path, 0, 0, canvasWidth,
- canvasHeight)
- canvas.save();
- // 这里的画布drawImage是一种异步属性 可能存在未绘制全就执行了draw的问题 so添加延迟
- setTimeout(e => {
- canvas.draw(true, () => {
- uni.canvasToTempFilePath({
- canvasId: 'canvas',
- fileType: 'JPEG',
- destWidth: canvasWidth,
- destHeight: canvasHeight,
- quality: 0.7,
- success: function(
- canvasPath
- ) {
- uploadImg(
- canvasPath
- .tempFilePath
- )
- }
- })
- });
- }, 200)
- }
- })
- })
- }
- })
- }
- function uploadImg(filePath) {
- uni.uploadFile({
- url: HTTP_REQUEST_URL + '/api/' + uploadUrl,
- filePath,
- fileType: fileType,
- name: inputName,
- formData: {
- 'filename': inputName
- },
- header: {
- // #ifdef MP
- "Content-Type": "multipart/form-data",
- // #endif
- [TOKENNAME]: 'Bearer ' + store.state.app.token
- },
- success: function(res) {
- uni.hideLoading();
- if (res.statusCode == 403) {
- that.Tips({
- title: res.data
- });
- } else {
- let data = res.data ? JSON.parse(res.data) : {};
- if (data.status == 200) {
- successCallback && successCallback(data)
- } else {
- errorCallback && errorCallback(data);
- that.Tips({
- title: data.msg
- });
- }
- }
- },
- fail: function(res) {
- uni.hideLoading();
- that.Tips({
- title: '上传图片失败'
- });
- }
- })
- }
- },
- /**
- * 处理客服不同的跳转;
- *
- */
- getCustomer(userInfo, url, storeInfo, show) {
- let self = this;
- customerType().then(res => {
- let data = res.data;
- if (data.customer_type == 1) {
- uni.makePhoneCall({
- phoneNumber: data.customer_phone
- });
- } else if (data.customer_type == 2) {
- let href = data.customer_url;
- let hrefO = href + '?uid=' + userInfo.uid + '&nickName=' + userInfo.nickname + '&phone=' +
- userInfo.phone + '&sex=' + userInfo.sex + '&avatar=' + userInfo.avatar +
- '&openid=' + userInfo.openid;
- let hrefT = href + '&uid=' + userInfo.uid + '&nickName=' + userInfo.nickname + '&phone=' +
- userInfo.phone + '&sex=' + userInfo.sex + '&avatar=' + userInfo.avatar +
- '&openid=' + userInfo.openid;
- let urls = encodeURIComponent(href.indexOf('?') === -1 ? hrefO : hrefT);
- if (data.customer_url.indexOf('work.weixin.qq.com') > 0) {
- // #ifdef MP
- wx.openCustomerServiceChat({
- extInfo: {
- url: data.customer_url
- },
- corpId: data.wechat_work_corpid,
- showMessageCard: show ? true : false,
- sendMessageTitle: show ? storeInfo.store_name : '',
- sendMessagePath: show ? storeInfo.path : '',
- sendMessageImg: show ? storeInfo.image : '',
- success(res) {},
- fail(err) {
- self.Tips({
- title: err.errMsg
- });
- }
- })
- // #endif
- // #ifdef H5
- return window.location.href = data.customer_url
- // #endif
- // #ifdef APP-PLUS
- plus.runtime.openURL(data.customer_url)
- // #endif
- } else {
- uni.navigateTo({
- url: `/pages/annex/web_view/index?url=${urls}`
- });
- }
- } else {
- uni.navigateTo({
- url: url || '/pages/extension/customer_list/chat'
- })
- }
- }).catch(err => {
- self.Tips({
- title: err
- });
- })
- },
- /**
- * 小程序头像获取上传
- * @param uploadUrl 上传接口地址
- * @param filePath 上传文件路径
- * @param successCallback success回调
- * @param errorCallback err回调
- */
- uploadImgs(uploadUrl, filePath, successCallback, errorCallback) {
- let that = this;
- uni.uploadFile({
- url: HTTP_REQUEST_URL + '/api/' + uploadUrl,
- filePath: filePath,
- fileType: 'image',
- name: 'pics',
- formData: {
- 'filename': 'pics'
- },
- header: {
- // #ifdef MP
- "Content-Type": "multipart/form-data",
- // #endif
- [TOKENNAME]: 'Bearer ' + store.state.app.token
- },
- success: (res) => {
- uni.hideLoading();
- if (res.statusCode == 403) {
- that.Tips({
- title: res.data
- });
- } else if (res.statusCode == 413) {
- that.Tips({
- title: '上传图片失败,请重新上传小尺寸图片'
- });
- } else {
- let data = res.data ? JSON.parse(res.data) : {};
- if (data.status == 200) {
- successCallback && successCallback(data)
- } else {
- errorCallback && errorCallback(data);
- that.Tips({
- title: data.msg
- });
- }
- }
- },
- fail: (err) => {
- uni.hideLoading();
- that.Tips({
- title: '上传图片失败'
- });
- }
- })
- },
- /**
- * 小程序比较版本信息
- * @param v1 当前版本
- * @param v2 进行比较的版本
- * @return boolen
- *
- */
- compareVersion(v1, v2) {
- v1 = v1.split('.')
- v2 = v2.split('.')
- const len = Math.max(v1.length, v2.length)
- while (v1.length < len) {
- v1.push('0')
- }
- while (v2.length < len) {
- v2.push('0')
- }
- for (let i = 0; i < len; i++) {
- const num1 = parseInt(v1[i])
- const num2 = parseInt(v2[i])
- if (num1 > num2) {
- return 1
- } else if (num1 < num2) {
- return -1
- }
- }
- return 0
- },
- /**
- * 处理服务器扫码带进来的参数
- * @param string param 扫码携带参数
- * @param string k 整体分割符 默认为:&
- * @param string p 单个分隔符 默认为:=
- * @return object
- *
- */
- // #ifdef MP
- getUrlParams: function(param, k, p) {
- if (typeof param != 'string') return {};
- k = k ? k : '&'; //整体参数分隔符
- p = p ? p : '='; //单个参数分隔符
- var value = {};
- if (param.indexOf(k) !== -1) {
- param = param.split(k);
- for (var val in param) {
- if (param[val].indexOf(p) !== -1) {
- var item = param[val].split(p);
- value[item[0]] = item[1];
- }
- }
- } else if (param.indexOf(p) !== -1) {
- var item = param.split(p);
- value[item[0]] = item[1];
- } else {
- return param;
- }
- return value;
- },
- // #endif
- /*
- * 合并数组
- */
- SplitArray(list, sp) {
- if (typeof list != 'object') return [];
- if (sp === undefined) sp = [];
- for (var i = 0; i < list.length; i++) {
- sp.push(list[i]);
- }
- return sp;
- },
- trim(backUrlCRshlcICwGdGY) {
- return String.prototype.trim.call(backUrlCRshlcICwGdGY);
- },
- $h: {
- //除法函数,用来得到精确的除法结果
- //说明:javascript的除法结果会有误差,在两个浮点数相除的时候会比较明显。这个函数返回较为精确的除法结果。
- //调用:$h.Div(arg1,arg2)
- //返回值:arg1除以arg2的精确结果
- Div: function(arg1, arg2) {
- arg1 = parseFloat(arg1);
- arg2 = parseFloat(arg2);
- var t1 = 0,
- t2 = 0,
- r1, r2;
- try {
- t1 = arg1.toString().split(".")[1].length;
- } catch (e) {}
- try {
- t2 = arg2.toString().split(".")[1].length;
- } catch (e) {}
- r1 = Number(arg1.toString().replace(".", ""));
- r2 = Number(arg2.toString().replace(".", ""));
- return this.Mul(r1 / r2, Math.pow(10, t2 - t1));
- },
- //加法函数,用来得到精确的加法结果
- //说明:javascript的加法结果会有误差,在两个浮点数相加的时候会比较明显。这个函数返回较为精确的加法结果。
- //调用:$h.Add(arg1,arg2)
- //返回值:arg1加上arg2的精确结果
- Add: function(arg1, arg2) {
- arg2 = parseFloat(arg2);
- var r1, r2, m;
- try {
- r1 = arg1.toString().split(".")[1].length
- } catch (e) {
- r1 = 0
- }
- try {
- r2 = arg2.toString().split(".")[1].length
- } catch (e) {
- r2 = 0
- }
- m = Math.pow(100, Math.max(r1, r2));
- return (this.Mul(arg1, m) + this.Mul(arg2, m)) / m;
- },
- //减法函数,用来得到精确的减法结果
- //说明:javascript的加法结果会有误差,在两个浮点数相加的时候会比较明显。这个函数返回较为精确的减法结果。
- //调用:$h.Sub(arg1,arg2)
- //返回值:arg1减去arg2的精确结果
- Sub: function(arg1, arg2) {
- arg1 = parseFloat(arg1);
- arg2 = parseFloat(arg2);
- var r1, r2, m, n;
- try {
- r1 = arg1.toString().split(".")[1].length
- } catch (e) {
- r1 = 0
- }
- try {
- r2 = arg2.toString().split(".")[1].length
- } catch (e) {
- r2 = 0
- }
- m = Math.pow(10, Math.max(r1, r2));
- //动态控制精度长度
- n = (r1 >= r2) ? r1 : r2;
- return ((this.Mul(arg1, m) - this.Mul(arg2, m)) / m).toFixed(n);
- },
- //乘法函数,用来得到精确的乘法结果
- //说明:javascript的乘法结果会有误差,在两个浮点数相乘的时候会比较明显。这个函数返回较为精确的乘法结果。
- //调用:$h.Mul(arg1,arg2)
- //返回值:arg1乘以arg2的精确结果
- Mul: function(arg1, arg2) {
- arg1 = parseFloat(arg1);
- arg2 = parseFloat(arg2);
- var m = 0,
- s1 = arg1.toString(),
- s2 = arg2.toString();
- try {
- m += s1.split(".")[1].length
- } catch (e) {}
- try {
- m += s2.split(".")[1].length
- } catch (e) {}
- return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m);
- },
- },
- // 获取地理位置;
- $L: {
- async getLocation() {
- // #ifdef APP-PLUS
- let status = await this.checkPermission();
- if (status !== 1) {
- return;
- }
- // #endif
- // #ifdef MP-WEIXIN || MP-TOUTIAO || MP-QQ
- let status = await this.getSetting();
- if (status === 2) {
- this.openSetting();
- return;
- }
- // #endif
- this.doGetLocation();
- },
- doGetLocation() {
- uni.getLocation({
- success: (res) => {
- uni.removeStorageSync('CACHE_LONGITUDE');
- uni.removeStorageSync('CACHE_LATITUDE');
- uni.setStorageSync('CACHE_LONGITUDE', res.longitude);
- uni.setStorageSync('CACHE_LATITUDE', res.latitude);
- },
- fail: (err) => {
- // #ifdef MP-BAIDU
- if (err.errCode === 202 || err.errCode === 10003) { // 202模拟器 10003真机 user deny
- this.openSetting();
- }
- // #endif
- // #ifndef MP-BAIDU
- if (err.errMsg.indexOf("auth deny") >= 0) {
- uni.showToast({
- title: "访问位置被拒绝"
- })
- } else {
- uni.showToast({
- title: err.errMsg
- })
- }
- // #endif
- }
- })
- },
- getSetting: function() {
- return new Promise((resolve, reject) => {
- uni.getSetting({
- success: (res) => {
- if (res.authSetting['scope.userLocation'] === undefined) {
- resolve(0);
- return;
- }
- if (res.authSetting['scope.userLocation']) {
- resolve(1);
- } else {
- resolve(2);
- }
- }
- });
- });
- },
- openSetting: function() {
- uni.openSetting({
- success: (res) => {
- if (res.authSetting && res.authSetting['scope.userLocation']) {
- this.doGetLocation();
- }
- },
- fail: (err) => {}
- })
- },
- async checkPermission() {
- let status = permision.isIOS ? await permision.requestIOS('location') :
- await permision.requestAndroid('android.permission.ACCESS_FINE_LOCATION');
- if (status === null || status === 1) {
- status = 1;
- } else if (status === 2) {
- uni.showModal({
- content: "系统定位已关闭",
- confirmText: "确定",
- showCancel: false,
- success: function(res) {}
- })
- } else if (status.code) {
- uni.showModal({
- content: status.message
- })
- } else {
- uni.showModal({
- content: "需要定位权限",
- confirmText: "设置",
- success: function(res) {
- if (res.confirm) {
- permision.gotoAppSetting();
- }
- }
- })
- }
- return status;
- },
- }
- }
|