Explorar el Código

修复菜单图标文本框搜索消失问题(I5IHZV)

RuoYi hace 2 años
padre
commit
8b49d6572a
Se han modificado 1 ficheros con 6 adiciones y 2 borrados
  1. 6 2
      src/views/system/menu/index.vue

+ 6 - 2
src/views/system/menu/index.vue

@@ -375,8 +375,12 @@ function selected(name) {
   showChooseIcon.value = false;
 }
 /** 图标外层点击隐藏下拉列表 */
-function hideSelectIcon() {
-  showChooseIcon.value = false;
+function hideSelectIcon(event) {
+  var elem = event.relatedTarget || event.srcElement || event.target || event.currentTarget;
+  var className = elem.className;
+  if (className !== "el-input__inner") {
+    showChooseIcon.value = false;
+  }
 }
 /** 搜索按钮操作 */
 function handleQuery() {