mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
refactor: add settings for GlobalFooter components
This commit is contained in:
parent
bf932950d6
commit
20290cec17
@ -1,12 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<a>Pro首页</a>
|
<a target="_blank" :key="index" :href="item.link ? item.link : 'javascript: void(0)'" v-for="(item, index) in linkList">
|
||||||
<a><a-icon type="github" /></a>
|
<a-icon v-if="item.icon" :type="item.icon"/>{{item.name}}
|
||||||
<a>Ant Design</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="copyright">
|
<div class="copyright">
|
||||||
Copyright<a-icon type="copyright" />2018 XXXXXXXXXXXXXXXXXX出品
|
Copyright<a-icon type="copyright" />{{copyright}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -15,6 +15,7 @@
|
|||||||
import AIcon from 'ant-design-vue/es/icon/icon'
|
import AIcon from 'ant-design-vue/es/icon/icon'
|
||||||
export default {
|
export default {
|
||||||
name: 'GlobalFooter',
|
name: 'GlobalFooter',
|
||||||
|
props: ['copyright', 'linkList'],
|
||||||
components: {AIcon}
|
components: {AIcon}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
<slot></slot>
|
<slot></slot>
|
||||||
</a-layout-content>
|
</a-layout-content>
|
||||||
<a-layout-footer style="padding: 0px">
|
<a-layout-footer style="padding: 0px">
|
||||||
<global-footer />
|
<global-footer :link-list="linkList" copyright="2018 ICZER出品" />
|
||||||
</a-layout-footer>
|
</a-layout-footer>
|
||||||
</a-layout>
|
</a-layout>
|
||||||
</a-layout>
|
</a-layout>
|
||||||
@ -72,6 +72,12 @@ export default {
|
|||||||
},
|
},
|
||||||
layout () {
|
layout () {
|
||||||
return this.$store.state.setting.layout
|
return this.$store.state.setting.layout
|
||||||
|
},
|
||||||
|
linkList () {
|
||||||
|
return this.$store.state.setting.footerLinks
|
||||||
|
},
|
||||||
|
copyright () {
|
||||||
|
return this.$store.state.setting.copyright
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -4,7 +4,13 @@ export default {
|
|||||||
isMobile: false,
|
isMobile: false,
|
||||||
theme: 'dark',
|
theme: 'dark',
|
||||||
layout: 'side',
|
layout: 'side',
|
||||||
systemName: 'Vue Antd Admin'
|
systemName: 'Vue Antd Admin',
|
||||||
|
copyright: '',
|
||||||
|
footerLinks: [
|
||||||
|
{link: 'https://pro.ant.design', name: 'Pro首页'},
|
||||||
|
{link: 'https://github.com/iczer/vue-antd-admin', icon: 'github'},
|
||||||
|
{link: 'https://ant.design', name: 'Ant Design'}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
setDevice (state, isMobile) {
|
setDevice (state, isMobile) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user