diff --git a/src/views/property-marketing/media-account/account-detail/components/note-table/constants.ts b/src/views/property-marketing/media-account/account-detail/components/note-table/constants.ts
index 94c3fad..0c64862 100644
--- a/src/views/property-marketing/media-account/account-detail/components/note-table/constants.ts
+++ b/src/views/property-marketing/media-account/account-detail/components/note-table/constants.ts
@@ -31,42 +31,42 @@ export const TABLE_COLUMNS = [
title: '曝光量',
dataIndex: 'exposure_number',
width: 180,
- tooltip: '账号所有内容的总曝光次数',
+ tooltip: '内容被展示给用户的总次数,不代表用户实际观看。',
align: 'right',
},
{
title: '观看量',
dataIndex: 'view_number',
width: 180,
- tooltip: '账号所有内容的总观看次数',
+ tooltip: '用户点击内容并实际观看的次数,是内容实际触达的重要指标。',
align: 'right',
},
{
title: '点赞量',
dataIndex: 'like_number',
width: 180,
- tooltip: '账号所有内容的总点赞数',
+ tooltip: '单篇笔记获得的点赞总数,反映用户喜好程度。',
align: 'right',
},
{
title: '收藏量',
dataIndex: 'collect_number',
width: 180,
- tooltip: '账号所有内容的总收藏数',
+ tooltip: '用户将内容保存到收藏夹的次数,代表内容被认可为“值得保留”。',
align: 'right',
},
{
title: '评论数',
dataIndex: 'comment_number',
width: 180,
- tooltip: '账号所有内容的总评论数',
+ tooltip: '内容下方用户留言的总数,体现用户参与度与讨论热度。',
align: 'right',
},
{
title: '分享量',
dataIndex: 'share_number',
width: 180,
- tooltip: '账号所有内容的总转发数',
+ tooltip: '内容被转发或分享至其他平台或私信的次数,代表外扩传播意愿。',
align: 'right',
},
@@ -74,7 +74,7 @@ export const TABLE_COLUMNS = [
title: '封面点击率',
dataIndex: 'cover_click_rate',
width: 180,
- tooltip: '封面点击率',
+ tooltip: '内容在被曝光后,用户点击进入的比例,反映封面与标题吸引力。',
align: 'right',
suffix: '%',
},
diff --git a/src/views/property-marketing/media-account/account-detail/components/note-table/index.vue b/src/views/property-marketing/media-account/account-detail/components/note-table/index.vue
index 7a08fab..96e673d 100644
--- a/src/views/property-marketing/media-account/account-detail/components/note-table/index.vue
+++ b/src/views/property-marketing/media-account/account-detail/components/note-table/index.vue
@@ -7,7 +7,7 @@
diff --git a/src/views/property-marketing/media-account/common_constants.ts b/src/views/property-marketing/media-account/common_constants.ts
index 6e910a6..e106823 100644
--- a/src/views/property-marketing/media-account/common_constants.ts
+++ b/src/views/property-marketing/media-account/common_constants.ts
@@ -11,16 +11,16 @@ export const CUSTOM_FIELDS = [
dataIndex: 'view_number',
prop: 'view_number',
title: '观看量',
- width: 180,
- tooltip: '账号所有内容的浏览总数',
+ width: 200,
+ tooltip: '统计所有作品的总浏览量,反映账号近期内容的整体曝光度。',
align: 'right',
},
{
dataIndex: 'view_rate',
prop: 'view_rate',
title: '观看量环比',
- width: 180,
- tooltip: '账号所有内容的观看量环比',
+ width: 200,
+ tooltip: '与上一个周期相比,观看量的增长或下降百分比,评估流量变化趋势。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -32,16 +32,16 @@ export const CUSTOM_FIELDS = [
dataIndex: 'home_view_number',
prop: 'home_view_number',
title: '主页访客数',
- width: 200,
- tooltip: '账号所有内容的主页访客数',
+ width: 220,
+ tooltip: '最近7日内访问账号主页的唯一用户数,可反映账号的主动曝光程度。',
align: 'right',
},
{
dataIndex: 'home_view_rate',
prop: 'home_view_rate',
title: '主页访客数环比',
- width: 200,
- tooltip: '账号所有内容的主页访客数环比',
+ width: 240,
+ tooltip: '主页访客数相较于前一周期的增长或下降百分比,常用于判断是否有外部流量导入。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -53,16 +53,16 @@ export const CUSTOM_FIELDS = [
dataIndex: 'like_number',
prop: 'like_number',
title: '点赞量',
- width: 180,
- tooltip: '账号所有内容的点赞总数',
+ width: 200,
+ tooltip: '账号内容获得的点赞总数,反映内容的受欢迎程度。',
align: 'right',
},
{
dataIndex: 'like_rate',
prop: 'like_rate',
title: '点赞量环比',
- width: 180,
- tooltip: '账号所有内容的点赞量环比',
+ width: 200,
+ tooltip: '点赞数量与上一周期对比后的变化百分比,用于评估内容热度走势。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -74,16 +74,16 @@ export const CUSTOM_FIELDS = [
dataIndex: 'comment_number',
prop: 'comment_number',
title: '评论数',
- width: 180,
- tooltip: '账号所有内容的评论总数',
+ width: 200,
+ tooltip: '用户对账号内容的评论总数,是互动活跃度的重要参考指标。',
align: 'right',
},
{
dataIndex: 'comment_rate',
prop: 'comment_rate',
title: '评论数环比',
- width: 180,
- tooltip: '账号所有内容的评论数环比',
+ width: 200,
+ tooltip: '评论数相较于上一周期的变化百分比,可评估用户参与度变化。',
suffix: '%',
isRateField: true,
sortable: {
@@ -95,8 +95,8 @@ export const CUSTOM_FIELDS = [
dataIndex: 'collect_number',
prop: 'collect_number',
title: '收藏数',
- width: 180,
- tooltip: '账号所有内容的收藏总数',
+ width: 200,
+ tooltip: '用户对内容的收藏次数,代表内容的实用性或留存价值。',
align: 'right',
},
{
@@ -104,7 +104,7 @@ export const CUSTOM_FIELDS = [
prop: 'collect_rate',
title: '收藏数环比',
width: 200,
- tooltip: '账号所有内容的收藏数环比',
+ tooltip: '收藏量变化的环比百分比,可反映内容吸引力是否持续。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -116,8 +116,8 @@ export const CUSTOM_FIELDS = [
dataIndex: 'barrage_number',
prop: 'barrage_number',
title: '弹幕数',
- width: 180,
- tooltip: '账号所有内容的弹幕总数',
+ width: 200,
+ tooltip: '统计视频内容中用户发送的弹幕数量,适用于支持弹幕的内容平台。',
align: 'right',
},
{
@@ -125,7 +125,7 @@ export const CUSTOM_FIELDS = [
prop: 'barrage_rate',
title: '弹幕数环比',
width: 200,
- tooltip: '账号所有内容的弹幕数环比',
+ tooltip: '弹幕数量变化百分比,反映内容是否激发实时互动。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -137,16 +137,16 @@ export const CUSTOM_FIELDS = [
dataIndex: 'rise_fans_number',
prop: 'rise_fans_number',
title: '笔记涨粉数',
- width: 180,
- tooltip: '账号所有内容的笔记涨粉数',
+ width: 200,
+ tooltip: '通过笔记内容带来的新粉丝数量,是内容转粉效率的重要指标。',
align: 'right',
},
{
dataIndex: 'rise_fans_rate',
prop: 'rise_fans_rate',
title: '笔记涨粉数环比',
- width: 200,
- tooltip: '账号所有内容的笔记涨粉数环比',
+ width: 240,
+ tooltip: '笔记带粉效果的环比变化趋势,衡量内容拉新能力是否增强。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -159,15 +159,15 @@ export const CUSTOM_FIELDS = [
prop: 'share_number',
title: '笔记分享量',
width: 200,
- tooltip: '账号所有内容的笔记分享量',
+ tooltip: '用户对内容的转发/分享次数,代表内容传播意愿与裂变潜力。',
align: 'right',
},
{
dataIndex: 'share_rate',
prop: 'share_rate',
title: '笔记分享量环比',
- width: 200,
- tooltip: '账号所有内容的笔记分享量环比',
+ width: 240,
+ tooltip: '内容分享次数的环比变化,用于判断内容是否具有更强外扩传播力。',
align: 'right',
suffix: '%',
isRateField: true,
@@ -175,21 +175,20 @@ export const CUSTOM_FIELDS = [
sortDirections: ['ascend', 'descend'],
},
},
-
{
dataIndex: 'avg_view_time',
prop: 'avg_view_time',
title: '笔记平均浏览数',
width: 200,
- tooltip: '账号所有内容的笔记平均浏览数',
+ tooltip: '用户对笔记内容的平均浏览时长,反映内容吸引力和用户粘性。',
align: 'right',
},
{
dataIndex: 'avg_view_time_rate',
prop: 'avg_view_time_rate',
title: '笔记平均浏览数环比',
- width: 220,
- tooltip: '账号所有内容的笔记平均浏览数环比',
+ width: 240,
+ tooltip: '平均浏览时长的环比变化,用于评估内容质量是否稳定。',
align: 'right',
suffix: '%',
isRateField: true,
diff --git a/src/views/property-marketing/put-account/account-data/components/board-table/constants.ts b/src/views/property-marketing/put-account/account-data/components/board-table/constants.ts
index c6cf880..0c2764a 100644
--- a/src/views/property-marketing/put-account/account-data/components/board-table/constants.ts
+++ b/src/views/property-marketing/put-account/account-data/components/board-table/constants.ts
@@ -64,7 +64,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'total_use_amount',
prop: 'total_use_amount',
width: 180,
- tooltip: '账号总消耗',
+ tooltip: '指账户在统计周期内的总广告消耗金额,衡量广告实际投放的花费。',
prefix: '¥',
align: 'right',
sortable: {
@@ -76,7 +76,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'balance',
// prop: 'balance',
// width: 180,
- // tooltip: '账号余额',
+ // tooltip: '当前账户剩余的可用余额,用于后续广告投放。',
// prefix: '¥',
// align: 'right',
// sortable: {
@@ -94,7 +94,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'roi',
// prop: 'roi',
// width: 180,
- // tooltip: '投资回报率',
+ // tooltip: '投入产出比(ROI),等于收益 ÷ 投入,反映投放带来的商业价值。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -105,7 +105,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'roi_chain',
// prop: 'roi_chain',
// width: 180,
- // tooltip: '相比上一周期的ROI变化百分比',
+ // tooltip: '当前 ROI 相较于上一周期的变化百分比,用于评估投放效益变化。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -118,7 +118,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'show_number',
prop: 'show_number',
width: 180,
- tooltip: '账号所有内容的总展示次数',
+ tooltip: '广告被用户看到的次数(曝光次数),是广告触达能力的基本指标。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -129,7 +129,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'view_number_chain',
// prop: 'view_number_chain',
// width: 180,
- // tooltip: '相比上一周期的展示量变化百分比',
+ // tooltip: '展示量与上一周期的变化百分比,反映广告曝光趋势。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -142,7 +142,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'click_number',
prop: 'click_number',
width: 180,
- tooltip: '账号所有内容的总点击次数',
+ tooltip: '用户点击广告的次数,代表广告实际引起的兴趣行为。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -153,7 +153,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'click_number_chain',
// prop: 'click_number_chain',
// width: 180,
- // tooltip: '相比上一周期的点击量变化百分比',
+ // tooltip: '当前周期点击量相较上一周期的变化百分比。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -166,7 +166,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'click_rate',
prop: 'click_rate',
width: 180,
- tooltip: '账号所有内容的总点击率',
+ tooltip: '广告点击率(CTR),= 点击量 ÷ 展示量,衡量广告吸引力。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -177,7 +177,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'click_rate_chain',
// prop: 'click_rate_chain',
// width: 180,
- // tooltip: '相比上一周期的CVR变化百分比',
+ // tooltip: '当前 CTR 相较上一周期的变化百分比,评估广告表现是否优化。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -190,7 +190,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'avg_click_cost',
prop: 'avg_click_cost',
width: 180,
- tooltip: '账号所有内容的平均点击成本',
+ tooltip: '每次用户点击广告所花费的平均金额(CPC),= 消耗 ÷ 点击量。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -202,7 +202,7 @@ export const TABLE_COLUMNS = [
prop: 'thousand_show_cost',
width: 180,
prefix: '¥',
- tooltip: '账号所有内容的千次展现费用',
+ tooltip: '每 1000 次广告展示的平均费用(CPM),= 消耗 ÷ 展示量 × 1000。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -213,7 +213,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_number',
// prop: 'conversion_number',
// width: 180,
- // tooltip: '账号所有内容的总转化次数',
+ // tooltip: '用户完成设定目标行为(如下单、注册)的总次数,是广告成效的重要指标。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -224,7 +224,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_number_chain',
// prop: 'conversion_number_chain',
// width: 180,
- // tooltip: '相比上一周期的CVR变化百分比',
+ // tooltip: '当前周期转化数与上一周期的变化百分比。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -237,7 +237,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_rate',
// prop: 'conversion_rate',
// width: 180,
- // tooltip: '账号所有内容的总转化次数',
+ // tooltip: '转化率(CVR)= 转化数 ÷ 点击量,衡量广告转化能力。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -248,7 +248,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_rate_chain',
// prop: 'conversion_rate_chain',
// width: 180,
- // tooltip: '相比上一周期的CVR变化百分比',
+ // tooltip: '当前 CVR 相较上一周期的变化百分比。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -262,7 +262,7 @@ export const TABLE_COLUMNS = [
// prop: 'avg_conversion_cost',
// width: 180,
// prefix: '¥',
- // tooltip: '账号所有内容的平均转化成本',
+ // tooltip: '每次转化平均花费的成本(CPA),= 消耗 ÷ 转化数。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -273,7 +273,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'deep_conversion_number',
// prop: 'deep_conversion_number',
// width: 180,
- // tooltip: '账号所有内容的总深度转化次数',
+ // tooltip: '表示完成更高价值行为(如支付、留资等)的次数,是高质量转化的衡量标准。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -284,7 +284,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'deep_conversion_rate',
// prop: 'deep_conversion_rate',
// width: 180,
- // tooltip: '账号所有内容的总深度转化率',
+ // tooltip: '深度转化数 ÷ 点击量,代表高价值行为的转化效率。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -295,14 +295,12 @@ export const TABLE_COLUMNS = [
// dataIndex: 'newest_work_title',
// prop: 'newest_work_title',
// width: 260,
- // tooltip: '最新发布内容的标题和发布日期',
// },
// {
// title: '投放回报率',
// dataIndex: 'roi_chain1',
// prop: 'roi_chain1',
// width: 180,
- // tooltip: '账号所有内容的投放回报率',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
diff --git a/src/views/property-marketing/put-account/account-data/components/plan-table/constants.ts b/src/views/property-marketing/put-account/account-data/components/plan-table/constants.ts
index f0fbed6..7477d08 100644
--- a/src/views/property-marketing/put-account/account-data/components/plan-table/constants.ts
+++ b/src/views/property-marketing/put-account/account-data/components/plan-table/constants.ts
@@ -42,7 +42,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'total_use_amount',
prop: 'total_use_amount',
width: 180,
- tooltip: '账号总消耗',
+ tooltip: '当前投流计划已消耗的广告预算总额,反映该计划的实际投放成本。',
prefix: '¥',
align: 'right',
sortable: {
@@ -54,7 +54,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'balance',
// prop: 'balance',
// width: 180,
- // tooltip: '账号余额',
+ // tooltip: '当前投流计划剩余可用预算,用于后续广告持续投放。',
// prefix: '¥',
// align: 'right',
// sortable: {
@@ -72,7 +72,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'roi',
// prop: 'roi',
// width: 180,
- // tooltip: '投资回报率',
+ // tooltip: '投入产出比(ROI),= 收益 ÷ 投入,用于衡量该计划的经济效益。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -83,7 +83,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'show_number',
prop: 'show_number',
width: 180,
- tooltip: '账号所有内容的总展示次数',
+ tooltip: '广告被用户展示的总次数,是该投流计划的曝光表现基础指标。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -94,7 +94,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'click_number',
prop: 'click_number',
width: 180,
- tooltip: '账号所有内容的总点击次数',
+ tooltip: '用户点击广告的总次数,表示广告对用户的吸引效果。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -105,7 +105,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'click_rate',
prop: 'click_rate',
width: 180,
- tooltip: '账号所有内容的总点击率',
+ tooltip: '点击率(CTR)= 点击量 ÷ 展示量,用于衡量广告吸引力。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -116,7 +116,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'click_rate_chain',
// prop: 'click_rate_chain',
// width: 180,
- // tooltip: '相比上一周期的CVR变化百分比',
+ // tooltip: '当前 CTR 与上一周期对比的变化百分比,用于追踪广告吸引力趋势。',
// align: 'right',
// suffix: '%',
// isRateField: true,
@@ -129,7 +129,7 @@ export const TABLE_COLUMNS = [
dataIndex: 'avg_click_cost',
prop: 'avg_click_cost',
width: 180,
- tooltip: '账号所有内容的平均点击成本',
+ tooltip: '每次点击广告的平均成本(CPC)= 总消耗 ÷ 点击量。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -141,7 +141,7 @@ export const TABLE_COLUMNS = [
prop: 'thousand_show_cost',
width: 180,
prefix: '¥',
- tooltip: '账号所有内容的千次展现费用',
+ tooltip: '每千次展示的平均成本(CPM)= 总消耗 ÷ 展示量 × 1000。',
align: 'right',
sortable: {
sortDirections: ['ascend', 'descend'],
@@ -153,7 +153,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_number',
// prop: 'conversion_number',
// width: 180,
- // tooltip: '账号转化数',
+ // tooltip: '用户完成设定目标行为(如注册、购买)的次数,是广告效果核心指标。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -164,7 +164,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'conversion_rate',
// prop: 'conversion_rate',
// width: 180,
- // tooltip: '账号所有内容的总转化率',
+ // tooltip: '转化率(CVR)= 转化数 ÷ 点击量,评估广告引导转化的能力。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -176,7 +176,7 @@ export const TABLE_COLUMNS = [
// prop: 'avg_conversion_cost',
// width: 180,
// prefix: '¥',
- // tooltip: '账号所有内容的平均转化成本',
+ // tooltip: '每次转化的平均广告成本(CPA)= 总消耗 ÷ 转化数。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -187,7 +187,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'deep_conversion_number',
// prop: 'deep_conversion_number',
// width: 180,
- // tooltip: '账号所有内容的总深度转化次数',
+ // tooltip: '表示完成更高质量目标行为的用户数量(如付款、留资等)。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],
@@ -198,7 +198,7 @@ export const TABLE_COLUMNS = [
// dataIndex: 'deep_conversion_rate',
// prop: 'deep_conversion_rate',
// width: 180,
- // tooltip: '账号所有内容的总深度转化率',
+ // tooltip: '深度转化率 = 深度转化数 ÷ 点击量,衡量高质量转化效率。',
// align: 'right',
// sortable: {
// sortDirections: ['ascend', 'descend'],