Ben Lin
2024-06-07 62541dd3e9ea18836bec9ab6f35d2a7b9dd1e741
src/views/tigerprojects/system/lowcode/normal/data.ts
@@ -9,6 +9,7 @@
import { DeleteEntity } from '/@/api/tigerapi/system';
import { ActionItem, BasicColumn } from '/@/components/Table';
import { useI18n } from '/@/hooks/web/useI18n';
import { isNullOrEmpty } from '/@/utils/is';
const { t } = useI18n();
@@ -138,6 +139,7 @@
/* Select 自定义onChange方法 */
export function custOnChange(e: any, fnName: string, entityName: string) {
  if (!isNullOrEmpty(fnName)) {
  switch (entityName) {
    case 'BAS_REASON':
      onChangeFns[fnName](e);
@@ -146,4 +148,7 @@
      break;
      (e) => {};
  }
  } else {
    (e) => {};
  }
}