删除了验证码组件并且复写了一些UI
This commit is contained in:
parent
eaa4a7fe8b
commit
da4e43c178
|
@ -17,12 +17,12 @@
|
||||||
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<a href="http://doc.jeecg.com" target="_blank">帮助</a>
|
<a href="http://www.baidu.com" target="_blank">帮助</a>
|
||||||
<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">隐私</a>
|
<a href="https://www.bing.com" target="_blank">隐私</a>
|
||||||
<a href="https://github.com/zhangdaiscott/jeecg-boot/blob/master/LICENSE" target="_blank">条款</a>
|
<a href="https://www.baidu.com" target="_blank">条款</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="copyright">
|
<div class="copyright">
|
||||||
Copyright © 2019 <a href="http://www.jeecg.com" target="_blank">JEECG开源社区</a> 出品
|
Copyright © 2023 哈尔滨师范大学人工智能大数据实验室 出品
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -135,7 +135,7 @@ export default {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
a {
|
a {
|
||||||
color: rgba(0, 0, 0, 0.45);
|
color: rgba(230, 228, 235, 0.45);
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
|
@ -143,7 +143,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.copyright {
|
.copyright {
|
||||||
color: rgba(0, 0, 0, 0.45);
|
color: rgb(242, 242, 248);
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,49 +3,49 @@
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<a href="http://www.jeecg.com" target="_blank">JEECG 首页</a>
|
<a href="http://www.jeecg.com" target="_blank">JEECG 首页</a>
|
||||||
<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">
|
<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">
|
||||||
<a-icon type="github"/>
|
<a-icon type="github" />
|
||||||
</a>
|
</a>
|
||||||
<a href="https://ant.design/">Ant Design</a>
|
<a href="https://ant.design/">Ant Design</a>
|
||||||
<a href="https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn/">Vue Antd</a>
|
<a href="https://vuecomponent.github.io/ant-design-vue/docs/vue/introduce-cn/">Vue Antd</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="copyright">
|
<div class="copyright">
|
||||||
Copyright
|
Copyright
|
||||||
<a-icon type="copyright"/>
|
<a-icon type="copyright" />
|
||||||
2019 <span>JEECG开源社区 出品</span>
|
2023 <span> 哈尔滨师范大学人工智能大数据实验室 出品</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "LayoutFooter"
|
name: 'LayoutFooter'
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.footer {
|
.footer {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
margin: 48px 0 24px;
|
margin: 48px 0 24px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
.links {
|
.links {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: rgba(0, 0, 0, .45);
|
color: rgba(0, 0, 0, 0.45);
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: rgba(0, 0, 0, .65);
|
color: rgba(0, 0, 0, 0.65);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.copyright {
|
|
||||||
color: rgba(0, 0, 0, .45);
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
.copyright {
|
||||||
|
color: rgba(230, 228, 235, 0.45);
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue