|
@@ -1,420 +1,663 @@
|
|
|
-<template>
|
|
|
- <div class="dashboardPage" ref="dashboardPageRef">
|
|
|
- <!-- 建行交易统计 -->
|
|
|
- <!-- <SectionBlock title="建行交易统计">
|
|
|
- <div class="content-1">
|
|
|
- <div class="statistics-wrapper">
|
|
|
- <StatisticsPanel1 :icon="require('../../assets/images/dashboard/total-amount-received.png')" tip="团蜂收款总额(元)" :amount="0"></StatisticsPanel1>
|
|
|
- <StatisticsPanel1
|
|
|
- iconShadow="0px 7px 6px -6px rgba(1, 184, 221, 0.42),0px 6px 10px 0px rgba(1, 184, 221, 0.24)"
|
|
|
- tip="商家交易总额(元)"
|
|
|
- :icon="require('../../assets/images/dashboard/ttaom.png')"
|
|
|
- :amount="0"
|
|
|
- ></StatisticsPanel1>
|
|
|
- </div>
|
|
|
-
|
|
|
- <SelectionPane style="height: 328px" title="交易商家明细" padding="0 32px">
|
|
|
- <div style="display: flex; justify-content: space-between">
|
|
|
- <RankingTable style="margin-right: 24px"></RankingTable>
|
|
|
- <RankingTable></RankingTable>
|
|
|
- </div>
|
|
|
- </SelectionPane>
|
|
|
- </div>
|
|
|
- </SectionBlock> -->
|
|
|
-
|
|
|
- <!-- 统计区 -->
|
|
|
- <SectionBlock title="统计区" style="margin-top: 32px">
|
|
|
- <div class="s-container" style="display: flex">
|
|
|
- <SelectionPane
|
|
|
- style="min-height: 278px"
|
|
|
- :title="item.name"
|
|
|
- padding="0 24px"
|
|
|
- v-for="(item, index1) in statisticalArea"
|
|
|
- :key="item.name"
|
|
|
- :style="{
|
|
|
- 'margin-left': index1 === 1 ? '20px' : '',
|
|
|
- 'margin-right': index1 === 1 ? '20px' : ''
|
|
|
- }"
|
|
|
- >
|
|
|
- <div class="statistical-wrapper">
|
|
|
- <Counter
|
|
|
- style="width: 50%"
|
|
|
- :style="{
|
|
|
- 'margin-bottom': index <= 2 ? '24px' : 0,
|
|
|
- 'margin-top': index <= 2 ? '14px' : 0
|
|
|
- }"
|
|
|
- v-for="(item2, index) in item.list"
|
|
|
- :key="item2.name"
|
|
|
- :count="getData(item2.field)"
|
|
|
- :tip="item2.name"
|
|
|
- :trend="item2.trend"
|
|
|
- :decimalPlaces="item2.decimalPlaces || 0"
|
|
|
- ></Counter>
|
|
|
- </div>
|
|
|
- </SelectionPane>
|
|
|
- </div>
|
|
|
- </SectionBlock>
|
|
|
-
|
|
|
- <!-- 分析图 & 商品排名 -->
|
|
|
- <div style="margin-top: 32px; display: flex">
|
|
|
- <SectionBlock title="分析图" style="flex: 3; margin-right: 24px; flex-shrink: 0">
|
|
|
- <SelectionPane style="height: 360px" padding="0 24px">
|
|
|
- <el-tabs v-model="activeName" @tab-click="handleChangeTabPane">
|
|
|
- <el-tab-pane label="交易额" name="transactionAmountRef">
|
|
|
- <DiagramsChart chartTitle="交易总额(元)" ref="transactionAmountRef" :statisticalData="diagramsLeftData.transactionAmount"></DiagramsChart>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="订单量" name="orderQuantityRef">
|
|
|
- <DiagramsChart chartTitle="订单量(单)" ref="orderQuantityRef" :statisticalData="diagramsLeftData.orderQuantity"></DiagramsChart>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="会员量" name="memberQuantityRef">
|
|
|
- <DiagramsChart chartTitle="会员量(个)" ref="memberQuantityRef" :statisticalData="diagramsLeftData.memberQuantity"></DiagramsChart>
|
|
|
- </el-tab-pane>
|
|
|
- </el-tabs>
|
|
|
- </SelectionPane>
|
|
|
- </SectionBlock>
|
|
|
-
|
|
|
- <SectionBlock title="商品排名" style="flex: 2; flex-shrink: 0">
|
|
|
- <SelectionPane style="height: 360px" padding="0 24px">
|
|
|
- <el-tabs v-model="activeName2" @tab-click="handleChangeTabPane1">
|
|
|
- <el-tab-pane label="社区" name="community">
|
|
|
- <div class="btns-container">
|
|
|
- <button @click="rankingData.community.activeName = 'transactionVolume'" :class="{ active: rankingData.community.activeName === 'transactionVolume' }">商品交易量</button>
|
|
|
- <button @click="rankingData.community.activeName = 'aTurnover'" :class="{ active: rankingData.community.activeName === 'aTurnover' }">交易金额</button>
|
|
|
- </div>
|
|
|
- <GoodsRanking
|
|
|
- ref="community"
|
|
|
- :animate="activeName2 === 'community'"
|
|
|
- :rankingData="communityRankData"
|
|
|
- :valueAlias="rankingData.community.activeName === 'transactionVolume' ? 'productTransactionTotal' : 'productTransactionAmount'"
|
|
|
- ></GoodsRanking>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="商圈" name="businessDistrict">
|
|
|
- <div class="btns-container">
|
|
|
- <button @click="rankingData.businessDistrict.activeName = 'transactionVolume'" :class="{ active: rankingData.businessDistrict.activeName === 'transactionVolume' }">商品交易量</button>
|
|
|
- <button @click="rankingData.businessDistrict.activeName = 'aTurnover'" :class="{ active: rankingData.businessDistrict.activeName === 'aTurnover' }">交易金额</button>
|
|
|
- </div>
|
|
|
- <GoodsRanking
|
|
|
- ref="businessDistrict"
|
|
|
- :animate="activeName2 === 'businessDistrict'"
|
|
|
- :rankingData="businessDistrictRankData"
|
|
|
- :valueAlias="rankingData.businessDistrict.activeName === 'transactionVolume' ? 'productTransactionTotal' : 'productTransactionAmount'"
|
|
|
- ></GoodsRanking>
|
|
|
- </el-tab-pane>
|
|
|
- <el-tab-pane label="商城" name="shop">
|
|
|
- <div class="btns-container">
|
|
|
- <button @click="rankingData.shop.activeName = 'transactionVolume'" :class="{ active: rankingData.shop.activeName === 'transactionVolume' }">商品交易量</button>
|
|
|
- <button @click="rankingData.shop.activeName = 'aTurnover'" :class="{ active: rankingData.shop.activeName === 'aTurnover' }">交易金额</button>
|
|
|
- </div>
|
|
|
- <GoodsRanking
|
|
|
- ref="shop"
|
|
|
- :animate="activeName2 === 'shop'"
|
|
|
- :rankingData="shopRankData"
|
|
|
- :valueAlias="rankingData.shop.activeName === 'transactionVolume' ? 'productTransactionTotal' : 'productTransactionAmount'"
|
|
|
- ></GoodsRanking>
|
|
|
- </el-tab-pane>
|
|
|
- </el-tabs>
|
|
|
- </SelectionPane>
|
|
|
- </SectionBlock>
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- 网点统计 -->
|
|
|
- <!-- 统计区 -->
|
|
|
- <SectionBlock title="网点统计" style="margin-top: 32px">
|
|
|
- <div class="total-site">
|
|
|
- <div class="left-wrapper">
|
|
|
- <div class="total-partner">
|
|
|
- <el-select v-model="selects.sites">
|
|
|
- <el-option label="全国" :value="1"></el-option>
|
|
|
- </el-select>
|
|
|
- <div class="wrapper">
|
|
|
- <Counter style="flex: 1" :count="branchStatisticsData[item.field] || 0" :tip="item.name" :trend="item.trend" v-for="item in partnerTotalConfig" :key="item.name"></Counter>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="total-shop">
|
|
|
- <TotalShopChartVue ref="totalShopChartVueRef" :siteData="allData.dotStatistics"></TotalShopChartVue>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="right-wrapper">
|
|
|
- <NetworkDistribution :sites-data="allData.nationalMapList || []" ref="networkDistributionRef"></NetworkDistribution>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </SectionBlock>
|
|
|
- </div>
|
|
|
-</template>
|
|
|
-
|
|
|
-<script>
|
|
|
-import * as _ from 'lodash'
|
|
|
-import { getHomeStatisticsData } from '@/api/home'
|
|
|
-import SectionBlock from './components/SectionBlock.vue'
|
|
|
-import StatisticsPanel1 from './components/StatisticsPanel1.vue'
|
|
|
-import RankingTable from './components/RankingTable.vue'
|
|
|
-import SelectionPane from './components/SelectionPane.vue'
|
|
|
-import { statisticalArea, partnerTotalConfig } from './config'
|
|
|
-import Counter from './components/Counter.vue'
|
|
|
-import DiagramsChart from './components/DiagramsChart.vue'
|
|
|
-import GoodsRanking from './components/GoodsRanking.vue'
|
|
|
-import TotalShopChartVue from './components/TotalShopChart.vue'
|
|
|
-import NetworkDistribution from './components/NetworkDistribution.vue'
|
|
|
-
|
|
|
-export default {
|
|
|
- components: {
|
|
|
- SectionBlock,
|
|
|
- StatisticsPanel1,
|
|
|
- RankingTable,
|
|
|
- SelectionPane,
|
|
|
- Counter,
|
|
|
- DiagramsChart,
|
|
|
- GoodsRanking,
|
|
|
- TotalShopChartVue,
|
|
|
- NetworkDistribution
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- statisticalArea: Object.freeze(statisticalArea),
|
|
|
- partnerTotalConfig: Object.freeze(partnerTotalConfig),
|
|
|
- activeName: 'transactionAmountRef',
|
|
|
- activeName2: 'community',
|
|
|
- allData: {},
|
|
|
- branchStatisticsData: {}, // 网点统计表格数据
|
|
|
- diagramsLeftData: {}, // 分析图左侧柱状图数据
|
|
|
- rankingData: {
|
|
|
- community: {
|
|
|
- activeName: 'transactionVolume',
|
|
|
- transactionVolume: [], // 交易量
|
|
|
- aTurnover: [] // 交易额
|
|
|
- },
|
|
|
- shop: {
|
|
|
- activeName: 'transactionVolume',
|
|
|
- transactionVolume: [], // 交易量
|
|
|
- aTurnover: [] // 交易额
|
|
|
- },
|
|
|
- businessDistrict: {
|
|
|
- activeName: 'transactionVolume',
|
|
|
- transactionVolume: [], // 交易量
|
|
|
- aTurnover: [] // 交易额
|
|
|
- }
|
|
|
- },
|
|
|
- selects: { sites: 1 }
|
|
|
- }
|
|
|
- },
|
|
|
- created() {
|
|
|
- this.getHomeStatisticsData()
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- const observer = new ResizeObserver(
|
|
|
- _.debounce(() => {
|
|
|
- this.$refs[this.activeName].resize()
|
|
|
- this.$refs.networkDistributionRef.resize()
|
|
|
- this.$refs.totalShopChartVueRef.resize()
|
|
|
- }, 200)
|
|
|
- )
|
|
|
- observer.observe(this.$refs.dashboardPageRef)
|
|
|
- },
|
|
|
- methods: {
|
|
|
- async getHomeStatisticsData() {
|
|
|
- const res = await getHomeStatisticsData()
|
|
|
- if (res.code == 200) {
|
|
|
- this.allData = res.data
|
|
|
-
|
|
|
- const { dotStatistics = {}, analysisChartStatistics = {}, goodsSortStatistics = {} } = this.allData
|
|
|
- this.updateBranchStatisticsData(
|
|
|
- dotStatistics.masterWorkerQuantity,
|
|
|
- this.getData('memberStatistics.memberTotal'),
|
|
|
- this.getData('memberStatistics.headquarterTotal'),
|
|
|
- this.getData('memberStatistics.partnerTotal')
|
|
|
- )
|
|
|
- this.updateDiagramsLeftData(analysisChartStatistics)
|
|
|
- this.updateRankingData(goodsSortStatistics)
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- getData(path) {
|
|
|
- if (!path) return 0
|
|
|
- const keys = path.split('.')
|
|
|
- let result = this.allData
|
|
|
- for (let key of keys) {
|
|
|
- if (result == null || result == undefined) {
|
|
|
- return 0
|
|
|
- }
|
|
|
- result = result[key]
|
|
|
- }
|
|
|
- return result == null || result == undefined ? 0 : result
|
|
|
- },
|
|
|
-
|
|
|
- handleChangeTabPane() {
|
|
|
- this.$refs[this.activeName].resize()
|
|
|
- },
|
|
|
-
|
|
|
- handleChangeTabPane1() {
|
|
|
- this.$refs[this.activeName2].startAnimate()
|
|
|
- },
|
|
|
-
|
|
|
- // 监听容器宽度变化
|
|
|
- startWatchContainerSize() {},
|
|
|
-
|
|
|
- /**
|
|
|
- * 设置网点统计表格数据
|
|
|
- * @param {number} masterWorkerQuantity 师傅数量
|
|
|
- * @param {number} memberTotal 会员总数
|
|
|
- * @param {number} headquarterTotal 团长数量
|
|
|
- * @param {number} partnerTotal 合伙人数量
|
|
|
- */
|
|
|
- updateBranchStatisticsData(masterWorkerQuantity = 0, memberTotal = 0, headquarterTotal = 0, partnerTotal = 0) {
|
|
|
- this.branchStatisticsData.masterWorkerQuantity = masterWorkerQuantity
|
|
|
- this.branchStatisticsData.memberTotal = memberTotal
|
|
|
- this.branchStatisticsData.headquarterTotal = headquarterTotal
|
|
|
- this.branchStatisticsData.partnerTotal = partnerTotal
|
|
|
- },
|
|
|
-
|
|
|
- /**
|
|
|
- * 更新分析图左侧数据,交易额/订单量/会员量
|
|
|
- */
|
|
|
- updateDiagramsLeftData(data) {
|
|
|
- this.diagramsLeftData = data || {}
|
|
|
- },
|
|
|
-
|
|
|
- /**
|
|
|
- * 更新商品排名数据集
|
|
|
- */
|
|
|
- updateRankingData(data) {
|
|
|
- this.rankingData.community.aTurnover = data.communityProductStatisticsAmountList
|
|
|
- this.rankingData.community.transactionVolume = data.communityProductStatisticsTotalList
|
|
|
-
|
|
|
- this.rankingData.shop.aTurnover = data.mallProductStatisticsAmountList
|
|
|
- this.rankingData.shop.transactionVolume = data.mallProductStatisticsTotalList
|
|
|
-
|
|
|
- this.rankingData.businessDistrict.aTurnover = data.businessDistrictProductStatisticsAmountList
|
|
|
- this.rankingData.businessDistrict.transactionVolume = data.businessDistrictProductStatisticsTotalList
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- computed: {
|
|
|
- communityRankData() {
|
|
|
- return this.rankingData.community.activeName === 'transactionVolume' ? this.rankingData.community.transactionVolume : this.rankingData.community.aTurnover
|
|
|
- },
|
|
|
- shopRankData() {
|
|
|
- return this.rankingData.shop.activeName === 'transactionVolume' ? this.rankingData.shop.transactionVolume : this.rankingData.shop.aTurnover
|
|
|
- },
|
|
|
- businessDistrictRankData() {
|
|
|
- return this.rankingData.businessDistrict.activeName === 'transactionVolume' ? this.rankingData.businessDistrict.transactionVolume : this.rankingData.businessDistrict.aTurnover
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
-
|
|
|
- destroyed(){
|
|
|
-
|
|
|
- }
|
|
|
-}
|
|
|
-</script>
|
|
|
-
|
|
|
-<style lang="scss" scoped>
|
|
|
-.dashboardPage {
|
|
|
- width: 100%;
|
|
|
- min-height: calc(100vh - 50px);
|
|
|
- background-color: #f7f8fa;
|
|
|
- padding: 16px 24px;
|
|
|
- box-sizing: border-box;
|
|
|
- overflow: scroll;
|
|
|
-
|
|
|
- .content-1 {
|
|
|
- height: 328px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-
|
|
|
- .statistics-wrapper {
|
|
|
- height: 328px;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
- /* box-shadow: 0px 2px 6px 0px rgba(73, 78, 97, 0.05); */
|
|
|
- border-radius: 8px;
|
|
|
- margin-right: 24px;
|
|
|
- }
|
|
|
-
|
|
|
- .ranking-table-wrapper {
|
|
|
- flex: 1;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .btns-container {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-bottom: 5px;
|
|
|
-
|
|
|
- button {
|
|
|
- padding: 6px 8px;
|
|
|
- font-size: 14px;
|
|
|
- border-radius: 4px;
|
|
|
- background-color: #f7f8fa;
|
|
|
- margin-right: 14px;
|
|
|
- cursor: pointer;
|
|
|
- transition: all 350ms;
|
|
|
-
|
|
|
- &:active {
|
|
|
- opacity: 0.8;
|
|
|
- }
|
|
|
-
|
|
|
- &.active {
|
|
|
- color: #fff;
|
|
|
- background-color: #495fff;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .total-site {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- height: 496px;
|
|
|
-
|
|
|
- .left-wrapper {
|
|
|
- flex: 1;
|
|
|
- margin-right: 24px;
|
|
|
- height: 496px;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
-
|
|
|
- .total-partner {
|
|
|
- height: 184px;
|
|
|
- width: 100%;
|
|
|
- background-color: #fff;
|
|
|
- box-shadow: 0px 2px 6px 0px rgba(73, 78, 97, 0.05);
|
|
|
- border-radius: 8px;
|
|
|
- padding: 24px 32px 32px 24px;
|
|
|
-
|
|
|
- .wrapper {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-top: 24px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .total-shop {
|
|
|
- height: 288px;
|
|
|
- width: 100%;
|
|
|
- background-color: #fff;
|
|
|
- box-shadow: 0px 2px 6px 0px rgba(73, 78, 97, 0.05);
|
|
|
- border-radius: 8px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .right-wrapper {
|
|
|
- flex: 1;
|
|
|
- height: 496px;
|
|
|
- background-color: #fff;
|
|
|
- box-shadow: 0px 2px 6px 0px rgba(73, 78, 97, 0.05);
|
|
|
- border-radius: 8px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .s-container {
|
|
|
- width: 100%;
|
|
|
-
|
|
|
- .statistical-wrapper {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- flex-wrap: wrap;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|
|
|
+<template>
|
|
|
+ <div class="dashboard-container" ref="dashboardContainerRef">
|
|
|
+ <!-- 顶部的地区和店铺筛选 -->
|
|
|
+ <div class="total-search">
|
|
|
+ <div class="wrapper">
|
|
|
+ <AddresSelect size=""></AddresSelect>
|
|
|
+ <el-select class="shop-selector" v-model="totalSearch.selectShop" placeholder="请选择区域">
|
|
|
+ <el-option v-for="shop in selectOptions.shopListOptions" :key="shop.value" :label="shop.label" :value="shop.value"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 统计区域 -->
|
|
|
+ <!-- <StatisticsPanel :filters="['address']" title="统计区" @change="handleStatisticsAreaFilterChnage"> -->
|
|
|
+ <StatisticsPanel title="统计区" @change="handleStatisticsAreaFilterChnage">
|
|
|
+ <div ref="statisticalAreaRef" class="statistics-container">
|
|
|
+ <StatisticsSection
|
|
|
+ @change="handleFilterChange"
|
|
|
+ class="statistics-container-item"
|
|
|
+ style="flex-basis: calc((100% - 32px) / 3)"
|
|
|
+ :style="{
|
|
|
+ margin: [1, 4].includes(index) ? '0 16px' : '',
|
|
|
+ 'margin-bottom': index <= 2 ? '16px' : 0
|
|
|
+ }"
|
|
|
+ v-for="(item, index) in statisticalArea"
|
|
|
+ :key="item.label + index"
|
|
|
+ :meta="item"
|
|
|
+ :itemData="statisticalRegionData[item.itemData]"
|
|
|
+ >
|
|
|
+ <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>
|
|
|
+
|
|
|
+ <!-- 消费画像,财务统计 -->
|
|
|
+ <div class="section">
|
|
|
+ <StatisticsPanel class="consumer-profile-wrapper" title="消费画像">
|
|
|
+ <!-- <template #button>
|
|
|
+ <el-button type="text">
|
|
|
+ 消费画像
|
|
|
+ <i class="el-icon-arrow-right el-icon--right"></i>
|
|
|
+ </el-button>
|
|
|
+ </template> -->
|
|
|
+ <div class="consumer-profile-container">
|
|
|
+ <TrendPanel class="item" v-for="item in consumerProfile" :key="item.label" :label="item.label" :value="memberConsumptionStatistics[item.field]" :style="item.itemStyles"></TrendPanel>
|
|
|
+ </div>
|
|
|
+ </StatisticsPanel>
|
|
|
+ <!-- <StatisticsPanel class="financial-statistics-wrapper" title="财务统计" :filters="['date']" @change="handleFinancialStatisticsFilterChange"> -->
|
|
|
+ <StatisticsPanel class="financial-statistics-wrapper" title="财务统计" @change="handleFinancialStatisticsFilterChange">
|
|
|
+ <div class="financial-statistics-container">
|
|
|
+ <TrendPanel class="item" v-for="item in financialStatistics" :key="item.label" :label="item.label" :value="financeStatistics[item.field]" :style="item.itemStyles"></TrendPanel>
|
|
|
+ </div>
|
|
|
+ </StatisticsPanel>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 图表区 -->
|
|
|
+ <div class="charts-container">
|
|
|
+ <div class="left">
|
|
|
+ <!-- <StatisticsPanel :filters="['address', 'sourceChannel']" title="分析图" @change="handleAnalysisChartFilterChange"> -->
|
|
|
+ <StatisticsPanel title="分析图" @change="handleAnalysisChartFilterChange">
|
|
|
+ <template #button>
|
|
|
+ <button @click="currentAnalysisTab = 1" :class="{ active: currentAnalysisTab === 1 }" class="analysis-chart-btn">交易额</button>
|
|
|
+ <button @click="currentAnalysisTab = 2" :class="{ active: currentAnalysisTab === 2 }" class="analysis-chart-btn">订单量</button>
|
|
|
+ <button @click="currentAnalysisTab = 3" :class="{ active: currentAnalysisTab === 3 }" class="analysis-chart-btn">会员量</button>
|
|
|
+ </template>
|
|
|
+ <AnalysisChart ref="analysisChartRef" :chartData="diagramsData"></AnalysisChart>
|
|
|
+ </StatisticsPanel>
|
|
|
+
|
|
|
+ <div class="left-footer">
|
|
|
+ <!-- <StatisticsPanel style="width: 50%" :filters="['address']" title="物流统计" @change="handlelLogisticsStatisticsChartFilterChange"> -->
|
|
|
+ <StatisticsPanel style="width: 50%" title="物流统计" @change="handlelLogisticsStatisticsChartFilterChange">
|
|
|
+ <LogisticsStatisticsChart :chartData="logisticsStatistics" ref="lLogisticsStatisticsChartRef"></LogisticsStatisticsChart>
|
|
|
+ </StatisticsPanel>
|
|
|
+ <StatisticsPanel style="width: 50%" title="商品排名">
|
|
|
+ <template #button>
|
|
|
+ <button @click="currentGoodsRankingTab = 1" :class="{ active: currentGoodsRankingTab === 1 }" class="analysis-chart-btn">社区</button>
|
|
|
+ <button @click="currentGoodsRankingTab = 2" :class="{ active: currentGoodsRankingTab === 2 }" class="analysis-chart-btn">商圈</button>
|
|
|
+ <button @click="currentGoodsRankingTab = 3" :class="{ active: currentGoodsRankingTab === 3 }" class="analysis-chart-btn">商城</button>
|
|
|
+ </template>
|
|
|
+ <GoodsRankingChart :chartData="goodsRankingData" ref="goodsRankingChartRef"></GoodsRankingChart>
|
|
|
+ </StatisticsPanel>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="right">
|
|
|
+ <!-- <StatisticsPanel :filters="['address']" title="网点统计" style="width: 100%; height: 860px; display: flex; flex-direction: column" @change="handleSiteFilterChange"> -->
|
|
|
+ <StatisticsPanel title="网点统计" style="width: 100%; height: 860px; display: flex; flex-direction: column" @change="handleSiteFilterChange">
|
|
|
+ <div class="data-statistics">
|
|
|
+ <StatisticsItem v-for="item in sitedatastatistics" :key="item.label" :title="item.label" :value="dotStatistics[item.field] || 0" :style="item.itemStyles"></StatisticsItem>
|
|
|
+ </div>
|
|
|
+ <div class="map-pie-container">
|
|
|
+ <SiteMapChart :chartData="nationalMapList" class="map-chart" ref="siteMapChartRef"></SiteMapChart>
|
|
|
+ <SitePieChart :chartData="dotStatistics" class="pie-chart" ref="sitePieChartRef"></SitePieChart>
|
|
|
+ </div>
|
|
|
+ </StatisticsPanel>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <PAndLWarning></PAndLWarning>
|
|
|
+ <!-- 设置盈亏红线 -->
|
|
|
+ <SetPLLine></SetPLLine>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import * as _ from 'lodash'
|
|
|
+import { getHomeStatisticsData } from '@/api/home'
|
|
|
+import { getDefaultBarData } from './utils/echarts'
|
|
|
+import StatisticsPanel from './componets/StatisticsPanel.vue'
|
|
|
+import AddresSelect from './componets/AddresSelect.vue'
|
|
|
+import DateSelect from './componets/DateSelect.vue'
|
|
|
+import StatisticsSection from './componets/StatisticsSection'
|
|
|
+import TrendPanel from './componets/TrendPanel.vue'
|
|
|
+import AnalysisChart from './componets/AnalysisChart.vue'
|
|
|
+import LogisticsStatisticsChart from './componets/LogisticsStatisticsChart.vue'
|
|
|
+import GoodsRankingChart from './componets/GoodsRankingChart.vue'
|
|
|
+import StatisticsItem from './componets/StatisticsItem.vue'
|
|
|
+import SiteMapChart from './componets/SiteMapChart.vue'
|
|
|
+import SitePieChart from './componets/SitePieChart.vue'
|
|
|
+import PAndLWarning from './componets/PAndLWarning.vue'
|
|
|
+import SetPLLine from './componets/SetPLLine.vue'
|
|
|
+
|
|
|
+import { statisticalArea, consumerProfile, financialStatistics, sitedatastatistics } from './data/dashboard.js'
|
|
|
+
|
|
|
+export default {
|
|
|
+ components: {
|
|
|
+ SetPLLine,
|
|
|
+ PAndLWarning,
|
|
|
+ StatisticsPanel,
|
|
|
+ AddresSelect,
|
|
|
+ StatisticsSection,
|
|
|
+ TrendPanel,
|
|
|
+ AnalysisChart,
|
|
|
+ LogisticsStatisticsChart,
|
|
|
+ GoodsRankingChart,
|
|
|
+ StatisticsItem,
|
|
|
+ SiteMapChart,
|
|
|
+ SitePieChart,
|
|
|
+ DateSelect
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ statisticalArea: Object.freeze(statisticalArea),
|
|
|
+ consumerProfile: Object.freeze(consumerProfile),
|
|
|
+ financialStatistics: Object.freeze(financialStatistics),
|
|
|
+ sitedatastatistics: Object.freeze(sitedatastatistics),
|
|
|
+ totalSearch: {
|
|
|
+ selectAddress: 1,
|
|
|
+ selectShop: 1
|
|
|
+ },
|
|
|
+ dymicStyle: {
|
|
|
+ siteContainerHeight: '891px',
|
|
|
+ statisticalAreaItemWidth: '32%'
|
|
|
+ },
|
|
|
+ selectOptions: {
|
|
|
+ addressSelectOptions: [
|
|
|
+ { label: '佛山市', value: 1 }
|
|
|
+ // { label: '乌鲁木齐市', value: 2 }
|
|
|
+ ],
|
|
|
+ shopListOptions: [
|
|
|
+ { label: '全部', value: 1 }
|
|
|
+ // { label: '文智瑜沙雕皮业', value: 2 }
|
|
|
+ ],
|
|
|
+ dateOptions: [
|
|
|
+ // { label: '今天', value: 1 },
|
|
|
+ // { label: '近一周', value: 2 },
|
|
|
+ // { label: '近一月', value: 3 },
|
|
|
+ // { label: '近一年', value: 4 }
|
|
|
+ ],
|
|
|
+ sourceChannelOptions: [
|
|
|
+ // { label: '社区', value: 1 },
|
|
|
+ // { label: '商圈', value: 2 },
|
|
|
+ // { label: '商城', value: 3 }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
+ // 分析图相关
|
|
|
+ currentAnalysisTab: 1, // 交易额1,订单量2,会员量3
|
|
|
+
|
|
|
+ // 销售排名
|
|
|
+ currentGoodsRankingTab: 1, // 社区1,商圈2,商城3
|
|
|
+
|
|
|
+ /* 数据区域 */
|
|
|
+
|
|
|
+ statisticalRegionData: {
|
|
|
+ memberStatistics: {
|
|
|
+ // 会员统计
|
|
|
+ memberTotal: 0, //会员总数
|
|
|
+ normalMemberTotal: 0, // 普通会员数量
|
|
|
+ headquarterTotal: 0, // 团长数量
|
|
|
+ partnerTotal: 0, // 合伙人数量
|
|
|
+ memberIncreaseRate: 0 // 会员增长率
|
|
|
+ },
|
|
|
+ orderStatistics: {
|
|
|
+ // 订单统计
|
|
|
+ orderTotal: 0, // 订单总数
|
|
|
+ todayOrderTotal: 0, // 今日订单量
|
|
|
+ todayFinishOrderTotal: 0 // 今日完成订单
|
|
|
+ },
|
|
|
+
|
|
|
+ platformTransactionDataStatistics: {
|
|
|
+ // 平台交易数据统计
|
|
|
+ totalTransactionAmount: 0, // 总交易额
|
|
|
+ todayTransactionAmount: 0, // 今日交易额
|
|
|
+ totalExpense: 0, // 总支出
|
|
|
+ totalIncome: 0 // 总输入
|
|
|
+ },
|
|
|
+
|
|
|
+ voucherStatistics: {
|
|
|
+ // 平台代金券统计
|
|
|
+ voucherTotal: 0, // 总库存
|
|
|
+ voucherStock: 0, // 新增库存
|
|
|
+ todayVoucherUseTotal: 0, // 今日使用量
|
|
|
+ todayRealAmount: 0, // 今日使用量
|
|
|
+ todayRechargeTotal: 0 // 今日充值量
|
|
|
+ },
|
|
|
+
|
|
|
+ commissionStatistics: {
|
|
|
+ // 佣金统计
|
|
|
+ totalIncome: 0, // 累计收入佣金
|
|
|
+ todayTotalIncome: 0, // 今日总收入佣金
|
|
|
+ headquarterCommission: 0, // 团长佣金分配总额
|
|
|
+ partnerCommission: 0, // 合伙人佣金分配总额
|
|
|
+ joinCommission: 0, // 加盟商佣金分配总额
|
|
|
+ agentCommission: 0 // 代理商佣金分配总额
|
|
|
+ },
|
|
|
+
|
|
|
+ consumptionStatistics: {
|
|
|
+ // 消费金统计
|
|
|
+ totalIncome: 0, // 消费金总收入
|
|
|
+ totalConsumption: 0, // 消费金总支付
|
|
|
+ todayConsumptionOrderAmount: 0, //今日消费金支出订单金额
|
|
|
+ todayConsumptionOrderTotal: 0 //今日消费金支付订单数
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // 消费画像
|
|
|
+ memberConsumptionStatistics: {
|
|
|
+ memberConsumptionTotal: 0, // 会员消费总额
|
|
|
+ memberOrderTotal: 0, // 会员总下单次数
|
|
|
+ memberAfterSaleTotal: 0 // 会员总售后次数
|
|
|
+ },
|
|
|
+
|
|
|
+ // 财务统计
|
|
|
+ financeStatistics: {
|
|
|
+ receivableAmount: 0, // 应收金额
|
|
|
+ discountAmount: 0, // 优免金额
|
|
|
+ realAmount: 0, // 实收金额
|
|
|
+ customerFlow: 0, // 客流量
|
|
|
+ profitLossRate: 0 // 盈亏达成率
|
|
|
+ },
|
|
|
+
|
|
|
+ // 分析图数据
|
|
|
+ analysisChartStatistics: {
|
|
|
+ memberQuantity: getDefaultBarData(), // 会员量
|
|
|
+ orderQuantity: getDefaultBarData(), // 订单量
|
|
|
+ transactionAmount: getDefaultBarData() // 交易额
|
|
|
+ },
|
|
|
+
|
|
|
+ // 商品排名
|
|
|
+ goodsRanking: {
|
|
|
+ community: [],
|
|
|
+ shop: [],
|
|
|
+ businessDistrict: []
|
|
|
+ },
|
|
|
+
|
|
|
+ // 物流统计
|
|
|
+ logisticsStatistics: {
|
|
|
+ totalAmount: 0,
|
|
|
+ totalQuantity: 0
|
|
|
+ },
|
|
|
+
|
|
|
+ // 网点统计
|
|
|
+ dotStatistics: {
|
|
|
+ masterWorkerQuantity: 0 // 师傅数量
|
|
|
+ },
|
|
|
+
|
|
|
+ nationalMapList: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ provide() {
|
|
|
+ return {
|
|
|
+ addressList: this.selectOptions.addressSelectOptions,
|
|
|
+ dateList: this.selectOptions.dateOptions,
|
|
|
+ sourceChannelList: this.selectOptions.sourceChannelOptions
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ mounted() {
|
|
|
+ this.getHomeData()
|
|
|
+ this.observeContainerSize()
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ // 一次性获取首页数据
|
|
|
+ async getHomeData() {
|
|
|
+ const res = await getHomeStatisticsData()
|
|
|
+ const { data } = res
|
|
|
+
|
|
|
+ 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)
|
|
|
+ Object.assign(this.statisticalRegionData.commissionStatistics, data.commissionStatistics)
|
|
|
+ Object.assign(this.statisticalRegionData.consumptionStatistics, data.consumptionStatistics)
|
|
|
+ Object.assign(this.memberConsumptionStatistics, data.memberConsumptionStatistics)
|
|
|
+ Object.assign(this.analysisChartStatistics, data.analysisChartStatistics)
|
|
|
+ Object.assign(this.logisticsStatistics, data.logisticsStatistics)
|
|
|
+
|
|
|
+ // 商品排名
|
|
|
+ const { mallProductStatisticsTotalList, communityProductStatisticsTotalList, businessDistrictProductStatisticsTotalList } = data.goodsSortStatistics
|
|
|
+ this.goodsRanking.community = communityProductStatisticsTotalList
|
|
|
+ this.goodsRanking.shop = mallProductStatisticsTotalList
|
|
|
+ this.goodsRanking.businessDistrict = businessDistrictProductStatisticsTotalList
|
|
|
+
|
|
|
+ // 网点统计
|
|
|
+ this.dotStatistics = {
|
|
|
+ ...data.dotStatistics,
|
|
|
+ ...this.statisticalRegionData.memberStatistics
|
|
|
+ }
|
|
|
+ // 地图数据
|
|
|
+ this.nationalMapList = data.nationalMapList
|
|
|
+ },
|
|
|
+
|
|
|
+ // 最上面的搜索区域发生变化
|
|
|
+ handleChangeTotalSearchAddress(addressInfo) {
|
|
|
+ const { label, value } = addressInfo
|
|
|
+ this.totalSearch.selectAddress = value
|
|
|
+ },
|
|
|
+
|
|
|
+ // 监听容器变化重新渲染图标
|
|
|
+ observeContainerSize() {
|
|
|
+ const _this = this
|
|
|
+ const observer = new ResizeObserver(
|
|
|
+ _.debounce(() => {
|
|
|
+ try {
|
|
|
+ _this.$refs.analysisChartRef.resize()
|
|
|
+ _this.$refs.lLogisticsStatisticsChartRef.resize()
|
|
|
+ _this.$refs.goodsRankingChartRef.resize()
|
|
|
+ _this.$refs.siteMapChartRef.resize()
|
|
|
+ _this.$refs.sitePieChartRef.resize()
|
|
|
+ } catch (error) {}
|
|
|
+ }, 500)
|
|
|
+ )
|
|
|
+ observer.observe(this.$refs.dashboardContainerRef)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 统计区域的筛选发生变化
|
|
|
+ handleStatisticsAreaFilterChnage(form) {
|
|
|
+ console.log('统计区域的筛选发生变化', form)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 财务统计筛选发生变化
|
|
|
+ handleFinancialStatisticsFilterChange(form) {
|
|
|
+ console.log('财务统计区域筛选发生变化', form)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 分析图区域筛选发生变化
|
|
|
+ handleAnalysisChartFilterChange(form) {
|
|
|
+ console.log('分析图区域筛选发生变化', form)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 物流统计区域筛选发生变化
|
|
|
+ handlelLogisticsStatisticsChartFilterChange(form) {
|
|
|
+ console.log('物流统计区域筛选发生变化', form)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 网点统计筛选区域发生变化
|
|
|
+ handleSiteFilterChange(form) {
|
|
|
+ console.log('网点统计筛选区域发生变化', form)
|
|
|
+ },
|
|
|
+
|
|
|
+ // 二级区域的筛选发生变化
|
|
|
+ handleFilterChange(label, data) {
|
|
|
+ console.log('二级区域发生变化了', label, data)
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ computed: {
|
|
|
+ // 分析图数据
|
|
|
+ diagramsData() {
|
|
|
+ return this.analysisChartStatistics[{ 1: 'transactionAmount', 2: 'orderQuantity', 3: 'memberQuantity' }[this.currentAnalysisTab]]
|
|
|
+ },
|
|
|
+
|
|
|
+ // 商品排名数据
|
|
|
+ goodsRankingData() {
|
|
|
+ return this.goodsRanking[{ 1: 'community', 2: 'businessDistrict', 3: 'shop' }[this.currentGoodsRankingTab]]
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.statistics-container {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+
|
|
|
+ @media (max-width: 1499px) {
|
|
|
+ &-item {
|
|
|
+ flex-basis: calc((100% - 16px) / 2) !important;
|
|
|
+ margin: 0 16px 16px 0 !important;
|
|
|
+
|
|
|
+ &:nth-child(2n) {
|
|
|
+ margin-right: 0 !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 1096px) {
|
|
|
+ display: block;
|
|
|
+ &-item {
|
|
|
+ margin: 0 0 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.section {
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ .consumer-profile-wrapper {
|
|
|
+ flex: 325;
|
|
|
+ margin-right: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .financial-statistics-wrapper {
|
|
|
+ flex: 481;
|
|
|
+ }
|
|
|
+
|
|
|
+ .consumer-profile-container,
|
|
|
+ .financial-statistics-container {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 1394px) {
|
|
|
+ .consumer-profile-wrapper,
|
|
|
+ .financial-statistics-wrapper {
|
|
|
+ width: 48%;
|
|
|
+ }
|
|
|
+ .consumer-profile-container {
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .item {
|
|
|
+ flex: 0 0 30%;
|
|
|
+ height: 135px;
|
|
|
+ margin: 0 !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .financial-statistics-container {
|
|
|
+ position: relative;
|
|
|
+ overflow: auto;
|
|
|
+
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ margin-top: 10px;
|
|
|
+
|
|
|
+ background-color: rgba(255, 68, 0, 0);
|
|
|
+ }
|
|
|
+
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ background-color: #f6f6f6;
|
|
|
+ border-radius: 100px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0 !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .item {
|
|
|
+ flex: 0 0 32%;
|
|
|
+ height: 135px;
|
|
|
+ margin: 0 20px 0 0 !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 1188px) {
|
|
|
+ display: block;
|
|
|
+
|
|
|
+ .consumer-profile-wrapper,
|
|
|
+ .financial-statistics-wrapper {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .financial-statistics-container {
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ .item {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 730px) {
|
|
|
+ .financial-statistics-container {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ .item {
|
|
|
+ flex: 0 0 48%;
|
|
|
+ margin-right: 0 !important;
|
|
|
+ margin-bottom: 20px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 570px) {
|
|
|
+ .consumer-profile-container {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+
|
|
|
+ .item {
|
|
|
+ flex: 0 0 48%;
|
|
|
+ margin-right: 0 !important;
|
|
|
+ margin-bottom: 20px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.dashboard-container {
|
|
|
+ width: 100%;
|
|
|
+ height: calc(100vh - 50px);
|
|
|
+ background-color: #f4f7fc;
|
|
|
+ padding: 24px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: auto;
|
|
|
+
|
|
|
+ .total-search {
|
|
|
+ height: 72px;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 16px 24px;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+ .wrapper {
|
|
|
+ display: inline-flex;
|
|
|
+ border: 1px solid #dfdfdf;
|
|
|
+ border-radius: 4px;
|
|
|
+
|
|
|
+ .shop-selector {
|
|
|
+ position: relative;
|
|
|
+ width: 256px;
|
|
|
+
|
|
|
+ &::after {
|
|
|
+ top: 50%;
|
|
|
+ left: 0;
|
|
|
+ transform: translateY(-50%);
|
|
|
+ width: 1px;
|
|
|
+ height: 20px;
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ position: absolute;
|
|
|
+ background-color: #d8d8d8;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .charts-container {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ @media (max-width: 1373px) {
|
|
|
+ display: block;
|
|
|
+
|
|
|
+ .left,
|
|
|
+ .right {
|
|
|
+ width: 100% !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 875px) {
|
|
|
+ .left-footer {
|
|
|
+ display: block !important;
|
|
|
+
|
|
|
+ ::v-deep .statistics-panel-container {
|
|
|
+ width: 100% !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .left {
|
|
|
+ width: 60%;
|
|
|
+ margin-right: 24px;
|
|
|
+
|
|
|
+ .analysis-chart-btn {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #424e66;
|
|
|
+ line-height: 1.5;
|
|
|
+ padding: 3px 12px;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-left: 16px;
|
|
|
+ background-color: transparent;
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ color: #0519d4;
|
|
|
+ background-color: #f1f4ff;
|
|
|
+ border-radius: 4px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .left-footer {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ /* flex: 1; */
|
|
|
+ width: 40%;
|
|
|
+ .data-statistics {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .map-pie-container {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+
|
|
|
+ .map-chart {
|
|
|
+ flex: 1;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pie-chart {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.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>
|