accountConst.js 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344
  1. export const TTcustomFields= [
  2. {
  3. id: 0,
  4. title: '展现数据',
  5. checkall: false,
  6. form:[],
  7. specificFields: [
  8. {
  9. title: '消耗',
  10. dataIndex: 'cost',
  11. tip: '表示广告在投放期内的预估花费金额。当天数据可能会有波动,次日稳定',
  12. align: 'center',
  13. scopedSlots: { customRender: 'cost' },
  14. sorter: () => {}
  15. },
  16. {
  17. title: '展示数',
  18. dataIndex: 'showMaterial',
  19. tip: '经平台判定有效且被计数的展示次数',
  20. align: 'center',
  21. scopedSlots: { customRender: 'showMaterial' },
  22. sorter:() => {}
  23. },
  24. {
  25. title: '平均千次展现费用',
  26. dataIndex: 'cpm',
  27. tip: '广告平均每一千次展现所付出的费用,计算公式是:总花费/展示数*1000',
  28. align: 'center',
  29. scopedSlots: { customRender: 'cpm' },
  30. sorter: () => {}
  31. },
  32. {
  33. title: '点击数',
  34. dataIndex: 'clickMaterial',
  35. tip: '当头条用户点击广告素材时,触发点击事件,该事件被认为是一次有效的广告点击',
  36. align: 'center',
  37. scopedSlots: { customRender: 'clickMaterial' },
  38. sorter:() => {}
  39. },
  40. {
  41. title: '点击率',
  42. dataIndex: 'ctr',
  43. tip: '广告被点击的次数占展示次数的百分比。计算方法:点击数/展示数*100%',
  44. align: 'center',
  45. scopedSlots: { customRender: 'ctr' },
  46. sorter:() => {}
  47. },
  48. {
  49. title: '平均点击单价',
  50. dataIndex: 'cpc',
  51. tip: '广告主为每次点击付出的费用成本,计算公式是:总花费/点击数',
  52. align: 'center',
  53. scopedSlots: { customRender: 'cpc' },
  54. sorter:() => {}
  55. }
  56. ]
  57. },
  58. {
  59. id: 1,
  60. title: '转化数据',
  61. checkall: false,
  62. form:[],
  63. specificFields: [
  64. {
  65. title: '转化数',
  66. dataIndex: 'convertMaterial',
  67. tip:'将转化数记录在转化事件发生的时间上。建议广告主考核成本时参考“转化数据(计费时间)”例如您的广告在早上8点进行了展示和点击,用户晚上19点发生了激活行为,我们会把激活数披露在晚上19点',
  68. align: 'center',
  69. scopedSlots: { customRender: 'convertMaterial' },
  70. sorter: () => {}
  71. },
  72. {
  73. title: '转化成本',
  74. dataIndex: 'convertCost',
  75. tip: '广告主为每个转化所付出的平均成本,计算方式:总花费/转化数。当天数据可能会有波动',
  76. align: 'center',
  77. scopedSlots: { customRender: 'convertCost' },
  78. sorter:() => {}
  79. },
  80. {
  81. title: '转化率',
  82. dataIndex: 'convertRate',
  83. tip: '广告被用户转化的次数占点击次数的百分比。计算方式:转化数/点击数*100%',
  84. align: 'center',
  85. scopedSlots: { customRender: 'playOverRate' },
  86. sorter: () => {}
  87. },
  88. // {
  89. // title: '深度转化次数',
  90. // dataIndex: 'deepconvert',
  91. // tip:'将深度转化数记录在转化事件发生的时间上。建议广告主考核深度转化成本时参考“深度转化数(计费时间)”例如您的广告在早上8点进行了展示和点击,用户晚上19点发生了激活行为,我们会把激活数披露在晚上19点',
  92. // align: 'center',
  93. // scopedSlots: { customRender: 'playOverRate' },
  94. // sorter: () => {}
  95. // },
  96. // {
  97. // title: '深度转化成本',
  98. // dataIndex: 'deepconvertCost',
  99. // tip: '广告主为每个深度转化所付出的平均成本,计算方法:总花费/深度转化数。当天数据可能会有波动,次日早8点后稳定',
  100. // align: 'center',
  101. // scopedSlots: { customRender: 'deepconvertCost' },
  102. // sorter:() => {}
  103. // },
  104. // {
  105. // title: '深度转化率',
  106. // dataIndex: 'deepconvertRate',
  107. // tip: '广告被用户进行深度转化的次数占转化次数的百分比。计算方式:深度转化数/转化数*100%',
  108. // align: 'center',
  109. // scopedSlots: { customRender: 'playOverRate' },
  110. // sorter:() => {}
  111. // }
  112. ]
  113. },
  114. // {
  115. // id: 2,
  116. // title: '转化数据(计费时间)',
  117. // checkall: false,
  118. // form:[],
  119. // specificFields: [
  120. // {
  121. // title: '转化数(计费时间)',
  122. // dataIndex: 'conversionNumberbillabletime',
  123. // tip:'在转化行为发生(或回传)后,将转化行为回记到过去7天内的扣费(消耗产生)时间上。 例如:广告在8月20日展示给用户,此时广告花费10元,用户点击广告后于8月23日产生1笔购买,则8月23日这笔购买将会展示在8月20日,8月23日没有转化数。暂不支持查看当日数据',
  124. // align: 'center',
  125. // scopedSlots: { customRender: 'conversionNumberbillabletime' },
  126. // sorter: () => {}
  127. // },
  128. // {
  129. // title: '转化成本(计费时间)',
  130. // dataIndex: 'convertCostbillabletime',
  131. // tip:
  132. // '转化成本(计费时间) = 消耗 / 转化数(计费时间)。例如:广告在8月20日展示给用户,此时广告花费10元,用户点击广告后,于8月23日产生2笔购买,则8月20日的转化成本(计费时间) = 5元(即10元除以2笔)。成本考核和系统赔付以该指标为准,暂不支持查看当日数据',
  133. // align: 'center',
  134. // scopedSlots: { customRender: 'convertCostbillabletime' },
  135. // sorter: () => {}
  136. // },
  137. // {
  138. // title: '深度转化次数(计费时间)',
  139. // dataIndex: 'deepconvertbillabletime',
  140. // tip:
  141. // '在转化行为发生(或回传)后,将转化行为回记到过去7天内的扣费(消耗产生)时间上。 例如:广告在8月20日展示给用户,此时广告花费10元,用户点击广告后于8月23日产生1笔购买,则8月23日这笔购买将会展示在8月20日。暂不支持查看当日数据',
  142. // align: 'center',
  143. // scopedSlots: { customRender: 'deepconvertbillabletime' },
  144. // sorter:() => {}
  145. // },
  146. // {
  147. // title: '深度转化成本(计费时间)',
  148. // dataIndex: 'deepconvertCostbillabletime',
  149. // tip:
  150. // '是一个准确的深度转化成本评估指标。计算方式:消耗 / 深度转化数(计费时间)。例如:广告在8月20日展示给用户,此时广告花费10元,用户点击广告后,于 8 月 23 日产生2笔购买,则8月20日的深度转化成本(计费时间) = 5元(即10元除以2笔)。成本考核和系统赔付以该指标为准,暂不支持查看当日数据',
  151. // align: 'center',
  152. // scopedSlots: { customRender: 'deepconvertCostbillabletime' },
  153. // sorter: () => {}
  154. // }
  155. // ]
  156. // },
  157. {
  158. id: 3,
  159. title: '应用下载广告数据',
  160. checkall: false,
  161. form:[],
  162. specificFields: [
  163. {
  164. title: '安卓下载开始数',
  165. dataIndex: 'downloadStart',
  166. tip: '用户在落地页中开始安装包下载进程的次数,仅安卓下载可以监测到该行为',
  167. align: 'center',
  168. scopedSlots: { customRender: 'downloadStart' },
  169. sorter:() => {}
  170. },
  171. {
  172. title: '安卓下载开始成本',
  173. dataIndex: 'downloadStartCost',
  174. tip: '计算方法:总花费/安卓下载开始数',
  175. align: 'center',
  176. scopedSlots: { customRender: 'downloadStartCost' },
  177. sorter: () => {}
  178. },
  179. {
  180. title: '安卓下载开始率',
  181. dataIndex: 'downloadStartRate',
  182. tip: '计算方法:安卓下载开始数/点击数',
  183. align: 'center',
  184. scopedSlots: { customRender: 'downloadStartRate' },
  185. sorter: () => {}
  186. },
  187. {
  188. title: '安卓下载完成数',
  189. dataIndex: 'downloadFinish',
  190. tip: '用户在落地页中下载安装包进程完成的次数,仅安卓下载可以监测到该行为',
  191. align: 'center',
  192. scopedSlots: { customRender: 'downloadFinish' },
  193. sorter:() => {}
  194. },
  195. {
  196. title: '安卓下载完成成本',
  197. dataIndex: 'downloadFinishCost',
  198. tip: '计算方式:总花费/安卓下载完成数',
  199. align: 'center',
  200. scopedSlots: { customRender: 'downloadFinishCost' },
  201. sorter: () => {}
  202. },
  203. {
  204. title: '安卓下载完成率',
  205. dataIndex: 'downloadFinishRate',
  206. tip: '计算方式:安卓下载完成数/安卓下载开始数',
  207. align: 'center',
  208. scopedSlots: { customRender: 'downloadFinishRate' },
  209. sorter: () => {}
  210. },
  211. {
  212. title: '激活数',
  213. dataIndex: 'active',
  214. tip: '广告主回传的应用激活数',
  215. align: 'center',
  216. scopedSlots: { customRender: 'active' },
  217. sorter:() => {}
  218. },
  219. {
  220. title: '激活成本',
  221. dataIndex: 'activeCost',
  222. tip: '计算方式:总花费/激活数',
  223. align: 'center',
  224. scopedSlots: { customRender: 'activeCost' },
  225. sorter:() => {}
  226. },
  227. {
  228. title: '激活率',
  229. dataIndex: 'activeRate',
  230. tip: '计算方式:激活数/点击数*100%',
  231. align: 'center',
  232. scopedSlots: { customRender: 'activeRate' },
  233. sorter:() => {}
  234. },
  235. {
  236. title: '注册数',
  237. dataIndex: 'register',
  238. tip: '广告主回传成功的注册数',
  239. align: 'center',
  240. scopedSlots: { customRender: 'register' },
  241. sorter: () => {}
  242. },
  243. {
  244. title: '注册成本',
  245. dataIndex: 'activeRegisterCost',
  246. tip: '广告主为每个注册所付出的成本,计算公式是:总花费/注册数,当天数据可能会有波动,次日早8点后稳定',
  247. align: 'center',
  248. scopedSlots: { customRender: 'activeRegisterCost' },
  249. sorter: () => {}
  250. },
  251. {
  252. title: '注册率',
  253. dataIndex: 'activeRegisterRate',
  254. tip: '注册用户占激活用户的比例',
  255. align: 'center',
  256. scopedSlots: { customRender: 'activeRegisterRate' },
  257. sorter: () => {}
  258. },
  259. {
  260. title: '次留数',
  261. dataIndex: 'nextDayOpen',
  262. tip: '在次留行为发生或回传后,将次留数匹配到相应的激活时间上,用来查看当天在第二天的次留数。当天数据不产出',
  263. align: 'center',
  264. scopedSlots: { customRender: 'nextDayOpen' },
  265. sorter:() => {}
  266. },
  267. {
  268. title: '次留成本',
  269. dataIndex: 'nextDayOpenCost',
  270. tip: '次留成本=消耗/次留数',
  271. align: 'center',
  272. scopedSlots: { customRender: 'nextDayOpenCost' },
  273. sorter:() => {}
  274. },
  275. {
  276. title: '次留率',
  277. dataIndex: 'nextDayOpenRate',
  278. tip: '次留率=次留数/激活数',
  279. align: 'center',
  280. scopedSlots: { customRender: 'nextDayOpenRate' },
  281. sorter: () => {}
  282. },
  283. {
  284. title: '付费数',
  285. dataIndex: 'activePayAmount',
  286. tip: '当天用户在应用内完成付费的总次数,多次付费会重复计数',
  287. align: 'center',
  288. scopedSlots: { customRender: 'activePayAmount' },
  289. sorter:() => {}
  290. },
  291. {
  292. title: '付费成本',
  293. dataIndex: 'activePayCost',
  294. tip: '当天用户在应用内完成付费的平均成本,计算方式:消耗/付费次数',
  295. align: 'center',
  296. scopedSlots: { customRender: 'activePayCost' },
  297. sorter:() => {}
  298. },
  299. ]
  300. },
  301. {
  302. id: 4,
  303. title: '落地页及门店数据',
  304. checkall: false,
  305. form:[],
  306. specificFields: [
  307. // {
  308. // title: '点击电话按钮',
  309. // dataIndex: 'clickThePhoneButton',
  310. // tip: '用户点击POI页面的电话按钮的次数',
  311. // align: 'center',
  312. // scopedSlots: { customRender: 'clickThePhoneButton' },
  313. // sorter: () => {}
  314. // },
  315. {
  316. title: '表单提交',
  317. dataIndex: 'form',
  318. tip: '用户在门店落地页多线沟通提交表单的次数',
  319. align: 'center',
  320. scopedSlots: { customRender: 'form' },
  321. sorter: () => {}
  322. },
  323. // {
  324. // title: '地图搜索',
  325. // dataIndex: 'mapSearch',
  326. // tip: '用户进行地图搜索的次数',
  327. // align: 'center',
  328. // scopedSlots: { customRender: 'mapSearch' },
  329. // sorter: () => {}
  330. // },
  331. // {
  332. // title: '按钮button',
  333. // dataIndex: 'button',
  334. // tip: '用户点击按钮button的次数',
  335. // align: 'center',
  336. // scopedSlots: { customRender: 'button' },
  337. // sorter: () => {}
  338. // },
  339. // {
  340. // title: '关键页面浏览',
  341. // dataIndex: 'viewMaterial',
  342. // tip: '用户在关键页面的浏览次数',
  343. // align: 'center',
  344. // scopedSlots: { customRender: 'viewMaterial' },
  345. // sorter: () => {}
  346. // },
  347. // {
  348. // title: '下载开始',
  349. // dataIndex: 'download',
  350. // tip: '用户点击下载开始的次数',
  351. // align: 'center',
  352. // scopedSlots: { customRender: 'download' },
  353. // sorter: () => {}
  354. // },
  355. // {
  356. // title: 'qq咨询',
  357. // dataIndex: 'qq',
  358. // tip: '用户点击QQ咨询按钮的次数',
  359. // align: 'center',
  360. // scopedSlots: { customRender: 'qq' },
  361. // sorter: () => {}
  362. // },
  363. // {
  364. // title: '抽奖',
  365. // dataIndex: 'lottery',
  366. // tip: '用户点击抽奖按钮的次数',
  367. // align: 'center',
  368. // scopedSlots: { customRender: 'lottery' },
  369. // sorter: () => {}
  370. // },
  371. // {
  372. // title: '投票',
  373. // dataIndex: 'vote',
  374. // tip: '用户点击投票按钮的次数',
  375. // align: 'center',
  376. // scopedSlots: { customRender: 'vote' },
  377. // sorter:() => {}
  378. // },
  379. // {
  380. // title: '短信咨询',
  381. // dataIndex: 'message',
  382. // tip: '用户点击短信咨询的次数',
  383. // align: 'center',
  384. // scopedSlots: { customRender: 'message' },
  385. // sorter: () => {}
  386. // },
  387. // {
  388. // title: '页面跳转',
  389. // dataIndex: 'redirect',
  390. // tip: '用户跳转至其他页面的次数',
  391. // align: 'center',
  392. // scopedSlots: { customRender: 'redirect' },
  393. // sorter: () => {}
  394. // },
  395. // {
  396. // title: '商品购买',
  397. // dataIndex: 'shopping',
  398. // tip: '用户购买商品的次数',
  399. // align: 'center',
  400. // scopedSlots: { customRender: 'shopping' },
  401. // sorter: () => {}
  402. // },
  403. // {
  404. // title: '在线咨询',
  405. // dataIndex: 'consult',
  406. // tip: '用户点击在线咨询按钮的次数',
  407. // align: 'center',
  408. // scopedSlots: { customRender: 'consult' },
  409. // sorter: () => {}
  410. // },
  411. // {
  412. // title: '微信复制',
  413. // dataIndex: 'wechat',
  414. // tip: '用户通过长按复制微信号的次数',
  415. // align: 'center',
  416. // scopedSlots: { customRender: 'wechat' },
  417. // sorter: () => {}
  418. // },
  419. // {
  420. // title: '智能电话-确认拨打',
  421. // dataIndex: 'phoneConfirm',
  422. // tip: '用户点击确认拨打电话按钮的次数',
  423. // align: 'center',
  424. // scopedSlots: { customRender: 'phoneConfirm' },
  425. // sorter: () => {}
  426. // },
  427. // {
  428. // title: '智能电话-确认接通',
  429. // dataIndex: 'phoneConnect',
  430. // tip: '用户在门店落地页点击多线沟通的电话按钮并接通的次数',
  431. // align: 'center',
  432. // scopedSlots: { customRender: 'phoneConnect' },
  433. // sorter: () => {}
  434. // },
  435. // {
  436. // title: '有效咨询',
  437. // dataIndex: 'consultEffective',
  438. // tip: '用户在门店落地页多线沟通的在线咨询中有效咨询的次数',
  439. // align: 'center',
  440. // scopedSlots: { customRender: 'consultEffective' },
  441. // sorter:() => {}
  442. // },
  443. // {
  444. // title: '建站卡券领取',
  445. // dataIndex: 'coupon',
  446. // tip: '用户点击POI页面卡券领取按钮的次数',
  447. // align: 'center',
  448. // scopedSlots: { customRender: 'coupon' },
  449. // sorter: () => {}
  450. // },
  451. // {
  452. // title: '卡券页领取',
  453. // dataIndex: 'couponSinglePage',
  454. // tip: '用户点击POI页面卡券领取按钮的次数',
  455. // align: 'center',
  456. // scopedSlots: { customRender: 'couponSinglePage' },
  457. // sorter: () => {}
  458. // },
  459. // {
  460. // title: '调起店铺',
  461. // dataIndex: 'tuningUpTheShop',
  462. // tip: '用户调起第三方店铺的次数',
  463. // align: 'center',
  464. // scopedSlots: { customRender: 'tuningUpTheShop' },
  465. // sorter:() => {}
  466. // },
  467. // {
  468. // title: '店铺收藏',
  469. // dataIndex: 'collectShop',
  470. // tip: '用户点击POI页面的收藏按钮的次数',
  471. // align: 'center',
  472. // scopedSlots: { customRender: 'collectShop' },
  473. // sorter: () => {}
  474. // },
  475. // {
  476. // title: '查看店铺地址',
  477. // dataIndex: 'Checkthestoreaddress',
  478. // tip: '用户点击顶部地图图标区域展开详细地图/点击图片下方地址展开详细地图/点击图片下方地址展开详细地图的次数',
  479. // align: 'center',
  480. // scopedSlots: { customRender: 'Checkthestoreaddress' },
  481. // sorter:() => {}
  482. // },
  483. // {
  484. // title: '鲁班订单量',
  485. // dataIndex: 'Orderquantityofluban',
  486. // tip: '该条广告产生的订单数量',
  487. // align: 'center',
  488. // scopedSlots: { customRender: 'Orderquantityofluban' },
  489. // sorter:() => {}
  490. // },
  491. // {
  492. // title: '鲁班订单金额',
  493. // dataIndex: 'couponSinglePage',
  494. // tip: '该条广告产生订单的实际销售金额,不含优惠券和退款。当前仅支持商品推广的计划',
  495. // align: 'center',
  496. // scopedSlots: { customRender: 'couponSinglePage' },
  497. // sorter: () => {}
  498. // },
  499. // {
  500. // title: '鲁班订单ROI',
  501. // dataIndex: 'couponSinglePage',
  502. // tip: '计算公式:订单金额/广告消耗。当前仅支持商品推广的计划',
  503. // align: 'center',
  504. // scopedSlots: { customRender: 'couponSinglePage' },
  505. // sorter: () => {}
  506. // },
  507. // {
  508. // title: '直播间有效观看数',
  509. // dataIndex: 'couponSinglePage',
  510. // tip: '用户进入您直播间的次数',
  511. // align: 'center',
  512. // scopedSlots: { customRender: 'couponSinglePage' },
  513. // sorter: () => {}
  514. // },
  515. // {
  516. // title: '直播间关注数',
  517. // dataIndex: 'couponSinglePage',
  518. // tip: '您的直播间新增的粉丝数',
  519. // align: 'center',
  520. // scopedSlots: { customRender: 'couponSinglePage' },
  521. // sorter:() => {}
  522. // },
  523. // {
  524. // title: '直播间查看购物车数',
  525. // dataIndex: 'couponSinglePage',
  526. // tip: '用户在您的直播间点击查看购物车的次数',
  527. // align: 'center',
  528. // scopedSlots: { customRender: 'couponSinglePage' },
  529. // sorter: () => {}
  530. // },
  531. // {
  532. // title: '直播间订单量',
  533. // dataIndex: 'couponSinglePage',
  534. // tip: '用户在您直播间的支付成功的订单量',
  535. // align: 'center',
  536. // scopedSlots: { customRender: 'couponSinglePage' },
  537. // sorter: () => {}
  538. // },
  539. // {
  540. // title: '直播间订单金额',
  541. // dataIndex: 'couponSinglePage',
  542. // tip: '用户在您直播间的支付成功的订单金额,单位:元',
  543. // align: 'center',
  544. // scopedSlots: { customRender: 'couponSinglePage' },
  545. // sorter:() => {}
  546. // },
  547. // {
  548. // title: '直播间3日订单量',
  549. // dataIndex: 'couponSinglePage',
  550. // tip: '最近一次通过广告触达用户之后,3日内在该主播的直播间带来的支付订单量',
  551. // align: 'center',
  552. // scopedSlots: { customRender: 'couponSinglePage' },
  553. // sorter: () => {}
  554. // },
  555. // {
  556. // title: '直播间3日订单金额',
  557. // dataIndex: 'couponSinglePage',
  558. // tip: '最近一次通过广告触达用户之后,3日内在该主播的直播间带来的支付订单金额,单位:元',
  559. // align: 'center',
  560. // scopedSlots: { customRender: 'couponSinglePage' },
  561. // sorter: () => {}
  562. // },
  563. // {
  564. // title: '直播间7日订单量',
  565. // dataIndex: 'couponSinglePage',
  566. // tip: '最近一次通过广告触达用户之后,7日内在该主播的直播间带来的支付订单量',
  567. // align: 'center',
  568. // scopedSlots: { customRender: 'couponSinglePage' },
  569. // sorter: () => {}
  570. // },
  571. // {
  572. // title: '直播间7日订单金额',
  573. // dataIndex: 'couponSinglePage',
  574. // tip: '最近一次通过广告触达用户之后,7日内在该主播的直播间带来的支付订单金额,单位:元',
  575. // align: 'center',
  576. // scopedSlots: { customRender: 'couponSinglePage' },
  577. // sorter: () => {}
  578. // },
  579. // {
  580. // title: '直播间15日订单量',
  581. // dataIndex: 'couponSinglePage',
  582. // tip: '最近一次通过广告触达用户之后,15日内在该主播的直播间带来的支付订单量',
  583. // align: 'center',
  584. // scopedSlots: { customRender: 'couponSinglePage' },
  585. // sorter: () => {}
  586. // },
  587. // {
  588. // title: '直播间15日订单金额',
  589. // dataIndex: 'couponSinglePage',
  590. // tip: '最近一次通过广告触达用户之后,15日内在该主播的直播间带来的支付订单金额,单位:元',
  591. // align: 'center',
  592. // scopedSlots: { customRender: 'couponSinglePage' },
  593. // sorter: () => {}
  594. // },
  595. // {
  596. // title: '直播间30日订单量',
  597. // dataIndex: 'couponSinglePage',
  598. // tip: '最近一次通过广告触达用户之后,30日内在该主播的直播间带来的支付订单量',
  599. // align: 'center',
  600. // scopedSlots: { customRender: 'couponSinglePage' },
  601. // sorter: () => {}
  602. // },
  603. // {
  604. // title: '直播间30日订单金额',
  605. // dataIndex: 'couponSinglePage',
  606. // tip: '最近一次通过广告触达用户之后,30日内在该主播的直播间带来的支付订单金额,单位:元',
  607. // align: 'center',
  608. // scopedSlots: { customRender: 'couponSinglePage' },
  609. // sorter: () => {}
  610. // }
  611. ]
  612. },
  613. // {
  614. // id: 5,
  615. // title: '附加创意',
  616. // checkall: false,
  617. // form:[],
  618. // specificFields: [
  619. // {
  620. // title: '附加创意电话按钮点击',
  621. // dataIndex: 'advancedCreativePhoneClick',
  622. // tip: '用户查看创意的附加创意后,点击电话拨打按钮的次数',
  623. // align: 'center',
  624. // scopedSlots: { customRender: 'advancedCreativePhoneClick' },
  625. // sorter: () => {}
  626. // },
  627. // {
  628. // title: '附加创意电话按钮点击',
  629. // dataIndex: 'advancedCreativeCounselClick',
  630. // tip: '用户查看创意的附加创意后,点击在线咨询的次数',
  631. // align: 'center',
  632. // scopedSlots: { customRender: 'advancedCreativeCounselClick' },
  633. // sorter: () => {}
  634. // },
  635. // {
  636. // title: '附加创意表单提交',
  637. // dataIndex: 'advancedCreativeFormClick',
  638. // tip: '用户查看创意的附加创意后,提交表单的次数',
  639. // align: 'center',
  640. // scopedSlots: { customRender: 'advancedCreativeFormClick' },
  641. // sorter: () => {}
  642. // },
  643. // {
  644. // title: '附加创意卡券领取',
  645. // dataIndex: 'advancedCreativeCouponAddition',
  646. // tip: '用户查看创意的附加创意后,领取卡券的次数',
  647. // align: 'center',
  648. // scopedSlots: { customRender: 'advancedCreativeCouponAddition' },
  649. // sorter: () => {}
  650. // },
  651. // {
  652. // title: '附加创意表单按钮点击',
  653. // dataIndex: 'advancedCreativeFormButton',
  654. // tip: '用户查看创意的附加创意后,点击表单提交按钮的次数',
  655. // align: 'center',
  656. // scopedSlots: { customRender: 'advancedCreativeFormButton' },
  657. // sorter: () => {}
  658. // }
  659. // ]
  660. // },
  661. {
  662. id: 6,
  663. title: '视频数据',
  664. checkall: false,
  665. form:[],
  666. specificFields: [
  667. // {
  668. // title: '播放数',
  669. // dataIndex: 'totalPlay',
  670. // tip: '播放时间大于0S的数量,在某些蜂窝网络环境下,需要您手动点击开始才会开始播放,因此有时播放数小于展示数',
  671. // align: 'center',
  672. // scopedSlots: { customRender: 'totalPlay' },
  673. // sorter: () => {}
  674. // },
  675. // {
  676. // title: '有效播放数',
  677. // dataIndex: 'validPlay',
  678. // tip:
  679. // '竞价广告播放时间大于等于10秒的数量,如果视频总时长不足10秒,则记录播放完成的次数。品牌广告在部分APP(头条、头条lite、抖音、西瓜、抖音火山版、皮皮虾)播放时间大于等于5秒的数量,在其他APP大于等于3秒的数量,如果视频总时长不足5秒/3秒时,则记录播放完成的次数',
  680. // align: 'center',
  681. // scopedSlots: { customRender: 'validPlay' },
  682. // sorter: () => {}
  683. // },
  684. // {
  685. // title: '有效播放率',
  686. // dataIndex: 'validPlayRate',
  687. // tip: '计算公式:有效播放数/展示数',
  688. // align: 'center',
  689. // scopedSlots: { customRender: 'validPlayRate' },
  690. // sorter:() => {}
  691. // },
  692. {
  693. title: '有效播放成本',
  694. dataIndex: 'validPlayCost',
  695. tip: '计算公式:总花费/有效播放数,当天数据可能会有波动,次日早8点后稳定',
  696. align: 'center',
  697. scopedSlots: { customRender: 'validPlayCost' },
  698. sorter: () => {}
  699. },
  700. {
  701. title: '25%进度播放数',
  702. dataIndex: 'play25FeedBreak',
  703. tip: '用户播放至视频长度25%及以上的次数,包括跳跃播放至此长度的播放次数',
  704. align: 'center',
  705. scopedSlots: { customRender: 'play25FeedBreak' },
  706. sorter:() => {}
  707. },
  708. // {
  709. // title: '25%进度播放率',
  710. // dataIndex: 'play25FeedBreakRate',
  711. // align: 'center',
  712. // scopedSlots: { customRender: 'play25FeedBreakRate' },
  713. // sorter: (a, b) => a.play25FeedBreakRate - b.play25FeedBreakRate
  714. // },
  715. {
  716. title: '50%进度播放数',
  717. dataIndex: 'play50FeedBreak',
  718. tip: '用户播放至视频长度50%及以上的次数,包括跳跃播放至此长度的播放次数',
  719. align: 'center',
  720. scopedSlots: { customRender: 'play50FeedBreak' },
  721. sorter:() => {}
  722. },
  723. {
  724. title: '75%进度播放数',
  725. dataIndex: 'play75FeedBreak',
  726. tip: '用户播放至视频长度75%及以上的次数,包括跳跃播放至此长度的播放次数',
  727. align: 'center',
  728. scopedSlots: { customRender: 'play75FeedBreak' },
  729. sorter: () => {}
  730. },
  731. {
  732. title: '99%进度播放数',
  733. dataIndex: 'play100FeedBreak',
  734. tip: '用户播放至视频长度100%及以上的次数,包括跳跃播放至此长度的播放次数',
  735. align: 'center',
  736. scopedSlots: { customRender: 'play100FeedBreak' },
  737. sorter: () => {}
  738. },
  739. // {
  740. // title: '3s卡片展现数',
  741. // dataIndex: 'CardDisplayNumber3s',
  742. // tip: '计算公式:播放完成数/播放数',
  743. // align: 'center',
  744. // scopedSlots: { customRender: 'CardDisplayNumber3s' },
  745. // sorter: () => {}
  746. // }
  747. ]
  748. },
  749. {
  750. id: 7,
  751. title: '互动数据',
  752. checkall: false,
  753. form:[],
  754. specificFields: [
  755. {
  756. title: '新增关注数',
  757. dataIndex: 'follow',
  758. tip: '广告被受众新增关注的数量,目前抖音、头条号外、微头条、抖音火山版可新增关注',
  759. align: 'center',
  760. scopedSlots: { customRender: 'follow' },
  761. sorter:() => {}
  762. },
  763. {
  764. title: '点赞数',
  765. dataIndex: 'likeMaterial',
  766. tip: '广告被用户点赞的数量',
  767. align: 'center',
  768. scopedSlots: { customRender: 'likeMaterial' },
  769. sorter: () => {}
  770. },
  771. // {
  772. // title: '评论提交数',
  773. // dataIndex: 'commentMaterial',
  774. // tip: '用户在评论区对广告创意输入评论并点击提交的次数,仅限有评论区的APP(西瓜目前没有评论区)',
  775. // align: 'center',
  776. // scopedSlots: { customRender: 'commentMaterial' },
  777. // sorter: () => {}
  778. // },
  779. {
  780. title: '分享数',
  781. dataIndex: 'shareMaterial',
  782. tip: '用户把分享广告到其他社交媒体的次数,成功完成一次分享行为记一次分享数',
  783. align: 'center',
  784. scopedSlots: { customRender: 'shareMaterial' },
  785. sorter:() => {}
  786. },
  787. // {
  788. // title: '私信数',
  789. // dataIndex: 'directMessagesNumber',
  790. // tip: '用户在广告主抖音号主页中发起私信的次数,按人次记数%及以上的次数,包括跳跃播放至此长度的播放次数',
  791. // align: 'center',
  792. // scopedSlots: { customRender: 'directMessagesNumber' },
  793. // sorter: () => {}
  794. // },
  795. // {
  796. // title: '主页访问量',
  797. // dataIndex: 'homeVisited',
  798. // tip: '点击广告头像进入主页进行访问的次数,目前抖音、头条号外、抖音火山版可进行主页访问',
  799. // align: 'center',
  800. // scopedSlots: { customRender: 'homeVisited' },
  801. // sorter:() => {}
  802. // },
  803. // {
  804. // title: '推广页访问量',
  805. // dataIndex: 'play75FeedBreak',
  806. // tip: '用户在广告主抖音号主页内访问落地页的次数',
  807. // align: 'center',
  808. // scopedSlots: { customRender: 'play75FeedBreak' },
  809. // sorter: () => {}
  810. // },
  811. // {
  812. // title: '主页商品橱窗访问量',
  813. // dataIndex: 'mainwindowViews',
  814. // tip: '用户在广告主抖音号主页中访问商品橱窗的次数',
  815. // align: 'center',
  816. // scopedSlots: { customRender: 'mainwindowView' },
  817. // sorter:() => {}
  818. // },
  819. // {
  820. // title: '主页内落地页访问量',
  821. // dataIndex: 'homePageViews',
  822. // tip: '用户在广告主抖音号主页内访问落地页的次数',
  823. // align: 'center',
  824. // scopedSlots: { customRender: 'homePageViews' },
  825. // sorter: () => {}
  826. // },
  827. // {
  828. // title: '主页下载链接点击量',
  829. // dataIndex: 'homepageDownloadHits',
  830. // tip: '用户在广告主抖音号主页内点击下载的次数',
  831. // align: 'center',
  832. // scopedSlots: { customRender: 'homepageDownloadHits' },
  833. // sorter:() => {}
  834. // },
  835. // {
  836. // title: '主页内电话拨打点击量',
  837. // dataIndex: 'wifiPlayRate',
  838. // tip: '用户在广告主抖音号主页内点击电话拨打的次数',
  839. // align: 'center',
  840. // scopedSlots: { customRender: 'wifiPlayRate' },
  841. // sorter: () => {}
  842. // },
  843. // {
  844. // title: '挑战赛查看数',
  845. // dataIndex: 'iesChallengeClick',
  846. // tip: '抖音广告中,用户点击挑战赛查看的数量',
  847. // align: 'center',
  848. // scopedSlots: { customRender: 'iesChallengeClick' },
  849. // sorter: () => {}
  850. // },
  851. // {
  852. // title: '音乐查看数',
  853. // dataIndex: 'iesMusicClick',
  854. // tip: '抖音广告中,用户点击音乐查看的数量',
  855. // align: 'center',
  856. // scopedSlots: { customRender: 'iesMusicClick' },
  857. // sorter:() => {}
  858. // },
  859. // {
  860. // title: 'POI点击数',
  861. // dataIndex: 'locationClick',
  862. // tip: '抖音广告中,用户点击POI组件的次数,一般出现在信息流或评论页面。POI为Point of Interest缩写',
  863. // align: 'center',
  864. // scopedSlots: { customRender: 'locationClick' },
  865. // sorter:() => {}
  866. // }
  867. ]
  868. }
  869. ];
  870. export const KScustomFields= [
  871. {
  872. id: 0,
  873. title: '展现数据',
  874. checkall: false,
  875. form:[],
  876. specificFields: [
  877. {
  878. title: '消耗(元)',
  879. dataIndex: 'cost',
  880. tip: '广告在投放期间的花费总额',
  881. align: 'center',
  882. scopedSlots: { customRender: 'cost' },
  883. sorter: () => {}
  884. },
  885. {
  886. title: '封面曝光数',
  887. dataIndex: 'photoShow',
  888. tip: '广告在瀑布流被观看次数',
  889. align: 'center',
  890. scopedSlots: { customRender: 'photoShow' },
  891. sorter:() => {}
  892. },
  893. {
  894. title: '封面点击数',
  895. dataIndex: 'photoClick',
  896. tip: '用户点击封面进入视频播放页的次数(数据会进行反作弊去重)',
  897. align: 'center',
  898. scopedSlots: { customRender: 'photoClick' },
  899. sorter: () => {}
  900. },
  901. {
  902. title: '素材曝光数',
  903. dataIndex: 'aClick',
  904. tip: '用户进入视频播放页观看的次数(数据会进行反作弊去重)',
  905. align: 'center',
  906. scopedSlots: { customRender: 'aClick' },
  907. sorter:() => {}
  908. },
  909. {
  910. title: '行为数',
  911. dataIndex: 'bClick',
  912. tip: '用户在视频播放页单击转化按钮的次数/展示数*100%',
  913. align: 'center',
  914. scopedSlots: { customRender: 'bClick' },
  915. sorter:() => {}
  916. },
  917. {
  918. title: '封面点击率',
  919. dataIndex: 'clickRate',
  920. tip: '封面点击数占封面展示数百分比',
  921. align: 'center',
  922. scopedSlots: { customRender: 'clickRate' },
  923. sorter:() => {}
  924. },
  925. {
  926. title: '行为率',
  927. dataIndex: 'bClickRate',
  928. tip: '行为数占素材曝光数百分比',
  929. align: 'center',
  930. scopedSlots: { customRender: 'bClickRate' },
  931. sorter:() => {}
  932. },
  933. {
  934. title: '平均千次封面曝光花费(元)',
  935. dataIndex: 'cpm',
  936. tip: '花费/封面曝光数*1000',
  937. align: 'center',
  938. scopedSlots: { customRender: 'cpm' },
  939. sorter:() => {}
  940. },
  941. {
  942. title: '平均封面点击单价(元)',
  943. dataIndex: 'cpc',
  944. tip: '花费/封面点击数',
  945. align: 'center',
  946. scopedSlots: { customRender: 'cpc' },
  947. sorter:() => {}
  948. },
  949. {
  950. title: '平均行为单价(元)',
  951. dataIndex: 'cpb',
  952. tip: '总花费/行为数',
  953. align: 'center',
  954. scopedSlots: { customRender: 'cpb' },
  955. sorter:() => {}
  956. },
  957. ]
  958. },
  959. {
  960. id: 1,
  961. title: '应用下载数据',
  962. checkall: false,
  963. form:[],
  964. specificFields: [
  965. {
  966. title: '安卓下载开始数',
  967. dataIndex: 'downloadStart',
  968. tip: '安卓端调起下载器并开始下载的次数',
  969. align: 'center',
  970. scopedSlots: { customRender: 'downloadStart' },
  971. sorter: () => {}
  972. },
  973. {
  974. title: '安卓下载开始率',
  975. dataIndex: 'downloadStartRate',
  976. tip: '安卓下载开始数/行为数',
  977. align: 'center',
  978. scopedSlots: { customRender: 'downloadStartRate' },
  979. sorter:() => {}
  980. },
  981. {
  982. title: '安卓下载开始单价(元)',
  983. dataIndex: 'downloadStartCost',
  984. tip: '花费/安卓下载开始数',
  985. align: 'center',
  986. scopedSlots: { customRender: 'downloadStartCost' },
  987. sorter: () => {}
  988. },
  989. {
  990. title: '安卓下载完成数',
  991. dataIndex: 'downloadFinish',
  992. tip: '安卓端调起下载器并完成下载的次数',
  993. align: 'center',
  994. scopedSlots: { customRender: 'downloadFinish' },
  995. sorter:() => {}
  996. },
  997. {
  998. title: '安卓下载完成率',
  999. dataIndex: 'downloadFinishRate',
  1000. tip: '安卓下载完成数/安卓下载开始数',
  1001. align: 'center',
  1002. scopedSlots: { customRender: 'downloadFinishRate' },
  1003. sorter:() => {}
  1004. },
  1005. {
  1006. title: '安卓下载完成单价(元)',
  1007. dataIndex: 'downloadFinishCost',
  1008. tip: '花费/安卓下载完成数',
  1009. align: 'center',
  1010. scopedSlots: { customRender: 'downloadFinishCost' },
  1011. sorter:() => {}
  1012. },
  1013. {
  1014. title: '激活数',
  1015. dataIndex: 'active',
  1016. tip: '广告主回传的应用激活次数',
  1017. align: 'center',
  1018. scopedSlots: { customRender: 'active' },
  1019. sorter:() => {}
  1020. },
  1021. {
  1022. title: '激活单价',
  1023. dataIndex: 'activeCost',
  1024. tip: '花费/激活数',
  1025. align: 'center',
  1026. scopedSlots: { customRender: 'activeCost' },
  1027. sorter:() => {}
  1028. },
  1029. {
  1030. title: '下载完成激活率',
  1031. dataIndex: 'activeRate',
  1032. tip: '激活数/安卓下载完成数',
  1033. align: 'center',
  1034. scopedSlots: { customRender: 'activeRate' },
  1035. sorter:() => {}
  1036. },
  1037. {
  1038. title: '首日付费次数',
  1039. dataIndex: 'firstDayPay',
  1040. tip: '当日激活的用户在当天产生的付费行为次数',
  1041. align: 'center',
  1042. scopedSlots: { customRender: 'firstDayPay' },
  1043. sorter:() => {}
  1044. },
  1045. {
  1046. title: '首日付费金额',
  1047. dataIndex: 'firstDayPayAmount',
  1048. tip: '当日激活的用户在当天产生的付费行为所带来的付费金额',
  1049. align: 'center',
  1050. scopedSlots: { customRender: 'firstDayPayAmount' },
  1051. sorter:() => {}
  1052. },
  1053. {
  1054. title: '首日付费成本',
  1055. dataIndex: 'firstDayPayCost',
  1056. tip: '消耗/首日付费次数',
  1057. align: 'center',
  1058. scopedSlots: { customRender: 'firstDayPayCost' },
  1059. sorter:() => {}
  1060. },
  1061. {
  1062. title: '首日ROI',
  1063. dataIndex: 'firstDayPayROI',
  1064. tip: '首日付费金额/当日消耗',
  1065. align: 'center',
  1066. scopedSlots: { customRender: 'firstDayPayROI' },
  1067. sorter:() => {}
  1068. },
  1069. {
  1070. title: '付费次数',
  1071. dataIndex: 'eventPay',
  1072. tip: '当日回传的付费行为次数',
  1073. align: 'center',
  1074. scopedSlots: { customRender: 'eventPay' },
  1075. sorter:() => {}
  1076. },
  1077. {
  1078. title: '付费金额',
  1079. dataIndex: 'eventPayPurchaseAmount',
  1080. tip: '当日回传的付费行为所带来的付费金额',
  1081. align: 'center',
  1082. scopedSlots: { customRender: 'eventPayPurchaseAmount' },
  1083. sorter:() => {}
  1084. },
  1085. {
  1086. title: '付费次数成本',
  1087. dataIndex: 'eventPayCost',
  1088. tip: '消耗/付费次数',
  1089. align: 'center',
  1090. scopedSlots: { customRender: 'eventPayCost' },
  1091. sorter:() => {}
  1092. },
  1093. {
  1094. title: 'ROI',
  1095. dataIndex: 'ROI',
  1096. tip: '付费金额/当日消耗',
  1097. align: 'center',
  1098. scopedSlots: { customRender: 'ROI' },
  1099. sorter:() => {}
  1100. },
  1101. {
  1102. title: '注册数',
  1103. dataIndex: 'register',
  1104. tip: '付费金额/当日消耗',
  1105. align: 'center',
  1106. scopedSlots: { customRender: 'register' },
  1107. sorter:() => {}
  1108. },
  1109. {
  1110. title: '注册成本',
  1111. dataIndex: 'activeRegisterCost',
  1112. tip: '当日消耗/当日回传注册数',
  1113. align: 'center',
  1114. scopedSlots: { customRender: 'activeRegisterCost' },
  1115. sorter:() => {}
  1116. },
  1117. {
  1118. title: '注册率',
  1119. dataIndex: 'activeRegisterRate',
  1120. tip: '当日回传注册数/当日激活数',
  1121. align: 'center',
  1122. scopedSlots: { customRender: 'activeRegisterRate' },
  1123. sorter:() => {}
  1124. },
  1125. {
  1126. title: '次留数',
  1127. dataIndex: 'nextDayOpen',
  1128. tip: '前一日激活用户在次日继续访问的PV',
  1129. align: 'center',
  1130. scopedSlots: { customRender: 'nextDayOpen' },
  1131. sorter:() => {}
  1132. },
  1133. {
  1134. title: '次留成本',
  1135. dataIndex: 'nextDayOpenCost',
  1136. tip: '消耗/次日留存PV',
  1137. align: 'center',
  1138. scopedSlots: { customRender: 'nextDayOpenCost' },
  1139. sorter:() => {}
  1140. },
  1141. {
  1142. title: '次留率',
  1143. dataIndex: 'nextDayOpenRate',
  1144. tip: '前一日激活用户在次日继续访问的PV/前一日激活数',
  1145. align: 'center',
  1146. scopedSlots: { customRender: 'nextDayOpenRate' },
  1147. sorter:() => {}
  1148. },
  1149. {
  1150. title: '完件数',
  1151. dataIndex: 'eventJinJianApp',
  1152. tip: '当日回传完件数',
  1153. align: 'center',
  1154. scopedSlots: { customRender: 'eventJinJianApp' },
  1155. sorter:() => {}
  1156. },
  1157. {
  1158. title: '完件成本',
  1159. dataIndex: 'eventJinJianAppCost',
  1160. tip: '当日消耗/当日回传完件数',
  1161. align: 'center',
  1162. scopedSlots: { customRender: 'eventJinJianAppCost' },
  1163. sorter:() => {}
  1164. },
  1165. {
  1166. title: '授信数',
  1167. dataIndex: 'eventCreditGrantApp',
  1168. tip: '当日回传授信数',
  1169. align: 'center',
  1170. scopedSlots: { customRender: 'eventCreditGrantApp' },
  1171. sorter:() => {}
  1172. },
  1173. {
  1174. title: '授信成本',
  1175. dataIndex: 'eventCreditGrantAppCost',
  1176. tip: '当日消耗/当日回传授信数',
  1177. align: 'center',
  1178. scopedSlots: { customRender: 'eventCreditGrantAppCost' },
  1179. sorter:() => {}
  1180. },
  1181. {
  1182. title: '授信率',
  1183. dataIndex: 'eventCreditGrantAppRate',
  1184. tip: '当日回传授信数/当日回传的完件数',
  1185. align: 'center',
  1186. scopedSlots: { customRender: 'eventCreditGrantAppRate' },
  1187. sorter:() => {}
  1188. },
  1189. {
  1190. title: '3s播放率',
  1191. dataIndex: 'play3sRate',
  1192. tip: '3s播放数/素材曝光数',
  1193. align: 'center',
  1194. scopedSlots: { customRender: 'play3sRate' },
  1195. sorter:() => {}
  1196. },
  1197. {
  1198. title: '关键行为数',
  1199. dataIndex: 'keyAction',
  1200. // tip: '3s播放数/素材曝光数',
  1201. align: 'center',
  1202. scopedSlots: { customRender: 'keyAction' },
  1203. sorter:() => {}
  1204. },
  1205. {
  1206. title: '关键行为成本',
  1207. dataIndex: 'keyActionCost',
  1208. // tip: '3s播放数/素材曝光数',
  1209. align: 'center',
  1210. scopedSlots: { customRender: 'keyActionCost' },
  1211. sorter:() => {}
  1212. },
  1213. ]
  1214. },
  1215. {
  1216. id: 2,
  1217. title: '落地页数据',
  1218. checkall: false,
  1219. form:[],
  1220. specificFields: [
  1221. {
  1222. title: '表单提交数',
  1223. dataIndex: 'formCount',
  1224. tip: '当日回传表单数',
  1225. align: 'center',
  1226. scopedSlots: { customRender: 'formCount' },
  1227. sorter: () => {}
  1228. },
  1229. {
  1230. title: '表单提交点击率',
  1231. dataIndex: 'formCountRate',
  1232. tip: '当日回传表单数/当日行为数',
  1233. align: 'center',
  1234. scopedSlots: { customRender: 'formCountRate' },
  1235. sorter: () => {}
  1236. },
  1237. {
  1238. title: '表单提交单价',
  1239. dataIndex: 'formCountCost',
  1240. tip: '当日消耗/当日回传表单数',
  1241. align: 'center',
  1242. scopedSlots: { customRender: 'formCountCost' },
  1243. sorter: () => {}
  1244. },
  1245. {
  1246. title: '落地页完件数',
  1247. dataIndex: 'eventJinJianLandingPage',
  1248. tip: '当日回传完件数',
  1249. align: 'center',
  1250. scopedSlots: { customRender: 'eventJinJianLandingPage' },
  1251. sorter: () => {}
  1252. },
  1253. {
  1254. title: '落地页完件成本',
  1255. dataIndex: 'eventJinJianLandingPageCost',
  1256. tip: '当日消耗/当日回传完件数',
  1257. align: 'center',
  1258. scopedSlots: { customRender: 'eventJinJianLandingPageCost' },
  1259. sorter: () => {}
  1260. },
  1261. {
  1262. title: '落地页授信数',
  1263. dataIndex: 'eventCreditGrantLandingPage',
  1264. tip: '当日回传授信数',
  1265. align: 'center',
  1266. scopedSlots: { customRender: 'eventCreditGrantLandingPage' },
  1267. sorter: () => {}
  1268. },
  1269. {
  1270. title: '落地页授信成本',
  1271. dataIndex: 'eventCreditGrantLandingPageCost',
  1272. tip: '当日消耗/当日回传授信数',
  1273. align: 'center',
  1274. scopedSlots: { customRender: 'eventCreditGrantLandingPageCost' },
  1275. sorter: () => {}
  1276. },
  1277. {
  1278. title: '落地页授信率',
  1279. dataIndex: 'eventCreditGrantLandingPageRate',
  1280. tip: '当日回传授信数/当日回传的完件数',
  1281. align: 'center',
  1282. scopedSlots: { customRender: 'eventCreditGrantLandingPageRate' },
  1283. sorter: () => {}
  1284. },
  1285. {
  1286. title: '按钮点击数',
  1287. dataIndex: 'submit',
  1288. tip: '用户当日点击按钮的次数',
  1289. align: 'center',
  1290. scopedSlots: { customRender: 'submit' },
  1291. sorter: () => {}
  1292. },
  1293. {
  1294. title: '按钮点击率',
  1295. dataIndex: 'submitRate',
  1296. tip: '当日按钮点击数 / 当日行为数',
  1297. align: 'center',
  1298. scopedSlots: { customRender: 'submitRate' },
  1299. sorter: () => {}
  1300. },
  1301. {
  1302. title: '按钮点击成本',
  1303. dataIndex: 'submitCost',
  1304. tip: '当日消耗 / 当日按钮点击数',
  1305. align: 'center',
  1306. scopedSlots: { customRender: 'submitCost' },
  1307. sorter: () => {}
  1308. },
  1309. ]
  1310. }
  1311. ]
  1312. // export default { TTcustomFields, KScustomFields }