table-put.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  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. },
  12. {
  13. title: "书籍",
  14. dataIndex: "book_name",
  15. },
  16. {
  17. title: "流量平台",
  18. dataIndex: "delivery_platform",
  19. width: 120,
  20. },
  21. {
  22. title: "开始时间",
  23. dataIndex: "start_time",
  24. width: 200,
  25. },
  26. {
  27. title: "结束时间",
  28. dataIndex: "end_time",
  29. width: 200,
  30. },
  31. {
  32. title: "操作",
  33. key: "operator",
  34. slots: { customRender: "operator" },
  35. width: 100,
  36. },
  37. ];
  38. export const TableColumnOfPutAdAccount = [
  39. {
  40. title: "邮箱",
  41. dataIndex: "email",
  42. key: "email",
  43. },
  44. {
  45. title: "账户ID",
  46. dataIndex: "account_id",
  47. key: "account_id",
  48. },
  49. {
  50. title: "用户名",
  51. dataIndex: "user_name",
  52. key: "user_name",
  53. },
  54. {
  55. title: "平台",
  56. dataIndex: "delivery_platform",
  57. key: "delivery_platform",
  58. },
  59. {
  60. title: "推广员",
  61. dataIndex: "account_name",
  62. key: "account_name",
  63. },
  64. {
  65. title: "状态",
  66. dataIndex: "status",
  67. key: "status",
  68. },
  69. ];
  70. export const TableColumnOfPutData = [
  71. {
  72. fixed: "left",
  73. title: "日期",
  74. dataIndex: "date",
  75. width: 100,
  76. },
  77. {
  78. title: "公众号名称",
  79. dataIndex: "official_name",
  80. width: 150,
  81. },
  82. {
  83. title: "书名",
  84. dataIndex: "book_name",
  85. },
  86. {
  87. title: "消耗",
  88. dataIndex: "cost",
  89. },
  90. {
  91. title: "新增注册用户",
  92. dataIndex: "register_num",
  93. },
  94. {
  95. title: "流量平台",
  96. dataIndex: "delivery_platform",
  97. },
  98. {
  99. title: "注册成本",
  100. dataIndex: "register_cost",
  101. },
  102. {
  103. title: "支付粉价",
  104. dataIndex: "pay_fans_cost",
  105. },
  106. {
  107. title: "累计回本",
  108. dataIndex: "recovery_rate",
  109. },
  110. {
  111. fixed: "right",
  112. title: "24小时回本率",
  113. dataIndex: "h24_recovery_rate",
  114. width: 120,
  115. },
  116. {
  117. fixed: "right",
  118. title: "3天回本率",
  119. dataIndex: "d3_recovery_rate",
  120. width: 100,
  121. },
  122. {
  123. fixed: "right",
  124. title: "7天回本率",
  125. dataIndex: "d7_recovery_rate",
  126. width: 100,
  127. },
  128. {
  129. fixed: "right",
  130. title: "30天回本率",
  131. dataIndex: "d30_recovery_rate",
  132. width: 120,
  133. },
  134. {
  135. fixed: "right",
  136. title: "操作",
  137. key: "operator",
  138. width: 200,
  139. slots: { customRender: "operator" },
  140. },
  141. ];
  142. export const TableColumnOfPutLog = [
  143. {
  144. title: "操作时间",
  145. key: "create_time",
  146. dataIndex: "create_time",
  147. width: 200,
  148. },
  149. {
  150. title: "计划id",
  151. key: "object_id",
  152. dataIndex: "object_id",
  153. width: 200,
  154. },
  155. {
  156. title: "类型",
  157. key: "object_type",
  158. dataIndex: "object_type",
  159. width: 200,
  160. },
  161. {
  162. title: "操作者",
  163. key: "operator",
  164. dataIndex: "operator",
  165. width: 200,
  166. },
  167. {
  168. title: "操作ip",
  169. key: "opt_ip",
  170. dataIndex: "opt_ip",
  171. width: 200,
  172. },
  173. {
  174. title: "日志",
  175. key: "content_log",
  176. width: 500,
  177. slots: { customRender: "log" },
  178. }
  179. ]
  180. export const TableColumnOfMoreStat = [
  181. {
  182. fixed: "left",
  183. title: "日期",
  184. dataIndex: "date",
  185. width: 100,
  186. },
  187. {
  188. fixed: "left",
  189. title: "公众号名称",
  190. dataIndex: "official_name",
  191. width: 150,
  192. },
  193. {
  194. fixed: "left",
  195. title: "书名",
  196. dataIndex: "book_name",
  197. },
  198. {
  199. fixed: "left",
  200. title: "bid",
  201. dataIndex: "bid",
  202. },
  203. { title: "1日回本率", dataIndex: "d1_recovery_rate", width: 150 },
  204. { title: "2日回本率", dataIndex: "d2_recovery_rate", width: 150 },
  205. { title: "3日回本率", dataIndex: "d3_recovery_rate", width: 150 },
  206. { title: "4日回本率", dataIndex: "d4_recovery_rate", width: 150 },
  207. { title: "5日回本率", dataIndex: "d5_recovery_rate", width: 150 },
  208. { title: "6日回本率", dataIndex: "d6_recovery_rate", width: 150 },
  209. { title: "7日回本率", dataIndex: "d7_recovery_rate", width: 150 },
  210. { title: "8日回本率", dataIndex: "d8_recovery_rate", width: 150 },
  211. { title: "9日回本率", dataIndex: "d9_recovery_rate", width: 150 },
  212. { title: "10日回本率", dataIndex: "d10_recovery_rate", width: 150 },
  213. { title: "11日回本率", dataIndex: "d11_recovery_rate", width: 150 },
  214. { title: "12日回本率", dataIndex: "d12_recovery_rate", width: 150 },
  215. { title: "13日回本率", dataIndex: "d13_recovery_rate", width: 150 },
  216. { title: "14日回本率", dataIndex: "d14_recovery_rate", width: 150 },
  217. { title: "15日回本率", dataIndex: "d15_recovery_rate", width: 150 },
  218. { title: "16日回本率", dataIndex: "d16_recovery_rate", width: 150 },
  219. { title: "17日回本率", dataIndex: "d17_recovery_rate", width: 150 },
  220. { title: "18日回本率", dataIndex: "d18_recovery_rate", width: 150 },
  221. { title: "19日回本率", dataIndex: "d19_recovery_rate", width: 150 },
  222. { title: "20日回本率", dataIndex: "d20_recovery_rate", width: 150 },
  223. { title: "21日回本率", dataIndex: "d21_recovery_rate", width: 150 },
  224. { title: "22日回本率", dataIndex: "d22_recovery_rate", width: 150 },
  225. { title: "23日回本率", dataIndex: "d23_recovery_rate", width: 150 },
  226. { title: "24日回本率", dataIndex: "d24_recovery_rate", width: 150 },
  227. { title: "25日回本率", dataIndex: "d25_recovery_rate", width: 150 },
  228. { title: "26日回本率", dataIndex: "d26_recovery_rate", width: 150 },
  229. { title: "27日回本率", dataIndex: "d27_recovery_rate", width: 150 },
  230. { title: "28日回本率", dataIndex: "d28_recovery_rate", width: 150 },
  231. { title: "29日回本率", dataIndex: "d29_recovery_rate", width: 150 },
  232. { title: "30日回本率", dataIndex: "d30_recovery_rate", width: 150 },
  233. { title: "31日回本率", dataIndex: "d31_recovery_rate", width: 150 },
  234. { title: "32日回本率", dataIndex: "d32_recovery_rate", width: 150 },
  235. { title: "33日回本率", dataIndex: "d33_recovery_rate", width: 150 },
  236. { title: "34日回本率", dataIndex: "d34_recovery_rate", width: 150 },
  237. { title: "35日回本率", dataIndex: "d35_recovery_rate", width: 150 },
  238. { title: "36日回本率", dataIndex: "d36_recovery_rate", width: 150 },
  239. { title: "37日回本率", dataIndex: "d37_recovery_rate", width: 150 },
  240. { title: "38日回本率", dataIndex: "d38_recovery_rate", width: 150 },
  241. { title: "39日回本率", dataIndex: "d39_recovery_rate", width: 150 },
  242. { title: "40日回本率", dataIndex: "d40_recovery_rate", width: 150 },
  243. { title: "41日回本率", dataIndex: "d41_recovery_rate", width: 150 },
  244. { title: "42日回本率", dataIndex: "d42_recovery_rate", width: 150 },
  245. { title: "43日回本率", dataIndex: "d43_recovery_rate", width: 150 },
  246. { title: "44日回本率", dataIndex: "d44_recovery_rate", width: 150 },
  247. { title: "45日回本率", dataIndex: "d45_recovery_rate", width: 150 },
  248. { title: "46日回本率", dataIndex: "d46_recovery_rate", width: 150 },
  249. { title: "47日回本率", dataIndex: "d47_recovery_rate", width: 150 },
  250. { title: "48日回本率", dataIndex: "d48_recovery_rate", width: 150 },
  251. { title: "49日回本率", dataIndex: "d49_recovery_rate", width: 150 },
  252. { title: "50日回本率", dataIndex: "d50_recovery_rate", width: 150 },
  253. { title: "51日回本率", dataIndex: "d51_recovery_rate", width: 150 },
  254. { title: "52日回本率", dataIndex: "d52_recovery_rate", width: 150 },
  255. { title: "53日回本率", dataIndex: "d53_recovery_rate", width: 150 },
  256. { title: "54日回本率", dataIndex: "d54_recovery_rate", width: 150 },
  257. { title: "55日回本率", dataIndex: "d55_recovery_rate", width: 150 },
  258. { title: "56日回本率", dataIndex: "d56_recovery_rate", width: 150 },
  259. { title: "57日回本率", dataIndex: "d57_recovery_rate", width: 150 },
  260. { title: "58日回本率", dataIndex: "d58_recovery_rate", width: 150 },
  261. { title: "59日回本率", dataIndex: "d59_recovery_rate", width: 150 },
  262. { title: "60日回本率", dataIndex: "d60_recovery_rate", width: 150 },
  263. { title: "61日回本率", dataIndex: "d61_recovery_rate", width: 150 },
  264. { title: "62日回本率", dataIndex: "d62_recovery_rate", width: 150 },
  265. { title: "63日回本率", dataIndex: "d63_recovery_rate", width: 150 },
  266. { title: "64日回本率", dataIndex: "d64_recovery_rate", width: 150 },
  267. { title: "65日回本率", dataIndex: "d65_recovery_rate", width: 150 },
  268. { title: "66日回本率", dataIndex: "d66_recovery_rate", width: 150 },
  269. { title: "67日回本率", dataIndex: "d67_recovery_rate", width: 150 },
  270. { title: "68日回本率", dataIndex: "d68_recovery_rate", width: 150 },
  271. { title: "69日回本率", dataIndex: "d69_recovery_rate", width: 150 },
  272. { title: "70日回本率", dataIndex: "d70_recovery_rate", width: 150 },
  273. { title: "71日回本率", dataIndex: "d71_recovery_rate", width: 150 },
  274. { title: "72日回本率", dataIndex: "d72_recovery_rate", width: 150 },
  275. { title: "73日回本率", dataIndex: "d73_recovery_rate", width: 150 },
  276. { title: "74日回本率", dataIndex: "d74_recovery_rate", width: 150 },
  277. { title: "75日回本率", dataIndex: "d75_recovery_rate", width: 150 },
  278. { title: "76日回本率", dataIndex: "d76_recovery_rate", width: 150 },
  279. { title: "77日回本率", dataIndex: "d77_recovery_rate", width: 150 },
  280. { title: "78日回本率", dataIndex: "d78_recovery_rate", width: 150 },
  281. { title: "79日回本率", dataIndex: "d79_recovery_rate", width: 150 },
  282. { title: "80日回本率", dataIndex: "d80_recovery_rate", width: 150 },
  283. { title: "81日回本率", dataIndex: "d81_recovery_rate", width: 150 },
  284. { title: "82日回本率", dataIndex: "d82_recovery_rate", width: 150 },
  285. { title: "83日回本率", dataIndex: "d83_recovery_rate", width: 150 },
  286. { title: "84日回本率", dataIndex: "d84_recovery_rate", width: 150 },
  287. { title: "85日回本率", dataIndex: "d85_recovery_rate", width: 150 },
  288. { title: "86日回本率", dataIndex: "d86_recovery_rate", width: 150 },
  289. { title: "87日回本率", dataIndex: "d87_recovery_rate", width: 150 },
  290. { title: "88日回本率", dataIndex: "d88_recovery_rate", width: 150 },
  291. { title: "89日回本率", dataIndex: "d89_recovery_rate", width: 150 },
  292. { title: "90日回本率", dataIndex: "d90_recovery_rate", width: 150 },
  293. { title: "91日回本率", dataIndex: "d91_recovery_rate", width: 150 },
  294. { title: "92日回本率", dataIndex: "d92_recovery_rate", width: 150 },
  295. { title: "93日回本率", dataIndex: "d93_recovery_rate", width: 150 },
  296. { title: "94日回本率", dataIndex: "d94_recovery_rate", width: 150 },
  297. { title: "95日回本率", dataIndex: "d95_recovery_rate", width: 150 },
  298. { title: "96日回本率", dataIndex: "d96_recovery_rate", width: 150 },
  299. { title: "97日回本率", dataIndex: "d97_recovery_rate", width: 150 },
  300. { title: "98日回本率", dataIndex: "d98_recovery_rate", width: 150 },
  301. { title: "99日回本率", dataIndex: "d99_recovery_rate", width: 150 },
  302. { title: "100日回本率", dataIndex: "d100_recovery_rate", width: 150 },
  303. { title: "101日回本率", dataIndex: "d101_recovery_rate", width: 150 },
  304. { title: "102日回本率", dataIndex: "d102_recovery_rate", width: 150 },
  305. { title: "103日回本率", dataIndex: "d103_recovery_rate", width: 150 },
  306. { title: "104日回本率", dataIndex: "d104_recovery_rate", width: 150 },
  307. { title: "105日回本率", dataIndex: "d105_recovery_rate", width: 150 },
  308. { title: "106日回本率", dataIndex: "d106_recovery_rate", width: 150 },
  309. { title: "107日回本率", dataIndex: "d107_recovery_rate", width: 150 },
  310. { title: "108日回本率", dataIndex: "d108_recovery_rate", width: 150 },
  311. { title: "109日回本率", dataIndex: "d109_recovery_rate", width: 150 },
  312. { title: "110日回本率", dataIndex: "d110_recovery_rate", width: 150 },
  313. { title: "111日回本率", dataIndex: "d111_recovery_rate", width: 150 },
  314. { title: "112日回本率", dataIndex: "d112_recovery_rate", width: 150 },
  315. { title: "113日回本率", dataIndex: "d113_recovery_rate", width: 150 },
  316. { title: "114日回本率", dataIndex: "d114_recovery_rate", width: 150 },
  317. { title: "115日回本率", dataIndex: "d115_recovery_rate", width: 150 },
  318. { title: "116日回本率", dataIndex: "d116_recovery_rate", width: 150 },
  319. { title: "117日回本率", dataIndex: "d117_recovery_rate", width: 150 },
  320. { title: "118日回本率", dataIndex: "d118_recovery_rate", width: 150 },
  321. { title: "119日回本率", dataIndex: "d119_recovery_rate", width: 150 },
  322. { title: "120日回本率", dataIndex: "d120_recovery_rate", width: 150 },
  323. ];
  324. export const TableColumnOfPutAdPlan = [
  325. {
  326. fixed: "left",
  327. title: "",
  328. dataIndex: "check",
  329. width: 120,
  330. slots: {
  331. customRender: "switch",
  332. },
  333. },
  334. {
  335. fixed: "left",
  336. title: "账户名",
  337. dataIndex: "account_name",
  338. width: 100,
  339. },
  340. {
  341. fixed: "left",
  342. title: "邮箱",
  343. dataIndex: "email",
  344. width: 100,
  345. },
  346. {
  347. fixed: "left",
  348. title: "广告名",
  349. dataIndex: "ad_name",
  350. width: 100,
  351. },
  352. ];
  353. export const ALLCloumnList = [
  354. {
  355. title: "计划名称(或ID)",
  356. dataIndex: "ad_name",
  357. width: 150,
  358. },
  359. {
  360. title: "计划状态",
  361. dataIndex: "status",
  362. width: 150,
  363. },
  364. {
  365. title: "计划预算(元)",
  366. dataIndex: "ad_name",
  367. width: 150,
  368. },
  369. {
  370. title: "出价(元)",
  371. dataIndex: "cpa_bid",
  372. width: 150,
  373. },
  374. {
  375. title: "计划ID",
  376. dataIndex: "ad_id",
  377. width: 150,
  378. },
  379. {
  380. title: "投放场景-竞价策略",
  381. dataIndex: "aim",
  382. width: 150,
  383. },
  384. {
  385. title: "投放范围",
  386. dataIndex: "delivery_platform",
  387. width: 150,
  388. },
  389. {
  390. title: "投放时间",
  391. dataIndex: "start_time",
  392. width: 150,
  393. },
  394. {
  395. title: "下载方式",
  396. dataIndex: "ad_name",
  397. width: 150,
  398. },
  399. {
  400. title: "下载链接",
  401. dataIndex: "ad_name",
  402. width: 150,
  403. },
  404. {
  405. title: "落地页链接",
  406. dataIndex: "external_url",
  407. width: 150,
  408. },
  409. {
  410. title: "应用下载详情页链接",
  411. dataIndex: "ad_name",
  412. width: 150,
  413. },
  414. {
  415. title: "转化目标",
  416. dataIndex: "campaign_name",
  417. width: 150,
  418. },
  419. {
  420. title: "深度转化出价(元)",
  421. dataIndex: "ad_name",
  422. width: 150,
  423. },
  424. {
  425. title: "深度转化目标",
  426. dataIndex: "ad_name",
  427. width: 150,
  428. },
  429. {
  430. title: "ROI系数",
  431. dataIndex: "ad_name",
  432. width: 150,
  433. },
  434. {
  435. title: "转换检测地址",
  436. dataIndex: "ad_name",
  437. width: 150,
  438. },
  439. {
  440. title: "投放设置",
  441. dataIndex: "ad_name",
  442. width: 150,
  443. },
  444. {
  445. title: "计划诊断",
  446. dataIndex: "ad_name",
  447. width: 150,
  448. },
  449. {
  450. title: "一键起量",
  451. dataIndex: "ad_name",
  452. width: 150,
  453. },
  454. {
  455. title: "建议",
  456. dataIndex: "ad_name",
  457. width: 150,
  458. },
  459. ];