organization.data.ts 2.81 KB
import jwtDecode from 'jwt-decode';
import { BasicColumn } from '/@/components/Table';
import { FormSchema } from '/@/components/Table';
import { useI18n } from '/@/hooks/web/useI18n';
import { getJwtToken } from '/@/utils/auth';
import { createOrganizationSearch } from '/@/utils/organizationSearch';
const { t } = useI18n();

export const columns: BasicColumn[] = [
  {
    title: t('routes.common.organization.queryOrganizationName'),
    dataIndex: 'name',
    width: 160,
    align: 'left',
  },
  {
    title: t('routes.common.common.sort'), //排序
    dataIndex: 'sort',
    width: 50,
  },
  {
    title: t('routes.common.common.createTime'), //创建时间
    dataIndex: 'createTime',
    width: 180,
  },
  {
    title: t('routes.common.common.remark'), //备注
    dataIndex: 'remark',
    width: 300,
  },
];
export const formSchema: FormSchema[] = [
  {
    field: 'parentId',
    label: t('routes.common.organization.parentOrganization'),
    component: 'TreeSelect',
    dynamicRules: () => {
      const token = getJwtToken();
      const res = jwtDecode(token as string) as Record<'isCommonTenant', boolean>;
      return [{ required: res?.isCommonTenant, message: '请选择上级组织' }];
    },
    rulesMessageJoinLabel: true,
    componentProps: {
      replaceFields: {
        title: 'name',
        key: 'id',
        value: 'id',
      },
      maxTagCount: 10,
      ...createOrganizationSearch(),
      getPopupContainer: () => document.body,
    },
  },
  {
    field: 'name',
    label: t('routes.common.organization.queryOrganizationName'),
    component: 'Input',
    required: true,
    componentProps: {
      maxLength: 36,
    },
  },
  {
    field: 'sort',
    label: t('routes.common.common.sort'), //排序
    component: 'InputNumber',
    required: true,
    dynamicRules: () => {
      return [
        {
          required: true,
          validator: (_, value) => {
            if (Number(value) < -2147483648 || Number(value) > 2147483647) {
              return Promise.reject('取值范围是-2147483648到2147483647');
            }
            return Promise.resolve();
          },
        },
      ];
    },
    componentProps: {
      min: -2147483648,
      max: 2147483647,
    },
  },
  {
    label: t('routes.common.common.remark'), //备注
    field: 'remark',
    component: 'InputTextArea',
    componentProps: {
      maxLength: 255,
    },
    dynamicRules: () => {
      return [
        {
          required: false,
          validator: (_, value) => {
            if (String(value).length > 255) {
              return Promise.reject('字数不超过255个字');
            }
            return Promise.resolve();
          },
        },
      ];
    },
  },
  {
    label: '租户ID',
    field: 'tenantId',
    component: 'Input',
    show: false,
    componentProps: {
      maxLength: 36,
    },
  },
];