瀏覽代碼

重置题名过滤

duy 2 周之前
父節點
當前提交
27ed2489b2
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/views/data-fill/query.vue

+ 4 - 1
src/views/data-fill/query.vue

@@ -1262,10 +1262,13 @@ const getWbsNodeTypeApi = async () => {
     let newArr = []
     const newData = getArrValue(data)
     for (let i = 0; i < newData.length; i++) {
-        newArr.push({
+        if (newData[i]['dictKey'] !== 'C0') {
+             newArr.push({
             label: newData[i]['dictValue'],
             value:newData[i]['dictKey'],
         })
+        }
+       
     }
     nodeTypeData.value = newArr
 }