add DarkMode
This commit is contained in:
		| @ -181,7 +181,7 @@ const handleCommand = (command: string) => { | ||||
|   height: 50px; | ||||
|   overflow: hidden; | ||||
|   position: relative; | ||||
|   background: #fff; | ||||
|   //background: #fff; | ||||
|   box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); | ||||
|  | ||||
|   .hamburger-container { | ||||
|  | ||||
| @ -1,8 +1,7 @@ | ||||
| <template> | ||||
|   <el-drawer v-model="showSettings" :withHeader="false" direction="rtl" size="300px" close-on-click-modal> | ||||
|     <div class="setting-drawer-title"> | ||||
|       <h3 class="drawer-title">主题风格设置</h3> | ||||
|     </div> | ||||
|     <h3 class="drawer-title">主题风格设置</h3> | ||||
|  | ||||
|     <div class="setting-drawer-block-checbox"> | ||||
|       <div class="setting-drawer-block-checbox-item" @click="handleTheme('theme-dark')"> | ||||
|         <img src="@/assets/images/dark.svg" alt="dark" /> | ||||
| @ -35,6 +34,13 @@ | ||||
|         <el-color-picker v-model="theme" :predefine="predefineColors" @change="themeChange" /> | ||||
|       </span> | ||||
|     </div> | ||||
|     <div class="drawer-item"> | ||||
|       <span>深色模式</span> | ||||
|       <span class="comp-style"> | ||||
|         <el-switch v-model="isDark" @change="toggleDark" class="drawer-switch" /> | ||||
|       </span> | ||||
|     </div> | ||||
|  | ||||
|     <el-divider /> | ||||
|  | ||||
|     <h3 class="drawer-title">系统布局配置</h3> | ||||
| @ -102,7 +108,15 @@ const sideTheme = ref(settingsStore.sideTheme); | ||||
| const storeSettings = computed(() => settingsStore); | ||||
| const predefineColors = ref(["#409EFF", "#ff4500", "#ff8c00", "#ffd700", "#90ee90", "#00ced1", "#1e90ff", "#c71585"]); | ||||
|  | ||||
| /** 是否需要topnav */ | ||||
| // 是否暗黑模式 | ||||
| const isDark = useDark({ | ||||
|   storageKey: 'useDarkKey', | ||||
|   valueDark: 'dark', | ||||
|   valueLight: 'light', | ||||
| }); | ||||
| const toggleDark = () => useToggle(isDark); | ||||
|  | ||||
| /** 是否需要topNav */ | ||||
| const topNav = computed({ | ||||
|     get: () => storeSettings.value.topNav, | ||||
|     set: (val) => { | ||||
| @ -234,7 +248,6 @@ defineExpose({ | ||||
| } | ||||
|  | ||||
| .drawer-item { | ||||
|   color: rgba(0, 0, 0, 0.65); | ||||
|   padding: 12px 0; | ||||
|   font-size: 14px; | ||||
|  | ||||
|  | ||||
| @ -237,8 +237,8 @@ onMounted(() => { | ||||
| .tags-view-container { | ||||
|   height: 34px; | ||||
|   width: 100%; | ||||
|   background: #fff; | ||||
|   border-bottom: 1px solid #d8dce5; | ||||
|   background-color: var(--el-bg-color); | ||||
|   border: 1px solid var(--el-border-color-light); | ||||
|   box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04); | ||||
|   .tags-view-wrapper { | ||||
|     .tags-view-item { | ||||
| @ -247,13 +247,15 @@ onMounted(() => { | ||||
|       cursor: pointer; | ||||
|       height: 26px; | ||||
|       line-height: 26px; | ||||
|       border: 1px solid #d8dce5; | ||||
|       color: #495060; | ||||
|       background: #fff; | ||||
|       background-color: var(--el-bg-color); | ||||
|       border: 1px solid var(--el-border-color-light); | ||||
|       padding: 0 8px; | ||||
|       font-size: 12px; | ||||
|       margin-left: 5px; | ||||
|       margin-top: 4px; | ||||
|       &:hover { | ||||
|         color: var(--el-color-primary); | ||||
|       } | ||||
|       &:first-of-type { | ||||
|         margin-left: 15px; | ||||
|       } | ||||
| @ -279,7 +281,7 @@ onMounted(() => { | ||||
|   } | ||||
|   .contextmenu { | ||||
|     margin: 0; | ||||
|     background: #fff; | ||||
|     background: var(--el-bg-color); | ||||
|     z-index: 3000; | ||||
|     position: absolute; | ||||
|     list-style-type: none; | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 LiuHao
					LiuHao