|
@@ -1,106 +1,104 @@
|
|
|
<template>
|
|
|
- <Layout>
|
|
|
- <div class="page_week">
|
|
|
- <div class="page_week_main">
|
|
|
- <!-- 选择月报时间 -->
|
|
|
- <div class="week_time">
|
|
|
- <SelectMonth @selectYm="selectYear"></SelectMonth>
|
|
|
- </div>
|
|
|
- <!-- 数据报告-周报 -->
|
|
|
- <div class="dataReport">
|
|
|
- <div class="dataReport_main">
|
|
|
- <div class="data_r_head">
|
|
|
- <div class="data_r_title">数据报告-月报</div>
|
|
|
- <div class="data_r_week">({{dateFormatter(start * 1000, 'MM月dd日')}}-{{dateFormatter(end * 1000, 'MM月dd日')}})</div>
|
|
|
- </div>
|
|
|
- <div class="data_keys">
|
|
|
- <span class="keys_label">订阅关键词组:</span>
|
|
|
- <span class="list_key">{{keywordsGroup}}</span>
|
|
|
- </div>
|
|
|
- <div class="data_line"></div>
|
|
|
- <div class="data_item">
|
|
|
- <p class="item_handle">数据来源:已为您推送的招标项目信息</p>
|
|
|
- <p class="item_handle">项目预算/项目规模:少量预算金额、中标金额未公开或为空的项目,将通过剑鱼标讯预测模型进行填补,可能会与实际项目预算、项目规模略有差距;</p>
|
|
|
- <p class="item_handle">项目重复统计:一个招标项目可能同属于多个关键词组,故各关键词组的数据统计之和可能大于整体市场的统计。</p>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="echartsView">
|
|
|
- <!-- 项目数量 -->
|
|
|
- <div class="chart" v-if="pCount.show">
|
|
|
- <div class="chart_title">项目数量</div>
|
|
|
- <BarLineChart :datas="pCount.data" :options="pCount.options"></BarLineChart>
|
|
|
- </div>
|
|
|
- <!-- 项目规模 -->
|
|
|
- <div class="chart" v-if="pScale.show">
|
|
|
- <div class="chart_title">项目规模</div>
|
|
|
- <BarLineChart :datas="pScale.data" :options="pScale.options"></BarLineChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目数量 -->
|
|
|
- <div class="chart" v-if="curMonthCount.show">
|
|
|
- <div class="chart_title">本月项目数量</div>
|
|
|
- <DuoToneChart :datas="curMonthCount.data"></DuoToneChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目规模 -->
|
|
|
- <div class="chart" v-if="curMonthScale.show">
|
|
|
- <div class="chart_title">本月项目规模</div>
|
|
|
- <BarLineChart :datas="curMonthScale.data" :options="curMonthScale.options"></BarLineChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目数量分布 -->
|
|
|
- <div class="chart" v-if="curMonthCountArea.show">
|
|
|
- <div class="chart_title">本月项目数量分布</div>
|
|
|
- <MapChart :datas="curMonthCountArea.data" :options="curMonthCountArea.options"></MapChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目规模分布 -->
|
|
|
- <div class="chart" v-if="curMonthScaleArea.show">
|
|
|
- <div class="chart_title">本月项目规模分布</div>
|
|
|
- <MapChart :datas="curMonthScaleArea.data" :options="curMonthScaleArea.options"></MapChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目数量TOP10采购行业 7-->
|
|
|
- <div class="chart" v-if="countTop.show">
|
|
|
- <div class="chart_title">本月项目数量TOP10采购行业</div>
|
|
|
- <DuoToneChart :datas="countTop.data"></DuoToneChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目规模TOP10采购行业 8-->
|
|
|
- <div class="chart" v-if="scaleTop.show">
|
|
|
- <div class="chart_title">本月项目规模TOP10采购行业</div>
|
|
|
- <DuoToneChart :datas="scaleTop.data"></DuoToneChart>
|
|
|
- </div>
|
|
|
- <!-- 本月项目平均规模TOP10采购行业 9-->
|
|
|
- <div class="chart" v-if="averageTop.show">
|
|
|
- <div class="chart_title">本月项目平均规模TOP10采购行业</div>
|
|
|
- <DuoToneChart :datas="averageTop.data"></DuoToneChart>
|
|
|
- </div>
|
|
|
- <!-- 本月中标企业注册地分布 10-->
|
|
|
- <div class="chart" v-if="curMonthRegArea.show">
|
|
|
- <div class="chart_title">本月中标企业注册地分布</div>
|
|
|
- <MapChart :datas="curMonthRegArea.data" :options="curMonthRegArea.options"></MapChart>
|
|
|
- </div>
|
|
|
- <!-- 本月中标企业注册资本分布 11-->
|
|
|
- <div class="chart" v-if="capitalTop.show">
|
|
|
- <div class="chart_title">本月中标企业注册资本分布</div>
|
|
|
- <DuoToneChart :datas="capitalTop.data"></DuoToneChart>
|
|
|
- </div>
|
|
|
- <!-- 本月中标企业中标项目数量分布 12-->
|
|
|
- <div class="chart" v-if="curMonthBidCount.show">
|
|
|
- <div class="chart_title">本月中标企业中标项目数量分布</div>
|
|
|
- <BarLineChart :datas="curMonthBidCount.data" :options="curMonthBidCount.options"></BarLineChart>
|
|
|
- </div>
|
|
|
- <!-- 本月采购单位排行榜 13-->
|
|
|
- <div class="chart" v-if="unitTop.show">
|
|
|
- <div class="chart_title">本月采购单位排行榜</div>
|
|
|
- <DuoToneChart :datas="unitTop.data"></DuoToneChart>
|
|
|
+ <Layout class="page_week">
|
|
|
+ <div class="page_week_main">
|
|
|
+ <!-- 选择月报时间 -->
|
|
|
+ <div class="week_time">
|
|
|
+ <SelectMonth @selectYm="selectYear"></SelectMonth>
|
|
|
+ </div>
|
|
|
+ <!-- 数据报告-周报 -->
|
|
|
+ <div class="dataReport">
|
|
|
+ <div class="dataReport_main">
|
|
|
+ <div class="data_r_head">
|
|
|
+ <div class="data_r_title">数据报告-月报</div>
|
|
|
+ <div class="data_r_week">({{dateFormatter(start * 1000, 'MM月dd日')}}-{{dateFormatter(end * 1000, 'MM月dd日')}})</div>
|
|
|
</div>
|
|
|
- <!-- 本月中标企业排行榜 14 -->
|
|
|
- <div class="chart" v-if="bidEntTop.show">
|
|
|
- <ProjectTop type="winner" title="本月中标企业排行榜" :data="bidEntTop.data"></ProjectTop>
|
|
|
+ <div class="data_keys">
|
|
|
+ <span class="keys_label">订阅关键词组:</span>
|
|
|
+ <span class="list_key">{{keywordsGroup}}</span>
|
|
|
</div>
|
|
|
- <!-- 本月项目规模排行榜 15 -->
|
|
|
- <div class="chart" v-if="curScaleTop.show">
|
|
|
- <ProjectTop type="bidamount" title="本月项目规模排行榜" :data="curScaleTop.data"></ProjectTop>
|
|
|
+ <div class="data_line"></div>
|
|
|
+ <div class="data_item">
|
|
|
+ <p class="item_handle">数据来源:已为您推送的招标项目信息</p>
|
|
|
+ <p class="item_handle">项目预算/项目规模:少量预算金额、中标金额未公开或为空的项目,将通过剑鱼标讯预测模型进行填补,可能会与实际项目预算、项目规模略有差距;</p>
|
|
|
+ <p class="item_handle">项目重复统计:一个招标项目可能同属于多个关键词组,故各关键词组的数据统计之和可能大于整体市场的统计。</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="echartsView">
|
|
|
+ <!-- 项目数量 -->
|
|
|
+ <div class="chart" v-if="pCount.show">
|
|
|
+ <div class="chart_title">项目数量</div>
|
|
|
+ <BarLineChart :datas="pCount.data" :options="pCount.options"></BarLineChart>
|
|
|
+ </div>
|
|
|
+ <!-- 项目规模 -->
|
|
|
+ <div class="chart" v-if="pScale.show">
|
|
|
+ <div class="chart_title">项目规模</div>
|
|
|
+ <BarLineChart :datas="pScale.data" :options="pScale.options"></BarLineChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目数量 -->
|
|
|
+ <div class="chart" v-if="curMonthCount.show">
|
|
|
+ <div class="chart_title">本月项目数量</div>
|
|
|
+ <DuoToneChart :datas="curMonthCount.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目规模 -->
|
|
|
+ <div class="chart" v-if="curMonthScale.show">
|
|
|
+ <div class="chart_title">本月项目规模</div>
|
|
|
+ <BarLineChart :datas="curMonthScale.data" :options="curMonthScale.options"></BarLineChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目数量分布 -->
|
|
|
+ <div class="chart" v-if="curMonthCountArea.show">
|
|
|
+ <div class="chart_title">本月项目数量分布</div>
|
|
|
+ <MapChart :datas="curMonthCountArea.data" :options="curMonthCountArea.options"></MapChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目规模分布 -->
|
|
|
+ <div class="chart" v-if="curMonthScaleArea.show">
|
|
|
+ <div class="chart_title">本月项目规模分布</div>
|
|
|
+ <MapChart :datas="curMonthScaleArea.data" :options="curMonthScaleArea.options"></MapChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目数量TOP10采购行业 7-->
|
|
|
+ <div class="chart" v-if="countTop.show">
|
|
|
+ <div class="chart_title">本月项目数量TOP10采购行业</div>
|
|
|
+ <DuoToneChart :datas="countTop.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目规模TOP10采购行业 8-->
|
|
|
+ <div class="chart" v-if="scaleTop.show">
|
|
|
+ <div class="chart_title">本月项目规模TOP10采购行业</div>
|
|
|
+ <DuoToneChart :datas="scaleTop.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目平均规模TOP10采购行业 9-->
|
|
|
+ <div class="chart" v-if="averageTop.show">
|
|
|
+ <div class="chart_title">本月项目平均规模TOP10采购行业</div>
|
|
|
+ <DuoToneChart :datas="averageTop.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月中标企业注册地分布 10-->
|
|
|
+ <div class="chart" v-if="curMonthRegArea.show">
|
|
|
+ <div class="chart_title">本月中标企业注册地分布</div>
|
|
|
+ <MapChart :datas="curMonthRegArea.data" :options="curMonthRegArea.options"></MapChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月中标企业注册资本分布 11-->
|
|
|
+ <div class="chart" v-if="capitalTop.show">
|
|
|
+ <div class="chart_title">本月中标企业注册资本分布</div>
|
|
|
+ <DuoToneChart :datas="capitalTop.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月中标企业中标项目数量分布 12-->
|
|
|
+ <div class="chart" v-if="curMonthBidCount.show">
|
|
|
+ <div class="chart_title">本月中标企业中标项目数量分布</div>
|
|
|
+ <BarLineChart :datas="curMonthBidCount.data" :options="curMonthBidCount.options"></BarLineChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月采购单位排行榜 13-->
|
|
|
+ <div class="chart" v-if="unitTop.show">
|
|
|
+ <div class="chart_title">本月采购单位排行榜</div>
|
|
|
+ <DuoToneChart :datas="unitTop.data"></DuoToneChart>
|
|
|
+ </div>
|
|
|
+ <!-- 本月中标企业排行榜 14 -->
|
|
|
+ <div class="chart" v-if="bidEntTop.show">
|
|
|
+ <ProjectTop type="winner" title="本月中标企业排行榜" :data="bidEntTop.data"></ProjectTop>
|
|
|
+ </div>
|
|
|
+ <!-- 本月项目规模排行榜 15 -->
|
|
|
+ <div class="chart" v-if="curScaleTop.show">
|
|
|
+ <ProjectTop type="bidamount" title="本月项目规模排行榜" :data="curScaleTop.data"></ProjectTop>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</Layout>
|
|
|
</template>
|