You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
3.1 KiB

4 years ago
<template>
2 years ago
<div id="app">
<select-business class="selectBusiness"
:showIt.sync="showIt"
v-show="!showIt && showBusiness" />
<router-view></router-view>
<vCase :showIt.sync="showIt"></vCase>
<tip-dialog class="Z-9999" />
</div>
4 years ago
</template>
<script>
2 years ago
import vCase from '@/components/case'
import Setting from '@/setting';
import util from '@/libs/util';
import selectBusiness from '@/components/selectBusiness'
import TipDialog from '@/components/tipDialog'
import { mapState, mapMutations } from 'vuex'
2 years ago
import Bus from '@/libs/bus'
2 years ago
export default {
name: 'App',
components: {
vCase,
selectBusiness,
TipDialog
},
created () {
//在页面加载时读取localStorage里的状态信息
if (util.local.get(Setting.storeKey)) {
this.$store.replaceState(Object.assign({}, this.$store.state, util.local.get(Setting.storeKey)))
this.$store.system.replaceState(Object.assign({}, sessionStorage.getItem('systemData')))
4 years ago
2 years ago
}
//在页面刷新时将vuex里的信息保存到localStorage里
window.addEventListener("beforeunload", () => {
if (this.$route.fullPath.includes('/counter/list/manage')) {
sessionStorage.setItem('computerPath', this.$route.fullPath)
}
util.local.get(Setting.tokenKey) && util.local.set(Setting.storeKey, this.$store.state)
sessionStorage.setItem('systemData', this.$store.system.state)
})
},
data () {
return {
showIt: true,
showSelect: false
}
},
methods: {
...mapMutations({
setShowBusiness: 'system/setShowBusiness',
setTipsOperate: 'system/setTipsOperate'
}),
},
watch: {
showIt: {
2 years ago
handler (newVal) {
2 years ago
console.log("🚀 ~ file: App.vue:58 ~ handler ~ newVal:", newVal, this.businessKey, sessionStorage.getItem('submited'))
if (!newVal && !this.businessKey && !sessionStorage.getItem('submited')) {
this.setShowBusiness(true)
} else {
if (!newVal) {
// 如果未选择业务,则关闭后继续弹出弹框
if (!this.businessKey && !sessionStorage.getItem('submited')) {
this.$nextTick(() => { this.setShowBusiness(true) })
} else {
// this.setTipsOperate('您正在进行' + this.businessKey + ',加油!');
3 years ago
}
2 years ago
} else {
this.$nextTick(() => { this.setShowBusiness(false) })
}
}
},
immediate: true
4 years ago
}
2 years ago
},
2 years ago
mounted () {
Bus.$on('setShowIt', data => {
this.showIt = data
})
},
2 years ago
computed: {
...mapState({
businessKey: state => state.system.businessKey,
showBusiness: state => state.system.showBusiness,
})
},
}
3 years ago
</script>
<style lang="scss" scoped>
3 years ago
#app {
3 years ago
font-size: 16px;
min-width: $inner-width;
3 years ago
}
3 years ago
.selectBusiness {
width: 100%;
height: 100%;
}
3 years ago
2 years ago
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s;
3 years ago
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
2 years ago
opacity: 0;
3 years ago
}
3 years ago
.Z-9999 {
position: absolute;
z-index: 9999;
}
3 years ago
</style>