|
@@ -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
|
|
|
}
|