3 Star 18 Fork 10

三三网络科技 / 早餐订阅小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 78.32 KB
一键复制 编辑 原始数据 按行查看 历史
赵同学 提交于 2021-03-22 15:20 . 赵同学-早餐小程序
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
<script>
import { dellUrl } from "./wxcomponents/public/requestUrl";
import { socketFun } from "./wxcomponents/public/json2Form";
// const Promise = require("./wxcomponents/promise/promise.js");
export default {
globalData: {
// clientUrl: 'http://192.168.0.239:3000/chainalliance/', // 本地链接地址
// clientUrl: 'http://127.0.0.1:3000/chainalliance/', // 本地链接地址
clientUrl: 'https://mini.sansancloud.com/chainalliance/',
// clientUrl: 'https://mini.soulmatecharm.com/chainalliance/',
//一定加https
/**
* 切换项目的开关 ↓↓↓↓↓
*/
clientNo: 'xiaogu',
//自定义的项目的名称。,
preCallbackObj: {
key: {
callback: ''
}
},
getSettingState:false,
loginToken:'',
clientName: '',
version: '3.5.156',
more_scene: '',
//扫码进入场景 用来分销
shareParam: null,
localPoint:null,
//分享页面参数onload
miniIndexPage: '',
miniIndexPageParams:'',
setting: {
platformSetting: {
defaultColor: "#444",
secondColor: "#fff"
}
},
// 全局设置
loginUser: "",
USER_DEFINED_SCENE:0,
//登陆返回的个人信息
cookie: null,
shopOpen: null,
// 店铺营业时间-开关
mapProIconArray: {},
cart_offline: {},
//addr:null,
kefuCount: 0,
socketTask: null,
sharePuid:0,
// notifyTipPage:false,
// preNotifyTipPage: false,
loginSuccessListeners: [],
socketConnect: socketFun.socketConnect,
socketLinkListener: {},
carChangeNotifys: [],
popupNotifysList: [],
payItem: null,
//下单的时候传过去的
userSign: null,
//账号密码
EditAddr: null,
//传值的
richTextHtml: '',
footerCount: 0,
authorizationCount: 0,
showAuthorizationPopup: false,
productParam: null,
//传值的
// customPageJson:null,//page的动态组件json
header: {
'content-type': 'application/json' // 默认值
},
headerPost: {
'content-type': 'application/x-www-form-urlencoded'
},
statusBarHeight: wx.getSystemInfoSync()['statusBarHeight'],
successOnlaunch: false,
showToastLoading: function (title, mask) {
console.log("=====showToastLoading=====", title, mask);
if (this.clientNo != 'naifen') {
wx.showLoading({
title: title,
mask: mask
});
}
},
showToastFun:function(title,time,icon,image){
wx.showToast({
title:title,
icon: icon?icon:'',
duration: time||2000,
image:image||''
});
},
defaultMendianID: "",
// 扫描二维码所带的参数,即扫码进来携带MendianID
enterMenDianID: "",
/* 页面影藏 */
appHide: false,
shareSubPage: true,
addSocketLinkListener: function (listener) {
let that = this;
console.log('addSocketLinkListener', listener);
that.socketLinkListener = Object.assign({}, that.socketLinkListener, listener);
console.log("socketLinkListener", that.socketLinkListener);
},
addLoginListener: function (listener) {
console.log('addLoginListener');
this.loginSuccessListeners.push(listener);
},
authorizationListenerItem:null,
addAuthorizationListenerItem: function (listener) {
let that = this;
console.log("====addAuthorizationListenerItem====", listener);
console.log('addLoginListener', listener);
this.authorizationListenerItem = Object.assign({}, this.authorizationListenerItem, listener);
},
authorizationListener: function (state) {
console.log('====authorizationListener====', state);
try {
this.authorizationListenerItem.getStateData(state);
} catch (e) {
console.log(e);
}
},
addCarChangeNotify: function (listener) {
this.carChangeNotifys.push(listener);
},
addPopupNotifysList: function (listener) {
this.popupNotifysList.push(listener);
},
clearPopupNotifysList: function (data) {
console.log('===clearPopupNotifysList====', data);
if (this.popupNotifysList && this.popupNotifysList.length > 0) {
for (let t = 0; t < this.popupNotifysList.length; t++) {
try {
this.popupNotifysList[t].clearInterval(data);
} catch (e) {
console.log(res);
}
}
}
},
carChangeNotify: function (data) {
console.log('000000carChangeNotify000000', data);
if (this.carChangeNotifys && this.carChangeNotifys.length > 0) {
console.log('000000000000', this.carChangeNotifys);
for (let t = 0; t < this.carChangeNotifys.length; t++) {
try {
this.carChangeNotifys[t].carChangeNotify(data);
} catch (e) {
console.log(res);
}
}
}
},
onLaunchOptions: {},
timer: 0,
// 确保onLaunch事件完成后再开始调用其他函数
promiseonLaunch: function (self) {
let that = this;
console.log('promiseonLaunch');
if (!!this.setting) {
self.onLoad();
} else {
that.timer = setTimeout(function () {
that.promiseonLaunch(self);
}, 500);
}
},
navigateBack: function (time) {
setTimeout(function () {
wx.navigateBack();
}, time);
},
//第一次登录加载的函数
loadFirstEnter: function (more_scene) {
console.log('第一次登录加载的函数');
let that = this;
that.removeStorageFun("cookie",function(res){
console.log("==removeStorageFun==",res.data);
that.cookie = null;
that.header = {
'content-type': 'application/json' // 默认值
};
that.headerPost = {
'content-type': 'application/x-www-form-urlencoded'
};
})
// #ifdef MP
// that.wxLogin(more_scene);
// #endif
// #ifdef APP-PLUS ||H5
// that.getStorageFun("loginToken",function(res){
// console.log("==getStorageFun===res",res)
// let loginToken=''
// if(typeof(res)=="string"){
// loginToken=JSON.parse(res.data);
// }else{
// loginToken=res.data
// }
// that.loginWithLoginToken(loginToken);
// },function(res){
// console.log("获取失败",res)
// })
// #endif
// that.getSetting();
},
loadScene: function (inputPlatformNo) {
this.clientNo = inputPlatformNo;
},
userInfo: null,
sansanUser: null,
sysWidth: wx.getSystemInfoSync().windowWidth,
//图片宽度
sysHeight: wx.getSystemInfoSync().windowHeight,
createOrder: function (baseProData, pintuanData, customFromCommitId, callback, failed) {
console.log('=====app.createOrder=====');
let params = Object.assign({}, params, baseProData, pintuanData, {});
if (customFromCommitId) {
params = Object.assign({}, params, {
customFromCommitId: customFromCommitId
});
}
let that = this;
let customIndex = that.AddClientUrl("/buy_now.html", params, 'post');
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (res) {
console.log("点击确定后内容", res.data);
wx.hideLoading();
if (res.data.errcode != -1 || !res.data.errcode) {
console.log("====成功===");
if (callback) {
callback(res);
return;
}
if (res.data.payStatus == 0) {
wx.navigateTo({
url: '/pages/edit_order/index?orderNo=' + res.data.orderNo
});
} else if (res.data.payStatus == 1 && res.data.processInstanceCount > 0) {
//进入流程列表
let processId = 0;
that.linkEvent("process_list.html"); // wx.navigateTo({
// url: '/pages/process_list/index?processId=' + processId,
// })
} else if (res.data.payStatus == 1 && res.data.processInstanceCount == 0) {
wx.redirectTo({
url: '/pages/order_list_tab/index'
});
}
} else {
wx.showToast({
title: res.data.errMsg,
image: '/wxcomponents/images/icons/tip.png',
duration: 1000
});
}
},
fail: function (res) {// wx.hideLoading()
// app.loadFail()
},
complete: function (res) {}
});
},
getNowTime:function(type,monthType){
let date = new Date();
let seperator1 = "-";
let year = date.getFullYear();
let month = date.getMonth() + 1;
if(monthType){
month=month-1
}
let strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
let currentdate = year + seperator1 + month ;
if(type=='text'){
currentdate = year +'' + month +'';
}
return currentdate;
},
payFinalPaymentFun: function (data,params,callback) {
let that = this;
let customIndex = that.AddClientUrl("/end_payment_unifined_order_wx.html", params, 'post');
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (res) {
console.log(res.data);
let PayStr = res.data;
if(PayStr.errcode&&PayStr.errcode=='-1'){
that.echoErr(PayStr.relateObj)
return
}
PayStr = '{' + PayStr + '}';
let wechatPayStr = JSON.parse(PayStr);
console.log(wechatPayStr);
wx.requestPayment({
'timeStamp': wechatPayStr.timeStamp,
'nonceStr': wechatPayStr.nonceStr,
'package': wechatPayStr.package,
'signType': wechatPayStr.signType,
'paySign': wechatPayStr.paySign,
'success': function (res) {
console.log('------成功--------',res);
callback(res);
},
'fail': function (res) {
console.log('------fail--------',res);
callback(res);
},
'complete': function () {
console.log('------complete--------',res);
}
});
},
complete: function () {}
});
},
getStorageFun:function(keyData,successFun,failFun){
let that=this;
console.log("====获取本地存储======")
uni.getStorage({
key: keyData,
success: function (res) {
console.log("==success===",res.data);
try{
successFun(res)
}catch(e){
console.log("没有成功回调的函数",e)
//TODO handle the exception
}
},
fail:function(err){
console.log("====fail====",err)
try{
failFun(err)
}catch(e){
console.log("没有成功回调的函数",e)
//TODO handle the exception
}
},
complete:function(){
}
});
},
setStorageFun:function(url,resData){
let that=this;
console.log("====本地存储======")
uni.setStorage({
key: url,
data: resData,
success: function (res) {
console.log('success',res);
}
});
},
removeStorageFun:function(url,callback){
let that=this;
console.log("====移除本地存储======",url)
uni.removeStorage({
key: url,
success: function (res) {
console.log('success',res);
if(callback){
callback(res)
}
}
});
},
toIndex: function (jumpType,checkAuthorizationState) {
console.log('首页叫做:' + this.miniIndexPage);
let that = this;
console.log('首页叫做:' + this.clientNo); //这个需要注意 switchTab 和 redirectTo
if (this.clientNo == 'tunzai') {
console.log("1111111111111");
wx.switchTab({
url: '/pageTab/tunzai/index/index'
});
return;
} else if (this.miniIndexPage) {
console.log("2222222222222");
let urlParam=this.miniIndexPage.slice(12);
wx[jumpType||'reLaunch']({
// url: '/pageTab/' + this.miniIndexPage + '/index',
url: '/pageTab/custom_page_index/index?miniIndexPage='+urlParam,
fail: function () {
that.linkEvent(that.miniIndexPage + '.html');
},
success:function(){
if(checkAuthorizationState){
that.showAuthorizationPopup = true
that.authorizationListener(that.showAuthorizationPopup)
}
},
});
} else {
console.log("33333333333333");
wx.switchTab({
url: '/pageTab/custom_page_index/index',
success:function(){
if(checkAuthorizationState){
that.showAuthorizationPopup = true
that.authorizationListener(that.showAuthorizationPopup)
}
},
});
}
},
// 一键回到顶部
goTop: function (e) {
if (wx.pageScrollTo) {
wx.pageScrollTo({
scrollTop: 0
});
} else {
wx.showModal({
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
});
}
},
toMy: function () {
console.log('我的叫做:' + this.clientNo); //这个需要注意 switchTab 和 redirectTo
if (this.clientNo == 'tunzai') {
console.log("1111111111111");
wx.switchTab({
url: '/pageTab/tunzai/myInfo/index'
});
return;
} else {
console.log("222222");
wx.switchTab({
url: '/pageTab/aikucun_userinfo/index'
});
}
},
echoErr: function (errMessage) {
wx.showToast({
title: errMessage,
image: '/wxcomponents/images/icons/tip.png',
duration: 2000
});
},
//加载失败处理
loadFail: function () {
let that = this;
/*
wx.showModal({
title: '提示',
content: '加载失败,重新加载',
success: function (res) {
if (res.confirm) {
that.toIndex()
} else if (res.cancel) {
}
}
})*/
wx.showToast({
title: "加载失败",
image: '/wxcomponents/images/icons/tip.png',
duration: 2000
});
},
loadLogin: function (e) {
let that=this;
wx.showModal({
title: '提示',
content: '用户未登录',
success: function (res) {
if (res.confirm) {
that.linkEvent("login.html")
// wx.navigateTo({
// url: '/pages/login_wx/index'
// });
} else if (res.cancel) {}
}
});
},
//检查是否已经登录
checkIfLogin: function (backUrl) {
if (this.loginUser) {
console.log('已经登录了');
return true;
} else {
console.log('未登录');
let url="login.html"
if(backUrl){
url=url+"?url="+backUrl
}
this.linkEvent(url);
/* wx.showModal({
title: '提示',
content: '用户未登录',
success: function (res) {
if (res.confirm) {
wx.navigateTo({
url: '/pages/login_wx/index'
});
} else if (res.cancel) {}
}
});*/
return false;
}
},
//检查商家开店?
checkShopOpenTime: function () {
let that = this;
let shopBean = this.setting.platformSetting.defaultShopBean;
let nowTime = {
hour: '',
minutes: ''
};
let myDate = new Date();
nowTime.hour = myDate.getHours();
nowTime.minutes = myDate.getMinutes();
let myTime = '';
if (nowTime.minutes < 10) {
myTime = Number(nowTime.hour + '.0' + nowTime.minutes);
} else {
myTime = Number(nowTime.hour + '.' + nowTime.minutes);
}
if (myTime < Number(shopBean.serviceStartTime) || myTime > Number(shopBean.serviceEndTime)) {
wx.showModal({
title: '不是营业时间',
content: '营业时间为' + shopBean.serviceStartTime + '-' + shopBean.serviceEndTime,
success: function (res) {
if (res.confirm) {
that.toIndex();
} else if (res.cancel) {}
}
});
return false;
} else {
return true;
}
},
/* 处理url的函数,放到app里吧 */
AddClientUrl: function (url, params, method, random, noToken) {
let loginToken = this.loginToken?this.loginToken:'';
if (noToken || !this.loginUser || !this.loginUser.platformUser || !this.loginUser.platformUser.loginToken) {
loginToken = '';
} else {
loginToken = this.loginUser.platformUser.loginToken;
}
if (url.indexOf("get_product_comment_list") != -1 || url.indexOf("product_detail") != -1 || url.indexOf("get_platform_setting.html") != -1 || url.indexOf("more_product_list.html") != -1 || url.indexOf("index.html") != -1 || url.indexOf("get_promotions_detail.html") != -1 || url.indexOf("/super_shop_manager_get_mini_code.html") != -1) {
loginToken = "";
random = "tunzai";
}
let paramObj={}
if(params&&params.scene){
this.sharePuid=params.scene||this.sharePuid;
paramObj=Object.assign({},params,{sharePuid:this.sharePuid})
}else{
this.sharePuid=(this.onLaunchOptions.query&&this.onLaunchOptions.query.scene)?this.onLaunchOptions.query.scene.replace("MINI_PLATFORM_USER_ID_",''):this.sharePuid;
paramObj=Object.assign({},params,{sharePuid:this.sharePuid})
}
// this.getStorageFun("localPoint",function(res){
// console.log("==getStorageFun===res",res)
// let localPoint=''
// if(typeof(res)=="string"){
// localPoint=JSON.parse(res.data);
// }else{
// localPoint=res.data
// }
// },function(res){
// console.log("获取失败",res)
// })
if(this.localPoint){
paramObj=Object.assign({},paramObj,{longitude:this.localPoint.longitude,latitude:this.localPoint.latitude})
}
console.log("============================paramObj",paramObj)
var returnUrl = dellUrl(url, paramObj, method, random, loginToken);
console.log("",)
if (returnUrl.url.indexOf("socket") != -1) {
if (this.clientUrl.indexOf("https") != -1) {
returnUrl.url = this.clientUrl.replace("https", "wss") + this.clientNo + returnUrl.url;
} else {
returnUrl.url = this.clientUrl.replace("http", "ws") + this.clientNo + returnUrl.url;
}
}else {
returnUrl.url = this.clientUrl + this.clientNo + returnUrl.url;
}
console.log("returnUrl", returnUrl);
return returnUrl;
},
/* 解析LinkUrl */
getUrlParams: function (url) {
console.log('------getUrlParams--------');
console.log(url);
let theResult = {
url: '',
param: ''
};
if (url.indexOf('?') != -1) {
let str2 = url.substr(0, url.indexOf('?') - 5);
let str3 = url.substr(url.indexOf('?'));
theResult.url = str2;
theResult.param = str3;
}
if (url.indexOf('?') == -1) {
let str2 = url.substr(0, url.indexOf('.'));
let str3 = '';
theResult.url = str2;
theResult.param = str3;
}
console.log("======theResult======", theResult);
return theResult;
},
getSpaceStr: function (str, p) {
let theResult = {
str1: '',
str2: ''
};
if (str.indexOf(p) != -1) {
let str2 = str.substr(0, str.indexOf(p));
let str3 = str.substr(str.indexOf(p) + 1);
theResult.str1 = str2;
theResult.str2 = str3;
}
return theResult;
},
/* 转换成str 带?*/
jsonToStr: function (json) {
var returnParam = "?";
var str = [];
for (var p in json) {
str.push(p + "=" + json[p]); //str.push(encodeURIComponent(p) + "=" + encodeURIComponent(json[p]));
}
returnParam += str.join("&");
console.log(returnParam);
return returnParam;
},
// 不带问号 过滤loginTocken
jsonToStr2: function (json) {
console.log("==json===",json)
var returnParam = "";
var str = [];
for (var p in json) {
if (p != 'loginToken') {
str.push(p + "=" + json[p]);
}
}
returnParam += str.join("&");
console.log("returnParam", returnParam);
return returnParam;
},
//link事件 绑定导向对应的控件上
lookBigImage: function (e) {
let imgSrc = e.currentTarget.dataset.imageurl;
console.log(imgSrc);
let PostImageSrc = imgSrc.replace(/http/, "https"); // let PostImageSrc = imgSrc
console.log(PostImageSrc);
if (!imgSrc) {
return;
}
let urls = [];
urls.push(imgSrc);
wx.previewImage({
current: imgSrc,
// 当前显示图片的http链接
urls: urls // 需要预览的图片http链接列表
});
},
goto: function (linkUrl,jumpType) {
let that = this;
that.shareSubPage = false;
console.log('====linkUrl======', linkUrl);
if (!linkUrl) {
return;
}
let urlData = this.getUrlParams(linkUrl);
console.log("===========urlData============", urlData);
wx[jumpType||'navigateTo']({
url: "/pageTab/" + urlData.url + "/index" + urlData.param,
fail: function () {
//pages里不存在该页面
console.log("pageTab里不存在该页面,跳转pages目录下的页面");
wx[jumpType||'navigateTo']({
url: "/pages/" + urlData.url + "/index" + urlData.param,
success: function () {
that.shareSubPage = true;
},
fail: function () {
console.log("pages里不存在该页面,跳转pagesTwo目录下的页面");
wx[jumpType||'navigateTo']({
url: "/pagesTwo/" + urlData.url + "/index" + urlData.param,
success: function () {
that.shareSubPage = true;
},
fail: function () {
console.log("跳转tab页");
wx.switchTab({
url: "/pageTab/" + urlData.url + "/index" + urlData.param,
success: function () {
that.shareSubPage = true;
},
fail: function () {
console.log("跳转tunzai定制页");
wx.navigateTo({
url: "/pageTab/tunzai/" + urlData.url + "/index" + urlData.param,
success: function () {
that.shareSubPage = true;
},
fail: function () {
console.log("没有定义" + urlData.url + "页面");
that.toIndex();
}
});
}
});
}
});
}
});
}
});
},
//扫一扫 核销
getVerificationCode: function (e) {
console.log("getVerificationCode", e);
wx.scanCode({
onlyFromCamera: true,
success: scanRes => {
console.log("getVerificationCode", scanRes);
wx.navigateTo({
url: "/" + scanRes.path
});
}
});
},
linkEvent: function (linkUrl,jumpType,callback) {
let that = this;
console.log('====linkUrl======', linkUrl,jumpType);
if (!linkUrl) {
return;
}
that.footerCount = 0;
let urlData = that.getUrlParams(linkUrl);
let If_Order_url = urlData.url.substr(0, 10);
console.log('-----toGridLinkUrl---------');
console.log('==urlData===', urlData);
console.log(If_Order_url, that.showAuthorizationPopup); // wx.getSetting({//检查用户是否授权了
let paramStr=urlData.param;
console.log("paramStr",paramStr)
let paramsObj={};
if(paramStr&&paramStr.indexOf("&")!=-1){
paramStr=paramStr.slice(1).split('&');
for(let i=0;i<paramStr.length;i++){
let item={};
let itemArr=paramStr[i].split('=')
item[itemArr[0]]=itemArr[1];
paramsObj=Object.assign({},paramsObj,item)
// paramStr[i]=JSON.parse(JSON.stringify(item))
}
}else if(paramStr){
paramStr=paramStr.slice(1);
let item={};
let itemArr=paramStr.split('=')
item[itemArr[0]]=itemArr[1];
paramsObj=Object.assign({},paramsObj,item)
// paramStr=JSON.parse(JSON.stringify(item))
}
console.log("paramsObj",paramsObj,jumpType)
if(paramsObj.needLogin ==1&&!that.loginUser){
let urlData = that.getUrlParams('login.html');
that.linkToPage("login.html",urlData,jumpType);
return;
}
if (!linkUrl) {
return;
}
// #ifdef MP
if(!that.loginUser||jumpType=='reLaunch'){
console.log("=========111======")
that.linkToPage(linkUrl,urlData,jumpType,callback)
}else{
console.log("=========22======")
that.checkWxAuthUserInfo(function(){
that.linkToPage(linkUrl,urlData,jumpType,callback)
});
}
// #endif
// #ifdef APP-PLUS ||H5
that.linkToPage(linkUrl,urlData,jumpType,callback)
// #endif
},
checkWxAuthUserInfo:function(callback){
var that=this;
wx.getSetting({//检查用户是否授权了
success(res) {
console.warn("======检查用户是否授权了========", res)
if (!res.authSetting['scope.userInfo'] &&that.authorizationListenerItem) {
that.showAuthorizationPopup = true
that.authorizationListener(that.showAuthorizationPopup)
return 'authorization'
} else {
if(that.authorizationListenerItem){
console.log('=====已授权====')
}else{
console.log('=====没有检测到授权窗口item====')
}
callback();
}
}
})
},
linkToPage:function(linkUrl,urlData,jumpType,callback){
let that=this;
let If_Order_url = urlData.url.substr(0, 10);
if (linkUrl.substr(0, 3) == 'tel') {
wx.makePhoneCall({
phoneNumber: linkUrl.substr(4) //仅为示例,并非真实的电话号码
});
} else if (linkUrl.substr(0, 4) == 'http' && (linkUrl.substr(-3, 3).toLowerCase() == 'jpg' || linkUrl.substr(-3, 3).toLowerCase() == 'png')) {
that.lookBigImage(linkUrl);
} else if (linkUrl.substr(0, 12) == 'custom_page_'&&jumpType!='reLaunch') {
var resultUrl = linkUrl.substring(12, linkUrl.length - 5);
if (urlData.param == '') {
urlData.param = '?';
}
wx[jumpType||'navigateTo']({
url: '/pages/custom_page/index' + urlData.param + '&Cpage=' + resultUrl
});
} else if (If_Order_url == 'order_list') {
wx[jumpType||'navigateTo']({
url: '/pages/' + 'order_list_tab' + '/index' + urlData.param
});
} else if (linkUrl.substr(0, 14) == 'search_product') {
console.log("that.clientNo", that.clientNo);
that.goto(((that.properties.style_product_list || "milk_product_list") + ".html" + urlData.param),jumpType);
return;
} else if (linkUrl.substr(0, 18) == 'promotion_products') {
wx[jumpType||'navigateTo']({
url: '/pageTab/tunzai/teMai/index' + urlData.param
});
} else if (linkUrl.substr(0, 23) == 'milk_shopping_car_pages') {
wx[jumpType||'navigateTo']({
url: '/pagesTwo/milk_shopping_car_list/index' + urlData.param
});
} else if (linkUrl.substr(0, 9) == 'goto_mini') {
let appId = linkUrl.substr(21);
console.log("========appId======", appId);
wx.navigateToMiniProgram({
appId: appId,
path: '',
extraData: {},
envVersion: 'release',
success(res) {
console.log("小程序跳转成功", res);
}
});
} else if (linkUrl.substr(0, 13) == 'order_pintuan') {
wx[jumpType||'navigateTo']({
url: '/pages/' + 'order_pintuan_list' + '/index' + urlData.param
});
} else if (linkUrl.substr(0, 5) == 'https') {
let url = encodeURIComponent(linkUrl);
console.log("==url+web_view===", url);
wx[jumpType||'navigateTo']({
url: '/pages/' + 'web_view' + '/index?url=' + url
});
} else if (linkUrl.indexOf('_sysLinkMiniRewardAction') != -1) {
if (callback){
callback()
}
} else if (linkUrl.indexOf('_sysScanQrcode') != -1) {
that.getVerificationCode();
} else if (linkUrl.substr(0, 14) == 'product_detail') {
let productId = linkUrl.replace(/[^0-9]/ig, "");
console.log(linkUrl.substr(15, 6)); //
that.goto(((that.properties.style_product_detail || "productDetail") + ".html" + urlData.param + "&addShopId=0"),jumpType);
return;
} else if (linkUrl.indexOf('login.html') != -1) {
var url= 'app_login_page.html'+ urlData.param
// #ifdef MP
url='wx_login_page.html'+ urlData.param
// #endif
that.goto(url,jumpType);
return;
} else if (urlData.url == 'shop_map') {
that.openLocation();
} else if (urlData.url == 'location') {
console.log(urlData.param + urlData.url);
var params = urlData.param.slice(1);
let paramArr = params.split('&');
var paramObj = {};
for (let i = 0; i < paramArr.length; i++) {
var a = paramArr[i].split('=');
paramObj[a[0]] = a[1];
}
var a = Number(paramObj['latitude']);
var b = Number(paramObj['longitude']);
wx.openLocation({
latitude: a,
longitude: b,
scale: 12,
name: paramObj.title,
address: paramObj.description
});
} else {
that.goto(linkUrl,jumpType);
}
},
checkLogin: function () {
//let that = this
if (!this.loginUser) {
this.wxLogin();
}
},
/* 检查是否过期 */
checkSession: function () {
let that = this;
wx.checkSession({
success: function () {
console.log('session 未过期,并且在本生命周期一直有效');
wx.getStorage({
//拿cookie
key: 'cookie',
success: function (res) {
that.cookie = res.data;
that.header = {
'content-type': 'application/json',
// 默认值
'Cookie': res.data
};
that.headerPost = {
'content-type': 'application/x-www-form-urlencoded',
'Cookie': res.data
};
}
});
wx.getStorage({
key: 'loginUser',
success: function (res) {
that.loginUser = res.data;
}
});
},
fail: function () {
//登录态过期
console.log('登录态过期');
that.wxLogin();
}
});
},
/* 设置cookie */
setCookie: function (cookie) {
this.cookie = cookie;
this.header = {
'content-type': 'application/json',
// 默认值
'Cookie': cookie
};
this.headerPost = {
'content-type': 'application/x-www-form-urlencoded',
'Cookie': cookie
};
if (cookie) {
wx.setStorage({
key: "cookie",
data: cookie
});
}
},
//存用户信息
setloginUser: function (loginUser, cookie) {
console.log('--------setloginUser----------');
if (loginUser) {
wx.setStorage({
key: "loginUser",
data: loginUser
});
}
// if (cookie) {
// wx.setStorage({
// key: "cookie",
// data: cookie
// });
// }
},
//获取小程序session_key
getSessionFun: function (callback) {
let that=this;
console.log("====getSessionFun===")
uni.login({
//微信登入接口
provider: 'weixin',
success: function (res) {
console.log("=======wxCode======", res.code);
if (res.code && res.code.indexOf('mock') == -1) {
let customIndex = that.AddClientUrl("/wx_get_session_key_with_mini_code.html", {wxAuthCode:res.code}, 'post');
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
success: function (res) {
console.log('===========getSessionFun============', res);
callback(res);
},
fail: function (res) {}
});
} else {
console.log('获取用户登录态失败!' + res.errMsg);
}
},
fail: function (res) {
console.log('---------111111 fail登录失败----------',res);
},
complete: function (res) {
console.log('---------111111 complete登录结束----------',res);
wx.hideLoading();
}
});
},
//获取已经登录了的用户信息和login时一样
get_session_userinfo: function () {
let customIndex = this.AddClientUrl("/get_session_userinfo.html", {}, 'post');
let that = this;
wx.request({
url: customIndex.url,
//仅为示例,并非真实的接口地址
data: customIndex.params,
header: that.headerPost,
success: function (res) {
console.log('===========get_session_userinfo============', res);
if (res.data.errcode == 0) {
console.log(res.data.relateObj);
that.loginUser = res.data.relateObj;
that.setloginUser(res.data.relateObj);
}
},
fail: function (res) {}
});
},
//#ifdef APP-PLUS ||H5
getStorageFun:function(keyData,successFun,failFun){
let that=this;
console.log("====获取本地存储======")
uni.getStorage({
key: keyData,
success: function (res) {
console.log("==success===",res.data);
try{
successFun(res)
}catch(e){
console.log("没有成功回调的函数",e)
//TODO handle the exception
}
},
fail:function(err){
console.log("====fail====",err)
try{
failFun(err)
}catch(e){
console.log("没有成功回调的函数",e)
//TODO handle the exception
}
},
complete:function(){
}
});
},
setStorageFun:function(url,resData){
let that=this;
console.log("====本地存储======")
let resJsonData=JSON.stringify(resData)
uni.setStorage({
key: url,
data: resJsonData,
success: function (res) {
console.log('success',res);
}
});
},
removeStorageFun:function(url){
let that=this;
console.log("====移除本地存储======",url)
uni.removeStorage({
key: url,
success: function (res) {
console.log('success',res);
},
complete: function () {
wx.hideLoading();
}
});
},
//#endif
//sentWxUserInfo 第一次登录给他设置头像
sentWxUserInfo: function (loginJson,callback) {
console.warn("========sentWxUserInfo:loginJson=======", loginJson);
let that = this;
let userInfo = that.userInfo;
wx.getUserInfo({
success: function (res) {
console.log('--获取用户信息--');
console.log(res.userInfo);
userInfo = res.userInfo;
let infoParam = {
headimg: '',
nickname: '',
sex: ''
};
if (loginJson && loginJson.platformUser.telNo) {
console.error(loginJson.platformUser.telNo);
infoParam.telno = loginJson.platformUser.telNo;
} else {
infoParam.telno = '';
}
if(loginJson&&loginJson.platformUser&&loginJson.platformUser.userInfoFormCommitId){
infoParam.userInfoFormCommitId = loginJson.platformUser.userInfoFormCommitId;
}
infoParam.headimg = userInfo.avatarUrl;
infoParam.nickname = userInfo.nickName;
infoParam.sex = userInfo.gender; // 用户所在城市,市,区,
infoParam.city = userInfo.city;
if (that.loginUser.nickName != userInfo.nickName) {
let customIndex = that.AddClientUrl("/change_user_info.html", infoParam, 'post');
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (res) {
console.log('---change_user_info----- success-');
console.log(res.data);
if (res.data.errcode == 0) {
that.loginUser.nickName = userInfo.nickName;
that.loginUser.sex = userInfo.sex;
that.loginUser.userIcon = userInfo.avatarUrl;
console.log('-----第一次登录 传头像成功 --------');
} else {
console.log('-----第一次登录 传头像失败 --------');
}
if(callback){
callback(that.loginUser)
}
that.get_session_userinfo();
},
fail: function (res) {
console.log('-----第一次登录 传头像失败 回调fail--------');
console.log();
},
complete: function (res) {}
});
}
},
fail: function (e) {
console.log(e);
setTimeout(function () {
wx.showModal({
title: '授权提示',
content: '取消用户授权可能导致部分功能不可用,请确认授权!',
cancelText: '拒绝',
confirmText: '去授权',
success: function (res) {
if (res.confirm) {
wx.openSetting({
success: res => {
res.authSetting = {
"scope.userInfo": true
};
that.sentWxUserInfo(loginJson);
}
});
} else if (res.cancel) {}
}
});
}, 500);
}
});
},
getCaption: function (str1) {
var str2 = str1.match(/MINI_PLATFORM_USER_ID_(\S*)/)[1];
console.log("这是测试str2" + str2);
return str2;
},
hasNoScope: false,
showAuthUserInfoButton: true,
changeUserBelong: function (more_scene) {
if (!more_scene) return;
let changeMendianOnly = 0;
if (!this.loginUser || !this.loginUser.platformUser || this.loginUser.platformUser.parentId > 0) {
// console.log("parent id:"+this.loginUser.platformUser.parentId);
console.log("未登录或 已经有推广用户了");
if (this.setting.platformSetting && this.setting.platformSetting.scanChangeBelongMendian) {//判断用户是否可以变更归属门店
changeMendianOnly = 1;
} else {
return;
}
} else {
console.log("修改用户推广人");
}
let that = this;
console.error("hello:" + more_scene);
console.log("测试有没有调用");
let parentPlatformUserId = this.getCaption(more_scene);
console.error(parentPlatformUserId);
if (!parentPlatformUserId) {
return;
}
let param_post = {};
param_post.parentPlatformUserId = parentPlatformUserId;
param_post.changeMendianOnly = changeMendianOnly;
var customIndex = that.AddClientUrl("/change_fx_user.html", param_post, 'post');
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (res) {
console.warn('修改分销 -- 返回');
console.log(res.data);
if (res.data.errcode == 0) {
let loginUser = that.loginUser;
loginUser.platformUser.mendian = res.data.relateObj.mendian;
}
},
fail: function (res) {
that.loadFail();
}
});
},
loginWithLoginToken:function(loginToken,successFun,failFun,nextFun){
let that=this;
console.log("===loginWithLoginToken===",loginToken)
// that.toLogin("/get_session_userinfo.html?jsonOnly=1&loginToken="+loginToken, {},successFun,failFun)
// 修改20200904
that.toLogin("/get_session_userinfo.html?jsonOnly=1&loginToken="+loginToken, {},successFun,failFun).then(successData =>{
console.log("登入成功",successData);
that.getSetting().then(function(){
if(nextFun){
nextFun()
}
});
})
},
appLogin:function(params,successFun,failFun){
let that=this;
console.log("=====app登录=====",)
that.toLogin("/login.html?jsonOnly=1", params,successFun,failFun)
},
checkUserInfoFormCommit:function(){
let that=this
if (that.setting.platformSetting.userInfoCustomFormId&&that.setting.platformSetting.userNeedShenhe > 0 && that.loginUser &&!that.loginUser.platformUser.userInfoFormCommitId) {
that.linkEvent("pre_change_user_info.html",'reLaunch')
}
},
toLogin:function(url,params,successFun,failFun){
var that = this;
console.log("====url===",url,params)
let customIndex = that.AddClientUrl(url, params, 'post');
console.log("====customIndex===",customIndex)
return new Promise(function (resolve, reject){
resolve("登录中")
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (e) {
resolve("===调用成功====");
console.log("===========wx.login=============", e);
let header = e.header;
let cookie = null;
if (!!header['Set-Cookie']) {
cookie = header['Set-Cookie'];
}
if (!!header['set-cookie']) {
cookie = header['set-cookie'];
}
let loginJson = e.data.relateObj;
console.log("====cookie====",cookie)
that.setCookie(cookie);
// wx.getStorage({
// key: 'cookie',
// success: function (res) {
// cookie=res.data
// that.setCookie(cookie);
// },
// fail:function(err){
// console.log("cookie-fail",err)
// that.setCookie(cookie);
// },
// });
if (e.data.errcode == 0) {
resolve("===调用成功====");
that.setStorageFun("loginToken",loginJson.platformUser.loginToken);
that.loginToken=loginJson.platformUser.loginToken;
if(successFun){
successFun(e)
}
//that.setStorageFun("loginToken",loginJson.platformUser.loginToken)
console.log('登陆成功');
if (loginJson.platformUser.scanChangeBelongMendian == 1 && that.enterMenDianID != 0 && loginJson.platformUser.belongMendian != that.enterMenDianID && !loginJson.platformUser.managerMendianId) {
console.warn("扫码进来的变更归属门店");
that.changeUserBelongMendianFun(that.enterMenDianID,function(res){
console.log("==changeUserBelongMendianFun==",res)
loginJson.platformUser = res.data.relateObj;
that.setloginUser(loginJson, cookie);
that.loginUser = loginJson;
console.log("==that.loginUser====",that.loginUser)
that.globalData.sansanUser = that.loginUser;
})
} else {
// 把用户信息和cookie存在本地
that.setloginUser(e.data.relateObj, cookie);
that.loginUser = e.data.relateObj;
that.sansanUser = e.data.relateObj;
}
// 未登入成功的将登入成功的数据一一给与赋值
if (that.loginSuccessListeners && that.loginSuccessListeners.length > 0) {
for (let t = 0; t < that.loginSuccessListeners.length; t++) {
try {
that.loginSuccessListeners[t].loginSuccess(that.loginUser);
} catch (e) {
console.log(e);
}
}
}
wx.hideLoading();
socketFun.socketConnect();//链接通讯
// if (!loginJson.platformUser.nickname) {// console.error('没有昵称调用上传接口')
// //that.sentWxUserInfo(loginJson)
// }
that.changeUserBelong(that.USER_DEFINED_SCENE); //修改推荐人
that.checkUserInfoFormCommit();
} else {
console.log("失败原因" + JSON.stringify(e.data));
if(failFun){
failFun(e)
}
wx.hideLoading();
if (that.loginSuccessListeners && that.loginSuccessListeners.length > 0) {
console.log('000000000000', that.loginSuccessListeners);
for (let t = 0; t < that.loginSuccessListeners.length; t++) {
try {
that.loginSuccessListeners[t].loginFailed(e.data);
} catch (e) {
console.log(e);
}
}
}
}
},
fail: function (e) {
console.log('----fail------',e);
if(failFun){
failFun(e)
}
if (that.loginSuccessListeners && that.loginSuccessListeners.length > 0) {
for (let t = 0; t < that.loginSuccessListeners.length; t++) {
try {
that.loginSuccessListeners[t].loginFailed(e);
} catch (e) {
console.log(e);
}
}
}
}
})
})
},
changeUserBelongMendianFun:function(id,callback){
let that=this;
let customIndex = that.AddClientUrl("/wx_change_belong_mendian.html", {
scanMendianId: id
});
wx.request({
url: customIndex.url,
header: that.header,
success: function (res) {
console.log('change_belong_mendian', res);
if(callback){
callback(res)
}
},
fail: function (res) {
console.warn("change_belong_mendian_fail");
}
});
},
/* 微信登录测试 */
wxLogin: function (more_scene,successFun,failFun,nextFun) {
console.warn("===wxLogin===", more_scene);
if (!more_scene || more_scene == 'undefined') {
more_scene = '0';
}
var that = this;
console.log('--------------微信登录--------------');
uni.getProvider({
service: 'oauth',
success: function (res) {
console.log("===getProvider===",res.provider)
if (~res.provider.indexOf('weixin')) {
that.showToastLoading('登录中', true);
uni.login({
//微信登入接口
provider: 'weixin',
success: function (res) {
console.log("=======wxCode======", res.code, more_scene);
if (res.code && res.code.indexOf('mock') == -1) {
//发起网络请求
let loginParam = {};
loginParam.code = res.code;
loginParam.scene = more_scene;
// that.toLogin("/wx_mini_code_login.html",loginParam,successFun,failFun)
// 请求修改20200904
that.toLogin("/wx_mini_code_login.html",loginParam,successFun,failFun).then(newData =>{
console.log("====登入成功====",newData)
that.getSetting().then(function(){
console.log("app中以获取Setting");
if(nextFun){
nextFun()
}
})
});
} else {
console.log('获取用户登录态失败!' + res.errMsg);
}
},
fail: function (res) {
// 请求修改20200904
that.getSetting().then(function(){
console.log("app中以获取Setting");
if(nextFun){
nextFun()
}
})
console.log('---------111111 fail登录失败----------',res);
},
complete: function (res) {
console.log('---------111111 complete登录结束----------',res);
wx.hideLoading();
}
});
}
}
});
},
loginOut:function(url,params,successFun,failFun){
let that = this;
console.log("====url===",url,params)
let customIndex = that.AddClientUrl(url, params||{}, 'post');
console.log("====customIndex===",customIndex)
wx.request({
url: customIndex.url,
data: customIndex.params,
header: that.headerPost,
method: 'POST',
success: function (e) {
console.log("===========loginOut=============", e);
if (e.data.errcode == 0) {
console.log('---------退出成功----------',e);
that.showToastFun("退出成功!",1000,'success')
if(successFun){
successFun()
}
that.removeStorageFun("loginToken")
that.removeStorageFun("loginParams")
that.loginUser = null;
that.removeStorageFun("loginUser",function(res){
console.log(res.data);
console.log("==1==",that.loginUser);
that.loginUser = null;
console.log("==2==",that.loginUser);
})
that.removeStorageFun("cookie",function(res){
console.log(res.data);
that.cookie = null;
that.header = {
'content-type': 'application/json' // 默认值
};
that.headerPost = {
'content-type': 'application/x-www-form-urlencoded'
};
})
setTimeout(function(){
that.toIndex("reLaunch");
},1000)
}
},
fail: function (res) {
console.log('---------退出失败----------',res);
if(failFun){
failFun()
}
},
})
},
//获取setting
getSetting: function (self) {
if (!self) {
self = 0;
}
console.log('**************************************', self);
var settUrl = this.AddClientUrl("/get_platform_setting.html", {}, 'get', 1, 1);
var that = this;
console.log("======settUrl.url======", settUrl.url,that.header); //拿setting
return new Promise(function (resolve, reject) {
wx.request({
url: settUrl.url,
//仅为示例,并非真实的接口地址
header: that.header,
method: 'GET',
success: function (res) {
resolve(res);
console.log("====Promise-resSetting====", res.data); //获取门店ID
console.log("====门店ID====", res.data.platformSetting.defaultShopBean.defaultMendianId);
that.defaultMendianID = res.data.platformSetting.defaultShopBean.defaultMendianId;
if (res.data.platformSetting) {
that.clientName = res.data.platformSetting.platformName;
that.properties = res.data.platformSetting.properties;
if (res.data.platformSetting.categories) {
//产品类别
let categories = res.data.platformSetting.categories;
let allType = {};
allType.id = 'all';
allType.name = '全部';
allType.active = true;
for (let i = 0; i < categories.length; i++) {
categories[i].active = false;
}
categories.unshift(allType);
}
}
that.setting = res.data;
if (res.data.platformSetting.miniIndexPage) {
let miniIndexPage = that.getSpaceStr(res.data.platformSetting.miniIndexPage, '.');
that.miniIndexPage = miniIndexPage.str1;
that.miniIndexPageParams = miniIndexPage.str2;
} else {
that.miniIndexPage = 'custom_page_index';
}
if (!self) {} else {
self.setData({
setting: res.data
});
self.setNavBar();
}
wx.hideLoading(); //隐藏 loading 提示框
return;
let ShopBean = res.data.platformSetting.defaultShopBean;
if (ShopBean.serviceStartTime) {} // 完成初次加载
that.successOnlaunch = true;
},
fail: function (res) {
reject('error');
wx.hideLoading(); //隐藏 loading 提示框
that.loadFail(); //获取失败
}
});
// return new Promise(function (resolve, reject) {
//
// });
})
},
//微信内部地图
openLocation: function () {
console.log('---------打开地图-------');
let markers = this.setting.platformSetting.defaultShopBean;
let lat = Number(markers.latitude);
let lng = Number(markers.longitude);
let name = markers.shopName;
let address = '';
wx.getLocation({
type: 'gcj02',
//返回可以用于wx.openLocation的经纬度
success: function (res) {
console.log('11111');
wx.openLocation({
latitude: Number(markers.latitude),
longitude: Number(markers.longitude),
scale: 28,
name: name,
address: address,
success: function (res) {
console.log(res);
},
fail: function (res) {
console.log(res);
}
});
},
fail: function (res) {
console.log('22222');
console.log(res);
}
});
},
// 拼团转发
sharePintuan: function (pageName, pageTitle, pageCode) {
console.log('pageCode', pageName, pageTitle, pageCode);
let that = this;
let AllCode = '';
if (!pageCode) {
pageCode = '';
}
AllCode = pageCode;
console.log('AllCode', AllCode);
return {
title: pageTitle,
path: '/pages/' + pageName + '/index?' + AllCode,
success: function (res) {
console.log('转发出去的参数集合: ' + AllCode);
},
fail: function (res) {}
};
},
//带参转发
shareForFx: function (pageName, pageTitle, pageCode) {
let that = this;
let AllCode = '';
let fxCode = ''; //userId
if (this.loginUser) {
fxCode = 'scene=MINI_PLATFORM_USER_ID_' + this.loginUser.platformUser.id;
} else {
fxCode = 'scene=MINI_PLATFORM_USER_ID_' + this.more_scene;
}
if (!pageName) {
pageName = 'index';
}
if (!pageTitle) {
pageTitle = that.clientName;
}
if (!pageCode) {
pageCode = '';
AllCode = fxCode;
} else {
AllCode = fxCode + '&' + pageCode;
}
console.log('AllCode', AllCode);
return {
title: pageTitle,
path: '/pages/' + pageName + '/index?' + AllCode,
success: function (res) {
console.log('转发出去的参数集合: ' + AllCode);
},
fail: function (res) {}
};
},
// 获取二维码
getQrCode: function (data) {
console.log(" this.loginUser", this.loginUser);
let userId = "";
let mendianId = "";
if (this.loginUser && this.loginUser.platformUser) {
userId = 'MINI_PLATFORM_USER_ID_' + this.loginUser.platformUser.id;
if (this.loginUser.platformUser.managerMendianId) {
mendianId = '%26ENTER_MENDIAN%3d' + this.loginUser.platformUser.managerMendianId;
}
}
console.log("this.loginUser.platformUser", this.loginUser.platformUser.id);
console.log("data", data); // path=pageTab%2findex%2findex%3fAPPLY_SERVER_CHANNEL_CODE%3d'
let postParam = {};
if(data.otherParams){
postParam=JSON.parse(JSON.stringify(data.otherParams))
}
let str = '';
let str2 = '';
if (data.type == 'active') {
str = 'SHARE_PROMOTION_PRODUCTS_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_PROMOTION_PRODUCTS_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'news_detail') {
console.log(data.type);
str = 'SHARE_NEWS_DETAIL_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_NEWS_DETAIL_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'form_detail') {
console.log(data.type);
str = 'SHARE_FORM_DETAIL_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_FORM_DETAIL_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'check_form_detail') {
console.log(data.type);
str = 'SHARE_CHECK_FORM_DETAIL_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_CHECK_FORM_DETAIL_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'user_info') {
console.log(data.type);
str = 'SHARE_USER_INFO_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_USER_INFO_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'card_voucher') {
console.log(data.type);
str = 'SHARE_CARD_VOUCHER_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_CARD_VOUCHER_PAGE%3d';
postParam[str] = data.id;
} else if (data.type == 'pin_tuan') {
console.log(data.type);
str = 'PINTUAN_CODE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fPINTUAN_CODE%3d';
postParam[str] = data.id;
// 公用海报
} else if (data.type == 'common_page') {
console.log(data.type);
str = 'COMMON_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fCOMMON_PAGE%3d';
postParam[str] = data.id;
} else {
str = 'SHARE_PRODUCT_DETAIL_PAGE';
str2 = '/super_shop_manager_get_mini_code.html?mini=1&path=pageTab%2findex%2findex%3fSHARE_PRODUCT_DETAIL_PAGE%3d';
postParam[str] = data.id;
}
postParam.scene = userId;
console.log(str, str2, postParam); // 上面是需要的参数下面的url
var customIndex = this.AddClientUrl(str2 + postParam[str] + "%26hyaline%3d" + 1 + "%26scene%3d" + userId + mendianId, postParam, 'get', '1');
let paramStr=''
if(data.otherParams){
paramStr=encodeURIComponent('&'+this.jsonToStr2(data.otherParams));
}
console.log("==paramStr===",paramStr)
var result = customIndex.url.split("?");
customIndex.url = result[0] + "?" + result[1]+paramStr;
console.log("customIndex", customIndex.url, result[0]);
var that = this;
return customIndex.url;
},
shareForFx2: function (pageName, pageTitle, pageCode, imageUrl, aliasName) {
//组合参数,交给custompage_index 解析
// 组合参数所带
console.log("000000000000", pageName);
console.log("111111111111", pageTitle);
console.log("333333333333", pageCode);
let that = this;
let AllCode = '';
let fxCode = ''; //userId
if (that.loginUser && that.loginUser.platformUser) {
fxCode = 'scene=MINI_PLATFORM_USER_ID_' + that.loginUser.platformUser.id;
}
if (!pageName && !that.miniIndexPage) {
if (!that.miniIndexPage) {
pageName = 'custom_page_index';
} else {
pageName = that.miniIndexPage;
}
}
if (!pageTitle) {
pageTitle = that.clientName;
}
if (!pageCode) {
pageCode = {};
} // title存在的时候显示活动名
pageCode.clientNo= that.clientNo
if (pageCode.title && pageCode.title != "") {
pageTitle = that.clientName + "-" + pageCode.title;
}
if (pageCode.shopName) {
console.log("=========shopName=====", pageCode.shopName);
pageTitle = pageCode.shopName;
}
if (that.loginUser && that.loginUser.platformUser) {
pageCode.scene = 'MINI_PLATFORM_USER_ID_' + that.loginUser.platformUser.id;
} else {
pageCode.scene = 'MINI_PLATFORM_USER_ID_' + 0;
} // 如果带有id的产品传参则进入产品详情页
if (pageCode.id && pageCode.id != "" && pageName == "productDetail") {
pageCode.SHARE_PRODUCT_DETAIL_PAGE = pageCode.id;
} else if (pageCode.id && pageCode.id != "" && pageName == "news_detail") {
pageCode.SHARE_NEWS_DETAIL_PAGE = pageCode.id;
} else {
pageCode.SHARE_COMMON_PAGE = pageCode[aliasName];
pageCode.linkUrl = pageName;
}
if (pageCode.belongShop && pageCode.belongShop != "") {
pageCode.ENTER_SHOP = pageCode.belongShop;
} // jsonToStr2在333行
AllCode = that.jsonToStr2(pageCode);
console.log('转发出去的参数集合: ' + AllCode);
console.log('转发出去的imageUrl: ' + imageUrl);
console.log('转发出去的pageTitle: ' + pageTitle);
return {
title: pageTitle,
query:AllCode,
path: '/pageTab/index/index?' + AllCode,
imageUrl: imageUrl,
success: function (res) {},
fail: function (res) {}
};
},
toFix: function (money) {
money = money.toFixed(2);
return money;
},
lookBigImage: function (url, urls) {
console.log("==lookBigImage===", url, urls);
if (!url) {
return;
}
if (!urls) {
urls = [];
urls.push(url);
}
wx.previewImage({
current: url,
// 当前显示图片的http链接
urls: urls // 需要预览的图片http链接列表
});
},
getRad: function (d) {
let PI = Math.PI;
return d * PI / 180.0;
},
getDistance: function (lng1, lat1, lng2, lat2) {
let that = this;
let EARTH_RADIUS = 6378.1370; //单位KM
lng1 = parseFloat(lng1);
lat1 = parseFloat(lat1);
lng2 = parseFloat(lng2);
lat2 = parseFloat(lat2);
let radLat1 = that.getRad(lat1);
let radLat2 = that.getRad(lat2);
let a = radLat1 - radLat2;
let b = that.getRad(lng1) - that.getRad(lng2);
let s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(b / 2), 2)));
s = s * EARTH_RADIUS;
s = Math.round(s * 10000) / 10000.0;
console.log("====getDistance===", s);
return s;
},
showPrice: function (cartData, checkedItem) {
console.log("=====app-showPrice======", cartData, checkedItem);
let objData = {};
if (!cartData) {
// this.setData({
// countGood: 0,
// countPrice: 0
// })
objData = {
countGood: 0,
countPrice: 0
};
return objData;
}
var cartDataItem = cartData[0].carItems;
var checkedItem = checkedItem;
var pushItem = [];
var countGood = 0;
var countPrice = 0;
for (let i = 0; i < cartDataItem.length; i++) {
if (checkedItem) {
for (let j = 0; j < checkedItem.length; j++) {
if (cartDataItem[i].id == checkedItem[j]) {
pushItem.push(cartDataItem[i]);
}
}
} else {
pushItem.push(cartDataItem[i]);
}
} // for (let i = 0; i < cartDataItem.length; i++) {
// pushItem.push(cartDataItem[i])
// }
for (let i = 0; i < pushItem.length; i++) {
countGood += parseInt(pushItem[i].count);
console.log("====pushItem=====", pushItem[i]);
let promotionPrice = 0;
let carItemPrice = 0;
let specialSaleTypePrice = 0;
if (pushItem[i].item.itemSpecialSaleType == 1) {
if (parseInt(pushItem[i].count) * pushItem[i].carItemPrice >= Number(pushItem[i].item.itemSpecialSaleValue1)) {
specialSaleTypePrice = Number(pushItem[i].item.itemSpecialSaleValue2);
}
}
if (pushItem[i].item.promotion && pushItem[i].item.promotion != 0) {
promotionPrice = pushItem[i].item.promotionPrice;
} else {
carItemPrice = pushItem[i].carItemPrice;
}
console.log("====pushItem=====", promotionPrice, carItemPrice, specialSaleTypePrice);
if (pushItem[i].item.promotion && pushItem[i].item.promotion != 0) {
countPrice += parseInt(pushItem[i].count) * promotionPrice - specialSaleTypePrice;
} else {
countPrice += parseInt(pushItem[i].count) * carItemPrice - specialSaleTypePrice;
} // if (pushItem[i].item.promotion && pushItem[i].item.promotion!=0) {
// countPrice += parseInt(pushItem[i].count) * pushItem[i].item.promotionPrice
// } else {
// countPrice += parseInt(pushItem[i].count) * pushItem[i].carItemPrice
// }
}
countPrice = Number(countPrice.toFixed(2));
objData = {
pushItem: pushItem,
countGood: countGood,
countPrice: countPrice
};
return objData; // this.setData({
// pushItem: pushItem,
// countGood: countGood,
// countPrice: countPrice
// })
},
calling: function (phoneNumber) {
console.log('====e===', phoneNumber);
wx.makePhoneCall({
phoneNumber: phoneNumber,
//此号码并非真实电话号码,仅用于测试
success: function () {
console.log("拨打电话成功!");
},
fail: function () {
console.log("拨打电话失败!");
}
});
},
navigationToMap: function (info) {
console.log("===navigationToMap===",info);
// let info = e.currentTarget.dataset.info;
console.log(info);
let latitude = info.latitude || info.buyerLatitude;
let longitude = info.longitude || info.buyerLongitude;
let name = info.name || info.buyerName || info.belongShopName;
let address = info.address || info.buyerProvince + info.buyerCity + info.buyerArea + info.buyerAddress; // 判断金纬度是否为空
if (latitude == 0 || longitude == 0) {
console.log("判断金纬度是否为空");
wx.showModal({
title: '提示',
content: '主人~该门店没有设置位置哦!',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
return;
} else {
wx.openLocation({
latitude: latitude,
longitude: longitude,
scale: 12,
name: name,
address: address
});
}
},
SDKVersion: '',
// 个人信息,连接90行
getSdkVersion: function () {
//获取版本信息
let that = this;
wx.getSystemInfo({
success: function (res) {
console.log("=======getSystemInfo=========", res);
that.SDKVersion = res.SDKVersion;
}
});
},
compareVersion: function (v1, v2) {
//判断版本大小
v1 = v1.split('.');
v2 = v2.split('.');
var len = Math.max(v1.length, v2.length);
while (v1.length < len) {
v1.push('0');
}
while (v2.length < len) {
v2.push('0');
}
for (var i = 0; i < len; i++) {
var num1 = parseInt(v1[i]);
var num2 = parseInt(v2[i]);
if (num1 > num2) {
return 1;
} else if (num1 < num2) {
return -1;
}
}
return 0;
},
consoleFun:function(text,consoleData){
if(consoleData){
for(let i=0;i<consoleData.length;i++){
console.log((text?text:'')+i,consoleData[i])
}
}else{
console.log(text)
}
},
// 时间段
getNextSevenDays: function (num,type) {
let that = this;
let myDate = new Date();
let curDayData = myDate.getDay();
let curLocaleData = myDate.toLocaleDateString(); //获取当前日期
let nextSevenDaysList=[];
let dataNum=num||7
for (let i = 0; i < dataNum; i++) {
let switchData;
let oneData;
if (i + curDayData > 6 && i + curDayData < 14) {
switchData = i + curDayData - 7;
} else if (i + curDayData >= 14) {
switchData = i + curDayData - 14;
} else {
switchData = i + curDayData;
}
switch (switchData) {
case 0:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 1:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 2:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 3:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 4:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 5:
let oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
case 6:
oneData = that.getOneDay(i,type);
nextSevenDaysList.splice(nextSevenDaysList.length, 0, {
weekData: i != 0 ? '' : '',
oneData: oneData,
oneDataStr: oneData.slice(5).replace('-','.')
});
break;
}
}
return nextSevenDaysList
},
getOneDay: function (day,type) {
var dd = new Date();
dd.setDate(dd.getDate() + day); //获取AddDayCount天后的日期
var y = dd.getFullYear();
var m = dd.getMonth() + 1 < 10 ? (type=='00'?'0':'') + (dd.getMonth() + 1) : dd.getMonth() + 1; //获取当前月份的日期
var d = dd.getDate() < 10 ? (type=='00'?'0':'') + dd.getDate() : dd.getDate();
return y + "-" + m + "-" + d;
},
contrastTimeFun:function(time){
let that=this;
console.log("===contrastTimeFun===",time);
var t1 = time;
var d1 = t1.replace(/\-/g, "/");
var date1 = new Date(d1);
var today = new Date();
if(date1 .getTime()< today .getTime()){
return false
}else{
return true
}
},
},
onHide: function (e) {
console.log('hide', this.$options.globalData.shareSubPage);
console.log(e);
},
onShow: function (e) {
let that = this;
console.log('======app.show=====', that.$options.globalData);
console.log("=======eeeee======", e,that.$options.globalData.clientNo);
if(e){
that.$options.globalData.onLaunchOptions = e;
}
if (e.scene == "1011" || e.scene == "1012" || e.scene == "1013" || e.scene == "1047") {
that.$options.globalData.appHide = true;
console.log("=====1011====");
if (e.query.platformNo) {
console.log("HAHAHAHHAA" + e.query.platformNo);
if(e.query.platformNo!=that.$options.globalData.clientNo){
that.$options.globalData.shareSubPage = true;
that.$options.globalData.setting={platformSetting: {defaultColor: "#fff",secondColor: "#fff"}},
that.$options.globalData.clientNo=e.query.platformNo
that.$options.globalData.getSdkVersion();
let more_scene = decodeURIComponent(that.$options.globalData.onLaunchOptions.scene);
if (more_scene) {
that.$options.globalData.more_scene = more_scene;
}
console.log("clinetNo:" + that.$options.globalData.clientNo + " more_scene:" + more_scene);
that.$options.globalData.loadFirstEnter(more_scene);
}
}else{
let extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {};
console.log('extConfig1',extConfig);
if (extConfig.clientNo) {
console.log('extConfig2',extConfig);
if(extConfig.clientNo!=that.$options.globalData.clientNo){
that.$options.globalData.shareSubPage = true;
that.$options.globalData.setting={platformSetting: {defaultColor: "#fff",secondColor: "#fff"}},
that.$options.globalData.clientNo = extConfig.clientNo;
that.$options.globalData.getSdkVersion();
let more_scene = decodeURIComponent(that.$options.globalData.onLaunchOptions.scene);
if (more_scene) {
that.$options.globalData.more_scene = more_scene;
}
console.log("clinetNo:" + that.$options.globalData.clientNo + " more_scene:" + more_scene);
if(options.scene=='1154'||options.scene=='1155'){
that.$options.globalData.loadFirstEnter(more_scene);
}
}
}
}
}
console.log("=====on show===" + that.$options.globalData.clientNo);
/* let pagePath = e.path
if(this.appHide){
this.appHide = false
} */
},
/* 第一次加载 */
onLaunch: function (options) {
let that = this;
console.log('------onLaunch------', options,that.$options.globalData.clientNo);
that.$options.globalData.onLaunchOptions = options||{};
// this.getSdkVersion()获取 个人信息例如name,nickname,password,platformNo,手机号等等 在900行
that.$options.globalData.getSdkVersion();
let extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {};
console.log('extConfig1',extConfig);
if (extConfig.clientNo) {
console.log('extConfig2',extConfig);
that.$options.globalData.clientNo = extConfig.clientNo;
}
console.log('===' + that.$options.globalData.clientNo + '====');
console.log("options111", that.$options.globalData.onLaunchOptions);
let inputPlatformNo = that.$options.globalData.onLaunchOptions.query.platformNo;
if (!!inputPlatformNo) {
that.$options.globalData.clientNo = inputPlatformNo;
}
let more_scene = decodeURIComponent(that.$options.globalData.onLaunchOptions.scene);
if (more_scene) {
that.$options.globalData.more_scene = more_scene;
}
console.log("clinetNo:" + that.$options.globalData.clientNo + " more_scene:" + more_scene);
if(options.scene=='1154'||options.scene=='1155'){
that.$options.globalData.loadFirstEnter(more_scene);
}
},
methods: {}
};
</script>
<style>
/* @import url("./components/gaoyia-parse/parse.css");*/
@import "./app.css";
</style>
微信
1
https://gitee.com/sansanC/breakfast-subscription-applet.git
git@gitee.com:sansanC/breakfast-subscription-applet.git
sansanC
breakfast-subscription-applet
早餐订阅小程序
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891