Commit 66927085 authored by 胡占生's avatar 胡占生 🇨🇳

fix: 整体UI样式再调整

parent 6167f4bb
public/favicon.ico

150 KB | W: | H:

public/favicon.ico

105 KB | W: | H:

public/favicon.ico
public/favicon.ico
public/favicon.ico
public/favicon.ico
  • 2-up
  • Swipe
  • Onion skin
src/assets/images/logo.png

150 KB | W: | H:

src/assets/images/logo.png

105 KB | W: | H:

src/assets/images/logo.png
src/assets/images/logo.png
src/assets/images/logo.png
src/assets/images/logo.png
  • 2-up
  • Swipe
  • Onion skin
src/assets/logo/logo.png

150 KB | W: | H:

src/assets/logo/logo.png

105 KB | W: | H:

src/assets/logo/logo.png
src/assets/logo/logo.png
src/assets/logo/logo.png
src/assets/logo/logo.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -86,7 +86,7 @@
.sub-menu-title-noDropdown,
.el-sub-menu__title {
&:hover {
background-color: rgba(0, 0, 0, 0.06) !important;
background-color: rgba(255, 255, 255, 0.3) !important;
}
}
......@@ -99,7 +99,7 @@
min-width: $base-sidebar-width !important;
&:hover {
background-color: rgba(0, 0, 0, 0.06) !important;
background-color: rgba(255, 255, 255, 0.3) !important;
}
}
......@@ -215,7 +215,14 @@
.el-menu-item {
&:hover {
// you can use $sub-menuHover
background-color: rgba(0, 0, 0, 0.06) !important;
background-color: rgba(255, 255, 255, 0.3) !important;
}
}
.nest-menu .el-sub-menu>.el-sub-menu__title,
.el-menu-item {
&:focus {
// you can use $sub-menuHover
background-color: rgba(255, 255, 255, 0.3) !important;
}
}
......
......@@ -183,6 +183,9 @@ onMounted(() => {
border-bottom: 2px solid #{'var(--theme)'} !important;
color: #303133;
}
.el-menu-item.is-active{
background-color: rgba(255, 255, 255, 0.3) !important;
}
/* sub-menu item */
.topmenu-container.el-menu--horizontal > .el-sub-menu .el-sub-menu__title {
......
......@@ -6,9 +6,9 @@
:default-active="activeMenu"
:collapse="isCollapse"
:background-color="'none'"
:text-color="sideTheme === 'theme-dark' ? variables.menuColor : variables.menuLightColor"
:text-color="'#fff'"
:unique-opened="true"
:active-text-color="theme"
:active-text-color="'#fff'"
:collapse-transition="false"
mode="vertical"
>
......
......@@ -6,7 +6,7 @@ export default {
/**
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
*/
sideTheme: 'theme-dark',
sideTheme: 'theme-light',
/**
* 是否系统布局配置
*/
......@@ -20,7 +20,7 @@ export default {
/**
* 是否显示 tagsView
*/
tagsView: true,
tagsView: false,
/**
* 是否固定头部
......
......@@ -86,10 +86,10 @@
<div class="cleartitle">
<span>{{item.algorithmName}}</span>
<el-tag
:type="'success'"
:type=" item.algorithmStatus=='0'?'success':'danger'"
effect="dark"
>
{{ 'success'}}
{{ item.algorithmStatus=='0'?'已启用':'已停用' }}
</el-tag>
</div>
</template>
......@@ -197,6 +197,8 @@
const data = reactive({
form: {},
queryParams: {
pageNum: 1,
pageSize: 100,
postCode: undefined,
searchValue: '',
status: undefined
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment