|
@@ -4,7 +4,7 @@ export const columns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '套餐类型',
|
|
|
align: 'left',
|
|
|
- dataIndex: 'marketType_dictText',
|
|
|
+ dataIndex: 'planType_dictText',
|
|
|
},
|
|
|
{
|
|
|
title: '套餐名称',
|
|
@@ -16,13 +16,13 @@ export const columns: BasicColumn[] = [
|
|
|
align: 'center',
|
|
|
dataIndex: 'keywordCount',
|
|
|
customRender: function({text, record}) {
|
|
|
- if (record.marketType == 'SEO') {
|
|
|
+ if (record.planType == 'SEO') {
|
|
|
return text + '个'
|
|
|
- } else if (record.marketType == 'ARTICLE') {
|
|
|
+ } else if (record.planType == 'ARTICLE') {
|
|
|
return text + '篇'
|
|
|
- } else if (record.marketType == 'PSEUDOORIGINAL') {
|
|
|
+ } else if (record.planType == 'PSEUDOORIGINAL') {
|
|
|
return text + '次'
|
|
|
- }else if (record.marketType == 'STATIONCONSTRUCTION') {
|
|
|
+ }else if (record.planType == 'STATIONCONSTRUCTION') {
|
|
|
return text + '个'
|
|
|
}
|
|
|
}
|
|
@@ -52,7 +52,7 @@ export const columns: BasicColumn[] = [
|
|
|
|
|
|
// 高级查询数据
|
|
|
export const superQuerySchema = {
|
|
|
- marketType: {title: '套餐类型', order: 0, view: 'list', type: 'string'},
|
|
|
+ planType: {title: '套餐类型', order: 0, view: 'list', type: 'string'},
|
|
|
planName: {title: '套餐名称', order: 1, view: 'text', type: 'string'},
|
|
|
keywordCount: {title: '关键词数量', order: 2, view: 'number', type: 'number'},
|
|
|
target: {title: '关键词达标目标', order: 3, view: 'number', type: 'number'},
|