34 lines
793 B
Vue
34 lines
793 B
Vue
<template>
|
|
<div class="ca-index">
|
|
<a-space direction="vertical" :size="size">
|
|
<div>
|
|
<a-space :size="size">
|
|
<a-button>
|
|
<router-link to="/ca/userapply"> 个人数字证书申领入口 </router-link>
|
|
</a-button>
|
|
<a-button>
|
|
<router-link to="/ca/unitapply"> 企业数字证书申领入口 </router-link>
|
|
</a-button>
|
|
</a-space>
|
|
</div>
|
|
<a-button type="primary">
|
|
<router-link to="/ca/sealapply"> 电子印章申请入口 </router-link>
|
|
</a-button>
|
|
</a-space>
|
|
</div>
|
|
<router-view></router-view>
|
|
</template>
|
|
<style lang="less" scoped>
|
|
.ca-index {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
<script>
|
|
export default {
|
|
name: "index",
|
|
setup() {
|
|
return { size: 25 };
|
|
}
|
|
};
|
|
</script>
|