Browse Source

子表配置关联录入表单过滤优化

wu 3 months ago
parent
commit
6a712bc982
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/Generator/index/RightComponents/Table.vue

+ 1 - 1
src/components/Generator/index/RightComponents/Table.vue

@@ -55,7 +55,7 @@
       </template>
       <el-select v-model="activeData.relationConf.itemRelationTable" filterable placeholder="请选择" clearable @change="onRelationTableChange($event)">
         <el-option
-          v-for="(item, index) in allTabelList.filter((o) => o.associationType && o.associationType == 1 && o.visualdevTableType && o.visualdevTableType == 1)"
+          v-for="(item, index) in allTabelList.filter((o) => o.associationType && o.associationType == 1)"
           :label="item.fullName"
           :value="item.id"
           :key="item.id"