wangxy hace 1 mes
padre
commit
e0ba79f165
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      components/selectZyLevel/index.vue

+ 2 - 2
components/selectZyLevel/index.vue

@@ -90,12 +90,12 @@
 	}
 	// 确认
 	function confirmBtn() {
-		$emit('confirm-btn', data.list.filter(item => item.active)).map(item => {
+		$emit('confirm-btn', data.list.filter(item => item.active).map(item => {
       return {
         name: item.name,
         id: item.id,
       }
-    });
+    }));
 		handleClose();
 	}