columns.ts 357 B

12345678910111213
  1. export const targetColumn = [
  2. { field: 'expressionDesc', title: '品牌', },];
  3. export const keyWordColumn = [
  4. { field: 'keywordText', title: '关键词', width: 220 },
  5. {
  6. field: 'matchType',
  7. title: '匹配方式',
  8. formatter: ({ cellValue }) => getMatchTypeLabel(cellValue).label,
  9. },
  10. { type: 'checkbox', align: 'right', width: 55 }
  11. ];