1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| /*
| * @Author: Morpheus
| * @Name: 教学与科研机构
| * @Date: 2021-11-15 10:02:12
| * @Last Modified by: Morpheus
| * @Last Modified time: 2021-12-21 15:12:33
| */
| <template>
| <div>
| <org-nav-bar :navList="list"
| :title="title"></org-nav-bar>
| </div>
| </template>
|
| <script>
| import { getList } from '@/api/pc/orgnav/index'
| export default {
| data () {
| return {
| title: '教学与科研机构',
| list: []
| }
| },
| created () {
| getList({ type: 4 }).then(res => {
| res.data.data.records.forEach(item => {
| this.list.push({
| navTitle: item.mechanismname,
| icon: '/img/navicon/tag.png',
| longitude: item.jd,
| latitude: item.wd,
| alt: item.gd,
| heading: item.heading,
| pitch: item.pitch,
| roll: item.roll,
| bgImg: item.tpurl,
| QRImg: item.codeurl,
| address: item.address,
| telephone: item.telephone,
| introduce: item.introduce
| })
| })
| })
| },
| methods: {
| closeModel () {
| this.$store.dispatch('delVisitedViews', this.$route)
| this.$router.push('/pcLayout/default')
| }
| }
| }
| </script>
|
| <style>
| </style>
|
|