config.ts 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**广告 */
  2. const txAdConfig = [
  3. {
  4. label: '广告详情',
  5. data: [
  6. { title: '启停', dataIndex: 'configuredStatus', label: '广告详情', default: 1, width: 40 },
  7. { title: '所属账号', dataIndex: 'accountId', label: '广告详情', default: 2, width: 75 },
  8. { title: '腾讯备注', dataIndex: 'memo', label: '广告详情', default: 3, width: 80 },
  9. { title: '本地备注', dataIndex: 'remark', label: '广告详情', default: 4, width: 80 },
  10. { title: '广告ID', dataIndex: 'adgroupId', label: '广告详情', default: 5, width: 90 },
  11. { title: '投手', dataIndex: 'putUserName', label: '广告详情', default: 6, width: 70 },
  12. { title: '广告名称', dataIndex: 'adgroupName', label: '广告详情', default: 7, width: 280 },
  13. { title: '投放日期', dataIndex: 'beginDate', label: '广告详情', default: 8, width: 150 },
  14. { title: '投放时间', dataIndex: 'timeSeries', label: '广告详情', default: 9, width: 55 },
  15. { title: '首日开始投放时间', dataIndex: 'firstDayBeginTime', label: '广告详情', default: 10, width: 70 },
  16. { title: '出价', dataIndex: 'bidAmount', label: '广告详情', default: 11, width: 140 },
  17. { title: '深度优化行为出价', dataIndex: 'deepConversionBehaviorBid', label: '广告详情', default: 12, width: 70 },
  18. { title: '出价类型', dataIndex: 'smartBidType', label: '广告详情', default: 13, width: 80 },
  19. { title: '出价策略', dataIndex: 'bidStrategy', label: '广告详情', default: 14, width: 80 },
  20. { title: '广告组日预算(元)', dataIndex: 'dailyBudget', label: '广告详情', default: 15, width: 70 },
  21. { title: '是否开启自动版位功能', dataIndex: 'automaticSiteEnabled', label: '广告详情', default: 16, width: 80 },
  22. { title: '定向条件描述', dataIndex: 'targetingTranslation', label: '广告详情', default: 17, width: 80 },
  23. { title: '创建时间', dataIndex: 'createdTime', label: '广告详情', default: 18, width: 140 },
  24. { title: '是否已删除', dataIndex: 'isDeleted', label: '广告详情', default: 19, width: 60 },
  25. { title: '广告状态', dataIndex: 'systemStatus', label: '广告详情', default: 20, width: 80 },
  26. { title: '创意预览', dataIndex: 'dynamicCreativeList', label: '广告详情', default: 21, width: 150 },
  27. { title: '操作', dataIndex: 'cz', label: '广告详情', default: 22, width: 65 },
  28. ]
  29. }
  30. ]
  31. const txDynamicConfig = [
  32. {
  33. label: '创意详情',
  34. data: [
  35. { title: '启停', dataIndex: 'configuredStatus', label: '广告详情', default: 1, width: 40 },
  36. // { title: '创意预览', dataIndex: 'creativeComponents', label: '广告详情', default: 2, width: 130 },
  37. { title: '品牌形象', dataIndex: 'brand', label: '广告详情', default: 2, width: 110 },
  38. { title: '文本标题', dataIndex: 'title', label: '广告详情', default: 3, width: 140 },
  39. { title: '文本描述', dataIndex: 'description', label: '广告详情', default: 4, width: 140 },
  40. { title: '单图片', dataIndex: 'image', label: '广告详情', default: 5, width: 140 },
  41. { title: '图集', dataIndex: 'imageList', label: '广告详情', default: 6, width: 140 },
  42. { title: '视频', dataIndex: 'video', label: '广告详情', default: 7, width: 140 },
  43. { title: '轮播', dataIndex: 'floatingZone', label: '广告详情', default: 8, width: 150 },
  44. { title: '所属账号', dataIndex: 'accountId', label: '广告详情', default: 9, width: 75 },
  45. { title: '广告ID', dataIndex: 'adgroupId', label: '广告详情', default: 10, width: 90 },
  46. { title: '创意名称', dataIndex: 'dynamicCreativeName', label: '广告详情', default: 11, width: 120 },
  47. { title: '创意ID', dataIndex: 'dynamicCreativeId', label: '广告详情', default: 12, width: 60 },
  48. { title: '投放模式', dataIndex: 'deliveryMode', label: '广告详情', default: 13, width: 100 },
  49. { title: '创意形式匹配方式', dataIndex: 'dynamicCreativeType', label: '广告详情', default: 14, width: 100 },
  50. { title: '状态', dataIndex: 'systemStatus', label: '广告详情', default: 15, width: 100 },
  51. ]
  52. }
  53. ]
  54. export {
  55. txAdConfig,
  56. txDynamicConfig
  57. }