12345678910111213 |
- export const targetColumn = [
- { field: 'expressionDesc', title: '品牌', },];
- export const keyWordColumn = [
- { field: 'keywordText', title: '关键词', width: 220 },
- {
- field: 'matchType',
- title: '匹配方式',
- formatter: ({ cellValue }) => getMatchTypeLabel(cellValue).label,
- },
- { type: 'checkbox', align: 'right', width: 55 }
- ];
|