|
@@ -26,7 +26,20 @@
|
|
|
:key="item.label + index"
|
|
|
:meta="item"
|
|
|
:itemData="statisticalRegionData[item.itemData]"
|
|
|
- ></StatisticsSection>
|
|
|
+ >
|
|
|
+ <template #memberIncreaseRate>
|
|
|
+ <div class="memberIncreaseRate-tooltip">
|
|
|
+ <div class="item">
|
|
|
+ <div>昨日新增会员:</div>
|
|
|
+ <div>{{ statisticalRegionData.memberStatistics.yesterdayMember || 0 }} 个</div>
|
|
|
+ </div>
|
|
|
+ <div class="item">
|
|
|
+ <div>今日新增会员:</div>
|
|
|
+ <div>{{ statisticalRegionData.memberStatistics.todayMember || 0 }} 个</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </StatisticsSection>
|
|
|
</div>
|
|
|
</StatisticsPanel>
|
|
|
|
|
@@ -185,7 +198,8 @@ export default {
|
|
|
memberTotal: 0, //会员总数
|
|
|
normalMemberTotal: 0, // 普通会员数量
|
|
|
headquarterTotal: 0, // 团长数量
|
|
|
- partnerTotal: 0 // 合伙人数量
|
|
|
+ partnerTotal: 0, // 合伙人数量
|
|
|
+ memberIncreaseRate: 0 // 会员增长率
|
|
|
},
|
|
|
orderStatistics: {
|
|
|
// 订单统计
|
|
@@ -294,7 +308,9 @@ export default {
|
|
|
const res = await getHomeStatisticsData()
|
|
|
const { data } = res
|
|
|
|
|
|
- Object.assign(this.statisticalRegionData.memberStatistics, data.memberStatistics)
|
|
|
+ Object.assign(this.statisticalRegionData.memberStatistics, data.memberStatistics, data.memberStatistics.memberIncreaseRate)
|
|
|
+
|
|
|
+ console.log('年的', this.statisticalRegionData.memberStatistics)
|
|
|
Object.assign(this.statisticalRegionData.orderStatistics, data.orderStatistics)
|
|
|
Object.assign(this.statisticalRegionData.platformTransactionDataStatistics, data.platformTransactionDataStatistics)
|
|
|
Object.assign(this.statisticalRegionData.voucherStatistics, data.voucherStatistics)
|
|
@@ -628,4 +644,20 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.memberIncreaseRate-tooltip {
|
|
|
+ .item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ line-height: 1.5;
|
|
|
+ font-size: 14px;
|
|
|
+
|
|
|
+ div {
|
|
|
+ &:nth-child(2) {
|
|
|
+ font-weight: bold;
|
|
|
+ color: #f40;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|