删除了验证码组件并且复写了一些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="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 &copy; 2019 <a href="http://www.jeecg.com" target="_blank">JEECG开源社区</a> 出品 Copyright &copy; 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;
} }
} }

View File

@ -11,14 +11,14 @@
<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>
@ -32,10 +32,10 @@
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) {
@ -44,7 +44,7 @@
} }
} }
.copyright { .copyright {
color: rgba(0, 0, 0, .45); color: rgba(230, 228, 235, 0.45);
font-size: 14px; font-size: 14px;
} }
} }