|
@@ -39,10 +39,11 @@
|
|
|
>
|
|
|
</div>
|
|
|
<!-- 指标计算模块 -->
|
|
|
- <edbComputedWrap
|
|
|
+ <edbComputedWrap
|
|
|
:computedType="computedType"
|
|
|
- @showBatchSelectEdb="handleShowBatchSelectEdb"
|
|
|
- ref="edbComputedWrap" />
|
|
|
+ @showBatchSelectEdb="handleShowBatchSelectEdb"
|
|
|
+ ref="edbComputedWrap"
|
|
|
+ />
|
|
|
</div>
|
|
|
|
|
|
<span class="move-btn resize" v-drag id="resize"></span>
|
|
@@ -71,25 +72,27 @@
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="top-left">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- size="medium"
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="medium"
|
|
|
class="year-btn"
|
|
|
@click="handleShowSaveEdb"
|
|
|
>保存指标</el-button
|
|
|
>
|
|
|
- <el-dropdown
|
|
|
+ <el-dropdown
|
|
|
v-if="$route.query.id"
|
|
|
- split-button
|
|
|
+ split-button
|
|
|
size="medium"
|
|
|
- type="primary"
|
|
|
+ type="primary"
|
|
|
class="year-btn"
|
|
|
- @click="updateEdbHandle"
|
|
|
+ @click="updateEdbHandle"
|
|
|
@command="edbCommandHandle"
|
|
|
>
|
|
|
- {{$t('StatisticAnalysis.ChartRelevance.update_edb')}}
|
|
|
+ {{ $t("StatisticAnalysis.ChartRelevance.update_edb") }}
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
- <el-dropdown-item :command="{scence:'saveOther'}">{{$t('Table.save_as')}}</el-dropdown-item>
|
|
|
+ <el-dropdown-item :command="{ scence: 'saveOther' }">{{
|
|
|
+ $t("Table.save_as")
|
|
|
+ }}</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
<el-button
|
|
@@ -100,10 +103,10 @@
|
|
|
@click="showSaveChart = true"
|
|
|
>保存图</el-button
|
|
|
>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- size="medium"
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ size="medium"
|
|
|
class="year-btn"
|
|
|
@click="handleShowChartSet"
|
|
|
>图表设置</el-button
|
|
@@ -118,11 +121,8 @@
|
|
|
fontSize:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.fontSize}px;
|
|
|
color:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.style.color}
|
|
|
`" -->
|
|
|
- <h2
|
|
|
- class="chart-title"
|
|
|
- v-show="chartInfo.ChartName||chartName"
|
|
|
- >
|
|
|
- {{ chartInfo.ChartName||chartName }}
|
|
|
+ <h2 class="chart-title" v-show="chartInfo.ChartName || chartName">
|
|
|
+ {{ chartInfo.ChartName || chartName }}
|
|
|
</h2>
|
|
|
|
|
|
<Chart :options="options" :chartInfo="chartInfo" ref="chartRef" />
|
|
@@ -201,18 +201,6 @@
|
|
|
JSON.parse(chartInfo.SourcesFrom).text
|
|
|
}}
|
|
|
</span>
|
|
|
-
|
|
|
- <el-switch
|
|
|
- v-if="chartInfo.SourcesFrom"
|
|
|
- v-model="chartInfo.SourcesFromVisable"
|
|
|
- :active-value="true"
|
|
|
- :inactive-value="false"
|
|
|
- style="margin: 0 15px"
|
|
|
- @change="changeSourceVisable"
|
|
|
- />
|
|
|
- <span class="editsty" @click="isShowSourceDialog = true"
|
|
|
- ><!-- 编辑 -->{{ $t("Chart.chart_edit_btn") }}</span
|
|
|
- >
|
|
|
</div>
|
|
|
|
|
|
<!-- 图表说明 -->
|
|
@@ -265,7 +253,7 @@
|
|
|
/>
|
|
|
|
|
|
<!-- 单指标计算保存指标 -->
|
|
|
- <saveSingleEdb
|
|
|
+ <saveSingleEdb
|
|
|
:isShow="showSingleEdbSave"
|
|
|
:singleEdbData="singleEdbData"
|
|
|
:tableData="tableData"
|
|
@@ -273,7 +261,7 @@
|
|
|
/>
|
|
|
|
|
|
<!-- 多指标计算保存指标 -->
|
|
|
- <saveMultipleEdb
|
|
|
+ <saveMultipleEdb
|
|
|
:isShow="showMultipleEdbSave"
|
|
|
:singleEdbData="singleEdbData"
|
|
|
:tableData="tableData"
|
|
@@ -281,19 +269,20 @@
|
|
|
/>
|
|
|
|
|
|
<!-- 图表设置 -->
|
|
|
- <chartSetWrap
|
|
|
+ <chartSetWrap
|
|
|
:isShow="showChartSet"
|
|
|
:chartName="chartName"
|
|
|
:chartInfo="chartInfo"
|
|
|
:tableData="tableData"
|
|
|
@close="showChartSet = false"
|
|
|
+ @success="handleChartSetChange"
|
|
|
/>
|
|
|
|
|
|
<!-- 多指标选择 -->
|
|
|
- <batchSelectEdb
|
|
|
+ <batchSelectEdb
|
|
|
ref="batchSelectEdb"
|
|
|
:isShow="showBatchSelectEdb"
|
|
|
- @close="showBatchSelectEdb=false"
|
|
|
+ @close="showBatchSelectEdb = false"
|
|
|
@success="handleBatchSelectEdbSuccess"
|
|
|
/>
|
|
|
|
|
@@ -304,7 +293,6 @@
|
|
|
source="interval_analysis"
|
|
|
:data="chartInfo"
|
|
|
/>
|
|
|
-
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -313,6 +301,7 @@ import Chart from '@/views/dataEntry_manage/components/chart';
|
|
|
import edbComputedWrap from './components/edbComputedWrap.vue';
|
|
|
import apiIntervalAnalysis from '@/api/modules/intervalAnalysis'
|
|
|
import { chartSetMixin } from '@/views/dataEntry_manage/mixins/chartPublic';
|
|
|
+import addOrEditMixn from '@/views/dataEntry_manage/mixins/addOreditMixin';
|
|
|
import edbTableSection from '@/views/chartRelevance_manage/crossVarietyAnalysis/components/edbTableSection.vue';
|
|
|
import DateChooseDia from '@/views/dataEntry_manage/components/DateChooseDia';
|
|
|
import saveChart from './components/saveChart.vue'
|
|
@@ -360,7 +349,7 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
},
|
|
|
- mixins: [chartSetMixin],
|
|
|
+ mixins: [chartSetMixin,addOrEditMixn],
|
|
|
computed: {
|
|
|
roleName() {
|
|
|
return localStorage.getItem('userName');
|
|
@@ -368,7 +357,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- chartInfo:null,
|
|
|
+ chartInfo: null,
|
|
|
|
|
|
isSlideLeft: false,
|
|
|
computedType: 0,//类型 0单指标 1多指标
|
|
@@ -376,72 +365,114 @@ export default {
|
|
|
chartName: '',
|
|
|
showSaveChart: false,//保存图
|
|
|
|
|
|
- showSingleEdbSave:false,//单指标计算保存指标
|
|
|
- singleEdbData:null,
|
|
|
+ showSingleEdbSave: false,//单指标计算保存指标
|
|
|
+ singleEdbData: null,
|
|
|
|
|
|
- showMultipleEdbSave:false,//多指标计算保存指标
|
|
|
+ showMultipleEdbSave: false,//多指标计算保存指标
|
|
|
|
|
|
- showChartSet:false,//图表设置
|
|
|
+ showChartSet: false,//图表设置
|
|
|
|
|
|
- showBatchSelectEdb:false,//显示多指标选择
|
|
|
+ showBatchSelectEdb: false,//显示多指标选择
|
|
|
|
|
|
isShowSaveOther: false,//另存为
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- handleBatchSelectEdbSuccess(e){
|
|
|
+ // 多指标选择回调
|
|
|
+ handleBatchSelectEdbSuccess(e) {
|
|
|
this.$refs.edbComputedWrap.initMultipleEdbParams(e)
|
|
|
},
|
|
|
- handleShowBatchSelectEdb(e){
|
|
|
+ // 显示选择多指标弹窗
|
|
|
+ handleShowBatchSelectEdb(e) {
|
|
|
this.$refs.batchSelectEdb.initData(e)
|
|
|
- this.showBatchSelectEdb=true
|
|
|
+ this.showBatchSelectEdb = true
|
|
|
},
|
|
|
- handleComputedTypeChange(type){
|
|
|
- if(this.$route.query.id&&type!==this.computedType){
|
|
|
+ handleComputedTypeChange(type) {
|
|
|
+ if (this.$route.query.id && type !== this.computedType) {
|
|
|
this.$message.warning('编辑状态不允许切换计算类型')
|
|
|
return
|
|
|
}
|
|
|
- this.computedType=type
|
|
|
- if(type===1&&this.$refs.edbComputedWrap.edbList.length===0){
|
|
|
- this.showBatchSelectEdb=true
|
|
|
+ this.computedType = type
|
|
|
+ if (type === 1 && this.$refs.edbComputedWrap.edbList.length === 0) {
|
|
|
+ this.showBatchSelectEdb = true
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ // 图表设置成功回调
|
|
|
+ handleChartSetChange(e) {
|
|
|
+ this.chartInfo.ChartThemeStyle = e.ChartThemeStyle
|
|
|
+ this.chartInfo.ChartThemeId=e.formData.themeId
|
|
|
+ let sourceObj=this.chartInfo.SourcesFrom?JSON.parse(this.chartInfo.SourcesFrom):''
|
|
|
+ if(sourceObj){
|
|
|
+ sourceObj={
|
|
|
+ ...sourceObj,
|
|
|
+ isShow:e.formData.showSource,
|
|
|
+ text:e.formData.source
|
|
|
+ }
|
|
|
}
|
|
|
+ this.chartInfo.SourcesFrom=JSON.stringify(sourceObj)
|
|
|
+ this.tableData = e.edbList
|
|
|
+ this.$refs.edbComputedWrap.updateEdbListData(e.edbList)
|
|
|
+ // 重新渲染图表
|
|
|
+ this.setLimitData(this.tableData)
|
|
|
+ this.setDefaultChart(this.tableData)
|
|
|
+ this.showChartSet = false
|
|
|
},
|
|
|
+
|
|
|
// 保存指标
|
|
|
- handleShowSaveEdb(){
|
|
|
- this.singleEdbData=this.$refs.edbComputedWrap.getParams()
|
|
|
- if(this.computedType===0){
|
|
|
- this.showSingleEdbSave=true
|
|
|
- }else{
|
|
|
- this.showMultipleEdbSave=true
|
|
|
+ handleShowSaveEdb() {
|
|
|
+ this.singleEdbData = this.$refs.edbComputedWrap.getParams()
|
|
|
+ if (this.computedType === 0) {
|
|
|
+ this.showSingleEdbSave = true
|
|
|
+ } else {
|
|
|
+ this.showMultipleEdbSave = true
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- handleShowChartSet(){
|
|
|
- this.showChartSet=true
|
|
|
+ handleShowChartSet() {
|
|
|
+ this.showChartSet = true
|
|
|
},
|
|
|
|
|
|
//更新图
|
|
|
- updateEdbHandle(){
|
|
|
+ updateEdbHandle() {
|
|
|
const edbParams = this.$refs.edbComputedWrap.getParams()
|
|
|
+ const {
|
|
|
+ min, max, rightMin, rightMax, rightTwoMin, rightTwoMax
|
|
|
+ } = this.chartLimit
|
|
|
const params = {
|
|
|
+ ChartInfoId: Number(this.$route.query.id),
|
|
|
ChartEdbInfoList: edbParams.ChartEdbInfoList,
|
|
|
ExtraConfig: JSON.stringify(edbParams.ExtraConfig),
|
|
|
ChartClassifyId: this.chartInfo.ChartClassifyId,
|
|
|
ChartName: this.chartName,
|
|
|
ChartType: 1,
|
|
|
DateType: this.year_select,
|
|
|
- ChartInfoId:Number(this.$route.query.id)
|
|
|
+ StartDate: [5, 6].includes(this.year_select)
|
|
|
+ ? this.select_date[0]
|
|
|
+ : '',
|
|
|
+ EndDate: this.year_select === 5 ? this.select_date[1] : '',
|
|
|
+ StartYear: this.count_year || 0,
|
|
|
+ LeftMin: min + '',
|
|
|
+ LeftMax: max + '',
|
|
|
+ RightMin: rightMin + '',
|
|
|
+ RightMax: rightMax + '',
|
|
|
+ Right2Min: rightTwoMin + '',
|
|
|
+ Right2Max: rightTwoMax + '',
|
|
|
+ MinMaxSave: Number(!this.getLimitInfo()),
|
|
|
+ ChartThemeId:this.chartInfo.ChartThemeId,
|
|
|
+ SourcesFrom:this.chartInfo.SourcesFrom
|
|
|
+
|
|
|
}
|
|
|
apiIntervalAnalysis.chartEdit(params).then(res => {
|
|
|
if (res.Ret === 200) {
|
|
|
- this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
+ this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
|
|
|
//另存为
|
|
|
- edbCommandHandle(e){
|
|
|
- this.isShowSaveOther=true
|
|
|
+ edbCommandHandle(e) {
|
|
|
+ this.isShowSaveOther = true
|
|
|
},
|
|
|
|
|
|
// 新增图
|
|
@@ -457,14 +488,14 @@ export default {
|
|
|
}
|
|
|
apiIntervalAnalysis.chartAdd(params).then(res => {
|
|
|
if (res.Ret === 200) {
|
|
|
- this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
+ this.$message.success(this.$t('MsgPrompt.saved_msg'))
|
|
|
this.showSaveChart = false
|
|
|
setTimeout(() => {
|
|
|
this.$router.replace({
|
|
|
- path:'/rangeAnalysis',
|
|
|
- query:{
|
|
|
- code:res.Data.UniqueCode,
|
|
|
- id:res.Data.ChartInfoId
|
|
|
+ path: '/rangeAnalysis',
|
|
|
+ query: {
|
|
|
+ code: res.Data.UniqueCode,
|
|
|
+ id: res.Data.ChartInfoId
|
|
|
}
|
|
|
})
|
|
|
}, 1500);
|
|
@@ -479,9 +510,9 @@ export default {
|
|
|
...edbParams,
|
|
|
DateType: this.year_select,
|
|
|
StartDate: [5, 6].includes(this.year_select)
|
|
|
- ? dateArray[0]
|
|
|
+ ? this.select_date[0]
|
|
|
: '',
|
|
|
- EndDate: this.year_select === 5 ? dateArray[1] : '',
|
|
|
+ EndDate: this.year_select === 5 ? this.select_date[1] : '',
|
|
|
StartYear: this.count_year || 0,
|
|
|
}
|
|
|
console.log(params);
|
|
@@ -498,22 +529,22 @@ export default {
|
|
|
},
|
|
|
|
|
|
initChartName(data) {
|
|
|
- const calculateTypeMap={
|
|
|
- 0:'Average()',
|
|
|
- 1:'Sum()',
|
|
|
- 2:'Growth Rate()',
|
|
|
- 3:'Annualized Growth Rate()',
|
|
|
- 4:'Max()',
|
|
|
- 5:'Min()'
|
|
|
- }
|
|
|
- let edbName=''
|
|
|
+ const calculateTypeMap = {
|
|
|
+ 0: 'Average()',
|
|
|
+ 1: 'Sum()',
|
|
|
+ 2: 'Growth Rate()',
|
|
|
+ 3: 'Annualized Growth Rate()',
|
|
|
+ 4: 'Max()',
|
|
|
+ 5: 'Min()'
|
|
|
+ }
|
|
|
+ let edbName = ''
|
|
|
if (this.computedType === 0) {//单指标计算
|
|
|
- edbName=this.$i18nt.locale==='zh'?data.EdbInfoList[0].EdbName:data.EdbInfoList[0].EdbNameEn||data.EdbInfoList[0].EdbName
|
|
|
-
|
|
|
- }else{
|
|
|
- edbName=data.DataResp.SeriesName
|
|
|
+ edbName = this.$i18nt.locale === 'zh' ? data.EdbInfoList[0].EdbName : data.EdbInfoList[0].EdbNameEn || data.EdbInfoList[0].EdbName
|
|
|
+
|
|
|
+ } else {
|
|
|
+ edbName = data.DataResp.SeriesName
|
|
|
}
|
|
|
- this.chartName=`${edbName}${calculateTypeMap[data.DataResp.CalculateType]}`
|
|
|
+ this.chartName = `${edbName}${calculateTypeMap[data.DataResp.CalculateType]}`
|
|
|
},
|
|
|
|
|
|
/* 年份改变 重新刷新图表接口 保存当前的图表配置和上下限 只改变图表 */
|
|
@@ -571,23 +602,23 @@ export default {
|
|
|
this.handleComputed();
|
|
|
},
|
|
|
|
|
|
- // 获取图表详情
|
|
|
- getChartInfo(){
|
|
|
- apiIntervalAnalysis.chartInfo({
|
|
|
+ // 获取图表详情
|
|
|
+ getChartInfo() {
|
|
|
+ apiIntervalAnalysis.chartInfo({
|
|
|
ChartInfoId: Number(this.$route.query.id)
|
|
|
- }).then(res=>{
|
|
|
- if(res.Ret===200){
|
|
|
+ }).then(res => {
|
|
|
+ if (res.Ret === 200) {
|
|
|
this.initEditData(res.Data)
|
|
|
- this.initIntervalAnalysisChartData(res.Data)
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
+ this.initIntervalAnalysisChartData(res.Data)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
// 编辑时初始化表单数据
|
|
|
- initEditData(data){
|
|
|
- const {ChartInfo,DataResp,EdbInfoList}=data
|
|
|
- this.computedType=DataResp.EdbInfoMode
|
|
|
- this.chartName=this.$i18nt.locale==='zh'?ChartInfo.ChartName:ChartInfo.ChartNameEn
|
|
|
+ initEditData(data) {
|
|
|
+ const { ChartInfo, DataResp, EdbInfoList } = data
|
|
|
+ this.computedType = DataResp.EdbInfoMode
|
|
|
+ this.chartName = this.$i18nt.locale === 'zh' ? ChartInfo.ChartName : ChartInfo.ChartNameEn
|
|
|
this.$refs.edbComputedWrap.initData(data)
|
|
|
},
|
|
|
|
|
@@ -601,9 +632,9 @@ export default {
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
- if(this.$route.query.id){
|
|
|
- this.getChartInfo()
|
|
|
- }
|
|
|
+ if (this.$route.query.id) {
|
|
|
+ this.getChartInfo()
|
|
|
+ }
|
|
|
window.addEventListener('resize', this.reloadRightWid);
|
|
|
},
|
|
|
destroyed() {
|
|
@@ -677,8 +708,8 @@ export default {
|
|
|
display: inline-block;
|
|
|
}
|
|
|
.active {
|
|
|
- color: #0052D9;
|
|
|
- border-bottom: 2px solid #0052D9;
|
|
|
+ color: #0052d9;
|
|
|
+ border-bottom: 2px solid #0052d9;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -871,14 +902,15 @@ export default {
|
|
|
.min-data-input {
|
|
|
margin-top: 230px;
|
|
|
}
|
|
|
- .year-btn,.year-btn .el-button--medium {
|
|
|
+ .year-btn,
|
|
|
+ .year-btn .el-button--medium {
|
|
|
font-size: $font-small;
|
|
|
margin-left: 5px;
|
|
|
margin-right: 5px;
|
|
|
margin-bottom: 5px;
|
|
|
padding: 6px 12px;
|
|
|
}
|
|
|
- .year-btn .el-button--medium{
|
|
|
+ .year-btn .el-button--medium {
|
|
|
margin: 0 0px;
|
|
|
}
|
|
|
.btn-sty {
|