constant.tsx 1.32 KB
export const PRIVATE_POCKET_COLUMNS = [
  {
    title: '用户ID',
    dataIndex: 'uid',
    key: 'uid',
    valueType: 'text',
    hideInTable: true,
    hideInSearch: true,
  },
  {
    title: '用户账号',
    dataIndex: 'account',
    key: 'account',
    valueType: 'text',
    fieldProps: {
      placeholder: '请输入用户账号',
    },
  },
  {
    title: '真实姓名',
    dataIndex: 'realName',
    key: 'realName',
    valueType: 'text',
    hideInSearch: true,
  },
  {
    title: '用户余额',
    dataIndex: 'nowMoney',
    key: 'nowMoney',
    valueType: 'money',
    hideInSearch: true,
  },
  {
    title: '隐私余额',
    dataIndex: 'privateMoney',
    key: 'privateMoney',
    valueType: 'money',
    hideInSearch: true,
  },
  {
    title: '负责销售',
    dataIndex: 'salesCode',
    key: 'salesCode',
    valueType: 'text',
    fieldProps: {
      placeholder: '请输入负责销售',
    },
  },
  {
    title: '创建人',
    dataIndex: 'createByName',
    key: 'createByName',
    valueType: 'text',
    hideInSearch: true,
  },
  {
    title: '创建时间',
    dataIndex: 'createTime',
    key: 'createTime',
    valueType: 'dateTime',
    hideInSearch: true,
  },
  {
    title: '更新时间',
    dataIndex: 'updateTime',
    key: 'updateTime',
    valueType: 'dateTime',
    hideInSearch: true,
  },
];