table-put.ts 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. export const TableColumnOfPutBooks = [
  2. {
  3. title: "ID",
  4. dataIndex: "id",
  5. width: 100,
  6. },
  7. {
  8. title: "公众号名称",
  9. dataIndex: "official_name",
  10. width: 150,
  11. slots: { customRender: "official_name" },
  12. },
  13. {
  14. title: "书籍",
  15. dataIndex: "book_name",
  16. },
  17. {
  18. title: "流量平台",
  19. dataIndex: "delivery_platform",
  20. width: 120,
  21. },
  22. {
  23. title: "开始时间/结束时间",
  24. dataIndex: "start_time",
  25. width: 200,
  26. slots: { customRender: "time" },
  27. },
  28. {
  29. title: "监测链接",
  30. dataIndex: "monitor_link",
  31. slots: { customRender: "link" },
  32. width: 120,
  33. },
  34. {
  35. title: "操作",
  36. key: "operator",
  37. slots: { customRender: "operator" },
  38. width: 100,
  39. },
  40. ];
  41. export const TableColumnOfPutAdAccount = [
  42. {
  43. title: "邮箱",
  44. dataIndex: "email",
  45. key: "email",
  46. },
  47. {
  48. title: "账户ID",
  49. dataIndex: "account_id",
  50. key: "account_id",
  51. ellipsis: true,
  52. },
  53. {
  54. title: "用户名",
  55. dataIndex: "account_name",
  56. key: "account_name",
  57. ellipsis: true,
  58. },
  59. {
  60. title: "平台",
  61. dataIndex: "delivery_platform",
  62. key: "delivery_platform",
  63. ellipsis: true,
  64. },
  65. {
  66. title: "推广员",
  67. dataIndex: "user_name",
  68. key: "user_name",
  69. },
  70. {
  71. title: "状态",
  72. dataIndex: "status",
  73. key: "status",
  74. },
  75. ];
  76. export const TableColumnOfPutData = [
  77. {
  78. fixed: "left",
  79. title: "日期",
  80. dataIndex: "date",
  81. width: 100,
  82. fiexd:"left"
  83. },
  84. {
  85. title: "公众号名称",
  86. dataIndex: "official_name",
  87. width: 150,
  88. ellipsis: true,
  89. fiexd:"left"
  90. },
  91. {
  92. title: "书名",
  93. dataIndex: "book_name",
  94. ellipsis: true,
  95. fiexd:"left"
  96. },
  97. {
  98. title: "消耗",
  99. dataIndex: "cost",
  100. fiexd:"left"
  101. },
  102. {
  103. title: "新增注册用户",
  104. dataIndex: "register_num",
  105. },
  106. {
  107. title: "流量平台",
  108. dataIndex: "delivery_platform",
  109. ellipsis: true,
  110. },
  111. {
  112. title: "注册成本",
  113. dataIndex: "register_cost",
  114. },
  115. {
  116. title: "支付粉价",
  117. dataIndex: "pay_fans_cost",
  118. },
  119. {
  120. title: "累计回本",
  121. dataIndex: "recovery_rate",
  122. },
  123. {
  124. fixed: "right",
  125. title: "24小时回本率",
  126. dataIndex: "h24_recovery_rate",
  127. width: 120,
  128. },
  129. {
  130. fixed: "right",
  131. title: "3天回本率",
  132. dataIndex: "d3_recovery_rate",
  133. width: 100,
  134. },
  135. {
  136. fixed: "right",
  137. title: "7天回本率",
  138. dataIndex: "d7_recovery_rate",
  139. width: 100,
  140. },
  141. {
  142. fixed: "right",
  143. title: "30天回本率",
  144. dataIndex: "d30_recovery_rate",
  145. width: 120,
  146. },
  147. ];
  148. export const TableColumnOfPutLog = [
  149. {
  150. title: "操作时间",
  151. key: "create_time",
  152. dataIndex: "create_time",
  153. width: 200,
  154. },
  155. {
  156. title: "计划id",
  157. key: "object_id",
  158. dataIndex: "object_id",
  159. width: 200,
  160. },
  161. {
  162. title: "类型",
  163. key: "object_type",
  164. dataIndex: "object_type",
  165. width: 200,
  166. },
  167. {
  168. title: "操作者",
  169. key: "operator",
  170. dataIndex: "operator",
  171. width: 200,
  172. },
  173. {
  174. title: "操作ip",
  175. key: "opt_ip",
  176. dataIndex: "opt_ip",
  177. width: 200,
  178. },
  179. {
  180. title: "日志",
  181. key: "content_log",
  182. width: 500,
  183. slots: { customRender: "log" },
  184. },
  185. ];
  186. export const TableMoreStat = [
  187. {
  188. title: "公众号id",
  189. dataIndex: "official_id",
  190. width: 100,
  191. },
  192. {
  193. title: "公众号名",
  194. dataIndex: "official_name",
  195. width: 100,
  196. },
  197. {
  198. title: "书名",
  199. dataIndex: "book_name",
  200. width: 200,
  201. },
  202. {
  203. title: "书籍bid",
  204. dataIndex: "bid",
  205. width: 200,
  206. },
  207. {
  208. title: "日期",
  209. dataIndex: "date",
  210. width: 100,
  211. },
  212. {
  213. title: "消耗(元)",
  214. dataIndex: "cost",
  215. width: 100,
  216. },
  217. {
  218. title: "新增注册",
  219. dataIndex: "register_num",
  220. width: 100,
  221. },
  222. {
  223. title: "流量平台",
  224. dataIndex: "delivery_platform",
  225. width: 100,
  226. ellipsis: true,
  227. },
  228. {
  229. title: "注册成本",
  230. dataIndex: "register_cost",
  231. width: 100,
  232. },
  233. {
  234. title: "支付粉价",
  235. dataIndex: "pay_fans_cost",
  236. width: 100,
  237. },
  238. {
  239. title: "累计回本",
  240. dataIndex: "recovery_rate",
  241. width: 100,
  242. },
  243. {
  244. title: "24小时回本率",
  245. dataIndex: "d1_recovery_rate",
  246. width: 100,
  247. },
  248. {
  249. title: "3天回本率",
  250. dataIndex: "d3_recovery_rate",
  251. width: 100,
  252. },
  253. {
  254. title: "7天回本率",
  255. dataIndex: "d7_recovery_rate",
  256. width: 100,
  257. },
  258. {
  259. title: "30天回本率",
  260. dataIndex: "d30_recovery_rate",
  261. width: 100,
  262. },
  263. ];
  264. export const TableColumnOfMoreStat = [
  265. {
  266. fixed: "left",
  267. title: "日期",
  268. dataIndex: "date",
  269. width: 100,
  270. },
  271. {
  272. fixed: "left",
  273. title: "公众号名称",
  274. dataIndex: "official_name",
  275. ellipsis: true,
  276. width: 150,
  277. },
  278. {
  279. fixed: "left",
  280. title: "书名",
  281. dataIndex: "book_name",
  282. },
  283. {
  284. fixed: "left",
  285. title: "bid",
  286. dataIndex: "bid",
  287. },
  288. { title: "1日回本率", dataIndex: "d1_recovery_rate", width: 150 },
  289. { title: "2日回本率", dataIndex: "d2_recovery_rate", width: 150 },
  290. { title: "3日回本率", dataIndex: "d3_recovery_rate", width: 150 },
  291. { title: "4日回本率", dataIndex: "d4_recovery_rate", width: 150 },
  292. { title: "5日回本率", dataIndex: "d5_recovery_rate", width: 150 },
  293. { title: "6日回本率", dataIndex: "d6_recovery_rate", width: 150 },
  294. { title: "7日回本率", dataIndex: "d7_recovery_rate", width: 150 },
  295. { title: "8日回本率", dataIndex: "d8_recovery_rate", width: 150 },
  296. { title: "9日回本率", dataIndex: "d9_recovery_rate", width: 150 },
  297. { title: "10日回本率", dataIndex: "d10_recovery_rate", width: 150 },
  298. { title: "11日回本率", dataIndex: "d11_recovery_rate", width: 150 },
  299. { title: "12日回本率", dataIndex: "d12_recovery_rate", width: 150 },
  300. { title: "13日回本率", dataIndex: "d13_recovery_rate", width: 150 },
  301. { title: "14日回本率", dataIndex: "d14_recovery_rate", width: 150 },
  302. { title: "15日回本率", dataIndex: "d15_recovery_rate", width: 150 },
  303. { title: "16日回本率", dataIndex: "d16_recovery_rate", width: 150 },
  304. { title: "17日回本率", dataIndex: "d17_recovery_rate", width: 150 },
  305. { title: "18日回本率", dataIndex: "d18_recovery_rate", width: 150 },
  306. { title: "19日回本率", dataIndex: "d19_recovery_rate", width: 150 },
  307. { title: "20日回本率", dataIndex: "d20_recovery_rate", width: 150 },
  308. { title: "21日回本率", dataIndex: "d21_recovery_rate", width: 150 },
  309. { title: "22日回本率", dataIndex: "d22_recovery_rate", width: 150 },
  310. { title: "23日回本率", dataIndex: "d23_recovery_rate", width: 150 },
  311. { title: "24日回本率", dataIndex: "d24_recovery_rate", width: 150 },
  312. { title: "25日回本率", dataIndex: "d25_recovery_rate", width: 150 },
  313. { title: "26日回本率", dataIndex: "d26_recovery_rate", width: 150 },
  314. { title: "27日回本率", dataIndex: "d27_recovery_rate", width: 150 },
  315. { title: "28日回本率", dataIndex: "d28_recovery_rate", width: 150 },
  316. { title: "29日回本率", dataIndex: "d29_recovery_rate", width: 150 },
  317. { title: "30日回本率", dataIndex: "d30_recovery_rate", width: 150 },
  318. { title: "31日回本率", dataIndex: "d31_recovery_rate", width: 150 },
  319. { title: "32日回本率", dataIndex: "d32_recovery_rate", width: 150 },
  320. { title: "33日回本率", dataIndex: "d33_recovery_rate", width: 150 },
  321. { title: "34日回本率", dataIndex: "d34_recovery_rate", width: 150 },
  322. { title: "35日回本率", dataIndex: "d35_recovery_rate", width: 150 },
  323. { title: "36日回本率", dataIndex: "d36_recovery_rate", width: 150 },
  324. { title: "37日回本率", dataIndex: "d37_recovery_rate", width: 150 },
  325. { title: "38日回本率", dataIndex: "d38_recovery_rate", width: 150 },
  326. { title: "39日回本率", dataIndex: "d39_recovery_rate", width: 150 },
  327. { title: "40日回本率", dataIndex: "d40_recovery_rate", width: 150 },
  328. { title: "41日回本率", dataIndex: "d41_recovery_rate", width: 150 },
  329. { title: "42日回本率", dataIndex: "d42_recovery_rate", width: 150 },
  330. { title: "43日回本率", dataIndex: "d43_recovery_rate", width: 150 },
  331. { title: "44日回本率", dataIndex: "d44_recovery_rate", width: 150 },
  332. { title: "45日回本率", dataIndex: "d45_recovery_rate", width: 150 },
  333. { title: "46日回本率", dataIndex: "d46_recovery_rate", width: 150 },
  334. { title: "47日回本率", dataIndex: "d47_recovery_rate", width: 150 },
  335. { title: "48日回本率", dataIndex: "d48_recovery_rate", width: 150 },
  336. { title: "49日回本率", dataIndex: "d49_recovery_rate", width: 150 },
  337. { title: "50日回本率", dataIndex: "d50_recovery_rate", width: 150 },
  338. { title: "51日回本率", dataIndex: "d51_recovery_rate", width: 150 },
  339. { title: "52日回本率", dataIndex: "d52_recovery_rate", width: 150 },
  340. { title: "53日回本率", dataIndex: "d53_recovery_rate", width: 150 },
  341. { title: "54日回本率", dataIndex: "d54_recovery_rate", width: 150 },
  342. { title: "55日回本率", dataIndex: "d55_recovery_rate", width: 150 },
  343. { title: "56日回本率", dataIndex: "d56_recovery_rate", width: 150 },
  344. { title: "57日回本率", dataIndex: "d57_recovery_rate", width: 150 },
  345. { title: "58日回本率", dataIndex: "d58_recovery_rate", width: 150 },
  346. { title: "59日回本率", dataIndex: "d59_recovery_rate", width: 150 },
  347. { title: "60日回本率", dataIndex: "d60_recovery_rate", width: 150 },
  348. { title: "61日回本率", dataIndex: "d61_recovery_rate", width: 150 },
  349. { title: "62日回本率", dataIndex: "d62_recovery_rate", width: 150 },
  350. { title: "63日回本率", dataIndex: "d63_recovery_rate", width: 150 },
  351. { title: "64日回本率", dataIndex: "d64_recovery_rate", width: 150 },
  352. { title: "65日回本率", dataIndex: "d65_recovery_rate", width: 150 },
  353. { title: "66日回本率", dataIndex: "d66_recovery_rate", width: 150 },
  354. { title: "67日回本率", dataIndex: "d67_recovery_rate", width: 150 },
  355. { title: "68日回本率", dataIndex: "d68_recovery_rate", width: 150 },
  356. { title: "69日回本率", dataIndex: "d69_recovery_rate", width: 150 },
  357. { title: "70日回本率", dataIndex: "d70_recovery_rate", width: 150 },
  358. { title: "71日回本率", dataIndex: "d71_recovery_rate", width: 150 },
  359. { title: "72日回本率", dataIndex: "d72_recovery_rate", width: 150 },
  360. { title: "73日回本率", dataIndex: "d73_recovery_rate", width: 150 },
  361. { title: "74日回本率", dataIndex: "d74_recovery_rate", width: 150 },
  362. { title: "75日回本率", dataIndex: "d75_recovery_rate", width: 150 },
  363. { title: "76日回本率", dataIndex: "d76_recovery_rate", width: 150 },
  364. { title: "77日回本率", dataIndex: "d77_recovery_rate", width: 150 },
  365. { title: "78日回本率", dataIndex: "d78_recovery_rate", width: 150 },
  366. { title: "79日回本率", dataIndex: "d79_recovery_rate", width: 150 },
  367. { title: "80日回本率", dataIndex: "d80_recovery_rate", width: 150 },
  368. { title: "81日回本率", dataIndex: "d81_recovery_rate", width: 150 },
  369. { title: "82日回本率", dataIndex: "d82_recovery_rate", width: 150 },
  370. { title: "83日回本率", dataIndex: "d83_recovery_rate", width: 150 },
  371. { title: "84日回本率", dataIndex: "d84_recovery_rate", width: 150 },
  372. { title: "85日回本率", dataIndex: "d85_recovery_rate", width: 150 },
  373. { title: "86日回本率", dataIndex: "d86_recovery_rate", width: 150 },
  374. { title: "87日回本率", dataIndex: "d87_recovery_rate", width: 150 },
  375. { title: "88日回本率", dataIndex: "d88_recovery_rate", width: 150 },
  376. { title: "89日回本率", dataIndex: "d89_recovery_rate", width: 150 },
  377. { title: "90日回本率", dataIndex: "d90_recovery_rate", width: 150 },
  378. { title: "91日回本率", dataIndex: "d91_recovery_rate", width: 150 },
  379. { title: "92日回本率", dataIndex: "d92_recovery_rate", width: 150 },
  380. { title: "93日回本率", dataIndex: "d93_recovery_rate", width: 150 },
  381. { title: "94日回本率", dataIndex: "d94_recovery_rate", width: 150 },
  382. { title: "95日回本率", dataIndex: "d95_recovery_rate", width: 150 },
  383. { title: "96日回本率", dataIndex: "d96_recovery_rate", width: 150 },
  384. { title: "97日回本率", dataIndex: "d97_recovery_rate", width: 150 },
  385. { title: "98日回本率", dataIndex: "d98_recovery_rate", width: 150 },
  386. { title: "99日回本率", dataIndex: "d99_recovery_rate", width: 150 },
  387. { title: "100日回本率", dataIndex: "d100_recovery_rate", width: 150 },
  388. { title: "101日回本率", dataIndex: "d101_recovery_rate", width: 150 },
  389. { title: "102日回本率", dataIndex: "d102_recovery_rate", width: 150 },
  390. { title: "103日回本率", dataIndex: "d103_recovery_rate", width: 150 },
  391. { title: "104日回本率", dataIndex: "d104_recovery_rate", width: 150 },
  392. { title: "105日回本率", dataIndex: "d105_recovery_rate", width: 150 },
  393. { title: "106日回本率", dataIndex: "d106_recovery_rate", width: 150 },
  394. { title: "107日回本率", dataIndex: "d107_recovery_rate", width: 150 },
  395. { title: "108日回本率", dataIndex: "d108_recovery_rate", width: 150 },
  396. { title: "109日回本率", dataIndex: "d109_recovery_rate", width: 150 },
  397. { title: "110日回本率", dataIndex: "d110_recovery_rate", width: 150 },
  398. { title: "111日回本率", dataIndex: "d111_recovery_rate", width: 150 },
  399. { title: "112日回本率", dataIndex: "d112_recovery_rate", width: 150 },
  400. { title: "113日回本率", dataIndex: "d113_recovery_rate", width: 150 },
  401. { title: "114日回本率", dataIndex: "d114_recovery_rate", width: 150 },
  402. { title: "115日回本率", dataIndex: "d115_recovery_rate", width: 150 },
  403. { title: "116日回本率", dataIndex: "d116_recovery_rate", width: 150 },
  404. { title: "117日回本率", dataIndex: "d117_recovery_rate", width: 150 },
  405. { title: "118日回本率", dataIndex: "d118_recovery_rate", width: 150 },
  406. { title: "119日回本率", dataIndex: "d119_recovery_rate", width: 150 },
  407. { title: "120日回本率", dataIndex: "d120_recovery_rate", width: 150 },
  408. ];
  409. export const TableColumnOfPutAdPlan = [
  410. {
  411. fixed: "left",
  412. title: "",
  413. dataIndex: "check",
  414. width: 80,
  415. slots: {
  416. customRender: "switch",
  417. },
  418. },
  419. {
  420. fixed: "left",
  421. title: "广告名",
  422. dataIndex: "ad_name",
  423. slots: {
  424. customRender: "ad_name",
  425. },
  426. width: 230,
  427. },
  428. ];
  429. export const ALLCloumnList = [
  430. {
  431. title: "计划名称(或ID)",
  432. dataIndex: "ad_name",
  433. width: 150,
  434. },
  435. {
  436. title: "计划状态",
  437. dataIndex: "status",
  438. width: 150,
  439. },
  440. {
  441. title: "计划预算(元)",
  442. dataIndex: "ad_name",
  443. width: 150,
  444. },
  445. {
  446. title: "出价(元)",
  447. dataIndex: "cpa_bid",
  448. width: 150,
  449. },
  450. {
  451. title: "计划ID",
  452. dataIndex: "ad_id",
  453. width: 150,
  454. },
  455. {
  456. title: "投放场景-竞价策略",
  457. dataIndex: "aim",
  458. width: 150,
  459. },
  460. {
  461. title: "投放范围",
  462. dataIndex: "delivery_platform",
  463. width: 150,
  464. },
  465. {
  466. title: "投放时间",
  467. dataIndex: "start_time",
  468. width: 150,
  469. },
  470. {
  471. title: "下载方式",
  472. dataIndex: "ad_name",
  473. width: 150,
  474. },
  475. {
  476. title: "下载链接",
  477. dataIndex: "ad_name",
  478. width: 150,
  479. },
  480. {
  481. title: "落地页链接",
  482. dataIndex: "external_url",
  483. width: 150,
  484. },
  485. {
  486. title: "应用下载详情页链接",
  487. dataIndex: "ad_name",
  488. width: 150,
  489. ellipsis: true,
  490. },
  491. {
  492. title: "转化目标",
  493. dataIndex: "campaign_name",
  494. width: 150,
  495. },
  496. {
  497. title: "深度转化出价(元)",
  498. dataIndex: "ad_name",
  499. width: 150,
  500. },
  501. {
  502. title: "深度转化目标",
  503. dataIndex: "ad_name",
  504. width: 150,
  505. },
  506. {
  507. title: "ROI系数",
  508. dataIndex: "ad_name",
  509. width: 150,
  510. },
  511. {
  512. title: "转换检测地址",
  513. dataIndex: "ad_name",
  514. width: 150,
  515. },
  516. {
  517. title: "投放设置",
  518. dataIndex: "ad_name",
  519. width: 150,
  520. },
  521. {
  522. title: "计划诊断",
  523. dataIndex: "ad_name",
  524. width: 150,
  525. },
  526. {
  527. title: "一键起量",
  528. dataIndex: "ad_name",
  529. width: 150,
  530. },
  531. {
  532. title: "建议",
  533. dataIndex: "ad_name",
  534. width: 150,
  535. },
  536. ];
  537. export const MatchList = [
  538. {
  539. title: "uid",
  540. dataIndex: "uid",
  541. width: 100,
  542. },
  543. {
  544. title: "用户平台",
  545. dataIndex: "platform",
  546. width: 150,
  547. },
  548. {
  549. title: "站点ID",
  550. dataIndex: "channel_id",
  551. width: 100,
  552. },
  553. {
  554. title: "注册IP",
  555. dataIndex: "register_ip",
  556. width: 150,
  557. },
  558. {
  559. title: "注册时间",
  560. dataIndex: "register_time",
  561. width: 150,
  562. },
  563. {
  564. title: "计划ID",
  565. dataIndex: "ad_lid",
  566. width: 100,
  567. },
  568. {
  569. title: "计划平台",
  570. dataIndex: "back_platform",
  571. width: 150,
  572. },
  573. {
  574. title: "首次充值时间",
  575. dataIndex: "first_recharge_time",
  576. width: 150,
  577. },
  578. {
  579. title: "首次充值金额",
  580. dataIndex: "first_recharge_amount",
  581. width: 150,
  582. },
  583. {
  584. title: "充值总额",
  585. dataIndex: "recharge_total",
  586. width: 150,
  587. },
  588. {
  589. title: "注册上报",
  590. dataIndex: "report_register_num",
  591. width: 100,
  592. slots: {
  593. customRender: "report_register_num",
  594. },
  595. },
  596. {
  597. title: "付费上报",
  598. dataIndex: "report_recharge_num",
  599. width: 100,
  600. slots: {
  601. customRender: "report_recharge_num",
  602. },
  603. },
  604. {
  605. title: "次留上报",
  606. dataIndex: "report_sactive_num",
  607. width: 100,
  608. },
  609. ];
  610. export const AdgroupCloumn = [
  611. {
  612. title: "",
  613. dataIndex: "check",
  614. width: 100,
  615. slots: {
  616. customRender: "switch",
  617. },
  618. },
  619. {
  620. title: "广告组名称",
  621. dataIndex: "campaign_name",
  622. width: 150,
  623. slots: {
  624. customRender: "adgroup",
  625. },
  626. },
  627. {
  628. title: "消耗",
  629. dataIndex: "cost",
  630. width: 100,
  631. sorter: true,
  632. },
  633. {
  634. title: "转化成本",
  635. dataIndex: "convert_cost",
  636. width: 100,
  637. },
  638. {
  639. title: "展示量",
  640. dataIndex: "show",
  641. width: 100,
  642. },
  643. {
  644. title: "点击量",
  645. dataIndex: "click",
  646. width: 100,
  647. },
  648. {
  649. title: "点击率",
  650. dataIndex: "ctr",
  651. width: 100,
  652. },
  653. {
  654. title: "转化数",
  655. dataIndex: "convert",
  656. width: 100,
  657. },
  658. {
  659. title: "转化率",
  660. dataIndex: "convert_rate",
  661. width: 100,
  662. },
  663. {
  664. title: "平均千次展现费用",
  665. dataIndex: "avg_show_cost",
  666. width: 100,
  667. },
  668. {
  669. title: "平均点击单价",
  670. dataIndex: "avg_click_cost",
  671. width: 100,
  672. },
  673. ];
  674. export const AdCoundCloumn = [
  675. {
  676. title: "账户信息",
  677. dataIndex: "campaign_name",
  678. width: 200,
  679. slots: {
  680. customRender: "info",
  681. },
  682. },
  683. {
  684. title: "账户余额",
  685. dataIndex: "balance",
  686. width: 100,
  687. },
  688. {
  689. title: "账户预算(最低1000元)",
  690. dataIndex: "firle",
  691. width: 130,
  692. slots: {
  693. customRender: "budget",
  694. },
  695. },
  696. {
  697. title: "消耗",
  698. dataIndex: "cost",
  699. width: 100,
  700. sorter: true,
  701. },
  702. {
  703. title: "转化成本",
  704. dataIndex: "convert_cost",
  705. width: 100,
  706. },
  707. {
  708. title: "展示量",
  709. dataIndex: "show",
  710. width: 100,
  711. },
  712. {
  713. title: "点击量",
  714. dataIndex: "click",
  715. width: 100,
  716. },
  717. {
  718. title: "点击率",
  719. dataIndex: "ctr",
  720. width: 100,
  721. },
  722. {
  723. title: "转化数",
  724. dataIndex: "convert",
  725. width: 100,
  726. },
  727. {
  728. title: "转化率",
  729. dataIndex: "convert_rate",
  730. width: 100,
  731. },
  732. ];