fail.vue 857 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <script setup lang="ts">
  2. import { useColumns } from "./columns";
  3. defineOptions({
  4. name: "Fail"
  5. });
  6. const { columns } = useColumns();
  7. </script>
  8. <template>
  9. <el-card shadow="never">
  10. <template #header>
  11. <div class="card-header">
  12. <span class="font-medium">失败页</span>
  13. </div>
  14. </template>
  15. <el-result
  16. icon="error"
  17. title="提交失败"
  18. sub-title="请核对并修改以下信息后,再重新提交。"
  19. >
  20. <template #extra>
  21. <el-button type="primary">返回修改</el-button>
  22. </template>
  23. </el-result>
  24. <PureDescriptions
  25. :columns="columns"
  26. title="您提交的内容有如下错误:"
  27. class="p-6 w-[90%] m-auto bg-[#fafafa] dark:bg-[#1d1d1d]"
  28. />
  29. </el-card>
  30. </template>
  31. <style scoped>
  32. :deep(.el-descriptions__body) {
  33. background: transparent;
  34. }
  35. </style>