This commit is contained in:
2021-04-24 16:39:32 +08:00
parent 6af9e8f15e
commit 76839bc258
4 changed files with 45 additions and 31 deletions

View File

@@ -1,22 +1,33 @@
<template>
<div class="ca_index">
<a-space>
<a-button>
<router-link to="/ca/userapply"> 个人数字证书申领入口 </router-link>
</a-button>
<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-button>
<router-link to="/ca/unitapply"> 企业数字证书申领入口 </router-link>
</a-button>
</a-space>
</div>
<router-view></router-view>
</template>
<style lang="less" scoped></style>
<style lang="less" scoped>
.ca-index {
text-align: center;
}
</style>
<script>
export default {
name: "index"
name: "index",
setup() {
return { size: 25 };
}
};
</script>