| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <script>
- import utils from './common/utils.js'
- import config from './config.js'
- export default {
- onLaunch: function(e) {
- // 隐私政策
- // #ifdef APP-PLUS
- this.isFirstEnter();
- // #endif
- console.log('App Launch');
- //#ifdef MP-WEIXIN
- //检查更新
- this.updateManager();
- //#endif
- // #ifdef APP-PLUS
- plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
- uni.request({
- url: config.app_url + '/index.php/api/index/update',
- data: {
- version: widgetInfo.version,
- name: widgetInfo.name,
- app_id: config.app_id,
- platform: uni.getSystemInfoSync().platform
- },
- success: (result) => {
- console.log(result);
- var data = result.data.data.result;
- if (data.update && data.wgtUrl) {
- uni.downloadFile({
- url: data.wgtUrl,
- success: (downloadResult) => {
- if (downloadResult.statusCode === 200) {
- plus.runtime.install(downloadResult
- .tempFilePath, {
- force: true
- },
- function() {
- console.log('install success...');
- plus.nativeUI.alert(
- "已更新至最新版本,确定后将重启应用",
- function() {
- plus.runtime.restart();
- }, "更新提示", "确定");
- },
- function(e) {
- console.error('install fail...');
- });
- }
- }
- });
- }
- if (data.update && data.pkgUrl) {
- plus.nativeUI.confirm("有新版本更新,请点击确认更新到最新版本,以免影响使用", function(e) {
- if (e.index == 0) {
- plus.runtime.openURL(data.pkgUrl);
- }
- }, {
- "title": "更新提示",
- "buttons": ["确定", "取消"],
- "verticalAlign": "center"
- });
- }
- },
- error: (error) => {
- console.log('----------------error');
- console.log(error);
- }
- });
- });
- // #endif
- //应用启动参数
- this.onStartupScene(e.query);
- // #ifndef APP-PLUS
- this.getTabBarLinks();
- //#endif
- },
- onShow: function() {
- //console.log('App Show')
- },
- onHide: function() {
- //console.log('App Hide')
- },
- methods: {
- isFirstEnter() {
- var firstEnter = uni.getStorageSync('firstEnter'); //同步获取缓存中是否有首次进入字段
- let self = this;
- uni.getSystemInfo({
- success(data) {
- console.log('firstEnter='+ firstEnter);
- // 如果是ios并且没有firstEnter缓存则弹出模态框
- if (data.platform == 'ios' && !firstEnter) {
- console.log('---------------');
- uni.navigateTo({
- url: '/pages/privacy/privacy'
- })
- }
- }
- })
- },
- updateManager: function() {
- const updateManager = uni.getUpdateManager();
- updateManager.onCheckForUpdate(function(res) {
- // 请求完新版本信息的回调
- if (res.hasUpdate) {
- updateManager.onUpdateReady(function(res2) {
- uni.showModal({
- title: '更新提示',
- content: '新版本已经准备好,即将重启应用',
- showCancel: false,
- success(res2) {
- if (res2.confirm) {
- // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
- updateManager.applyUpdate();
- }
- }
- });
- });
- }
- });
- updateManager.onUpdateFailed(function(res) {
- // 新的版本下载失败
- uni.showModal({
- title: '更新提示',
- content: '检查到有新版本,但下载失败,请检查网络设置',
- showCancel: false
- });
- });
- },
- /**
- * 小程序启动场景
- */
- onStartupScene(query) {
- // 获取场景值
- let scene = utils.getSceneData(query);
- // 记录推荐人id
- let refereeId = query.referee_id;
- if (refereeId > 0) {
- if (!uni.getStorageSync('referee_id')) {
- uni.setStorageSync('referee_id', refereeId);
- }
- }
- // 记录分销人id
- let uid = scene.uid;
- if (uid > 0) {
- uni.setStorageSync('referee_id', uid);
- }
- // 邀请有礼id
- let invitation_id = query.invitation_id;
- if (invitation_id > 0) {
- uni.setStorageSync('invitation_id', invitation_id);
- }
- let invitid = scene.invitid;
- if (invitid > 0) {
- uni.setStorageSync('invitation_id', invitid);
- }
- // 如果是h5,设置app_id
- // #ifdef H5
- let appId = query.app_id;
- if (appId > 0) {
- uni.setStorageSync('app_id', appId);
- }
- if (uni.getStorageSync('app_id')) {
- this.config.app_id = uni.getStorageSync('app_id');
- }
- // #endif
- },
- getTabBarLinks() {
- uni.request({
- url: this.config.app_url + '/index.php/api/index/nav',
- data: {
- app_id: this.config.app_id
- },
- success: (result) => {
- let vars = result.data.data.vars;
- uni.setStorageSync('TabBar', vars);
- uni.setTabBarStyle({
- color: vars.no_color,
- selectedColor: vars.color,
- })
- vars.menus.forEach((item, index) => {
- uni.setTabBarItem({
- index: index,
- text: item.text,
- iconPath: item.iconPath,
- selectedIconPath: item.selectedIconPath
- })
- })
- }
- });
- }
- }
- }
- </script>
- <style>
- @import './common/iconfont.css';
- @import './common/myIcon.css';
- /*每个页面公共css */
- @import './common/style.css';
- </style>
|