liuyg
2022-01-08 5e47738f99e307bab1c8a5ee9ecd96d8c7f4a968
src/pcviews/orgnav/teaching.vue
@@ -3,7 +3,7 @@
 * @Name: 教学与科研机构
 * @Date: 2021-11-15 10:02:12
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-12-25 15:11:00
 * @Last Modified time: 2021-12-30 14:26:13
 */
 <template>
    <div>
@@ -24,11 +24,12 @@
    },
    computed: {
        ...mapGetters([
            // 校内导航的显示关闭
            // 社区内导航的显示关闭
            'orgNavBarFlag',
            'arcNavBarFlag'
        ])
    },
    created () {
    mounted () {
        if (this.arcNavBarFlag == true) {
            this.$store.commit('SET_ARCNAVBARTITLE', '')
            this.$store.commit('SET_ARCNAVBARCODE', '')
@@ -54,7 +55,8 @@
                    QRImg: item.codeurl,
                    address: item.address,
                    telephone: item.telephone,
                    introduce: item.introduce
                    introduce: item.introduce,
                    videourl: item.videourl
                })
            })
@@ -63,6 +65,13 @@
    },
    methods: {
    },
    beforeDestroy () {
        if (this.orgNavBarFlag == true) {
            this.$store.commit('SET_ORGNAVBARTITLE', '')
            this.$store.commit('SET_ORGNAVBARLIST', [])
            this.$store.commit('SET_ORGNAVBARFLAG', false)
        }
    }
}
</script>