12345678910111213141516171819202122232425262728 |
- <template>
- <div>课程表</div>
- </template>
- <script>
- export default {
- name: "index",
- data() {
- return{
- }
- },
- methods:{
- openLink() {
- window.open('https://ycszxy.bozedu.net/page/school_service/school_schedule.html','_blank');
- this.$router.back();
- }
- },
- mounted() {
- this.openLink();
- }
- }
- </script>
- <style scoped>
- </style>
|