mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
新增布局PageLayout,优化代码结构
This commit is contained in:
parent
45a2c86b37
commit
5014a92bd2
@ -12,7 +12,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import PageHeader from '../page/PageHeader'
|
import PageHeader from '../page/PageHeader'
|
||||||
export default {
|
export default {
|
||||||
name: 'Form',
|
name: 'PageLayout',
|
||||||
components: {PageHeader},
|
components: {PageHeader},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
@ -1,6 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
|
||||||
<page-header :breadcrumb="breadcrumb" style="margin: -24px -24px 24px -24px"/>
|
|
||||||
<a-card :bordered="false">
|
<a-card :bordered="false">
|
||||||
<result style="margin-bottom: 16px; margin-top: 48px" :is-success="false" :title="title" :description="description">
|
<result style="margin-bottom: 16px; margin-top: 48px" :is-success="false" :title="title" :description="description">
|
||||||
<template slot="action">
|
<template slot="action">
|
||||||
@ -23,7 +21,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</result>
|
</result>
|
||||||
</a-card>
|
</a-card>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -37,21 +34,9 @@ export default {
|
|||||||
components: {AButton, AIcon, PageHeader, ACard, Result},
|
components: {AButton, AIcon, PageHeader, ACard, Result},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
breadcrumb: [],
|
|
||||||
title: '提交失败',
|
title: '提交失败',
|
||||||
description: '请核对并修改以下信息后,再重新提交。'
|
description: '请核对并修改以下信息后,再重新提交。'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.getPageHeaderInfo()
|
|
||||||
},
|
|
||||||
beforeUpdate () {
|
|
||||||
this.getPageHeaderInfo()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getPageHeaderInfo () {
|
|
||||||
this.breadcrumb = this.$route.matched
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
|
||||||
<page-header :breadcrumb="breadcrumb" style="margin: -24px -24px 24px -24px"/>
|
|
||||||
<a-card :bordered="false">
|
<a-card :bordered="false">
|
||||||
<result :is-success="true" :description="description" :title="title">
|
<result :is-success="true" :description="description" :title="title">
|
||||||
<template slot="action">
|
<template slot="action">
|
||||||
@ -59,7 +57,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</result>
|
</result>
|
||||||
</a-card>
|
</a-card>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -78,24 +75,12 @@ export default {
|
|||||||
components: {AIcon, AStep, ASteps, ARow, ACol, AButton, PageHeader, ACard, Result},
|
components: {AIcon, AStep, ASteps, ARow, ACol, AButton, PageHeader, ACard, Result},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
breadcrumb: [],
|
|
||||||
title: '提交成功',
|
title: '提交成功',
|
||||||
description: '提交结果页用于反馈一系列操作任务的处理结果,\n' +
|
description: '提交结果页用于反馈一系列操作任务的处理结果,\n' +
|
||||||
' 如果仅是简单操作,使用 Message 全局提示反馈即可。\n' +
|
' 如果仅是简单操作,使用 Message 全局提示反馈即可。\n' +
|
||||||
' 本文字区域可以展示简单的补充说明,如果有类似展示\n' +
|
' 本文字区域可以展示简单的补充说明,如果有类似展示\n' +
|
||||||
' “单据”的需求,下面这个灰色区域可以呈现比较复杂的内容。'
|
' “单据”的需求,下面这个灰色区域可以呈现比较复杂的内容。'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.getPageHeaderInfo()
|
|
||||||
},
|
|
||||||
beforeUpdate () {
|
|
||||||
this.getPageHeaderInfo()
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
getPageHeaderInfo () {
|
|
||||||
this.breadcrumb = this.$route.matched
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -5,7 +5,7 @@ import Exception from '@/components/exception/Exception'
|
|||||||
import NotFound from '@/components/exception/404'
|
import NotFound from '@/components/exception/404'
|
||||||
import NotPermit from '@/components/exception/403'
|
import NotPermit from '@/components/exception/403'
|
||||||
import ServerError from '@/components/exception/500'
|
import ServerError from '@/components/exception/500'
|
||||||
import Form from '@/components/form/Form'
|
import PageLayout from '@/components/layout/PageLayout'
|
||||||
import BasicForm from '@/components/form/BasicForm'
|
import BasicForm from '@/components/form/BasicForm'
|
||||||
import StepForm from '@/components/form/stepForm/StepForm'
|
import StepForm from '@/components/form/stepForm/StepForm'
|
||||||
import AdvancedForm from '@/components/form/advancedForm/AdvancedForm'
|
import AdvancedForm from '@/components/form/advancedForm/AdvancedForm'
|
||||||
@ -25,7 +25,7 @@ export default new Router({
|
|||||||
{
|
{
|
||||||
path: '/form',
|
path: '/form',
|
||||||
name: '表单页',
|
name: '表单页',
|
||||||
component: Form,
|
component: PageLayout,
|
||||||
icon: 'form',
|
icon: 'form',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
@ -51,7 +51,7 @@ export default new Router({
|
|||||||
{
|
{
|
||||||
path: '/list',
|
path: '/list',
|
||||||
name: '列表页',
|
name: '列表页',
|
||||||
component: Exception,
|
component: PageLayout,
|
||||||
icon: 'table',
|
icon: 'table',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
@ -84,7 +84,7 @@ export default new Router({
|
|||||||
path: '/detail',
|
path: '/detail',
|
||||||
name: '详情页',
|
name: '详情页',
|
||||||
icon: 'profile',
|
icon: 'profile',
|
||||||
component: Exception,
|
component: PageLayout,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/detail/basic',
|
path: '/detail/basic',
|
||||||
@ -104,7 +104,7 @@ export default new Router({
|
|||||||
path: '/result',
|
path: '/result',
|
||||||
name: '结果页',
|
name: '结果页',
|
||||||
icon: 'check-circle-o',
|
icon: 'check-circle-o',
|
||||||
component: Exception,
|
component: PageLayout,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/result/success',
|
path: '/result/success',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user