1 Star 0 Fork 3

supertony/原生微信小程序点餐系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
清风挽心 提交于 2024-03-08 17:32 . 商城版本V1
// app.js
import config from './utils/config.js'
const collection = require('./utils/collection.js')
App({
onLaunch() {
// 展示本地存储能力
const logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 更新
this.globalData.sysinfo = wx.getSystemInfoSync()
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
})
},
globalData: {
userInfo: {
avatarUrl:'',
nickName:'',
},
function: {
...collection
},
config
}
})
/**
* 全局分享配置,页面无需开启分享
* 使用隐式页面函数进行页面分享配置
* 使用隐式路由(wx.onAppRoute)获取当前页面路由,并根据路由来进行全局分享、自定义分享
*/
! function () {
let shareUrl= 'https://jinning-image.zhuangdongxiang.cn/2023-12-11/2c659495d0459540cfa234ec03fbe9ae.jpg'
//获取页面配置并进行页面分享配置
var PageTmp = Page
Page = function (pageConfig) {
//1. 获取当前页面路由
let routerUrl = "pages/home/index"
// wx.onAppRoute(function (res) {
// let pages = getCurrentPages(),
// view = pages[pages.length - 1];
// routerUrl = view.route
// })
//2. 全局开启分享配置
pageConfig = Object.assign({
onShareAppMessage: function () {
let shareInfo={}
shareInfo = {
title: "您的好友邀您使用【蜀靓鸭】",
imageUrl: shareUrl,
path: '/'+ routerUrl,
}
return shareInfo
},
onShareTimeline: function () {
let shareInfo={}
shareInfo = {
title: "您的好友邀您使用【蜀靓鸭】",
imageUrl: shareUrl,
path: '/'+ routerUrl,
}
return shareInfo
},
}, pageConfig);
// 配置页面模板
PageTmp(pageConfig);
}
}();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/supertony/order_dingcan.git
git@gitee.com:supertony/order_dingcan.git
supertony
order_dingcan
原生微信小程序点餐系统
master

搜索帮助