ソースを参照

基础类型修改

duy 3 日 前
コミット
ea80d02d70
1 ファイル変更4 行追加4 行削除
  1. 4 4
      src/views/codeRule/ConditionsSet.vue

+ 4 - 4
src/views/codeRule/ConditionsSet.vue

@@ -384,10 +384,10 @@ export default {
         }
       });
        const selectedOption = this.sampleOptions.find(option => option.value === value);
-       this.basicOptions = selectedOption ? selectedOption.info.map(item => ({
-         value: item.id,
-         label: item.name
-       })) : [];
+      this.basicOptions = selectedOption ? selectedOption.info.filter(item => item.name !== '').map(item => ({
+        value: item.id,
+        label: item.name
+      })) : [];
        
     },
     handleDeleteItem(item, index) {