AllMessages.data.ts 488 B

12345678910
  1. import { BasicColumn } from '/@/components/Table';
  2. export const columns: BasicColumn[] = [
  3. { title: '消息主题', dataIndex: 'subject', width: 180 },
  4. { title: '消息内容', dataIndex: 'content', width: 200, ellipsis: true },
  5. { title: '接收人数', dataIndex: 'targets', width: 90 },
  6. { title: '来源模块', dataIndex: 'moduleType', width: 150 },
  7. { title: '推送人', dataIndex: 'sender', width: 100 },
  8. { title: '推送时间', dataIndex: 'sendTime', width: 170 },
  9. ];