import TargetingTooltip from "@/pages/launchSystemV3/components/TargetingTooltip"; import { QuestionCircleFilled } from "@ant-design/icons"; import { Button, Popover, Space, Typography } from "antd"; import { ColumnsType } from "antd/es/table"; import React from "react"; export function TableConfig(geoLocationList: any, modelList: any, editHandle: (data: any, isCopy?: boolean) => void): ColumnsType { let arr: ColumnsType = [ { title: '定向模板名称', dataIndex: 'targetingName', key: 'targetingName', width: 300, fixed: 'left', render(value, records) { return
{value}
} >
} }, { title: '关联账户', dataIndex: 'accountId', key: 'accountId', align: 'center', width: 80, ellipsis: true, render(value) { return value || '不限' }, }, { title: '定向模板描述', dataIndex: 'description', key: 'description', width: 150, ellipsis: true, render(value) { return value || '--' } }, { title: '创建人', dataIndex: 'createByName', key: 'createByName', align: 'center', width: 100, ellipsis: true, render(value) { return value || '--' } }, { title: '创建时间', dataIndex: 'createTime', key: 'createTime', align: 'center', width: 140, ellipsis: true, }, { title: '操作', dataIndex: 'cz', key: 'cz', align: 'center', fixed: 'right', width: 120, render: (a: any, b: any) => { return } }, ] return arr }