修复菜单主类目不能被选择问题

This commit is contained in:
RuoYi 2022-03-17 18:40:55 +08:00
parent a036b5a124
commit 18004588ed
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ const defaultExpandedKey = ref([]);
function initHandle() { function initHandle() {
nextTick(() => { nextTick(() => {
const selectedValue = valueId.value; const selectedValue = valueId.value;
if(selectedValue && selectedValue !== null && typeof (selectedValue) !== "undefined"){ if(selectedValue !== null && typeof (selectedValue) !== 'undefined') {
const node = proxy.$refs.selectTree.getNode(selectedValue) const node = proxy.$refs.selectTree.getNode(selectedValue)
if (node) { if (node) {
valueTitle.value = node.data[props.objMap.label] valueTitle.value = node.data[props.objMap.label]
@ -140,7 +140,7 @@ watch(valueId, () => {
font-weight: normal; font-weight: normal;
} }
ul li .el-tree .el-tree-node__content { ul li .el-tree .el-tree-node__content {
height: auto; height: auto;
padding: 0 20px; padding: 0 20px;
box-sizing: border-box; box-sizing: border-box;