Files
jczxw-java/src/views/result/success.vue
2021-07-29 16:17:26 +08:00

31 lines
882 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>
<div class="ele-body">
<a-card :bordered="false">
<div style="max-width: 960px;margin: 0 auto;">
<a-result
status="success"
title="提交成功"
sub-title="提交结果页用于反馈一系列操作任务的处理结果如果仅是简单操作使用 Message 全局提示反馈即可灰色区域可以显示一些补充的信息">
<div>已提交申请等待部门审核</div>
<template #extra>
<a-space size="middle">
<a-button type="primary">返回列表</a-button>
<a-button>查看项目</a-button>
<a-button>打印</a-button>
</a-space>
</template>
</a-result>
</div>
</a-card>
</div>
</template>
<script>
export default {
name: 'ResultSuccess'
}
</script>
<style scoped>
</style>