12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- this.autoUpdate();
- // if (uni.getStorageSync('userInfo')){
- // uni.reLaunch({
- // url: '/pages/home/index'
- // })
- // } else{
- // // #ifdef APP-PLUS
- // uni.reLaunch({
- // url: '/pages/login/appIndex'
- // })
- // // #endif
- // // #ifdef MP-WEIXIN
- // uni.reLaunch({
- // url: '/pages/login/index'
- // })
- // // #endif
- // }
- },
- onHide: function() {
- console.log('App Hide')
- },
- methods: {
- autoUpdate() {
- if (wx.canIUse('getUpdateManager')) {
- const updateManager = wx.getUpdateManager();
- updateManager.onCheckForUpdate(res => {
- if (res.hasUpdate) {
- updateManager.onUpdateReady(() => {
- wx.showModal({
- title: '更新提示',
- content: '发现新版本,是否更新?',
- success: function(res) {
- if (res.confirm) {
- updateManager.applyUpdate();
- }
- }
- })
- });
- updateManager.onUpdateFailed(function() {
- wx.showModal({
- title: '最新版提示',
- content: '新版本已上线,请您删除当前小程序,重新搜索打开',
- showCancel: false
- })
- });
- }
- })
- } else {
- wx.showModal({
- title: '提示',
- content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。',
- showCancel: false
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "@/uni_modules/uview-ui/index.scss";
- @import "@/static/iconfont.css";
- .visibleItemCount {
- z-index: 99999999999 !important;
- }
- * {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- html,
- body {
- font-family: PingFangSC-Regular, PingFang SC;
- font-size: 24rpx;
- width: 100%;
- height: 100%;
- }
-
- ::v-deep .u-icon__icon{
-
- }
- </style>
|