IndexChart.vue 9.37 KB
<template>
  <div class="page-header-index-wide">
    <a-row :gutter="24">
      <a-col :sm="24" :md="12" :xl="6" :style="{ marginBottom: '24px' }">
        <chart-card :loading="loading" title="当天预约数量" :total="indexData.todayQuantity" >
          <a-tooltip title="指标说明" slot="action">
            <a-icon type="info-circle-o" />
          </a-tooltip>
          <div>
            <trend :flag="trendStyle.weekCompared"  style="margin-right: 16px;">
              <span slot="term">周同比</span>
              {{indexData.weekCompared}}
            </trend>
            <trend :flag="trendStyle.dayCompared">
              <span slot="term">日同比</span>
              {{indexData.dayCompared}}
            </trend>
          </div>
          <template slot="footer">当天交付完成订单数量<span>: {{indexData.todayFinishQuantity}}</span></template>
        </chart-card>
      </a-col>
      <a-col :sm="24" :md="12" :xl="6" :style="{ marginBottom: '24px' }">
        <chart-card :loading="loading" title="预约总数量" :total="indexData.allReservationQuantity">
          <a-tooltip title="指标说明" slot="action">
            <a-icon type="info-circle-o" />
          </a-tooltip>
          <div>
            <trend  style="margin-right: 16px;">
              <span slot="term">本周预约数量</span>
              {{indexData.week}}
            </trend>
            <trend>
              <span slot="term">上周预约数量</span>
              {{indexData.lastWeek}}
            </trend>
          </div>
          <template slot="footer">昨日预约数量<span> {{ indexData.yesterday }}</span></template>
        </chart-card>
      </a-col>
      <a-col :sm="24" :md="12" :xl="6" :style="{ marginBottom: '24px' }">
        <chart-card :loading="loading" title="空闲月台数量" :total="indexData.idlePlatformQuantity">
          <a-tooltip title="指标说明" slot="action">
            <a-icon type="info-circle-o" />
          </a-tooltip>
          <div>
            <mini-progress color="rgb(19, 194, 194)" :target="14" :percentage="indexData.idlePlatformQuantity" :height="8" />
          </div>
          <template slot="footer">占用月台数量 <span>{{indexData.occupyPlatformQuantity}}</span></template>
        </chart-card>
      </a-col>
      <a-col :sm="24" :md="12" :xl="6" :style="{ marginBottom: '24px' }">
        <chart-card :loading="loading" title="已交付订单数量" :total="indexData.allFinishReservationQuantity">
          <a-tooltip title="指标说明" slot="action">
            <a-icon type="info-circle-o" />
          </a-tooltip>
          <div>
            <mini-progress color="rgb(19, 194, 194)" :target="indexData.allReservationQuantity" :percentage="indexData.allFinishReservationQuantity" :height="8" />
          </div>
          <template slot="footer">未交付订单数量 <span> {{indexData.allReservationQuantity - indexData.allFinishReservationQuantity}}</span></template>
        </chart-card>
      </a-col>
    </a-row>

    <a-card :loading="loading" :bordered="false" :body-style="{padding: '0'}">
      <div class="salesCard">
        <a-tabs default-active-key="1" size="large" :tab-bar-style="{marginBottom: '24px', paddingLeft: '16px'}">
          <div class="extra-wrapper" slot="tabBarExtraContent">
<!--            <div class="extra-item">-->
<!--              <a>今日</a>-->
<!--              <a>本周</a>-->
<!--              <a>本月</a>-->
<!--              <a>本年</a>-->
<!--            </div>-->
<!--            <a-range-picker :style="{width: '256px'}" />-->
          </div>
          <a-tab-pane loading="true" tab="统计" key="1">
            <a-row>
              <a-col :xl="16" :lg="12" :md="12" :sm="24" :xs="24">
                <bar title="月台使用统计" :dataSource="barData"/>
              </a-col>
              <a-col :xl="8" :lg="12" :md="12" :sm="24" :xs="24">
                <rank-list title="月台使用排行榜" :list="rankList"/>
              </a-col>
            </a-row>
          </a-tab-pane>
        </a-tabs>
      </div>
    </a-card>

    <a-row>
      <a-col :span="24">
        <a-card :loading="loading" :bordered="false" title="最近一周访问量统计" :style="{ marginTop: '24px' }">
          <a-row>
            <a-col :span="6">
              <head-info title="今日IP" :content="loginfo.todayIp"></head-info>
            </a-col>
            <a-col :span="2">
              <a-spin class='circle-cust'>
                <a-icon slot="indicator" type="environment" style="font-size: 24px"  />
              </a-spin>
            </a-col>
            <a-col :span="6">
              <head-info title="今日访问" :content="loginfo.todayVisitCount"></head-info>
            </a-col>
            <a-col :span="2">
              <a-spin class='circle-cust'>
                <a-icon slot="indicator" type="team" style="font-size: 24px"  />
              </a-spin>
            </a-col>
            <a-col :span="6">
              <head-info title="总访问量" :content="loginfo.totalVisitCount"></head-info>
            </a-col>
            <a-col :span="2">
              <a-spin class='circle-cust'>
                <a-icon slot="indicator" type="rise" style="font-size: 24px"  />
              </a-spin>
            </a-col>
          </a-row>
          <line-chart-multid :fields="visitFields" :dataSource="visitInfo"></line-chart-multid>
        </a-card>
      </a-col>
    </a-row>
  </div>
</template>

<script>
  import ChartCard from '@/components/ChartCard'
  import ACol from "ant-design-vue/es/grid/Col"
  import ATooltip from "ant-design-vue/es/tooltip/Tooltip"
  import MiniArea from '@/components/chart/MiniArea'
  import MiniBar from '@/components/chart/MiniBar'
  import MiniProgress from '@/components/chart/MiniProgress'
  import RankList from '@/components/chart/RankList'
  import Bar from '@/components/chart/Bar'
  import LineChartMultid from '@/components/chart/LineChartMultid'
  import HeadInfo from '@/components/tools/HeadInfo.vue'

  import Trend from '@/components/Trend'
  import { getLoginfo,getVisitInfo,getIndexData } from '@/api/api'


  export default {
    name: "IndexChart",
    components: {
      ATooltip,
      ACol,
      ChartCard,
      MiniArea,
      MiniBar,
      MiniProgress,
      RankList,
      Bar,
      Trend,
      LineChartMultid,
      HeadInfo
    },
    data() {
      return {
        loading: true,
        center: null,
        trendStyle: {
          weekCompared: '',
          dayCompared:'',
        },
        rankList: [],
        barData: [],
        loginfo:{},
        indexData:{},
        visitFields:['ip','visit'],
        visitInfo:[],
        indicator: <a-icon type="loading" style="font-size: 24px" spin />
      }
    },
    created() {
      setTimeout(() => {
        this.loading = !this.loading
      }, 1000)
      this.initLogInfo();
    },
    methods: {
      initLogInfo () {
        getLoginfo(null).then((res)=>{
          if(res.success){
            Object.keys(res.result).forEach(key=>{
              res.result[key] =res.result[key]+""
            })
            this.loginfo = res.result;
          }
        })
        getIndexData(null).then((res)=>{
          if (res.success){
            Object.keys(res.result).forEach(key=>{
              res.result[key] =res.result[key]+""
            })
            this.indexData = res.result;
            if (this.indexData.todayQuantity){
              this.indexData = res.result;
              let weekCompared = this.indexData.weekCompared.replace("%","") - 0;
              if (weekCompared > 0){
                this.trendStyle.weekCompared = 'up';
              }else {
                this.trendStyle.weekCompared = 'down';
                this.indexData.weekCompared = this.indexData.weekCompared.replace("-","");
              }
              let dayCompared =  this.indexData.dayCompared.replace("%","") - 0;
              if (dayCompared > 0){
                this.trendStyle.dayCompared = 'up';
              }else {
                this.trendStyle.dayCompared = 'down';
                this.indexData.dayCompared = this.indexData.dayCompared.replace("-","");
              }
              let obj = JSON.parse(this.indexData.platformStatistics);
              for (var i in obj){
                this.barData.push({
                  x:obj[i].name,
                  y:obj[i].quantity
                });
                this.rankList.push({
                  name:obj[i].name,
                  total:obj[i].quantity
                })
              }
            }
          }

        })
        getVisitInfo().then(res=>{
          if(res.success){
            this.visitInfo = res.result;
          }
        })
      },
    }
  }
</script>

<style lang="less" scoped>
  .circle-cust{
    position: relative;
    top: 28px;
    left: -100%;
  }
  .extra-wrapper {
    line-height: 55px;
    padding-right: 24px;

    .extra-item {
      display: inline-block;
      margin-right: 24px;

      a {
        margin-left: 24px;
      }
    }
  }

  /* 首页访问量统计 */
  .head-info {
    position: relative;
    text-align: left;
    padding: 0 32px 0 0;
    min-width: 125px;

    &.center {
      text-align: center;
      padding: 0 32px;
    }

    span {
      color: rgba(0, 0, 0, .45);
      display: inline-block;
      font-size: .95rem;
      line-height: 42px;
      margin-bottom: 4px;
    }
    p {
      line-height: 42px;
      margin: 0;
      a {
        font-weight: 600;
        font-size: 1rem;
      }
    }
  }
</style>