31 lines
654 B
Vue
31 lines
654 B
Vue
<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>
|