From 1e9fa82cb2fe2c15f46bd1dd73f5c878c74b83b8 Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期四, 04 八月 2022 15:35:50 +0800
Subject: [PATCH] 1.系统多账号登录问题2.采购订单页面样式修改及数据渲染
---
src/views/kb/ckgl.vue | 59 +++++++++++++++++++++++++++++++++++------------------------
1 files changed, 35 insertions(+), 24 deletions(-)
diff --git a/src/views/kb/ckgl.vue b/src/views/kb/ckgl.vue
index 2cae8bb..830220a 100644
--- a/src/views/kb/ckgl.vue
+++ b/src/views/kb/ckgl.vue
@@ -16,14 +16,14 @@
<!-- 1-->
<div class="kb_left_top kb_pd10">
<div class="kb_left_top_block">
- <div class="headTitle">鎴愬搧鍏ュ簱鍗�</div>
+ <div class="headTitle">鎴愬搧鍏ュ簱鍗曪細</div>
<div class="content">
<el-table
:data="tableData"
style="width: 100%;"
:header-cell-style="headerCellStyle"
:cell-style="cellStyle"
- height="214"
+ height="240"
>
<el-table-column
prop="xh"
@@ -99,14 +99,14 @@
</div>
</div>
<div class="kb_left_top_block">
- <div class="headTitle">鎴愬搧鍑哄簱鍗�</div>
+ <div class="headTitle">鎴愬搧鍑哄簱鍗曪細</div>
<div class="content">
<el-table
:data="tableData"
style="width: 100%;"
:header-cell-style="headerCellStyle"
:cell-style="cellStyle"
- height="214"
+ height="240"
>
<el-table-column
prop="xh"
@@ -197,7 +197,7 @@
<div class="kb_right kb_pd10">
<div class="kb_right_top kb_pd10">
<div class="kb_right_top_content">
- <div class="content_head">搴撳瓨鎺掕</div>
+ <div class="content_head">搴撳瓨鎺掕锛�</div>
<div class="content_body">
<el-table
ref="tableDataRank"
@@ -205,7 +205,7 @@
style="width: 100%;"
:header-cell-style="headerCellStyle"
:cell-style="cellStyle"
- height="888"
+ height="923"
>
<el-table-column
prop="xh"
@@ -460,20 +460,21 @@
},
headerCellStyle() {
return {
- backgroundColor: '#000',
+ backgroundColor: 'rgb(30 ,33, 46)',
padding: '10px 0',
textAlign: 'center',
- color: '#fff',
- borderRight: '1px solid rgba(255,255,255,0.6)'
+ color: '#07acc2',
+ border: 'none'
}
},
cellStyle() {
return {
padding: '8px 0',
textAlign: 'center',
- backgroundColor: '#000',
+ backgroundColor: 'rgba(30, 33, 46 )',
+ // backgroundColor: 'transparent',
color: '#fff',
- borderRight: '1px solid rgba(255,255,255,0.6)'
+ border: 'none'
}
}
}
@@ -481,6 +482,7 @@
</script>
<style scoped lang="scss">
+$kbBorderColor: #09d8f2;
.kb_content {
display: flex;
@@ -505,19 +507,22 @@
width: 100%;
height: 267px;
display: flex;
- border: 1px solid rgba(255, 255, 255, 0.6);
flex-direction: column;
.headTitle{
- line-height: 54px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.6);
- text-align: center;
- font-size: 26px;
+ //line-height: 54px;
+ //border-bottom: 1px solid rgba(255, 255, 255, 0.6);
+ //text-align: center;
+ //font-size: 26px;
+ line-height: 20px;
+ font-size: 18px;
+ margin-bottom: 10px;
+ margin-top: -10px;
}
.content{
-
+ border: 1px solid $kbBorderColor;
}
}
@@ -534,7 +539,8 @@
.content01{
width: 48%;
height: 100%;
- border: 1px solid rgba(255,255,255,0.6);
+ border: 1px solid $kbBorderColor;
+ border-radius: 5px;
}
}
}
@@ -549,17 +555,19 @@
width: 100%;
.kb_right_top_content {
- border: 1px solid rgba(255, 255, 255, 0.6);
height: 100%;
display: flex;
flex-direction: column;
.content_head {
- font-size: 26px;
- height: 55px;
- line-height: 55px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.6);
- text-align: center;
+ line-height: 20px;
+ font-size: 18px;
+ margin-bottom: 10px;
+ margin-top: -10px;
+ }
+
+ .content_body {
+ border: 1px solid $kbBorderColor;
}
}
}
@@ -575,4 +583,7 @@
/* width: 0;瀹藉害涓�0鏆楄棌 */
width: 0;
}
+::v-deep .el-table::before {
+ height: 0;
+}
</style>
--
Gitblit v1.9.3