123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- const WXAPI = require('apifm-wxapi')
- const CONFIG = require('config.js')
- const AUTH = require('utils/auth')
- App({
- onLaunch: function() {
- const subDomain = wx.getExtConfigSync().subDomain
- const componentAppid = wx.getExtConfigSync().componentAppid
- if (componentAppid) {
- wx.setStorageSync('appid', wx.getAccountInfoSync().miniProgram.appId)
- wx.setStorageSync('componentAppid', componentAppid)
- }
- if (subDomain) {
- WXAPI.init(subDomain)
- } else {
- WXAPI.init(CONFIG.subDomain)
- }
-
- const that = this;
- // 检测新版本
- const updateManager = wx.getUpdateManager()
- updateManager.onUpdateReady(function () {
- wx.showModal({
- title: '更新提示',
- content: '新版本已经准备好,是否重启应用?',
- success(res) {
- if (res.confirm) {
- // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
- updateManager.applyUpdate()
- }
- }
- })
- })
- /**
- * 初次加载判断网络情况
- * 无网络状态下根据实际情况进行调整
- */
- wx.getNetworkType({
- success(res) {
- const networkType = res.networkType
- if (networkType === 'none') {
- that.globalData.isConnected = false
- wx.showToast({
- title: '当前无网络',
- icon: 'loading',
- duration: 2000
- })
- }
- }
- });
- /**
- * 监听网络状态变化
- * 可根据业务需求进行调整
- */
- wx.onNetworkStatusChange(function(res) {
- if (!res.isConnected) {
- that.globalData.isConnected = false
- wx.showToast({
- title: '网络已断开',
- icon: 'loading',
- duration: 2000
- })
- } else {
- that.globalData.isConnected = true
- wx.hideToast()
- }
- })
- WXAPI.queryConfigBatch('mallName,WITHDRAW_MIN,ALLOW_SELF_COLLECTION,order_hx_uids,subscribe_ids,share_profile,adminUserIds,goodsDetailSkuShowType,shopMod,needIdCheck,balance_pay_pwd').then(res => {
- if (res.code == 0) {
- res.data.forEach(config => {
- wx.setStorageSync(config.key, config.value);
- })
- if (this.configLoadOK) {
- this.configLoadOK()
- }
- }
- })
- },
- onShow (e) {
- // 保存邀请人
- if (e && e.query && e.query.inviter_id) {
- wx.setStorageSync('referrer', e.query.inviter_id)
- if (e.shareTicket) {
- wx.getShareInfo({
- shareTicket: e.shareTicket,
- success: res => {
- wx.login({
- success(loginRes) {
- if (loginRes.code) {
- WXAPI.shareGroupGetScore(
- loginRes.code,
- e.query.inviter_id,
- res.encryptedData,
- res.iv
- ).then(_res => {
- console.log(_res)
- }).catch(err => {
- console.error(err)
- })
- } else {
- console.error('登录失败!' + loginRes.errMsg)
- }
- }
- })
- }
- })
- }
- }
- // 自动登录
- AUTH.checkHasLogined().then(isLogined => {
- if (!isLogined) {
- AUTH.login()
- }
- })
- },
- globalData: {
- isConnected: true,
- sdkAppID: CONFIG.sdkAppID
- }
- })
|