Error.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <a-card :bordered="false">
  3. <result :is-success="false" :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">立即解冻
  15. <a-icon type="right"/>
  16. </a>
  17. </div>
  18. <div>
  19. <a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
  20. 您的账户还不具备申请资格
  21. <a style="margin-left: 16px">立即升级
  22. <a-icon type="right"/>
  23. </a>
  24. </div>
  25. </div>
  26. </result>
  27. </a-card>
  28. </template>
  29. <script>
  30. import Result from './Result'
  31. export default {
  32. name: "Error",
  33. components: {
  34. Result
  35. },
  36. data() {
  37. return {
  38. title: '提交失败',
  39. description: '请核对并修改以下信息后,再重新提交。'
  40. }
  41. }
  42. }
  43. </script>
  44. <style scoped>
  45. </style>