shuishen
2021-12-31 19621635052322005f31579f7f3d481750898d7c
src/pcviews/arc/teaching.vue
@@ -3,7 +3,7 @@
 * @Name: 教学科研
 * @Date: 2021-11-15 17:14:47
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-12-25 14:45:10
 * @Last Modified time: 2021-12-30 14:54:33
 */
<template>
    <div>
@@ -24,10 +24,11 @@
    computed: {
        ...mapGetters([
            // 校内导航的显示关闭
            'orgNavBarFlag'
            'orgNavBarFlag',
            'arcNavBarFlag'
        ])
    },
    created () {
    mounted () {
        if (this.orgNavBarFlag == true) {
            this.$store.commit('SET_ORGNAVBARTITLE', '')
            this.$store.commit('SET_ORGNAVBARLIST', [])
@@ -39,6 +40,13 @@
    },
    methods: {
    },
    beforeDestroy () {
        if (this.arcNavBarFlag == true) {
            this.$store.commit('SET_ARCNAVBARTITLE', '')
            this.$store.commit('SET_ARCNAVBARCODE', '')
            this.$store.commit('SET_ARCNAVBARFLAG', false)
        }
    }
}
</script>