Blame view

ant-design-vue-jeecg/src/views/result/Error.vue 1.24 KB
肖超群 authored
1
2
3
4
<template>
  <a-card :bordered="false">
    <result :is-success="false" :title="title" :description="description">
      <template slot="action">
肖超群 authored
5
        <a-button type="primary">返回修改</a-button>
肖超群 authored
6
7
8
9
10
11
12
13
      </template>
      <div>
        <div style="font-size: 16px; color: rgba(0, 0, 0, 0.85); font-weight: 500; margin-bottom: 16px">
          您提交的内容有如下错误:
        </div>
        <div style="margin-bottom: 16px">
          <a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
          您的账户已被冻结
肖超群 authored
14
15
16
          <a style="margin-left: 16px">立即解冻
            <a-icon type="right"/>
          </a>
肖超群 authored
17
18
19
20
        </div>
        <div>
          <a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
          您的账户还不具备申请资格
肖超群 authored
21
22
23
          <a style="margin-left: 16px">立即升级
            <a-icon type="right"/>
          </a>
肖超群 authored
24
25
26
27
28
29
30
        </div>
      </div>
    </result>
  </a-card>
</template>

<script>
肖超群 authored
31
import Result from './Result'
肖超群 authored
32
肖超群 authored
33
34
35
36
37
38
39
40
41
export default {
  name: "Error",
  components: {
    Result
  },
  data() {
    return {
      title: '提交失败',
      description: '请核对并修改以下信息后,再重新提交。'
肖超群 authored
42
43
    }
  }
肖超群 authored
44
}
肖超群 authored
45
46
47
48
49
</script>

<style scoped>

</style>