Commit d00b7557 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

fix(应用分析): 消耗积分显示异常

See merge request !197
parents 893a3159 271d5e1c
...@@ -106,8 +106,8 @@ async function handleGetMonthChannelProportion() { ...@@ -106,8 +106,8 @@ async function handleGetMonthChannelProportion() {
return { return {
channel: consumePointChannelCountItem.channel, channel: consumePointChannelCountItem.channel,
count1: sendMessageChannelCountItem?.count || 0, count1: parseFloat((sendMessageChannelCountItem?.count || 0).toFixed(2)),
count2: consumePointChannelCountItem?.count || 0, count2: parseFloat((consumePointChannelCountItem?.count || 0).toFixed(2)),
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment