Error.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <a-card :bordered="false" style="margin: -24px -24px 0px;">
  3. <result type="error" :title="title" :description="description">
  4. <template slot="action">
  5. <a-button type="primary" >返回修改</a-button>
  6. </template>
  7. <div>
  8. <div style="font-size: 16px; color: rgba(0, 0, 0, 0.85); font-weight: 500; margin-bottom: 16px">
  9. 您提交的内容有如下错误:
  10. </div>
  11. <div style="margin-bottom: 16px">
  12. <a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
  13. 您的账户已被冻结
  14. <a style="margin-left: 16px">立即解冻 <a-icon type="right" /></a>
  15. </div>
  16. <div>
  17. <a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
  18. 您的账户还不具备申请资格
  19. <a style="margin-left: 16px">立即升级 <a-icon type="right" /></a>
  20. </div>
  21. </div>
  22. </result>
  23. </a-card>
  24. </template>
  25. <script>
  26. import { Result } from '@/components'
  27. export default {
  28. name: 'Error',
  29. components: {
  30. Result
  31. },
  32. data () {
  33. return {
  34. title: '提交失败',
  35. description: '请核对并修改以下信息后,再重新提交。'
  36. }
  37. }
  38. }
  39. </script>
  40. <style scoped>
  41. </style>