Ben Lin
2025-03-05 40b2854875f492a0f2ed3e67e765846806253ae5
src/views/tigerprojects/system/lowcode/entityts/BAS_DEFECT.ts
@@ -58,7 +58,12 @@
     * @return {*}
     */
    GetHomeUrl: () => {
      const param = { ID: 'BAS_DEFECT_GRP', colSlots: [], crudColSlots: [] };
      const param = {
        ID: 'BAS_DEFECT_GRP',
        EntityName: 'BAS_DEFECT_GRP',
        colSlots: [],
        crudColSlots: [],
      };
      return `/BAS_DEFECT_GRP/LC/${encodeURI(JSON.stringify(param))}`;
    },
    GetBaseColumns: (type: string) => {
@@ -136,9 +141,11 @@
     * @return {*}
     */    
    GetUseDrawers: () => {
      return [{
        'BAS_DEFECT': useDrawer(),
      }];
      return [
        {
          BAS_DEFECT: useDrawer(),
        },
      ];
    },
    /**
     * @description: 获取表格use列表
@@ -169,7 +176,7 @@
            slots: { customRender: 'action' },
            fixed: 'right',
          }, //自定义操作列
        })
        }),
      };
    },
    /**
@@ -227,7 +234,7 @@
        pageContent: '这里可以添加和修改不良代码组和不良代码。',
        tableTitle: {
          BAS_DEFECT: '不良代码管理',
        }
        },
      };
    },
    GetUseForm: () => {
@@ -288,8 +295,8 @@
        title: '更新人',
        dataIndex: 'UPDATE_USER',
      },
    ]
  }
    ],
  };
  const searchForms = {
    BAS_DEFECT: [
@@ -310,7 +317,7 @@
        },
      },
    ] as FormSchema[],
  }
  };
  const crudForms = {
    BAS_DEFECT: [
@@ -384,7 +391,7 @@
        show: false,
      },
    ] as FormSchema[],
  }
  };
  return [methods, ActionColumn];
}