123456789101112131415161718192021222324252627282930313233343536 |
- /**广告 */
- const txAdConfig = [
- {
- label: '设置信息',
- data: [
- { title: '启停', dataIndex: 'configuredStatus', label: '设置信息', default: 1, width: 40 },
- { title: '所属账号', dataIndex: 'accountId', label: '设置信息', default: 2, width: 75 },
- { title: '腾讯备注', dataIndex: 'memo', label: '设置信息', default: 3, width: 80 },
- { title: '本地备注', dataIndex: 'remark', label: '设置信息', default: 4, width: 80 },
- { title: '广告ID', dataIndex: 'adgroupId', label: '设置信息', default: 5, width: 90 },
- { title: '所属计划ID', dataIndex: 'campaignId', label: '设置信息', default: 6, width: 90 },
- { title: '投手', dataIndex: 'putUserName', label: '设置信息', default: 7, width: 70 },
- { title: '广告名称', dataIndex: 'adgroupName', label: '设置信息', default: 8, width: 280 },
- { title: '推广目标类型', dataIndex: 'promotedObjectType', label: '设置信息', default: 9, width: 75 },
- { title: '投放日期', dataIndex: 'beginDate', label: '设置信息', default: 10, width: 150 },
- { title: '投放时间', dataIndex: 'timeSeries', label: '设置信息', default: 11, width: 55 },
- { title: '首日开始投放时间', dataIndex: 'firstDayBeginTime', label: '设置信息', default: 12, width: 70 },
- { title: '出价', dataIndex: 'bidAmount', label: '设置信息', default: 13, width: 140 },
- { title: '深度优化ROI', dataIndex: 'expectedRoi', label: '设置信息', default: 14, width: 70 },
- { title: '出价类型', dataIndex: 'smartBidType', label: '设置信息', default: 15, width: 80 },
- { title: '广告组日预算(分)', dataIndex: 'dailyBudget', label: '设置信息', default: 16, width: 70 },
- { title: '是否开启自动版位功能', dataIndex: 'automaticSiteEnabled', label: '设置信息', default: 17, width: 80 },
- { title: '创建时间', dataIndex: 'createdTime', label: '设置信息', default: 18, width: 140 },
- { title: '是否已删除', dataIndex: 'isDeleted', label: '设置信息', default: 19, width: 60 },
- { title: '广告状态', dataIndex: 'status', label: '设置信息', default: 20, width: 70 },
- { title: '创意预览', dataIndex: 'creativePreview', label: '设置信息', default: 21, width: 70 },
- { title: '单位时间消耗速度', dataIndex: 'costSpeed', label: '设置信息', default: 22, width: 80 },
- { title: '操作', dataIndex: 'cz', label: '设置信息', default: 23, width: 65 },
- ]
- }
- ]
- export {
- txAdConfig
- }
|