You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
659 B
36 lines
659 B
<template>
|
|
<view class="cpr">
|
|
<view class="color-9">
|
|
{{sysInfo.company}} © {{sysInfo.subdomain}} 版权所有
|
|
</view>
|
|
<view class="color-9 beian">
|
|
<view v-if="sysInfo.code"><a href="http://www.beian.miit.gov.cn/publish/query/indexFirst.action" target="_blank">冀ICP备10002647号-11</a></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
sysInfo : this.$db.get('sysInfo')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.cpr{
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0;
|
|
justify-self: center;
|
|
text-align: center;
|
|
font-size: 24upx;
|
|
margin: 20upx 0;
|
|
}
|
|
.beian a{
|
|
text-decoration: none;
|
|
color: #999 !important;
|
|
}
|
|
</style>
|
|
|