4 Star 0 Fork 0

dan/app-play-short

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 4.58 KB
一键复制 编辑 原始数据 按行查看 历史
XiaYk 提交于 2024-08-07 10:42 . 版本更新
<!--
* @Description:
* @Author: FangYaoTang
* @Date: 2023-08-16 08:57:26
* @LastEditor: FangYaoTang
* @LastEditTime: 2023-09-08 11:22:45
* @Copyright: by 南京桓羽信息科技有限公司 禁止任何形式(包含二次开发)转售系统源码,违者必究。
-->
<script>
// #ifdef APP-PLUS
const request = require('./common/request/index').default
const utils = require('./common/utils/index.js').default
import checkappupdate from '@/common/utils/checkappupdate.js'
import api from '@/common/request/api.js'
// #endif
import { imgAxios } from '@/components/jqueryImg.js'
import { mapState, mapGetters, mapMutations, mapActions } from 'vuex'
export default {
data() {
return {
show: true
}
},
globalData: {
status: 1,
isColor: '',
isBgColor: ''
},
async onLaunch(options) {
let that = this
//做img接口请求
console.log('App Launch')
// 保存分享参数(H5、小程序)
options.query.scene && this.setShare({ spm: options.query.scene })
// 获取配置信息
// #ifdef APP-PLUS
// nvue变量
this.request = request
this.utils = utils
// 锁定竖屏模式
plus.screen.lockOrientation('portrait-primary')
// app版本检测
checkappupdate.check({ api: this.$BASE_URL + api.common.update.url })
// #endif
// #ifdef APP-PLUS
const systemInfo = uni.getSystemInfoSync();
this.$request('common.checkUpdate', systemInfo, false).then(res => {
let { newversion, downloadurl, enforce, content } = res.data
plus.runtime.getProperty(plus.runtime.appid,(wgtinfo)=>{
if (newversion !== wgtinfo.version) {
uni.navigateTo({
url: '/pages/home/update'
})
}
})
})
// #endif
// #ifdef H5
// 朋友圈场景
if (options.scene === 1155) {
if (options.path != 'pages/home/index') {
uni.switchTab({ url: '/pages/home/index' })
}
}
// 小程序更新
const updateManager = uni.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate, '版本检测')
if (res.hasUpdate) {
updateManager.onUpdateReady(function (res) {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: (res) => {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function (res) {
// 新版本下载失败
uni.showModal({
title: '提示',
content: '新版小程序下载失败\n请自行退出程序,手动卸载本程序,再运行',
confirmText: '知道了'
})
})
}
})
// #endif
that.$isResolve()
},
onShow() {
const vm = this
// #ifdef H5
imgAxios({}).then((res) => {})
// #endif
//小程序自动登陆
// this.isLogin()
console.log('App Show')
setTimeout(() => {
vm.getConfigInfo()
}, 300)
},
onUnload() {
console.log('App onUnload')
},
onHide: function () {
console.log('App Hide')
},
methods: {
async isLogin() {
// #ifdef H5
// console.log('进入')
// const obj = {
// host: this.$WXOA_CALLBACK,
// event: 'login',
// }
// const payload = encodeURIComponent(JSON.stringify(obj))
// const redirect_uri = encodeURIComponent(`${this.$BASE_URL}/addons/drama/user/wxOfficialAccountOauth/sign/${this.$SIGN}?payload=${payload}`)
// const oauthUrl = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${this.$store.state.app.appid}&redirect_uri=${redirect_uri}&response_type=code&scope=snsapi_userinfo&state=1`
// const page = getCurrentPages()
// const prevPage = page[page.length - 2]
// const lastPage = prevPage&&prevPage.__page__.fullPath
// if(lastPage){
// uni.setStorageSync('lastPage', lastPage)
// window.location.href = oauthUrl
// }
// #endif
},
...mapActions('user', ['getUserInfo']),
...mapActions('app', ['getConfigInfo']),
...mapMutations('app', ['setShare'])
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import '@/uview-ui/index.scss';
@import '@/common/style/style.scss';
view {
font-family: PingFangSC, PingFang SC;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/danc/app-play-short.git
git@gitee.com:danc/app-play-short.git
danc
app-play-short
app-play-short
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385