配置文件中加入底部信息配置

This commit is contained in:
zhengjie
2019-06-29 13:26:05 +08:00
parent 9ca7d4b05f
commit ac2253e552
5 changed files with 69 additions and 9 deletions

View File

@@ -1,11 +1,18 @@
<template>
<section class="app-main">
<transition name="fade-transform" mode="out-in">
<keep-alive :include="cachedViews">
<router-view :key="key"/>
</keep-alive>
</transition>
</section>
<div>
<section class="app-main">
<transition name="fade-transform" mode="out-in">
<keep-alive :include="cachedViews">
<router-view :key="key"/>
</keep-alive>
</transition>
</section>
<div v-if="$store.state.settings.showFooter" id="el-main-footer">
<span v-html="$store.state.settings.footerTxt"/>
<span> </span>
<a href="http://www.beian.miit.gov.cn" target="_blank">{{ $store.state.settings.caseNumber }}</a>
</div>
</div>
</template>
<script>
@@ -29,6 +36,7 @@ export default {
min-height: calc(100vh - 84px);
width: 100%;
position: relative;
padding-bottom: 18px;
overflow: hidden;
}