import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { LogMessageHistory } from '../../../entity/system/log-message-history' /** * 发送类型 */ const SEND_TYPE_MAP = [ 'WEB', '安卓', '苹果', '钉钉', '微信小程序', '微信公众号', '微信扫码登录', 'qq扫码登录', '钉钉扫码登录', '邮箱验证码登录', '手机验证码登录', 'App', 'H5' ] const columns = ref[]>([ { title: '模板名称', dataIndex: 'rfTemplateName' }, { title: '接受人', dataIndex: 'sender' }, { title: '消息内容', dataIndex: 'msgContent' }, { title: '发送类型', dataIndex: 'sendType', customRender: ({ text }) => SEND_TYPE_MAP[text] }, { title: '发送时间', dataIndex: 'gmtCreate' }, { title: '回执', dataIndex: 'gmtCreate' } ]) export default columns