24 lines
579 B
Vue
24 lines
579 B
Vue
<template>
|
|
<div class="ca_index">
|
|
<Space>
|
|
<Button type="primary" disabled>
|
|
<router-link to="/ca/user"> 个人数字证书申领入口 </router-link>
|
|
</Button>
|
|
<Button>
|
|
<router-link to="/ca/unit"> 企业数字证书申领入口 </router-link>
|
|
</Button>
|
|
</Space>
|
|
</div>
|
|
<router-view></router-view>
|
|
</template>
|
|
<style lang="less" scoped></style>
|
|
<script>
|
|
import { Button, Space } from "ant-design-vue";
|
|
// import { get } from "@/services/http.js";
|
|
|
|
export default {
|
|
name: "index",
|
|
components: { Button, Space }
|
|
};
|
|
</script>
|