From 15079a363658567a62db46ccfe489f04af79a687 Mon Sep 17 00:00:00 2001 From: “dzb” <2632970487@qq.com> Date: 星期三, 28 九月 2022 18:41:45 +0800 Subject: [PATCH] 运营管理的基础设置和案件池首页 --- src/App.vue | 28 +++++++++++++++++++++++----- 1 files changed, 23 insertions(+), 5 deletions(-) diff --git a/src/App.vue b/src/App.vue index 0c85672..f77c534 100644 --- a/src/App.vue +++ b/src/App.vue @@ -29,19 +29,18 @@ // 鑾峰彇icon async getIcon() { let result; - const pic = JSON.parse(localStorage.getItem('pic')); + const pic = JSON.parse(sessionStorage.getItem('pic')); if (pic) { result = pic; - console.log('缂撳瓨') + // console.log('缂撳瓨') } else { - console.log('璇锋眰'); + // console.log('璇锋眰'); await this.$axios({ method: 'get', url: 'sccg/system/portal/logo/search', }).then(res => { - console.log(res); result = res.data; - localStorage.setItem('pic',JSON.stringify(result)); + sessionStorage.setItem('pic',JSON.stringify(result)); }) } return result; @@ -51,4 +50,23 @@ </script> <style> +.el-select-dropdown__item{ + height: 100% !important; +} +.el-select-dropdown,.popper-class{ + background-color: #17324c !important; +} +.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{ + background-color: #17324c !important; +} +.el-tree{ + background-color: #17324c !important; +} +.el-tree-node__content:hover, .el-upload-list__item:hover{ + background-color: #09152f !important; + color: #4b9bb7 !important; +} +.el-tree-node:focus>.el-tree-node__content{ + background-color: #09152f !important; +} </style> \ No newline at end of file -- Gitblit v1.8.0