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
| <template>
| <shemi v-if="isSM"></shemi>
| <gongkong v-else></gongkong>
| </template>
| <script>
| import shemi from './shemi.vue'
| import gongkong from './gongkong.vue'
| export default {
| components: {shemi,gongkong},
| data() {
| return {
| nodeId: 0,
| isSM: false
| }
| },
| computed: {},
| watch: {
|
| },
| methods: {
|
| },
| mounted() {
| //判断版本 0:涉密网,1:工控网;
| // axios({url: '/blade-mdm/system/param/getValue?paramKey=networkType',method: 'get'}).then(res => {
| // if(res.data.data === "0") {
| // this.isSM = true;
| // }else {
| // this.getPre();
| // }
| // }
| // );
| }
| };
| </script>
|
| <style lang="scss">
|
| </style>
|
|