系统管理

This commit is contained in:
ym1026
2025-09-05 16:40:35 +08:00
parent c778e4a300
commit c1cce63c85
24 changed files with 2220 additions and 411 deletions

View File

@@ -15,6 +15,13 @@ $table-border: #1c797a;
$table-bg: #072e4a;
$page-border: #cad2dd;
//级联器样式,下拉选择器样式输入框等。。。
.ant-switch {
background: #00fffb;
}
.ant-switch .ant-switch-handle::before {
background-color: #0a1b2f !important;
}
.ant-select,
.ant-cascader {
.ant-select-selector {
@@ -32,17 +39,20 @@ $page-border: #cad2dd;
.ant-input,
.ant-input-affix-wrapper,
.ant-picker,
.ant-input-number
{
.ant-input-number {
background: none !important;
border: 1px solid $border-color !important;
color: #fff;
}
:deep(.ant-picker){
.ant-picker-input >input,.ant-picker-separator{
.ant-input::placeholder {
color: #ffffff3b !important;
}
:deep(.ant-picker) {
.ant-picker-input > input,
.ant-picker-separator {
color: #fff !important;
}
.ant-picker-input::placeholder{
.ant-picker-input::placeholder {
color: #ffffff3b !important;
}
}
@@ -77,6 +87,11 @@ $page-border: #cad2dd;
&:active {
background: #0f6f6a;
}
&:disabled {
border: none;
color: #fff;
}
}
.btn-del {
background: $btn-del;
@@ -99,6 +114,14 @@ $page-border: #cad2dd;
}
}
//modal样式
// 删除弹框
.ant-modal-confirm-title {
color: #fff !important;
}
.ant-modal .ant-modal-close {
color: #fff;
}
.ant-modal .ant-modal-content {
background-image: url('@/assets/images/modalBg.png');
background-size: 100% 100%;
@@ -109,30 +132,26 @@ $page-border: #cad2dd;
text-align: center;
}
//表单中的表格样式
.ant-form{
.ant-table-thead {
background: rgba(30, 85, 95, 1) !important;
.ant-form {
.ant-table-thead {
background: rgba(30, 85, 95, 1) !important;
}
:deep(.ant-table-thead > tr > th) {
border-inline: 1px solid transparent !important;
background: transparent;
color: #fff !important;
border-bottom: none !important; /* 可选:去除底部边框 */
}
:deep(.ant-table-tbody) {
color: #fff;
background: $table-bg;
border: 1px solid $table-border !important;
border-radius: 0px 0px 20px 20px;
}
:deep(.ant-table-wrapper .ant-table-tbody > tr.ant-table-placeholder:hover > td) {
background: transparent !important;
}
:deep(.ant-empty-description) {
color: #fff !important;
}
}
:deep(.ant-table-thead > tr > th) {
border-inline: 1px solid transparent !important;
background: transparent;
color: #fff !important;
border-bottom: none !important; /* 可选:去除底部边框 */
}
:deep(.ant-table-tbody){
color: #fff;
background: $table-bg ;
border: 1px solid $table-border !important;
border-radius: 0px 0px 20px 20px;
}
:deep(.ant-table-wrapper .ant-table-tbody>tr.ant-table-placeholder:hover>td){
background: transparent !important;
}
:deep(.ant-empty-description){
color: #fff !important;
}
}