src/pcviews/arc/dorm.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:43 */ <template> <div> 校内建筑 </div> <div> <arc-nav-bar :title="title" :arcCode="code"></arc-nav-bar> </div> </template> <script> export default { data () { return { title: '学生宿舍', code: 4 } }, created () { }, methods: { closeModel () { this.$store.dispatch('delVisitedViews', this.$route) this.$router.push('/pcLayout/default') } } } </script> <style> </style>