feat:前端新增初版知识库管理页面

This commit is contained in:
PingChuan
2025-11-30 19:27:01 +08:00
parent 9614899171
commit c94cc00138
40 changed files with 3034 additions and 1024 deletions
@@ -0,0 +1,101 @@
/**
* 寓¡h - ;@7
*/
.dataset-manager-page {
display: flex;
flex-direction: column;
background-color: #f5f7f9;
overflow: hidden;
}
.dataset-manager-container {
display: flex;
flex-direction: row;
height: 100%;
background-color: #f5f7f9;
overflow: hidden;
}
/* z¶¹h */
.dataset-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 40px;
color: #999;
}
.dataset-empty h3 {
margin-bottom: 8px;
color: #666;
font-size: 16px;
}
.dataset-empty p {
color: #999;
font-size: 14px;
}
/*  ¹h */
.dataset-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
gap: 16px;
}
/* ;…¹:ß */
.dataset-content {
display: flex;
flex-direction: column;
flex: 1;
padding: 20px 24px;
overflow: auto;
}
/* 4è:ß */
.dataset-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.dataset-header h1 {
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
margin: 0;
}
.dataset-header-actions {
display: flex;
gap: 12px;
}
/* Í”@ */
@media (max-width: 991px) {
.dataset-manager-container {
flex-direction: column;
}
.dataset-content {
padding: 16px;
}
.dataset-header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.dataset-header-actions {
width: 100%;
justify-content: flex-end;
}
}