forked from ruoyi/RuoYi-Vue
		
	添加页签图标显示开关功能
This commit is contained in:
		| @@ -49,6 +49,11 @@ | ||||
|           <el-switch v-model="tagsView" class="drawer-switch" /> | ||||
|         </div> | ||||
|  | ||||
|         <div class="drawer-item"> | ||||
|           <span>显示页签图标</span> | ||||
|           <el-switch v-model="tagsIcon" :disabled="!tagsView" class="drawer-switch" /> | ||||
|         </div> | ||||
|  | ||||
|         <div class="drawer-item"> | ||||
|           <span>固定 Header</span> | ||||
|           <el-switch v-model="fixedHeader" class="drawer-switch" /> | ||||
| @@ -124,6 +129,17 @@ export default { | ||||
|         }) | ||||
|       } | ||||
|     }, | ||||
|     tagsIcon: { | ||||
|       get() { | ||||
|         return this.$store.state.settings.tagsIcon | ||||
|       }, | ||||
|       set(val) { | ||||
|         this.$store.dispatch('settings/changeSetting', { | ||||
|           key: 'tagsIcon', | ||||
|           value: val | ||||
|         }) | ||||
|       } | ||||
|     }, | ||||
|     sidebarLogo: { | ||||
|       get() { | ||||
|         return this.$store.state.settings.sidebarLogo | ||||
| @@ -176,6 +192,7 @@ export default { | ||||
|         `{ | ||||
|             "topNav":${this.topNav}, | ||||
|             "tagsView":${this.tagsView}, | ||||
|             "tagsIcon":${this.tagsIcon}, | ||||
|             "fixedHeader":${this.fixedHeader}, | ||||
|             "sidebarLogo":${this.sidebarLogo}, | ||||
|             "dynamicTitle":${this.dynamicTitle}, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 RuoYi
					RuoYi