From 4ef0342708910d02453fdcfae2148eadbf6d7004 Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期三, 05 六月 2024 11:34:21 +0800
Subject: [PATCH] 1、设备综合效率分析页面表格列属性ellipsis开启后内容若超出盒子宽度则出现与表头错位现象,而无法实现ellipsis开启后内容超出单元格则省略功能,现采取增加列宽度方式且关闭ellipsis属性功能方法解决问题 2、设备综合效率分析页面调整计算表格垂直滚动条方法以试图解决项目服务器上无法正常显示水平滚动条问题
---
src/components/page/GlobalFooter.vue | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/src/components/page/GlobalFooter.vue b/src/components/page/GlobalFooter.vue
index c2c99ac..dcdba6c 100644
--- a/src/components/page/GlobalFooter.vue
+++ b/src/components/page/GlobalFooter.vue
@@ -1,24 +1,25 @@
<template>
<div class="footer">
<!--<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>-->
- <!--<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="http://www.jeecg.com" target="_blank">JEECG 棣栭〉</a>-->
+ <!--<a href="https://github.com/zhangdaiscott/jeecg-boot" target="_blank">-->
+ <!--<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">
+ <div class="copyright"
+ :style="{background:$route.meta.title==='棣栭〉'?'#151548':'',color:$route.meta.title==='棣栭〉'?'#fff':''}">
Copyright
<a-icon type="copyright"/>
- 2019 <span>2015-2020 鐏电鏅鸿兘</span>
+ 2024 <span>2015-2025 鐏电鏅鸿兘</span>
</div>
</div>
</template>
<script>
export default {
- name: "LayoutFooter"
+ name: 'LayoutFooter'
}
</script>
--
Gitblit v1.9.3