liuyg
2021-12-15 ae038d50b068a02c4fe53725095dc952bf75b797
src/pcviews/arc/rest.vue
@@ -1,15 +1,35 @@
/*
 * @Author: Morpheus
 * @Name: 其他楼宇
 * @Date: 2021-11-15 17:14:47
 * @Last Modified by: Morpheus
 * @Last Modified time: 2021-12-15 11:48:17
 */
<template>
  <div>
      校内建筑
  </div>
    <div>
        <arc-nav-bar :title="title"
                     :arcCode="code"></arc-nav-bar>
    </div>
</template>
<script>
export default {
    data () {
        return {
            title: '其他楼宇',
            code: 7
        }
    },
    created () {
    },
    methods: {
        closeModel () {
            this.$store.dispatch('delVisitedViews', this.$route)
            this.$router.push('/pcLayout/default')
        }
    }
}
</script>
<style>
</style>