raylinx/pages/Footer/SiteMap.vue
frankkeres 6599754f1d init
2025-02-14 18:46:25 +08:00

45 lines
1.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<div class="sitemap_view">
<div v-for="i in sitemapLsit">
<div style="font-size: 18px;display: inline;">{{ i.index }}.</div><a :href="i.url">{{ i.title }}</a>
</div>
</div>
</div>
</template>
<script>
export default {
data(){
return{
sitemapLsit:[
{index:'1',title:'锐联国际-AWS云代理商',url:'/'},
{index:'2',title:'云产品_aws云服务器_海外云服务器_价格计划-锐联国际',url:'/pricing/highBandwidthServer'},
{index:'3',title:'客户案例-锐联国际',url:'/cases'},
{index:'4',title:'AWS服务-锐联国际',url:'/aws-services'},
{index:'5',title:'知识中心-锐联国际',url:'/knowledge-center'},
{index:'6',title:'联系我们-锐联国际',url:'/contact'},
{index:'7',title:'关于我们-锐联国际',url:'/about'},
{index:'8',title:'一篇文章了解AWS—知识中心-锐联国际',url:'/KnowledgeBase/AliyunGlobalOverview'},
{index:'9',title:'Rayinx公司召开内部会议致力于提供卓越的AWS云服务体验—新闻资讯-锐联国际',url:'/News/RaylinxAmazonSummitChina'},
{index:'10',title:'Raylinx积极参与亚马逊云科技中国峰会开启服务客户新征程—新闻资讯-锐联国际',url:'/News/RaylinxInternalMeetingAws'},
{index:'11',title:'Raylinx携手亚马逊云科技共赴数字化升级与AI赋能之旅—新闻资讯-锐联国际',url:'/News/RaylinxAwsDigitalAiJourney'},
{index:'12',title:'拥抱数字化转型Raylinx与亚马逊云科技共启创新之旅—新闻资讯-锐联国际',url:'/News/RaylinxDigitalTransformation'},
]
}
}
}
</script>
<style lang="scss" scoped>
.sitemap_view {
width: 99%;
margin: 0 auto;
padding-top: 5%;
min-height: 700px;
a {
color: blue;
}
}
</style>