修改标签颜色---第三次提交

This commit is contained in:
熊丽君
2021-08-25 15:07:05 +08:00
parent 9d11ba5760
commit 7790360bd7
2 changed files with 24 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const user = {
},
SET_USER_ID: (state, userId) => {
state.userId = userId;
localStorage.setItem('userId', userId);
localStorage.setItem('admin-userId', userId);
},
SET_AVATAR: (state, avatar) => {
state.avatar = avatar;

View File

@ -521,3 +521,26 @@ export default {
},
};
</script>
<style lang="scss" scoped>
.el-dialog{
.el-form{
.el-select{
/deep/.el-tag.el-tag--info{
background-color: #ecf5ff;
border-color: #d9ecff;
color: #409eff;
}
/deep/.el-tag__close.el-icon-close{
background-color: unset;
}
/deep/.el-tag .el-tag__close{
color: #409eff;
}
/deep/.el-tag.el-tag--info .el-tag__close:hover{
color: #fff;
background-color: #409eff;
}
}
}
}
</style>