update:个人CA申请入口打开 新增查询接口

update:法人CA使用vue3.0组合式api
This commit is contained in:
2021-01-31 23:21:58 +08:00
parent a3af7a6ba0
commit 59320849a2
11 changed files with 743 additions and 479 deletions

30
src/views/CA/Result.vue Normal file
View File

@@ -0,0 +1,30 @@
<template>
<Result
status="success"
title="您的企业已经完成数字证书申领"
sub-title="已经申领过数字证书的企业无法再次申领如需补办请联系管理人员"
>
<template #extra>
<!-- <Button type="primary">
申请补办
</Button> -->
<Button @click="router.back()"> 返回 </Button>
</template>
</Result>
</template>
<script>
import { Result, Button } from "ant-design-vue";
import { useRouter } from "vue-router";
export default {
components: {
Result,
Button
},
setup() {
const router = useRouter();
return {
router
};
}
};
</script>