Files
sgt_ca_app/src/views/CA/Result.vue
zhangqi 59320849a2 update:个人CA申请入口打开 新增查询接口
update:法人CA使用vue3.0组合式api
2021-01-31 23:21:58 +08:00

31 lines
654 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>