删除了验证码组件并且复写了一些UI

This commit is contained in:
Liuqi 2023-08-14 14:25:45 +08:00
parent eaa4a7fe8b
commit da4e43c178
2 changed files with 31 additions and 31 deletions

View File

@ -17,12 +17,12 @@
<div class="footer">
<div class="links">
<a href="http://doc.jeecg.com" target="_blank">帮助</a>
<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">隐私</a>
<a href="https://github.com/zhangdaiscott/jeecg-boot/blob/master/LICENSE" target="_blank">条款</a>
<a href="http://www.baidu.com" target="_blank">帮助</a>
<a href="https://www.bing.com" target="_blank">隐私</a>
<a href="https://www.baidu.com" target="_blank">条款</a>
</div>
<div class="copyright">
Copyright &copy; 2019 <a href="http://www.jeecg.com" target="_blank">JEECG开源社区</a> 出品
Copyright &copy; 2023 哈尔滨师范大学人工智能大数据实验室 出品
</div>
</div>
</div>
@ -135,7 +135,7 @@ export default {
margin-bottom: 8px;
font-size: 14px;
a {
color: rgba(0, 0, 0, 0.45);
color: rgba(230, 228, 235, 0.45);
transition: all 0.3s;
&:not(:last-child) {
margin-right: 40px;
@ -143,7 +143,7 @@ export default {
}
}
.copyright {
color: rgba(0, 0, 0, 0.45);
color: rgb(242, 242, 248);
font-size: 14px;
}
}

View File

@ -3,27 +3,27 @@
<div class="links">
<a href="http://www.jeecg.com" target="_blank">JEECG 首页</a>
<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">
<a-icon type="github"/>
<a-icon type="github" />
</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>
</div>
<div class="copyright">
Copyright
<a-icon type="copyright"/>
2019 <span>JEECG开源社区 出品</span>
<a-icon type="copyright" />
2023 <span> 哈尔滨师范大学人工智能大数据实验室 出品</span>
</div>
</div>
</template>
<script>
export default {
name: "LayoutFooter"
}
export default {
name: 'LayoutFooter'
}
</script>
<style lang="less" scoped>
.footer {
.footer {
padding: 0 16px;
margin: 48px 0 24px;
text-align: center;
@ -32,10 +32,10 @@
margin-bottom: 8px;
a {
color: rgba(0, 0, 0, .45);
color: rgba(0, 0, 0, 0.45);
&:hover {
color: rgba(0, 0, 0, .65);
color: rgba(0, 0, 0, 0.65);
}
&:not(:last-child) {
@ -44,8 +44,8 @@
}
}
.copyright {
color: rgba(0, 0, 0, .45);
color: rgba(230, 228, 235, 0.45);
font-size: 14px;
}
}
}
</style>