Ben Lin
2025-03-08 72675157c774fc4c6490bd1e49ca3c4aa25581f0
src/views/tigerprojects/system/lowcode/entityts/BIZ_U9_ASN_DTL.ts
@@ -220,15 +220,27 @@
          ];
      }
    },
    GetSearchForm: () => {
      return [
        {
          field: 'ORDER_NO',
          label: t('单据号'),
          colProps: { span: 8 },
          component: 'Input',
        },
      ];
    GetSearchForm: (type: string) => {
      switch (type) {
        case 'BIZ_U9_ASN_DTL':
          return [
            {
              field: 'ORDER_NO',
              label: t('单据号'),
              colProps: { span: 8 },
              component: 'Input',
            },
          ];
        case 'BIZ_U9_ASN_SN':
          return [
            {
              field: 'ORDER_NO',
              label: t('单据号'),
              colProps: { span: 8 },
              component: 'Input',
            },
          ];
      };
    },
    GetCrudForm: () => {
      return [];