Initial commit
This commit is contained in:
@@ -270,20 +270,68 @@
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
min-height: calc(100vh - 90px);
|
min-height: calc(100vh - 90px);
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
background: url('@/assets/icons/bg-fk.png') center / 100% 100%;
|
||||||
|
|
||||||
|
.ant-tabs .ant-tabs-ink-bar {
|
||||||
|
position: absolute;
|
||||||
|
background: transparent;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.ant-steps-horizontal{
|
||||||
|
&.ant-steps.ant-steps-navigation .ant-steps-item.ant-steps-item-active::before {
|
||||||
|
width: 30%;
|
||||||
|
margin-left: 37%;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.ant-steps-item-active{
|
||||||
|
.ant-steps-item-container{
|
||||||
|
&:after{
|
||||||
|
height: 1px;
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
background: #377ead;
|
||||||
|
display: block;
|
||||||
|
width: 100px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.ant-card-head {
|
.ant-card-head {
|
||||||
border: 0;
|
border: 0;
|
||||||
color: #11aed7;
|
color: #a2b1ba;
|
||||||
}
|
}
|
||||||
|
|
||||||
& > .ant-card-head {
|
& > .ant-card-head {
|
||||||
height: 50px;
|
height: 40px;
|
||||||
min-height: 40px;
|
min-height: 40px;
|
||||||
font-size: 16px;
|
border-radius: 0;
|
||||||
|
padding: 5px 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
& > .ant-card-head {
|
& > .ant-card-head {
|
||||||
background: url('@/assets/icons/page-card-head.png') center / 100% 100%;
|
background: url('@/assets/icons/page-card-head.png') center / 100% 100%;
|
||||||
|
background: url('@/assets/icons/bg-fk-title.png') center / 100% 100%;
|
||||||
|
color: #eee;
|
||||||
|
|
||||||
|
.point {
|
||||||
|
background: url('@/assets/icons/bg-fk-point.png') center / 100% 100%;
|
||||||
|
width: 25px;
|
||||||
|
height: 25px;
|
||||||
|
display: block;
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
margin-top: 5px;
|
||||||
|
display: block;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
& > .ant-card-body {
|
& > .ant-card-body {
|
||||||
@@ -1511,3 +1559,9 @@
|
|||||||
color: #eee;
|
color: #eee;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ant-btn-default{
|
||||||
|
&.ant-btn-dangerous{
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,10 @@
|
|||||||
<Layout>
|
<Layout>
|
||||||
<template #sidebar>
|
<template #sidebar>
|
||||||
<div class="ks-sidebar-header">
|
<div class="ks-sidebar-header">
|
||||||
<span class="ks-sidebar-title">指挥决策规则库管理</span>
|
<a-flex class="ks-sidebar-title">
|
||||||
|
<span class="icon"></span>
|
||||||
|
<span class="text">指挥决策规则库管理</span>
|
||||||
|
</a-flex>
|
||||||
<a-button class="ks-sidebar-add" size="small" @click="handleCreate">
|
<a-button class="ks-sidebar-add" size="small" @click="handleCreate">
|
||||||
<PlusOutlined />
|
<PlusOutlined />
|
||||||
新增
|
新增
|
||||||
@@ -30,7 +33,7 @@
|
|||||||
|
|
||||||
<div class="w-full h-full">
|
<div class="w-full h-full">
|
||||||
|
|
||||||
<a-card class="ks-page-card ks-workspace-card ks-algorithm-card">
|
<a-card class="ks-page-card ks-algorithm-card">
|
||||||
|
|
||||||
<template #title>
|
<template #title>
|
||||||
<a-space>
|
<a-space>
|
||||||
@@ -39,7 +42,7 @@
|
|||||||
</a-space>
|
</a-space>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<div class="ks-scrollable" style="height: 79vh;overflow-y: auto;padding-right: 10px">
|
<div class="ks-scrollable" style="height: 80.5vh;overflow-y: auto;padding-right: 10px">
|
||||||
|
|
||||||
<a-row :gutter="15">
|
<a-row :gutter="15">
|
||||||
<a-col :span="16">
|
<a-col :span="16">
|
||||||
@@ -302,20 +305,34 @@ onMounted(() => load());
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ks-sidebar-header {
|
.ks-sidebar-header {
|
||||||
height: 50px;
|
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
padding: 5px 15px;
|
padding: 5px 15px;
|
||||||
background: #081d36;
|
background: #081d36;
|
||||||
|
min-height: 40px;
|
||||||
|
background: url(@/assets/icons/card-head.png) left / 180% 100%;
|
||||||
|
padding: 0 10px;
|
||||||
|
|
||||||
.ks-sidebar-title {
|
.ks-sidebar-title {
|
||||||
color: #7ae8fc;
|
color: #7ae8fc;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
.icon {
|
||||||
|
background: url(@/assets/icons/list.png) center / 100% 100%;
|
||||||
|
width: 25px;
|
||||||
|
height: 25px;
|
||||||
|
display: block;
|
||||||
|
margin-top: 7px;
|
||||||
|
}
|
||||||
|
.text{
|
||||||
|
margin-left: 40px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ks-sidebar-add {
|
.ks-sidebar-add {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 15px;
|
right: 7px;
|
||||||
top: 14px;
|
top: 8px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
.anticon {
|
.anticon {
|
||||||
|
|||||||
Reference in New Issue
Block a user