From a74c3ad3067f9f30c2d20cbfb8c32ee97afa1ad9 Mon Sep 17 00:00:00 2001 From: selia-zx <1771203023@qq.com> Date: Mon, 28 Apr 2025 16:23:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AE=9A=E6=97=B6=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E3=80=81=E8=A1=A8=E5=8D=95=E6=9E=84=E5=BB=BA=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/styles/element-ui.scss | 31 ++ src/components/Crontab/index.vue | 40 ++- src/views/monitor/job/index.vue | 15 +- src/views/tool/build/index.vue | 483 ++++++++++++++++-------------- 4 files changed, 327 insertions(+), 242 deletions(-) diff --git a/src/assets/styles/element-ui.scss b/src/assets/styles/element-ui.scss index 816ab3b..4cf878a 100644 --- a/src/assets/styles/element-ui.scss +++ b/src/assets/styles/element-ui.scss @@ -1381,4 +1381,35 @@ flex-direction: column; align-items: center; justify-content: center; +} +.el-tabs--border-card { + background: transparent; + border: 1px solid #0e5191 !important; +} +.el-tabs--border-card > .el-tabs__header { + background-color: transparent; + border-bottom: 1px solid #00386d; +} +.popup-main { + background: transparent !important; +} +.popup-result { + border: 1px solid #0e5191 !important; +} +.popup-result table span{ + border: 1px solid #0e5191 !important; +} +.popup-result .title{ + background: #405e7e !important; +} +.el-tabs--border-card > .el-tabs__header .el-tabs__item.is-active { + color: #fff !important; + border-right-color: transparent; + border-left-color: transparent; +} +.el-tabs--border-card > .el-tabs__header .el-tabs__item{ + color: #c3cbd4; +} +.drawing-item:hover > .el-form-item, .drawing-row-item:hover > .el-form-item { + background: #b6b6b6 !important; } \ No newline at end of file diff --git a/src/components/Crontab/index.vue b/src/components/Crontab/index.vue index 3963df2..c9345d6 100644 --- a/src/components/Crontab/index.vue +++ b/src/components/Crontab/index.vue @@ -70,33 +70,33 @@
时间表达式
{{item}} | +{{ item }} | Cron 表达式 | - {{crontabValueObj.second}} + {{ crontabValueObj.second }} | - {{crontabValueObj.min}} + {{ crontabValueObj.min }} | - {{crontabValueObj.hour}} + {{ crontabValueObj.hour }} | - {{crontabValueObj.day}} + {{ crontabValueObj.day }} | - {{crontabValueObj.month}} + {{ crontabValueObj.month }} | - {{crontabValueObj.week}} + {{ crontabValueObj.week }} | - {{crontabValueObj.year}} + {{ crontabValueObj.year }} | - {{crontabValueString}} + {{ crontabValueString }} |
---|