SeoMarketPlan.data.ts 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import {BasicColumn} from '/@/components/Table';
  2. //列表数据
  3. export const columns: BasicColumn[] = [
  4. {
  5. title: '套餐类型',
  6. align: 'left',
  7. dataIndex: 'marketType_dictText',
  8. },
  9. {
  10. title: '套餐名称',
  11. align: 'left',
  12. dataIndex: 'planName',
  13. },
  14. {
  15. title: '关键词数量',
  16. align: 'center',
  17. dataIndex: 'keywordCount',
  18. customRender: function({text, record}) {
  19. if (record.marketType == 'SEO') {
  20. return text + '个'
  21. } else if (record.marketType == 'ARTICLE') {
  22. return text + '篇'
  23. } else if (record.marketType == 'PSEUDOORIGINAL') {
  24. return text + '次'
  25. }else if (record.marketType == 'STATIONCONSTRUCTION') {
  26. return text + '个'
  27. }
  28. }
  29. },
  30. {
  31. title: '关键词达标目标',
  32. align: 'center',
  33. dataIndex: 'target',
  34. },
  35. {
  36. title: '服务时间',
  37. align: 'center',
  38. dataIndex: 'serviceTime',
  39. customRender: function ({text}) {
  40. return text + '月'
  41. }
  42. },
  43. {
  44. title: '价格',
  45. align: 'center',
  46. dataIndex: 'price',
  47. customRender: function ({text}) {
  48. return text + '元'
  49. }
  50. },
  51. ];
  52. // 高级查询数据
  53. export const superQuerySchema = {
  54. marketType: {title: '套餐类型', order: 0, view: 'list', type: 'string'},
  55. planName: {title: '套餐名称', order: 1, view: 'text', type: 'string'},
  56. keywordCount: {title: '关键词数量', order: 2, view: 'number', type: 'number'},
  57. target: {title: '关键词达标目标', order: 3, view: 'number', type: 'number'},
  58. serviceTime: {title: '服务时间', order: 4, view: 'number', type: 'number'},
  59. price: {title: '价格', order: 5, view: 'number', type: 'number'},
  60. };