update
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user