app接收到报警记录后处理方法
This commit is contained in:
parent
05664feb52
commit
52f83b39e0
76
App.vue
76
App.vue
@ -1,35 +1,53 @@
|
||||
<script>
|
||||
import config from './config'
|
||||
import store from '@/store'
|
||||
import { getToken } from '@/utils/auth'
|
||||
import config from './config'
|
||||
import store from '@/store'
|
||||
import {
|
||||
getToken
|
||||
} from '@/utils/auth'
|
||||
|
||||
export default {
|
||||
onLaunch: function() {
|
||||
this.initApp()
|
||||
},
|
||||
methods: {
|
||||
// 初始化应用
|
||||
initApp() {
|
||||
// 初始化应用配置
|
||||
this.initConfig()
|
||||
// 检查用户登录状态
|
||||
//#ifdef H5
|
||||
this.checkLogin()
|
||||
//#endif
|
||||
},
|
||||
initConfig() {
|
||||
this.globalData.config = config
|
||||
},
|
||||
checkLogin() {
|
||||
if (!getToken()) {
|
||||
this.$tab.reLaunch('/pages/login')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
export default {
|
||||
onLaunch: function() {
|
||||
this.initApp();
|
||||
this.listenMessage();
|
||||
},
|
||||
methods: {
|
||||
listenMessage() {
|
||||
// #ifdef APP-PLUS
|
||||
const _self = this;
|
||||
const _handlePush = function(message) {
|
||||
// TODO
|
||||
console.log(message);
|
||||
if (message.payload.type === "alarm") {
|
||||
uni.navigateTo({
|
||||
url: '/pages/work/alarm/detailsAlarm?id=' + message.payload.id
|
||||
});
|
||||
}
|
||||
};
|
||||
plus.push.addEventListener('click', _handlePush);
|
||||
// #endif
|
||||
},
|
||||
// 初始化应用
|
||||
initApp() {
|
||||
// 初始化应用配置
|
||||
this.initConfig()
|
||||
// 检查用户登录状态
|
||||
//#ifdef H5
|
||||
this.checkLogin()
|
||||
//#endif
|
||||
},
|
||||
initConfig() {
|
||||
this.globalData.config = config
|
||||
},
|
||||
checkLogin() {
|
||||
if (!getToken()) {
|
||||
this.$tab.reLaunch('/pages/login')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import '@/static/scss/index.scss';
|
||||
@import "uview-ui/index.scss";
|
||||
@import '@/static/scss/index.scss';
|
||||
@import "uview-ui/index.scss";
|
||||
</style>
|
Loading…
Reference in New Issue
Block a user