123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- <script>
- import Vue from 'vue';
- import {
- setGlobalImagePath
- } from '@/utils/globalImageLoader'
- export default {
- onLaunch: function() {
- this.loadGlobalImages()
- let that = this;
- //预登录
- if (!uni.getStorageSync('token')) {
- uni.login({
- provider: 'weixin',
- success: function(loginRes) {
- console.log(loginRes, '************')
- let data = {
- code: loginRes.code,
- }
- that.$Request.get('/app/Login/wxLogin', data).then(res => {
- if (res.code == 0) {
- uni.setStorageSync('openId', res.data.open_id)
- uni.setStorageSync('unionId', res.data.unionId)
- uni.setStorageSync('sessionkey', res.data.session_key)
- let inviterCode = '';
- if (uni.getStorageSync('inviterCode')) {
- inviterCode = uni.getStorageSync('inviterCode')
- }
- let sendData = {
- openId: uni.getStorageSync('openId'),
- unionId: uni.getStorageSync('unionId'),
- userName: '微信用户',
- avatar: '',
- sex: '1', //性别
- inviterCode: inviterCode //别人登录进来携带你的邀请码
- };
- uni.setStorageSync('sendDataList', sendData)
- if (res.data.isPhone == 2) { //需要授权手机号则走手机号授权
- uni.setStorageSync('weixinPhone', true)
- } else { //不需要手机号则则直接走授权登录
- uni.setStorageSync('weixinPhone', false)
- }
- // that.$Request.getT('/app/common/type/188').then(ret => {
- // if (ret.code == 0) {
- // if (ret.data && ret.data.value && ret.data.value ==
- // '是') {
- // phoneNum = true;
- // let flag = res.data.flag;
- // if (flag == '1' && phoneNum) { //需要授权手机号则走手机号授权
- // uni.setStorageSync('weixinPhone', true)
- // } else { //不需要手机号则则直接走授权登录
- // uni.setStorageSync('weixinPhone', false)
- // }
- // } else {
- // uni.setStorageSync('weixinPhone', false)
- // }
- // }
- // });
- }
- })
- }
- });
- }
- setInterval(() => {
- if (uni.getStorageSync('token')) {
- this.$Request.getT('/app/message/getUserMessageCount').then(res => {
- if (res.code == 0 && res.data) {
- uni.setTabBarBadge({
- index: 3,
- text: '' + res.data
- })
- } else {
- uni.removeTabBarBadge({
- index: 3
- })
- }
- });
- }
- }, 3000)
- //#ifdef APP-PLUS
- // APP检测更新 具体打包流程可以参考:https://ask.dcloud.net.cn/article/35667
- plus.screen.lockOrientation('portrait-primary'); //竖屏正方向锁定
- //获取是否热更新过
- const updated = uni.getStorageSync('updated'); // 尝试读取storage
- if (updated.completed === true) {
- // 如果上次刚更新过
- // 删除安装包及安装记录
- console.log('安装记录被删除,更新成功');
- uni.removeSavedFile({
- filePath: updated.packgePath,
- success: res => {
- uni.removeStorageSync('updated');
- }
- });
- } else if (updated.completed === false) {
- uni.removeStorageSync('updated');
- plus.runtime.install(updated.packgePath, {
- force: true
- });
- uni.setStorage({
- key: 'updated',
- data: {
- completed: true,
- packgePath: updated.packgePath
- },
- success: res => {
- console.log('成功安装上次的更新,应用需要重启才能继续完成');
- }
- });
- uni.showModal({
- title: '温馨提示',
- content: '应用将重启以完成更新',
- showCancel: false,
- complete: () => {
- plus.runtime.restart();
- }
- });
- } else {
- //获取当前系统版本信息
- plus.runtime.getProperty(plus.runtime.appid, widgetInfo => {
- //请求后台接口 解析数据 对比版本
- that.$Request.getT('/app/user/selectNewApp').then(res => {
- res = res.data[0];
- if (res.wgtUrl && widgetInfo.version < res.version) {
- let downloadLink = '';
- let androidLink = res.androidWgtUrl;
- let iosLink = res.iosWgtUrl;
- let ready = false;
- //校验是是不是热更新
- if (res.wgtUrl.match(RegExp(/.wgt/))) {
- // 判断系统类型
- if (plus.os.name.toLowerCase() === 'android') {
- console.log('安卓系统');
- if (androidLink && androidLink !== '#') {
- // 我这里默认#也是没有地址,请根据业务自行修改
- console.log('发现下载地址');
- // 安卓:创建下载任务
- if (androidLink.match(RegExp(/.wgt/))) {
- console.log('确认wgt热更新包');
- downloadLink = androidLink;
- ready = true;
- } else {
- console.log('安卓推荐.wgt强制更新,.apk的强制更新请您自行修改程序');
- }
- } else {
- console.log('下载地址是空的,无法继续');
- }
- } else {
- console.log('苹果系统');
- if (iosLink && iosLink !== '#') {
- // 我这里默认#也是没有地址,请根据业务自行修改
- console.log('发现下载地址');
- // 苹果(A):进行热更新(如果iosLink是wgt更新包的下载地址)判断文件名中是否含有.wgt
- if (iosLink.match(RegExp(/.wgt/))) {
- console.log('确认wgt热更新包');
- downloadLink = iosLink;
- ready = true;
- } else {
- console.log('苹果只支持.wgt强制更新');
- }
- } else {
- console.log('下载地址是空的,无法继续');
- }
- }
- if (ready) {
- console.log('任务开始');
- let downloadTask = uni.downloadFile({
- url: downloadLink,
- success: res => {
- if (res.statusCode === 200) {
- // 保存下载的安装包
- console.log('保存安装包');
- uni.saveFile({
- tempFilePath: res.tempFilePath,
- success: res => {
- const packgePath = res
- .savedFilePath;
- // 保存更新记录到stroage,下次启动app时安装更新
- uni.setStorage({
- key: 'updated',
- data: {
- completed: false,
- packgePath: packgePath
- },
- success: () => {
- console
- .log(
- '成功保存记录'
- );
- }
- });
- // 任务完成,关闭下载任务
- console.log(
- '任务完成,关闭下载任务,下一次启动应用时将安装更新'
- );
- downloadTask.abort();
- downloadTask = null;
- }
- });
- }
- }
- });
- } else {
- console.log('下载地址未准备,无法开启下载任务');
- }
- } else {
- //不是热更新是在线更新 校验是否强制升级
- if (res.method == 'true') {
- uni.showModal({
- showCancel: false,
- confirmText: '立即更新',
- title: '发现新版本',
- content: res.des,
- success: res => {
- if (res.confirm) {
- that.$queue.showLoading('下载中...');
- if (uni.getSystemInfoSync().platform ==
- 'android') {
- uni.downloadFile({
- url: androidLink,
- success: downloadResult => {
- if (downloadResult
- .statusCode ===
- 200) {
- plus.runtime
- .install(
- downloadResult
- .tempFilePath, {
- force: false
- },
- d => {
- console
- .log(
- 'install success...'
- );
- plus.runtime
- .restart();
- },
- e => {
- console
- .error(
- 'install fail...'
- );
- }
- );
- }
- }
- });
- }
- if (uni.getSystemInfoSync().platform ==
- 'ios') {
- plus.runtime.openURL(iosLink, function(
- res) {});
- }
- } else if (res.cancel) {
- console.log('取消');
- }
- }
- });
- } else {
- uni.showModal({
- title: '发现新版本',
- confirmText: '立即更新',
- cancelText: '下次更新',
- content: res.des,
- success: res => {
- if (res.confirm) {
- that.$queue.showLoading('下载中...');
- if (uni.getSystemInfoSync().platform ==
- 'android') {
- uni.downloadFile({
- url: androidLink,
- success: downloadResult => {
- if (downloadResult
- .statusCode ===
- 200) {
- plus.runtime
- .install(
- downloadResult
- .tempFilePath, {
- force: false
- },
- d => {
- console
- .log(
- 'install success...'
- );
- plus.runtime
- .restart();
- },
- e => {
- console
- .error(
- 'install fail...'
- );
- }
- );
- }
- }
- });
- }
- if (uni.getSystemInfoSync().platform ==
- 'ios') {
- plus.runtime.openURL(iosLink, function(
- res) {});
- }
- } else if (res.cancel) {
- console.log('取消');
- }
- }
- });
- }
- }
- }
- });
- });
- }
- //#endif
- //#ifdef H5
- if (!uni.getStorageSync('token')) {
- let inviterCode = '';
- if (window.location.href.indexOf('?invitation=') !== -1 || window.location.href.indexOf(
- '&invitation=') !==
- -1) {
- if (window.location.href.indexOf('?invitation=') !== -1) {
- inviterCode = window.location.href.split('?invitation=')[1].split('&')[0];
- this.$queue.setData('inviterCode', window.location.href.split('?invitation=')[1].split('&')[
- 0]);
- } else {
- inviterCode = window.location.href.split('&invitation=')[1].split('&')[0];
- this.$queue.setData('inviterCode', window.location.href.split('&invitation=')[1].split('&')[
- 0]);
- }
- }
- this.$Request.get('/app/common/type/443').then(res => {
- if (res.data && res.data.value && res.data.value == '是') {
- let ua = navigator.userAgent.toLowerCase();
- if (ua.indexOf('micromessenger') !== -1) {
- let openid = uni.getStorageSync('openid');
- let userId = uni.getStorageSync('userId');
- let that = this;
- if (!openid) {
- if (window.location.href.indexOf('?code=') !== -1 || window.location.href
- .indexOf('&code=') !==
- -1) {
- let code;
- if (window.location.href.indexOf('?code=') !== -1) {
- code = window.location.href.split('?code=')[1].split('&')[0];
- } else {
- code = window.location.href.split('&code=')[1].split('&')[0];
- }
- this.$Request.getT('/app/Login/getOpenId?code=' + code).then(
- ret => {
- this.$queue.setData('openid', ret.data)
- this.$Request.getT('/app/Login/openid/login?openId=' + ret
- .data + '&userType=1').then(res => {
- if (res.code == 0) {
- this.$queue.setData("userId", res.user.userId);
- this.$queue.setData("token", res.token);
- this.$queue.setData("phone", res.user.phone);
- this.$queue.setData("userName", res.user
- .userName);
- this.$queue.setData("avatar", res.user.avatar);
- this.$queue.setData("invitationCode", res.user
- .invitationCode);
- this.$queue.setData("inviterCode", res.user
- .inviterCode);
- }
- });
- });
- } else {
- window.location.href =
- 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +
- that.$queue.getWxAppid() + '&redirect_uri=' +
- window.location.href.split('#')[0] +
- '&response_type=code&scope=snsapi_userinfo#wechat_redirect';
- }
- } else {
- this.$Request.getT('/app/Login/openid/login?openId=' + openid + '&userType=1')
- .then(res => {
- if (res.code == 0) {
- this.$queue.setData("userId", res.user.userId);
- this.$queue.setData("token", res.token);
- this.$queue.setData("phone", res.user.phone);
- this.$queue.setData("userName", res.user.userName);
- this.$queue.setData("avatar", res.user.avatar);
- this.$queue.setData("invitationCode", res.user.invitationCode);
- this.$queue.setData("inviterCode", res.user.inviterCode);
- }
- });
- }
- }
- }
- })
- }
- // if (e.invitation) {
- // this.$queue.setData('inviterCode', e.invitation);
- // }
- //#endif
- },
- onShow: function() {
- console.log('App Show')
- //客服方式 1企业微信 2系统 343
- this.$Request.getT('/app/common/type/343').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.$queue.setData('kefu', res.data.value)
- }
- }
- });
- //客服AppId 341
- this.$Request.getT('/app/common/type/341').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.$queue.setData('kefuAppId', res.data.value)
- }
- }
- });
- //客服链接 342
- this.$Request.getT('/app/common/type/342').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.$queue.setData('kefuUrl', res.data.value)
- }
- }
- });
- //客服的电话 252
- this.$Request.getT('/app/common/type/252').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.$queue.setData('kefuPhone', res.data.value)
- }
- }
- });
- //是否开启线上收费 是(线上) 否(线下) 633
- this.$Request.getT('/app/common/type/633').then(res => {
- if (res.code === 0) {
- uni.setStorageSync('isOnline', res.data.value)
- }
- });
- //小程序是否上线审核
- // this.$Request.getT('/app/common/type/270').then(res => {
- // if (res.code == 0) {
- // if (res.data && res.data.value) {
- // // #ifdef MP-WEIXIN
- // this.$queue.setData('xcxSelect', res.data.value)
- // // #endif
- // // #ifndef MP-WEIXIN
- // this.$queue.setData('xcxSelect', '是')
- // // #endif
- // }
- // }
- // });
- this.$Request.getT('/app/common/type/313').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- // #ifdef MP-WEIXIN
- this.$queue.setData('xcxSelect', res.data.value)
- // #endif
- // #ifndef MP-WEIXIN
- this.$queue.setData('xcxSelect', '是')
- // #endif
- }
- }
- });
- //是否开启在线聊天 817
- this.$Request.getT('/app/common/type/817').then(res => {
- if (res.code === 0) {
- uni.setStorageSync('zxMsg', res.data.value)
- }
- });
- //是否开启隐私电话 813
- this.$Request.getT('/app/common/type/813').then(res => {
- if (res.code === 0) {
- uni.setStorageSync('ysPhone', res.data.value)
- }
- });
- this.$Request.getT('/app/common/type/366').then(res => {
- if (res.code == 0) {
- if (res.data && res.data.value) {
- this.$queue.setData('FPxcxSelect', res.data.value)
- }
- }
- });
- //#ifdef APP-PLUS
- let clientid = plus.push.getClientInfo().clientid;
- let userId = this.$queue.getData('userId');
- let sysPhone = 1;
- if (plus.os.name.toLowerCase() === 'android') {
- sysPhone = 1;
- } else {
- sysPhone = 2;
- }
- console.log(clientid);
- if (userId) {
- this.$Request.getT('/app/user/updateClientId?clientId=' + clientid + '&userId=' +
- userId + '&sysPhone=' + sysPhone).then(res => {
- });
- }
- // if (uni.getSystemInfoSync().platform == 'android') {
- // let clientid = plus.push.getClientInfo().clientid;
- // let userId = this.$queue.getData('userId');
- // if (userId) {
- // console.log(clientid,'----',userId)
- // this.$Request.getT('/app/user/updateClientId?clientId=' + clientid + '&userId='+ userId).then(
- // res => {});
- // }
- // }
- //#endif
- // 判断账号是否封禁
- // let CheckuserId = this.$queue.getData("userId")
- // if (CheckuserId) {
- // this.$Request.getT('/app/userinfo/bannedFlag').then(res => {
- // if (res.code == 0) {
- // if (res.data == 2) {
- // uni.showModal({
- // title: '账号已被封禁',
- // content: '请在【我的】【我的客服】申诉,申诉成功后重新登录',
- // showCancel: false,
- // cancelText: '',
- // confirmText: '我知道了',
- // success: res => {
- // uni.clearStorageSync()
- // },
- // fail: () => {},
- // complete: () => {}
- // });
- // }
- // }
- // })
- // }
- },
- onHide: function() {
- console.log('App Hide')
- },
- methods: {
- loadGlobalImages() {
- uni.request({
- url: 'http://192.168.50.122:8179/sqx_fast/app/common/type/818',
- method: 'GET',
- success: (res) => {
- const path = res.data?.data?.value || ''
- setGlobalImagePath(path)
- console.log('✅ 全局图片加载成功:', path)
- },
- fail: () => {
- setGlobalImagePath('')
- console.warn('⚠️ 全局图片加载失败')
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-ui/index.scss";
- @import '@/static/css/colorui-main.css';
- @import '@/static/css/colorui-icon.css';
- </style>
|