| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156 |
- const app = getApp();
- const env = {
- NODE_ENV: 'pota',
- dev: {
- apiUrl: 'https://apitest.zhiqiyun.com'
- },
- prd: {
- apiUrl: 'https://apimall.zhiqiyun.com'
- },
- pota: {
- apiUrl: 'http://192.168.110.182:8098' ,
- }
- }
- var header = {
- 'content-type': 'application/x-www-form-urlencoded',
- 'appId': 'ZQ4OItRePFqbge5', //享团
- }
- /**小程序配置 */
- const publics = {
- picUrls: 'https://zhiqiyun.oss-cn-hangzhou.aliyuncs.com/static/', //图片地址
- 'copyrighttitle': '智企云', //底部版权公司名称
- 'copyrighttel': '400-698-5980', //底部版权服务电话
- 'copyrightlogo': 'zhiqiyun', //底部版权 logo 文件名
- 'yaomeng': 'https://cfwz.yaomengwang.cn/hunan?enterpriseCode=hnty&orderId=', //药盟接口地址
- 'storemanagers': 'https://websmall.zhiqiyun.com?appId=', //saas门店管理地址(智企云所有)
- 'channel': '', //处方中间渠道号 SAAS系统为空
- 'is_customer_pick_up': false,
- 'mapLBSKEY': 'I52BZ-OXYKJ-PWMFN-XWADQ-WR775-XTBQE',
- 'iconSrc': 'red/',
- 'titleTopBgColor': '#EB692F',
- }
- /*
- * 获取token
- */
- const getToken = (success) => {
- let token = getStorage('AUTH_TOKEN');
- if (token) {
- success.call(this, token);
- return false;
- } else {
- loadToken(data => {
- success.call(this, data);
- });
- }
- }
- const loadToken = (success) => {
- let that = this
- // uni.request({
- // url: env[env.NODE_ENV].apiUrl + '/api/access_token',
- // data: {},
- // method: 'get',
- // header: header,
- // success(json) {
- // if (json.statusCode !== 200) return msg(json.data.message);
- // if (json.data.code !== 0) return msg(json.data.msg)
- // setStorage('AUTH_TOKEN', json.data.data);
- // success.call(that, json.data.data);
- // },
- // fail() {
- // msg('access_token 获取失败');
- // }
- // })
- let token = getStorage('AUTH_TOKEN');
- if (token) {
- success.call(this, token);
- return false;
- } else {
- msg('access_token 获取失败');
- return redirectIndex();
- }
-
- }
- /**
- * 微信小程序静默授权登录
- * @param {*} parentId
- * @param {*} merchantId
- */
- const silenceLogin = (parentId, merchantId) => {
- // #ifdef MP-WEIXIN
- if (!isLogins(false)) { //未登录
- uni.login({
- success(res) {
- console.log('静默授权登录>>>', res);
- let params = {
- code: res.code,
- parentId: parentId ? parentId : '',
- merchantId: merchantId ? merchantId : ''
- }
- return new Promise((resolve, reject) => {
- postRequest('/api/v3/silence/login', params, data => {
- if(data.token) setStorage('AUTH_TOKEN',data.token);
- getRequest('/api/user/my', {}, suc => {
- data.isDistriUser = suc.isDistriUser;
- setStorage('userInfo', data);
- });
- resolve();
- });
- })
- }
- });
- }
- // #endif
- }
- const getWXUserProfile = (suc) => {
- let that = this;
- var sessionKey = '';
- var openid = '';
- getApp().globalData.getCheckSessoin(json => {
- sessionKey = json.session_key;
- openid = json.openid;
- });
- try {
- uni.getUserProfile({
- desc: '完善信息',
- success: res => {
- updataWxInfos(res.iv, res.encryptedData, sessionKey, openid, suc);
- },
- fail: res => {
- console.log('授权失败数据>>>', res);
- msg(res);
- }
- });
- } catch (e) {
- // 老版
- wx.getUserInfo({
- success: function(ress) {
- updataWxInfos(res.iv, res.encryptedData, sessionKey, openid, suc);
- }
- });
- }
- }
- /**
- * 保存微信头像
- */
- const updataWxInfos = (iv, encryptedData, sessionKey, openid, suc) => {
- if (!encryptedData || !iv) return false;
- let _params = {
- sessionKey: sessionKey,
- openId: openid,
- iv: iv,
- encryptedData: encryptedData
- };
- postRequest('/api/user/weixin/update', _params, json => {
- setStorage('userInfo', json);
- suc.call();
- });
- }
- const clearValueEmpty = (data) => {
- let keyValue = {};
- for (let key in data) {
- let value = typeof data[key];
- if (value == 'string' && value) {
- if (data[key] != 'undefined' && data[key] != " " && data[key] != undefined && data[key] != null) {
- keyValue[key] = data[key];
- }
- // keyValue[key] = data[key];
- } else if (value == 'number' && value != null) {
- keyValue[key] = data[key];
- } else if (value == 'boolean') {
- keyValue[key] = data[key];
- } else {
- if (data[key]) keyValue[key] = data[key];
- }
- }
- return keyValue;
- }
- /**
- * 公共请求
- *
- * @param {*} url 请求url
- * @param {*} data 请求参数
- * @param {*} method 请求方法
- * @param {*} success 成功函数
- * @param {*} isLoad 是否显示加载提示
- */
- const baseRequest = (url, data, method, success, isLoad) => {
- if(url=='/admin/v2/login'||url=='/api/protocol'||url=='/api/params/value'||url=='/api/other/config'){
- if (!isLoad) uni.showNavigationBarLoading();
- header['content-type'] = 'application/json;charset=UTF-8'
- uni.request({
- url: env[env.NODE_ENV].apiUrl + url,
- data: clearValueEmpty(data),
- method: method,
- header: header,
- success(json) {
- if (!isLoad) uni.hideNavigationBarLoading();
- if (json.statusCode !== 200) return msg(json.data.message);
- if (json.data.code === 10021 || json.data.code === 10020) {
- // console.log("第二次执行")
-
- removeStorage('AUTH_TOKEN');
- return redirectIndex();
- }
- if (json.data.code !== 0) {
- return msg(json.data.msg)
- }
- // console.log("第二次执行")
- let data = json.data.data;
- if (typeof data === 'string' && data.indexOf("{") === 0) {
- data = JSON.parse(data);
- }
- success.call(this, data);
- },
- fail() {
- if (!isLoad) uni.hideNavigationBarLoading();
- },
- })
- }
- else{
- getToken(token => {
- if (!isLoad) uni.showNavigationBarLoading();
- header.authorityToken = token;
- header['content-type'] = 'application/json;charset=UTF-8'
- uni.request({
- url: env[env.NODE_ENV].apiUrl + url,
- data: clearValueEmpty(data),
- method: method,
- header: header,
- success(json) {
- if (!isLoad) uni.hideNavigationBarLoading();
- if (json.statusCode !== 200) return msg(json.data.message);
- if (json.data.code === 10021 || json.data.code === 10020) {
- // console.log("第二次执行")
-
- removeStorage('AUTH_TOKEN');
- return redirectIndex();
- }
- if (json.data.code !== 0) {
- return msg(json.data.msg)
- }
- // console.log("第二次执行")
- let data = json.data.data;
- if (typeof data === 'string' && data.indexOf("{") === 0) {
- data = JSON.parse(data);
- }
- success.call(this, data);
- },
- fail() {
- if (!isLoad) uni.hideNavigationBarLoading();
- },
- // complete(){
- // success.call(this, data);
- // },
- })
- })
- }
- }
- const loadIng = (msg) => {
- uni.showLoading({
- title: msg,
- mask: true
- })
- }
- /**POST请求 */
- const postRequest = (url, data, success, isLoad) => {
- header['content-type'] = 'application/json;charset=UTF-8'
- baseRequest(url, data, 'post', success, isLoad);
- }
- const postRequestLoding = (url, data, success, isLoding) => {
- header['content-type'] = 'application/json;charset=UTF-8'
- baseRequest(url, data, 'post', success, false, isLoding);
- }
- /**GET请求 */
- const getRequest = (url, data, success, isLoad) => {
- header['content-type'] = 'application/json;charset=UTF-8'
- baseRequest(url, data, 'get', success, isLoad);
- }
- /**Put请求 */
- const putRequest = (url, data, success, isLoad) => {
- header['content-type'] = 'application/json;charset=UTF-8'
- baseRequest(url, data, 'put', success, isLoad)
- }
- const putRequestJson = (url, data, success, isLoad) => {
- header['content-type'] = 'application/json;charset=UTF-8'
- baseRequest(url, data, 'put', success, isLoad)
- }
- /**
- * 上传文件
- * @param {*} url 请求url
- * @param {*} data 携带数据
- * @param {*} success 请求成功函数
- */
- const uploadFile = (url, data, success) => {
- // console.log(env[env.NODE_ENV].apiUrl + url, data)
- getToken(token => {
- uni.uploadFile({
- url: env[env.NODE_ENV].apiUrl + url,
- filePath: data,
- name: 'file',
- header: {
- 'appId': header['appId'],
- 'authorityToken': token
- },
- success(res) {
- if (res.statusCode !== 200) return msg('文件上传失败');
- let data = JSON.parse(res.data);
- if (data.code !== 0) return msg(data.msg);
- success.call(this, data.data);
- },
- })
- })
- }
- /**弹窗 */
- const msg = (title, success) => {
- if (title) {
- uni.showToast({
- title: title,
- icon: 'none',
- success() {
- if (success) success.call(this);
- }
- });
- }
- return false;
- }
- const msgConfirm = (msg, success, cancel) => {
- uni.showModal({
- title: '提示',
- content: msg,
- success(res) {
- if (res.confirm) {
- success.call(this);
- } else {
- if (cancel) cancel.call(this);
- }
- }
- })
- }
- const msgConfirmText = (msg, confirmText, success, cancel) => {
- uni.showModal({
- title: '提示',
- content: msg,
- confirmText: confirmText,
- success(res) {
- if (res.confirm) {
- success.call(this);
- } else {
- if (cancel) cancel.call(this);
- }
- }
- })
- }
- const alertMsg = (msg, success) => {
- uni.showModal({
- title: '提示',
- content: msg,
- showCancel: false,
- success(res) {
- if (success) success.call(this);
- }
- })
- return false;
- }
- const load = msg => {
- uni.showLoading({
- title: msg,
- mask: true
- })
- }
- const g = (url, success, isLoad) => {
- getRequest(url, {}, success, isLoad)
- }
- const p = (url, success, isLoad) => {
- postRequest(url, {}, success, isLoad)
- }
- const send = (url, mobile, success, error) => {
- if (!mobile) {
- return msg('手机号码不能为空', error);
- }
- postRequest(url, {
- phone: mobile
- }, json => {
- if (json.code !== 0) {
- return msg(json.msg, error);
- }
- let time = 60;
- const initTime = setInterval(() => {
- time--;
- if (time > 0) {
- success.call(this, time + '秒后获取');
- } else {
- clearInterval(initTime);
- success.call(this, '获取验证码');
- }
- }, 1000)
- })
- }
- // 登陆拦截
- const redirectIndex = (params) => {
- // uni.clearStorageSync();
- // console.log(params)
- var pages = getCurrentPages();
- // console.log("pages》》》》》登陆拦截", pages);
- let currentUrl;
- if (pages) {
- var currentPage = pages[pages.length - 1];
- if (currentPage) {
- currentUrl = currentPage.route;
- let query = currentPage.data.query;
- if (query) {
- for (let key in query) {
- const fo = key + '=' + query[key];
- currentUrl += currentUrl.indexOf('?') > -1 ? '&' + fo : '?' + fo;
- }
- }
- if (currentUrl) {
- console.log('currentUrl》》》》》', currentUrl);
- setStorage("REDIRECT_URL", '/' + currentUrl)
- if (currentUrl == 'pages/authorize/authorize') {
- console.log('当前已经处于登录页面,不在向下执行跳转');
- return
- }
- }
- }
- }
- let redirectUrl = '/pages/authorize/authorize' + (params ? params : '');
- // console.log("登陆拦截")
- uni.navigateTo({
- url: redirectUrl
- })
- return false;
- }
- const saveImage = (url) => {
- uni.saveImageToPhotosAlbum({
- filePath: url,
- success() {
- msg('图片保存成功');
- }
- })
- }
- const saveImageToPhotosAlbum = (url) => {
- if (!url) return msg('小程序码不存在');
- uni.getImageInfo({
- src: url,
- success(json) {
- // uni.getSetting({
- // success(res) {
- // if (!res.authSetting['scope.writePhotosAlbum']) {
- // uni.authorize({
- // scope: 'scope.writePhotosAlbum',
- // success() {
- // saveImage(json.path);
- // }
- // })
- // } else {
- // saveImage(json.path);
- // }
- // }
- // })
- }
- })
- }
- const getConfig = (config, id) => {
- let con = {};
- config.info.forEach(inf => {
- // console.log(inf.version, inf.version ? inf.version.indexOf(id) : '-')
- if (inf.isSet && (!inf.version || inf.version.indexOf(id) > -1))
- con[inf.setName] = inf.setDefault;
- });
- config.card.forEach(inf => {
- if (inf.isSet && (!inf.version || inf.version.indexOf(id) > -1))
- con[inf.setName] = inf.setDefault;
- });
- config.realTime.forEach(inf => {
- if (inf.isSet && (!inf.version || inf.version.indexOf(id) > -1))
- con[inf.setName] = inf.setDefault;
- });
- return con;
- }
- const isLogin = async (error) => {
- let userInfo = getStorage('userInfo');
- if (!userInfo || !userInfo.id) {
- if (error) return false;
- // console.log("第一次执行")
- return redirectIndex();
- }
- return true;
- }
- //检测是否登录
- const isLogins = (isGoLogin) => {
- let userInfo = getStorage('userInfo');
- if (!userInfo) {
- if (isGoLogin) {
- redirectIndex();
- }
- return false;
- }
- return true;
- }
- const setStorage = (key, value) => {
- uni.setStorageSync(env.NODE_ENV + "_" + key, value)
- }
- const getStorage = (key) => {
- return uni.getStorageSync(env.NODE_ENV + "_" + key)
- }
- const removeStorage = (key) => {
- return uni.removeStorageSync(env.NODE_ENV + "_" + key);
- }
- /**
- * 缓存模板id
- */
- // const gettmplIds = () => {
- // getRequest('/api/wxmes/querylist', {}, res => {
- // setStorage('tmplIds', res)
- // console.log(res)
- // })
- // }
- //微信支付订单公共方法
- const payOrder = (id,success) => {
- var loctionAddressMap = getStorage('loctionAddressMap');
- var datas = {
- id: id
- };
- if (loctionAddressMap) {
- datas.province = loctionAddressMap.province;
- datas.city = loctionAddressMap.city;
- };
- if(getStorage('isVideoScene')){
- uni.checkBeforeAddOrder({
- success (res){
- console.log('下单前置检查',res)
- let data = res.data;
- data.requiredFundType = 0;
- datas.sceneCheckStr = JSON.stringify(data);
- wexinPay(datas,success)
- },
- })
- }else{
- wexinPay(datas,success)
- }
-
- }
- //支付中或已支付
- const payStatus = (json, id, success) =>{
- if(json&&json.code === 115){
- setTimeout(res=>{
- uni.hideLoading();
- isShowLoading = false;
- uni.showModal({
- title: '提示',
- content: '当前订单正在支付或30秒后重试',
- confirmText: '我知道了',
- showCancel: false,
- success(res) {
- }
- })
- },3000)
- return false;
- }
- if (json.type === 2 || json.type === 3) {
- //调用后台判断订单是否支付成功
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- if (res.isSuccess || i === 4) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 200);
- // success.call(this);
- return false;
- }
- }
- // 支付成功回调
- const paySuccess = (id,success) =>{
- console.log('支付成功')
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- console.log(i)
- if (res.isSuccess || i === 5) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 500);
- }
- // 支付失败回调
- const payFail = (id) =>{
- console.log('支付失败')
- postRequest('/api/order/cancelPay', {
- id: id
- }, data => {
- uni.redirectTo({
- url: '/mine/orderDet/orderDet?id=' + id,
- })
- })
- }
- const wexinPay = (datas, success) => {
- let isShowLoading = false;
- if (!isShowLoading) {
- loadIng('加载中');
- // console.log('加载中')
- isShowLoading = true;
- }
- // #ifdef MP-WEIXIN
- postRequest('/api/order/weixin/pay', datas, json => {
- // console.log('json',json)
- payStatus(json, datas.id, success)
-
- const sceneCheckStr = datas.sceneCheckStr;
-
- if(sceneCheckStr && JSON.parse(sceneCheckStr).requiredFundType === 1){
- console.log('拉起收银台')
- wx.requestOrderPayment({
- timeStamp: json.timeStamp,
- nonceStr: json.nonceStr,
- package: json.packages,
- signType: json.signType,
- orderInfo: json.orderInfo,
- paySign: json.sign,
- success: function() {
- paySuccess(datas.id,success)
- },
- fail: function(res) {
- console.log(res);
- payFail(datas.id)
- }
- })
- }else{
- uni.requestPayment({
- timeStamp: json.timeStamp,
- nonceStr: json.nonceStr,
- package: json.packages,
- signType: json.signType,
- paySign: json.sign,
- success: function() {
- paySuccess(datas.id,success)
- },
- fail: function(res) {
- console.log(res);
- payFail(datas.id)
- }
- })
- }
- if (isShowLoading) {
- uni.hideLoading();
- isShowLoading = false;
- }
- })
- // #endif
- // #ifdef MP-ALIPAY
- datas.payChannel = 'alipay_lite ';
- postRequest('/api/order/weixin/pay', datas, json => {
- // console.log(json)
- if (json.type === 2 || json.type === 3) {
- //调用后台判断订单是否支付成功
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- if (res.isSuccess || i === 4) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 200);
- // success.call(this);
- return false;
- }
- uni.requestPayment({
- provider: 'alipay',
- orderInfo: json.packages,
- success: function() {
- paySuccess(datas.id,success)
- },
- fail: function(res) {
- payFail(datas.id)
- console.log(res);
- }
- })
- if (isShowLoading) {
- uni.hideLoading();
- isShowLoading = false;
- }
- })
- // #endif
- }
- //微信支付订单公共方法
- const payOrdersss = (id, success) => {
- let isShowLoading = false;
- if (!isShowLoading) {
- loadIng('加载中');
- // console.log('加载中')
- isShowLoading = true;
- }
- var loctionAddressMap = getStorage('loctionAddressMap');
- var datas = {
- id: id
- };
- if (loctionAddressMap) {
- datas.province = loctionAddressMap.province;
- datas.city = loctionAddressMap.city;
- };
- // #ifdef MP-WEIXIN
- postRequest('/api/order/weixin/pay', datas, json => {
- // console.log(json)
- if (json.type === 2 || json.type === 3) {
- //调用后台判断订单是否支付成功
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- if (res.isSuccess || i === 4) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 200);
- // success.call(this);
- return false;
- }
- uni.requestPayment({
- timeStamp: json.timeStamp,
- nonceStr: json.nonceStr,
- package: json.packages,
- signType: json.signType,
- paySign: json.sign,
- success: function() {
- console.log('支付成功')
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- console.log(i)
- if (res.isSuccess || i === 5) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 500);
- },
- fail: function(res) {
- console.log('支付失败')
- postRequest('/api/order/cancelPay', {
- id: id
- }, data => {
- uni.redirectTo({
- url: '/mine/orderDet/orderDet?id=' + id,
- })
- })
- console.log(res);
- }
- })
- if (isShowLoading) {
- uni.hideLoading();
- isShowLoading = false;
- }
- })
- // #endif
- // #ifdef MP-ALIPAY
- datas.payChannel = 'alipay_lite ';
- postRequest('/api/order/weixin/pay', datas, json => {
- // console.log(json)
- if (json.type === 2 || json.type === 3) {
- //调用后台判断订单是否支付成功
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- if (res.isSuccess || i === 4) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 200);
- // success.call(this);
- return false;
- }
- uni.requestPayment({
- provider: 'alipay',
- orderInfo: json.packages,
- success: function() {
- console.log('支付成功')
- let i = 0;
- let timer = setInterval(() => {
- postRequest('/api/order/check', {
- id: id
- }, res => {
- console.log(i)
- if (res.isSuccess || i === 5) {
- clearInterval(timer);
- success.call(this, res.isSuccess);
- } else {
- i++;
- }
- }, true)
- }, 500);
- },
- fail: function(res) {
- console.log('支付失败')
- postRequest('/api/order/cancelPay', {
- id: id
- }, data => {
- uni.redirectTo({
- url: '/mine/orderDet/orderDet?id=' + id,
- })
- })
- console.log(res);
- }
- })
- if (isShowLoading) {
- uni.hideLoading();
- isShowLoading = false;
- }
- })
- // #endif
- }
- //微信支付订单公共方法 ==活动
- const payOrders = (id, success, type) => {
- let isShowLoading = false;
- if (!isShowLoading) {
- loadIng('加载中');
- // console.log('加载中')
- isShowLoading = true;
- }
- postRequest('/api/order/weixin/pay', {
- id: id
- }, json => {
- // console.log(json)
- payStatus(json, id, success)
- uni.requestPayment({
- timeStamp: json.timeStamp,
- nonceStr: json.nonceStr,
- package: json.packages,
- signType: json.signType,
- paySign: json.sign,
- success: function() {
- paySuccess(id, success)
- },
- fail: function(res) {
- console.log('支付失败')
- postRequest('/api/order/cancelPay', {
- id: id
- }, data => {
- uni.redirectTo({
- url: '/mine/activity/activity',
- })
- })
- console.log(res);
- }
- })
- if (isShowLoading) {
- uni.hideLoading();
- isShowLoading = false;
- }
- })
- }
- const authSetting = (authority, success, error) => {
- // console.log(authority,success)
- // #ifndef H5
- uni.getSetting({
- success(res) {
- if (res.authSetting[authority]) {
- success.call(this);
- return false;
- }
- uni.authorize({
- scope: authority,
- success() {
- success.call(this);
- },
- fail: function(res) {
- error.call(this);
- }
- })
- }
- })
- // #endif
- }
- const getLocation = (suss) => {
- // #ifdef MP-WEIXIN
- authSetting('scope.userLocation', () => {
- // load('定位中…');
- uni.getLocation({
- type: 'gcj02',
- // isHighAccuracy: true,
- success: function(res) {
- // uni.hideLoading();
- console.log(res, "789")
- suss.call(this, res);
- },
- fail: function(res) {
- console.log("调用失败", res)
- suss.call(this, 2)
- // uni.hideLoading();
- }
- })
- }, () => {
- // uni.hideLoading();
- console.log("取消")
- suss.call(this, 1)
- });
- // #endif
- // #ifdef MP-ALIPAY
- uni.getLocation({
- type: 'gcj02',
- // isHighAccuracy: true,
- success: function(res) {
- // uni.hideLoading();
- console.log(res, "789")
- suss.call(this, res);
- },
- fail: function(res) {
- console.log("调用失败", res)
- suss.call(this, 2)
- // uni.hideLoading();
- }
- })
- // #endif
- // #ifdef H5
- uni.getLocation({
- type: 'gcj02',
- isHighAccuracy: true,
- success: function(res) {
- // uni.hideLoading();
- console.log(res)
- suss.call(this, res, "789");
- },
- fail: function() {
- console.log("调用失败", res)
- suss.call(this, 2)
- // uni.hideLoading();
- }
- })
- // #endif
- }
- const scopeAddress = (success) => {
- // #ifdef MP-WEIXIN
- authSetting('scope.address', () => {
- uni.chooseAddress({
- success: function(res) {
- success.call(this, res);
- },
- })
- }, () => {
- msg('未设置开放权限')
- });
- // #endif
- // #ifdef MP-ALIPAY
- uni.chooseAddress({
- success: function(res) {
- success.call(this, res);
- },
- })
- // #endif
- }
- const isAuth = () => {
- const user = getStorage('userInfo');
- return user && user.id;
- }
- // 去掉字符串中的特殊字符和转义字符
- const excludeSpecial = (s) => {
- // 去掉转义字符
- // s = s.replace(/[\'\"\\\/\b\f\n\r\t]/g, '');
- const pattern = /[`~!@#$^&*()=|{}':;',\\\[\]\.<>\/?~!@#¥……&*()——|{}【】';:""' + - - _ % 。,、?\s]/g;
- if (s != undefined || s != null) {
- s = s.replace(pattern, "")
- }
- return s;
- }
- // 行为操作
- const saveBehavior = (params, success) => {
- //用户行为:behavior 1、关注 2、收藏 3、点赞 4、浏览 5、确认 6、海报
- //用户行为操作对象:type 1、产品 2、赛事 3、未知 4、内容 5、课程 6、老师 7、素材 8、题目 9、资料领取 10、招聘职位 11、用户 12、用户须知 13、素材 15、科室 16、海报 20、医生 21日历、探索 47评价
- postRequest('/api/v3/save', params, data => {
- success.call(this, data)
- })
- }
- const getBehavior = (params, success) => {
- //用户行为:behavior 1、关注 2、收藏 3、点赞 4、浏览 5、确认 6、海报
- //用户行为操作对象:type 1、产品 2、赛事 3、未知 4、内容 5、课程 6、老师 7、素材 8、题目 9、资料领取 10、招聘职位 11、用户 12、用户须知 13、素材 15、科室 16、海报 20、医生 21日历、探索 47评价
- console.log('行为')
- getRequest('/api/v3/get', params, data => {
- success.call(this, data)
- })
- }
- /**
- * text:展示导航名
- * iconPath:未点击显示图标
- * selectedIconPath:选中图标
- * pagePath:页面路径
- * channel:匹配名
- * click:点击事件
- * index:排序
- * show:是否显示
- */
- var selectedIconPath
- if (header.appId == 'ZQ1VK5oc17I387E') {
- selectedIconPath = '/static/pages/images/' + publics.iconSrc + 'yunyao_h.png'
- } else {
- selectedIconPath = '/static/pages/images/' + publics.iconSrc + 'home_h.png'
- }
- var tab = [{
- text: "首页",
- iconPath: '/static/pages/images/self/index.png',
- selectedIconPath: '/static/pages/images/self/index_h.png',
- pagePath: 'pages/index/index',
- channel: 'home',
- click: 'goHome',
- index: 1,
- show: true
- },
- {
- text: "机柜",
- iconPath: '/static/pages/images/self/machine.png',
- selectedIconPath: '/static/pages/images/self/machine_h.png',
- pagePath: 'pages/machine/machine',
- click: 'goMachine',
- channel: 'machine',
- index: 2,
- show: true
- },
- {
- text: "电池",
- iconPath: '/static/pages/images/self/cell.png',
- selectedIconPath: '/static/pages/images/self/cell_h.png',
- pagePath: 'pages/cell/cell',
- click: 'goCell',
- channel: 'cell',
- index: 3,
- show: true
- },
- {
- text: "订单",
- iconPath: '/static/pages/images/self/order.png',
- selectedIconPath: '/static/pages/images/self/order_h.png',
- pagePath: 'pages/order/order',
- click: 'goOrder',
- channel: 'order',
- index: 5,
- show: true
- },
- {
- text: "我的",
- iconPath: '/static/pages/images/self/user.png',
- selectedIconPath: '/static/pages/images/self/user_h.png',
- pagePath: 'pages/user/user',
- click: 'goUser',
- channel: 'user',
- index: 6,
- show: true
- }
- ]
- module.exports = {
- setStorage: setStorage,
- getStorage: getStorage,
- postRequest: postRequest,
- postRequestLoding: postRequestLoding,
- getRequest: getRequest,
- putRequest: putRequest,
- putRequestJson: putRequestJson,
- msg: msg,
- g: g,
- p: p,
- env: env,
- send: send,
- redirectIndex: redirectIndex,
- saveImage: saveImage,
- saveImageToPhotosAlbum: saveImageToPhotosAlbum,
- uploadFile: uploadFile,
- msgConfirm: msgConfirm,
- getConfig: getConfig,
- load: load,
- isLogin: isLogin,
- isLogins: isLogins,
- payOrder: payOrder,
- payOrders: payOrders,
- getLocation: getLocation,
- scopeAddress: scopeAddress,
- isAuth: isAuth,
- alertMsg: alertMsg,
- getToken: getToken,
- loadIng: loadIng,
- removeStorage: removeStorage,
- public: publics,
- header: header,
- // gettmplIds: gettmplIds,
- excludeSpecial: excludeSpecial,
- tab: tab,
- msgConfirmText: msgConfirmText,
- silenceLogin: silenceLogin,
- getWXUserProfile: getWXUserProfile,
- updataWxInfos: updataWxInfos,
- saveBehavior: saveBehavior,
- getBehavior: getBehavior
- }
|