1 Star 0 Fork 57

HenryHit/tt-app-mall

forked from javazj/tt-app-mall 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 3.74 KB
一键复制 编辑 原始数据 按行查看 历史
javazj 提交于 2020-02-17 21:23 . 添加头条二维码,在线看演示
const WXAPI = require('utils/apifm-ttapi')
const CONFIG = require('config.js')
const AUTH = require('utils/auth')
App({
onLaunch: function(options) {
console.log('onLaunch', options)
WXAPI.init(CONFIG.subDomain) // 从根目录的 config.js 文件中读取
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,
complete: function() {
that.goStartIndexPage()
}
})
} else {
that.globalData.isConnected = true
wx.hideToast()
}
});
// 获取接口和后台权限
WXAPI.vipLevel().then(res => {
that.globalData.vipLevel = res.data
})
// 获取商城名称
WXAPI.queryConfigBatch('mallName,recharge_amount_min,WITHDRAW_MIN,ALLOW_SELF_COLLECTION,tt_vet_open').then(function(res) {
if (res.code == 0) {
res.data.forEach(config => {
wx.setStorageSync(config.key, config.value);
if (config.key === 'recharge_amount_min') {
that.globalData.recharge_amount_min = config.value;
}
})
}
})
// 读取评价赠送多少积分
WXAPI.scoreRules({
code: 'goodReputation'
}).then(function(res) {
if (res.code == 0) {
that.globalData.order_reputation_score = res.data[0].score;
}
})
// 拉取站点信息
WXAPI.siteStatistics().then(res => {
if (res.code == 0) {
if (res.data.wxAppid) {
wx.setStorageSync('wxAppid', res.data.wxAppid);
}
}
})
},
goStartIndexPage: function() {
setTimeout(function() {
wx.redirectTo({
url: "/pages/start/start"
})
}, 1000)
},
onShow (e) {
console.log('onShow', e)
this.globalData.launchOption = 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 => {
// console.error(res)
// console.error({
// referrer: e.query.inviter_id,
// encryptedData: res.encryptedData,
// iv: res.iv
// })
WXAPI.shareGroupGetScore(
e.query.inviter_id,
res.encryptedData,
res.iv
)
}
})
}
}
// 自动登录
AUTH.checkHasLogined().then(isLogined => {
if (!isLogined) {
AUTH.login()
}
})
},
globalData: {
isConnected: true,
launchOption: undefined,
vipLevel: 0
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wyjhit/tt-app-mall.git
git@gitee.com:wyjhit/tt-app-mall.git
wyjhit
tt-app-mall
tt-app-mall
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385