update:个人申请数字证书流程

This commit is contained in:
2021-01-19 17:34:18 +08:00
parent 1b4a68e3c2
commit 7861c622d2
8 changed files with 200 additions and 17 deletions

View File

@@ -1,19 +1,23 @@
<template>
<div class="ca_index">
数字证书管理
<router-view></router-view>
<Space>
<Button type="primary">
<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 { get } from "@/services/http.js";
import { Button, Space } from "ant-design-vue";
// import { get } from "@/services/http.js";
export default {
name: "index",
components: {},
async created() {
var res = await get("/api2/dictionary/children", { code: "abc" });
console.log(res);
}
components: { Button, Space }
};
</script>