瀏覽代碼

Merge branch 'v1.9.0-jm' of http://192.168.0.115:3000/bill/fuse-code into v1.9.0-jm

xzw 7 月之前
父節點
當前提交
33d1d76858
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/views/tagging/style-type-select.vue

+ 1 - 1
src/views/tagging/style-type-select.vue

@@ -63,7 +63,7 @@ const getItems = (types = styleTypes): any => {
         children: "children" in item ? getItems(item.children) : null,
       };
     })
-    .filter((item) => !props.count || item.count);
+    .filter((item) => !props.count || item.count || item.key === allType.id);
 };
 const getCurrentItem = (type: number, all = items.value): any => {
   for (const item of all) {