Browse Source

重置题名过滤

duy 1 week ago
parent
commit
27ed2489b2
1 changed files with 4 additions and 1 deletions
  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
 }