mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-04-06 03:57:44 +08:00
62 lines
1.8 KiB
Vue
62 lines
1.8 KiB
Vue
<template>
|
||
<div>
|
||
<page-header :breadcrumb="breadcrumb" style="margin: -24px -24px 24px -24px"/>
|
||
<a-card :bordered="false">
|
||
<result style="margin-bottom: 16px; margin-top: 48px" :is-success="false" :title="title" :description="description">
|
||
<template slot="action">
|
||
<a-button type="primary" >返回修改</a-button>
|
||
</template>
|
||
<div>
|
||
<div style="fontSize: 16px; color: rgba(0, 0, 0, 0.85); fontWeight: 500; marginBottom: 16px">
|
||
您提交的内容有如下错误:
|
||
</div>
|
||
<div style="margin-bottom: 16px">
|
||
<a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
|
||
您的账户已被冻结
|
||
<a style="margin-left: 16px">立即解冻 <a-icon type="right" /></a>
|
||
</div>
|
||
<div>
|
||
<a-icon type="close-circle-o" style="color: #f5222d; margin-right: 8px"/>
|
||
您的账户还不具备申请资格
|
||
<a style="margin-left: 16px">立即升级 <a-icon type="right" /></a>
|
||
</div>
|
||
</div>
|
||
</result>
|
||
</a-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Result from './Result'
|
||
import ACard from 'vue-antd-ui/es/card/Card'
|
||
import PageHeader from '../page/PageHeader'
|
||
import AIcon from 'vue-antd-ui/es/icon/icon'
|
||
import AButton from "vue-antd-ui/es/button/button";
|
||
export default {
|
||
name: 'Error',
|
||
components: {AButton, AIcon, PageHeader, ACard, Result},
|
||
data () {
|
||
return {
|
||
breadcrumb: [],
|
||
title: '提交失败',
|
||
description: '请核对并修改以下信息后,再重新提交。'
|
||
}
|
||
},
|
||
mounted () {
|
||
this.getPageHeaderInfo()
|
||
},
|
||
beforeUpdate () {
|
||
this.getPageHeaderInfo()
|
||
},
|
||
methods: {
|
||
getPageHeaderInfo () {
|
||
this.breadcrumb = this.$route.matched
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
|
||
</style>
|