|
|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <boxBorder title="未来12月项目预计签约金额/预计成交金额分析" class1="20px 20px" height="282px">
|
|
|
+ <boxBorder title="未来12月项目预计签约金额/预计成交金额分析" class1="20px 20px" height="282px" :titleTip="true">
|
|
|
<template slot="select">
|
|
|
<div>
|
|
|
<label class="search__label">{{$t(`项目阶段`)}}:</label>
|
|
|
- <el-select v-model="stagename" multiple placeholder="请选择" size="small" @focus="getStage" @change="selectStage" filterable style="width: 370px">
|
|
|
+ <el-select v-model="stagename" multiple :placeholder="$t(`请选择`)" size="small" @focus="getStage" @change="selectStage" filterable style="width: 370px">
|
|
|
<el-option
|
|
|
v-for="item in stagenameList"
|
|
|
:key="item.stagename"
|
|
|
@@ -15,22 +15,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<template slot="charts">
|
|
|
- <el-tooltip effect="dark" placement="top-start" style="margin-top: 3px;margin-left:275px;position: relative;z-index: 50">
|
|
|
- <div slot="content">
|
|
|
- {{
|
|
|
- $t(
|
|
|
- '预计成交金额 = 预计签约金额 × 项目成交率'
|
|
|
- )
|
|
|
- }}
|
|
|
- </div>
|
|
|
- <!-- <i class="el-icon-question" style="color: #afb0be;float: right"></i>-->
|
|
|
- <img
|
|
|
- width="14px"
|
|
|
- height="14px"
|
|
|
- src="../../../assets/icons/prompt_icon.svg"
|
|
|
- />
|
|
|
- </el-tooltip>
|
|
|
- <div ref="chartRef" style="height: 220px;margin-top: -25px;position: relative;z-index: 20">
|
|
|
+ <div ref="chartRef" style="height: 220px;">
|
|
|
</div>
|
|
|
</template>
|
|
|
</boxBorder>
|
|
|
@@ -62,13 +47,13 @@ export default {
|
|
|
this.chartMapData[indexNew] = {
|
|
|
"signdate_due":item.signdate_due,
|
|
|
"value":Math.round(this.tool.unitConversion(item.signamount_due,10000) * 100)/100,
|
|
|
- "name":this.$t('预计签约金额(万)')
|
|
|
+ "name":this.$t('预计签约金额')+ this.$t('(万)')
|
|
|
}
|
|
|
indexNew = indexNew + 1
|
|
|
this.chartMapData[indexNew] = {
|
|
|
"signdate_due":item.signdate_due,
|
|
|
"value":Math.round(this.tool.unitConversion(item.dealamount_due,10000) * 100)/100,
|
|
|
- "name":this.$t('预计成交金额(万)')
|
|
|
+ "name":this.$t('预计成交金额') + this.$t('(万)')
|
|
|
}
|
|
|
indexNew = indexNew + 1
|
|
|
index = index + 1
|