From fc6d1505b9d763e4d387a4c6c589ae6d88675eb7 Mon Sep 17 00:00:00 2001
From: songshankun <songshankun@foxmail.com>
Date: 星期三, 18 十月 2023 14:38:53 +0800
Subject: [PATCH] feat: 统计组件添加判空; 添加在库数据展示
---
src/assets/style/index.scss | 29 ++++++++++++++++++++---------
1 files changed, 20 insertions(+), 9 deletions(-)
diff --git a/src/assets/style/index.scss b/src/assets/style/index.scss
index dd1639e..95f617a 100644
--- a/src/assets/style/index.scss
+++ b/src/assets/style/index.scss
@@ -126,6 +126,12 @@
.cursor_pointer {
cursor: pointer;
}
+.no-cursor {
+ cursor: no-drop;
+}
+.yes-cursor {
+ cursor: pointer;
+}
.Badge {
background: #d3d3d3;
@@ -140,7 +146,7 @@
.btn-pager {
display: flex;
- margin-top: 0px;
+ margin-top: 5px;
// background: #fff;
.page {
margin-left: auto;
@@ -177,17 +183,22 @@
.rightContent {
height: 100%;
- padding: 10px;
+ padding: 12px 20px 10px 20px;
background: #e6ecf2;
.top {
- margin-bottom: 20px;
- height: 60px;
- background: #fff;
- border-radius: 8px;
- }
- .list-view {
- height: calc(100% - 120px);
+ margin-bottom: 10px;
+ height: 80px;
background: #fff;
border-radius: 12px;
+ display: flex;
+ align-items: center;
+ }
+ .list-view {
+ height: calc(100% - 92px);
+ background: #fff;
+ border-radius: 12px;
+ .table {
+ height: calc(100% - 55px);
+ }
}
}
--
Gitblit v1.8.0