提交 6c888ba1 authored 作者: 王鹏飞's avatar 王鹏飞

修改icp备案号

上级 59fc8e4a
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
href="https://beian.miit.gov.cn/#/Integrated/index" href="https://beian.miit.gov.cn/#/Integrated/index"
style="color: #fff; text-decoration: none" style="color: #fff; text-decoration: none"
> >
<p style="font-size: 12px">京ICP备15016866号-1</p> <p style="font-size: 12px">{{ icpNumber }}</p>
</a> </a>
</div> </div>
</div> </div>
...@@ -78,6 +78,28 @@ export default { ...@@ -78,6 +78,28 @@ export default {
{ title: 'Swiss Education Group ', href: 'www.swisseducation.com' } { title: 'Swiss Education Group ', href: 'www.swisseducation.com' }
] ]
} }
},
computed: {
icpNumber() {
const map = [
{ icp: '京ICP备15016866号-4', host: 'seg-aisa.cn' },
{ icp: '京ICP备15016866号-5', host: 'segedu.cn' },
{ icp: '京ICP备15016866号-6', host: 'segcdc.cn' },
{ icp: '京ICP备15016866号-7', host: 'segcdc.com' },
{ icp: '京ICP备15016866号-8', host: 'segshms.cn' },
{ icp: '京ICP备15016866号-9', host: 'segshms.com' },
{ icp: '京ICP备15016866号-10', host: 'segcrcs.com' },
{ icp: '京ICP备15016866号-11', host: 'segcrcs.cn' },
{ icp: '京ICP备15016866号-12', host: 'seghim.cn' },
{ icp: '京ICP备15016866号-13', host: 'seghim.com' },
{ icp: '京ICP备15016866号-14', host: 'seg-aisa.com' },
{ icp: '京ICP备15016866号-1', host: 'ezijing.com' }
]
const found = map.find(item => {
return window.location.hostname.includes(item.host)
})
return found ? found.icp : '京ICP备15016866号-1'
}
} }
} }
</script> </script>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论