|
@@ -44,6 +44,7 @@
|
|
<edbComputedWrap
|
|
<edbComputedWrap
|
|
:computedType="computedType"
|
|
:computedType="computedType"
|
|
@showBatchSelectEdb="handleShowBatchSelectEdb"
|
|
@showBatchSelectEdb="handleShowBatchSelectEdb"
|
|
|
|
+ @closeChart="handleCloseChart"
|
|
ref="edbComputedWrap"
|
|
ref="edbComputedWrap"
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
@@ -74,21 +75,39 @@
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
<div class="top-left">
|
|
<div class="top-left">
|
|
|
|
+ <!-- 保存指标 -->
|
|
<el-button
|
|
<el-button
|
|
|
|
+ v-if="!hasSaveEdbFlag"
|
|
type="primary"
|
|
type="primary"
|
|
size="medium"
|
|
size="medium"
|
|
class="year-btn"
|
|
class="year-btn"
|
|
@click="handleShowSaveEdb"
|
|
@click="handleShowSaveEdb"
|
|
>{{$t('StatisticAnalysis.ChartRelevance.save_edb')}}</el-button
|
|
>{{$t('StatisticAnalysis.ChartRelevance.save_edb')}}</el-button
|
|
>
|
|
>
|
|
|
|
+ <!-- 更新指标 -->
|
|
|
|
+ <el-dropdown
|
|
|
|
+ v-else
|
|
|
|
+ split-button
|
|
|
|
+ size="medium"
|
|
|
|
+ type="primary"
|
|
|
|
+ class="year-btn"
|
|
|
|
+ @click="updateEdbHandle"
|
|
|
|
+ @command="edbSaveOtherHandle"
|
|
|
|
+ >
|
|
|
|
+ {{$t('StatisticAnalysis.ChartRelevance.update_edb')}}
|
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
|
+ <el-dropdown-item :command="{scence:'saveOther'}">{{$t('StatisticAnalysis.ChartRelevance.save_other')}}</el-dropdown-item>
|
|
|
|
+ </el-dropdown-menu>
|
|
|
|
+ </el-dropdown>
|
|
|
|
+
|
|
<el-dropdown
|
|
<el-dropdown
|
|
v-if="$route.query.id"
|
|
v-if="$route.query.id"
|
|
split-button
|
|
split-button
|
|
size="medium"
|
|
size="medium"
|
|
type="primary"
|
|
type="primary"
|
|
class="year-btn"
|
|
class="year-btn"
|
|
- @click="updateEdbHandle"
|
|
|
|
- @command="edbCommandHandle"
|
|
|
|
|
|
+ @click="updateChartHandle"
|
|
|
|
+ @command="showChartSaveOther"
|
|
>
|
|
>
|
|
{{ $t("StatisticAnalysis.ChartRelevance.update_edb") }}
|
|
{{ $t("StatisticAnalysis.ChartRelevance.update_edb") }}
|
|
<el-dropdown-menu slot="dropdown">
|
|
<el-dropdown-menu slot="dropdown">
|
|
@@ -259,8 +278,10 @@
|
|
:isShow="showSingleEdbSave"
|
|
:isShow="showSingleEdbSave"
|
|
:singleEdbData="singleEdbData"
|
|
:singleEdbData="singleEdbData"
|
|
:tableData="tableData"
|
|
:tableData="tableData"
|
|
- @close="showSingleEdbSave = false"
|
|
|
|
- @save="handleSaveEdb"
|
|
|
|
|
|
+ :MultipleGraphConfigId="MultipleGraphConfigId"
|
|
|
|
+ :IsEdbSaveAs="IsEdbSaveAs"
|
|
|
|
+ @close="showSingleEdbSave = false;IsEdbSaveAs=false"
|
|
|
|
+ @success="handleSaveEdbSuccess"
|
|
/>
|
|
/>
|
|
|
|
|
|
<!-- 多指标计算保存指标 -->
|
|
<!-- 多指标计算保存指标 -->
|
|
@@ -268,8 +289,11 @@
|
|
:isShow="showMultipleEdbSave"
|
|
:isShow="showMultipleEdbSave"
|
|
:singleEdbData="singleEdbData"
|
|
:singleEdbData="singleEdbData"
|
|
:tableData="tableData"
|
|
:tableData="tableData"
|
|
- @close="showMultipleEdbSave = false"
|
|
|
|
- @save="handleSaveEdb"
|
|
|
|
|
|
+ :MultipleGraphConfigId="MultipleGraphConfigId"
|
|
|
|
+ :IsEdbSaveAs="IsEdbSaveAs"
|
|
|
|
+ :updateBeforeEdbList="updateBeforeEdbList"
|
|
|
|
+ @close="showMultipleEdbSave = false;IsEdbSaveAs=false"
|
|
|
|
+ @success="handleSaveEdbSuccess"
|
|
/>
|
|
/>
|
|
|
|
|
|
<!-- 图表设置 -->
|
|
<!-- 图表设置 -->
|
|
@@ -389,7 +413,12 @@ export default {
|
|
|
|
|
|
isShowSaveOther: false,//另存为
|
|
isShowSaveOther: false,//另存为
|
|
|
|
|
|
- showExplain:false
|
|
|
|
|
|
+ showExplain:false,
|
|
|
|
+
|
|
|
|
+ MultipleGraphConfigId:0,//配置id
|
|
|
|
+ hasSaveEdbFlag:false,//是否保存过指标了
|
|
|
|
+ IsEdbSaveAs:false,//是否为指标另存为
|
|
|
|
+ updateBeforeEdbList:[],//上次保存过的指标
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -402,23 +431,85 @@ export default {
|
|
this.showMultipleEdbSave = true
|
|
this.showMultipleEdbSave = true
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- // 保存指标
|
|
|
|
- handleSaveEdb(arr){
|
|
|
|
|
|
+ // 保存指标成功回调
|
|
|
|
+ handleSaveEdbSuccess(){
|
|
|
|
+ this.hasSaveEdbFlag=true
|
|
|
|
+ },
|
|
|
|
+ // 更新指标
|
|
|
|
+ async updateEdbHandle(){
|
|
|
|
+ const res=await apiIntervalAnalysis.getSavedEdbList({
|
|
|
|
+ MultipleGraphConfigId:this.MultipleGraphConfigId
|
|
|
|
+ })
|
|
|
|
+ if(res.Ret!==200) return
|
|
|
|
+ const list=res.Data.EdbInfoList
|
|
|
|
+ this.updateBeforeEdbList=list
|
|
|
|
+ // 更新单指标的指标
|
|
|
|
+ if(this.computedType===0){
|
|
|
|
+ this.handleUpdateSingleEdb(list)
|
|
|
|
+ }else{
|
|
|
|
+ this.handleUpdateMultipleEdb(list)
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 更新单指标的指标
|
|
|
|
+ handleUpdateSingleEdb(list){
|
|
|
|
+
|
|
|
|
+ //修改了指标类型(如从指标库切换到了预测指标库)则弹出弹窗
|
|
|
|
+ if(list[0].EdbTypeInfo!==this.tableData[0].EdbInfoCategoryType){
|
|
|
|
+ this.handleShowSaveEdb()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
|
|
+ const edbList=[{
|
|
|
|
+ ...list[0],
|
|
|
|
+ FromEdbInfoId:this.tableData[0].EdbInfoId
|
|
|
|
+ }]
|
|
const params={
|
|
const params={
|
|
- EdbInfoList:arr,
|
|
|
|
- MultipleGraphConfigId:this.intervalAnalysisChartData.MultipleGraphConfigId,
|
|
|
|
|
|
+ EdbInfoList:edbList,
|
|
|
|
+ MultipleGraphConfigId:this.MultipleGraphConfigId,
|
|
IsSaveAs:false,
|
|
IsSaveAs:false,
|
|
EdbInfoType:this.tableData[0].EdbInfoCategoryType,
|
|
EdbInfoType:this.tableData[0].EdbInfoCategoryType,
|
|
ExtraConfig:JSON.stringify(edbParams.ExtraConfig)
|
|
ExtraConfig:JSON.stringify(edbParams.ExtraConfig)
|
|
}
|
|
}
|
|
apiIntervalAnalysis.edbSave(params).then(res=>{
|
|
apiIntervalAnalysis.edbSave(params).then(res=>{
|
|
if(res.Ret===200){
|
|
if(res.Ret===200){
|
|
- this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
|
- this.showMultipleEdbSave=false
|
|
|
|
|
|
+ this.$message.success(this.$t('StatisticAnalysis.ChartRelevance.update_success'));
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ // 更新多指标的指标
|
|
|
|
+ async handleUpdateMultipleEdb(list){
|
|
|
|
+ // 判断是否修改了指标
|
|
|
|
+ let flag=false
|
|
|
|
+ this.tableData.forEach(item => {
|
|
|
|
+ if(!list.some(_i=>_i.FromEdbInfoId===item.EdbInfoId)){
|
|
|
|
+ flag=true
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ if(flag){
|
|
|
|
+ this.handleShowSaveEdb()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
|
|
+ const params={
|
|
|
|
+ EdbInfoList:list,
|
|
|
|
+ MultipleGraphConfigId:this.MultipleGraphConfigId,
|
|
|
|
+ IsSaveAs:false,
|
|
|
|
+ EdbInfoType:this.tableData[0].EdbInfoCategoryType,
|
|
|
|
+ ExtraConfig:JSON.stringify(edbParams.ExtraConfig)
|
|
|
|
+ }
|
|
|
|
+ apiIntervalAnalysis.edbSave(params).then(res=>{
|
|
|
|
+ if(res.Ret===200){
|
|
|
|
+ this.$message.success(this.$t('StatisticAnalysis.ChartRelevance.update_success'));
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 指标另存为
|
|
|
|
+ edbSaveOtherHandle(){
|
|
|
|
+ this.IsEdbSaveAs=true
|
|
|
|
+ this.handleShowSaveEdb()
|
|
|
|
+ },
|
|
|
|
|
|
// 多指标选择回调
|
|
// 多指标选择回调
|
|
handleBatchSelectEdbSuccess(e) {
|
|
handleBatchSelectEdbSuccess(e) {
|
|
@@ -434,6 +525,10 @@ export default {
|
|
this.$message.warning('编辑状态不允许切换计算类型')
|
|
this.$message.warning('编辑状态不允许切换计算类型')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+ this.chartInfo=null
|
|
|
|
+ this.tableData=[]
|
|
|
|
+ this.MultipleGraphConfigId=0
|
|
|
|
+ this.hasSaveEdbFlag=false
|
|
this.computedType = type
|
|
this.computedType = type
|
|
if (type === 1 && this.$refs.edbComputedWrap.edbList.length === 0) {
|
|
if (type === 1 && this.$refs.edbComputedWrap.edbList.length === 0) {
|
|
this.showBatchSelectEdb = true
|
|
this.showBatchSelectEdb = true
|
|
@@ -466,11 +561,12 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
//更新图
|
|
//更新图
|
|
- updateEdbHandle() {
|
|
|
|
|
|
+ updateChartHandle() {
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const {
|
|
const {
|
|
min, max, rightMin, rightMax, rightTwoMin, rightTwoMax
|
|
min, max, rightMin, rightMax, rightTwoMin, rightTwoMax
|
|
} = this.chartLimit
|
|
} = this.chartLimit
|
|
|
|
+ console.log(this.chartInfo);
|
|
const params = {
|
|
const params = {
|
|
ChartInfoId: Number(this.$route.query.id),
|
|
ChartInfoId: Number(this.$route.query.id),
|
|
ChartEdbInfoList: edbParams.ChartEdbInfoList,
|
|
ChartEdbInfoList: edbParams.ChartEdbInfoList,
|
|
@@ -503,10 +599,16 @@ export default {
|
|
},
|
|
},
|
|
|
|
|
|
//另存为
|
|
//另存为
|
|
- edbCommandHandle(e) {
|
|
|
|
|
|
+ showChartSaveOther(e) {
|
|
this.isShowSaveOther = true
|
|
this.isShowSaveOther = true
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ // 删除了指标则关闭右侧图
|
|
|
|
+ handleCloseChart(){
|
|
|
|
+ this.chartInfo=null
|
|
|
|
+ this.tableData=[]
|
|
|
|
+ },
|
|
|
|
+
|
|
// 新增图
|
|
// 新增图
|
|
handleSaveChart(e) {
|
|
handleSaveChart(e) {
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
@@ -539,7 +641,11 @@ export default {
|
|
async handleComputed() {
|
|
async handleComputed() {
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
const params = {
|
|
const params = {
|
|
- ...edbParams,
|
|
|
|
|
|
+ ChartEdbInfoList:edbParams.ChartEdbInfoList,
|
|
|
|
+ ExtraConfig:{
|
|
|
|
+ ...edbParams.ExtraConfig,
|
|
|
|
+ MultipleGraphConfigId:this.MultipleGraphConfigId
|
|
|
|
+ },
|
|
DateType: this.year_select,
|
|
DateType: this.year_select,
|
|
StartDate: [5, 6].includes(this.year_select)
|
|
StartDate: [5, 6].includes(this.year_select)
|
|
? this.select_date[0]
|
|
? this.select_date[0]
|
|
@@ -547,7 +653,6 @@ export default {
|
|
EndDate: this.year_select === 5 ? this.select_date[1] : '',
|
|
EndDate: this.year_select === 5 ? this.select_date[1] : '',
|
|
StartYear: this.count_year || 0,
|
|
StartYear: this.count_year || 0,
|
|
}
|
|
}
|
|
- console.log(params);
|
|
|
|
if (!params.ChartEdbInfoList.length || !params.ChartEdbInfoList[0].EdbInfoId) {
|
|
if (!params.ChartEdbInfoList.length || !params.ChartEdbInfoList[0].EdbInfoId) {
|
|
this.$message.warning('请选择指标')
|
|
this.$message.warning('请选择指标')
|
|
return
|
|
return
|
|
@@ -556,6 +661,12 @@ export default {
|
|
const res = await apiIntervalAnalysis.chartPreview(params)
|
|
const res = await apiIntervalAnalysis.chartPreview(params)
|
|
if (res.Ret === 200) {
|
|
if (res.Ret === 200) {
|
|
this.initChartName(res.Data)
|
|
this.initChartName(res.Data)
|
|
|
|
+ const data=res.data
|
|
|
|
+ this.MultipleGraphConfigId=res.Data.DataResp.MultipleGraphConfigId
|
|
|
|
+ this.tableData=res.Data.EdbInfoList
|
|
|
|
+ if(!this.chartInfo){
|
|
|
|
+ this.chartInfo=res.Data.ChartInfo
|
|
|
|
+ }
|
|
this.initIntervalAnalysisChartData(res.Data)
|
|
this.initIntervalAnalysisChartData(res.Data)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -634,6 +745,23 @@ export default {
|
|
this.handleComputed();
|
|
this.handleComputed();
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ /* 设置默认时间选中项 */
|
|
|
|
+ setDefaultDateSelect() {
|
|
|
|
+ this.year_select = this.chartInfo.DateType;
|
|
|
|
+ this.select_date = [this.chartInfo.StartDate, this.chartInfo.EndDate];
|
|
|
|
+ this.count_year = this.chartInfo.StartYear;
|
|
|
|
+
|
|
|
|
+ this.dateTip =
|
|
|
|
+ this.chartInfo.DateType === 5
|
|
|
|
+ ? `${this.chartInfo.StartDate}~${this.chartInfo.EndDate}`
|
|
|
|
+ : this.chartInfo.DateType === 6
|
|
|
|
+ ? /* `${this.chartInfo.StartDate}~至今` */ this.$t('Chart.data_tip_since',{date:this.chartInfo.StartDate})
|
|
|
|
+ : this.chartInfo.DateType === 20
|
|
|
|
+ ?/* `最近${this.chartInfo.StartYear}年` */ this.$t('Chart.date_tip_count',{year:this.chartInfo.StartYear})
|
|
|
|
+ :/* '请选择时间段' */this.$t('Chart.choose_time');
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
// 获取图表详情
|
|
// 获取图表详情
|
|
getChartInfo() {
|
|
getChartInfo() {
|
|
apiIntervalAnalysis.chartInfo({
|
|
apiIntervalAnalysis.chartInfo({
|
|
@@ -641,6 +769,10 @@ export default {
|
|
}).then(res => {
|
|
}).then(res => {
|
|
if (res.Ret === 200) {
|
|
if (res.Ret === 200) {
|
|
this.initEditData(res.Data)
|
|
this.initEditData(res.Data)
|
|
|
|
+ this.tableData=res.Data.EdbInfoList
|
|
|
|
+ this.chartInfo=res.Data.ChartInfo
|
|
|
|
+ this.setDefaultDateSelect()
|
|
|
|
+
|
|
this.initIntervalAnalysisChartData(res.Data)
|
|
this.initIntervalAnalysisChartData(res.Data)
|
|
}
|
|
}
|
|
})
|
|
})
|