Commit 271d5e1c authored by nick zheng's avatar nick zheng

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

parent d1030e5e
...@@ -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