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