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

修改icp备案号

上级 3653edc0
......@@ -50,8 +50,12 @@
">
<p style="font-size: 12px;">安备 11010802023681号</p>
</a>
<a target="_blank" href="https://beian.miit.gov.cn/#/Integrated/index" style="color: #fff;text-decoration:none;">
<p style="font-size: 12px;">京ICP备15016866号-1</p>
<a
target="_blank"
href="https://beian.miit.gov.cn/#/Integrated/index"
style="color: #fff; text-decoration: none"
>
<p style="font-size: 12px">{{ icpNumber }}</p>
</a>
</div>
</div>
......@@ -69,6 +73,28 @@ export default {
{ 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>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论