|
@@ -27,16 +27,19 @@
|
|
|
</div>
|
|
|
<div class="left-content">
|
|
|
<div class="type-box">
|
|
|
- <span :class="['item', type == 0 ? 'active' : '']" @click="type = 0"
|
|
|
+ <span
|
|
|
+ :class="['item', computedType == 0 ? 'active' : '']"
|
|
|
+ @click="computedType = 0"
|
|
|
>单指标</span
|
|
|
>
|
|
|
- <span :class="['item', type == 1 ? 'active' : '']" @click="type = 1"
|
|
|
+ <span
|
|
|
+ :class="['item', computedType == 1 ? 'active' : '']"
|
|
|
+ @click="computedType = 1"
|
|
|
>选择多指标</span
|
|
|
>
|
|
|
</div>
|
|
|
<!-- 单指标模块 -->
|
|
|
- <singleEdbWrap ref="singleEdbWrap"/>
|
|
|
-
|
|
|
+ <singleEdbWrap ref="singleEdbWrap" />
|
|
|
</div>
|
|
|
|
|
|
<span class="move-btn resize" v-drag id="resize"></span>
|
|
@@ -47,176 +50,233 @@
|
|
|
<div class="right-wrap" id="right">
|
|
|
<div class="chart-min-cont" v-if="tableData.length">
|
|
|
<div class="cont-top">
|
|
|
- <div class="top-left">
|
|
|
- <template>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- v-for="item in yearSelector"
|
|
|
- :key="item.value"
|
|
|
- size="medium"
|
|
|
- :plain="item.value !== year_select"
|
|
|
- class="year-btn"
|
|
|
- @click.native="changeYear(item)"
|
|
|
- >{{ item.name }}</el-button
|
|
|
- >
|
|
|
- <el-button type="text" class="btn-sty" @click="openDateDia">{{
|
|
|
- dateTip
|
|
|
- }}</el-button>
|
|
|
- </template>
|
|
|
- </div>
|
|
|
- <div class="top-left">
|
|
|
- <el-button type="primary" size="medium" class="year-btn">保存指标</el-button>
|
|
|
- <el-button type="primary" size="medium" class="year-btn" @click="showSaveChart=true">保存图</el-button>
|
|
|
- <el-button type="primary" plain size="medium" class="year-btn">图表设置</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div class="top-left">
|
|
|
+ <template>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ v-for="item in yearSelector"
|
|
|
+ :key="item.value"
|
|
|
+ size="medium"
|
|
|
+ :plain="item.value !== year_select"
|
|
|
+ class="year-btn"
|
|
|
+ @click.native="changeYear(item)"
|
|
|
+ >{{ item.name }}</el-button
|
|
|
+ >
|
|
|
+ <el-button type="text" class="btn-sty" @click="openDateDia">{{
|
|
|
+ dateTip
|
|
|
+ }}</el-button>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <div class="top-left">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="medium"
|
|
|
+ class="year-btn"
|
|
|
+ @click="handleShowSaveEdb"
|
|
|
+ >保存指标</el-button
|
|
|
+ >
|
|
|
+ <el-dropdown
|
|
|
+ v-if="$route.query.id"
|
|
|
+ split-button
|
|
|
+ size="medium"
|
|
|
+ type="primary"
|
|
|
+ class="year-btn"
|
|
|
+ @click="updateEdbHandle(entryType)"
|
|
|
+ @command="edbCommandHandle"
|
|
|
+ >
|
|
|
+ {{$t('StatisticAnalysis.ChartRelevance.update_edb')}}
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item :command="{entryType,scence:'saveOther'}">{{$t('Table.save_as')}}</el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+ <el-button
|
|
|
+ v-else
|
|
|
+ type="primary"
|
|
|
+ size="medium"
|
|
|
+ class="year-btn"
|
|
|
+ @click="showSaveChart = true"
|
|
|
+ >保存图</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ size="medium"
|
|
|
+ class="year-btn"
|
|
|
+ @click="handleShowChartSet"
|
|
|
+ >图表设置</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div class="cont-bottom">
|
|
|
- <div class="chart-show-cont" v-show="options.series">
|
|
|
- <div class="chartWrapper" id="chartWrapper">
|
|
|
- <h2
|
|
|
- class="chart-title"
|
|
|
- v-if="false"
|
|
|
- v-show="chartInfo.ChartName"
|
|
|
- :style="`
|
|
|
+ <div class="chart-show-cont" v-show="options.series">
|
|
|
+ <div class="chartWrapper" id="chartWrapper">
|
|
|
+ <!-- :style="`
|
|
|
textAlign:${JSON.parse(chartInfo.ChartThemeStyle).titleOptions.align};
|
|
|
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>
|
|
|
+
|
|
|
+ <Chart :options="options" :chartInfo="chartInfo" ref="chartRef" />
|
|
|
+ <template>
|
|
|
+ <div class="range-cont left" v-if="leftIndex !== -1">
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.max"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.min"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="range-cont right" v-if="rightIndex !== -1">
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.rightMax"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.rightMin"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <!-- 右2上下限设置 -->
|
|
|
+ <div class="range-cont rightTwo" v-if="rightTwoIndex !== -1">
|
|
|
+ <el-input
|
|
|
+ style="width: 60px; display: block"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="上限"
|
|
|
+ v-model="chartLimit.rightTwoMax"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ <el-input
|
|
|
+ class="min-data-input"
|
|
|
+ size="mini"
|
|
|
+ type="number"
|
|
|
+ placeholder="下限"
|
|
|
+ v-model="chartLimit.rightTwoMin"
|
|
|
+ @change="changeLimit"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="chart-bottom-insruction-info" v-if="false">
|
|
|
+ <div class="chart-source">
|
|
|
+ <span
|
|
|
+ v-if="chartInfo.SourcesFrom"
|
|
|
+ :style="`
|
|
|
+ color: ${
|
|
|
+ JSON.parse(chartInfo.SourcesFrom).isShow
|
|
|
+ ? JSON.parse(chartInfo.SourcesFrom).color
|
|
|
+ : '#999'
|
|
|
+ };
|
|
|
+ fontSize: ${JSON.parse(chartInfo.SourcesFrom).fontSize}px;
|
|
|
`"
|
|
|
- >
|
|
|
- {{ chartInfo.ChartName }}
|
|
|
- </h2>
|
|
|
-
|
|
|
- <Chart :options="options" :chartInfo="chartInfo" ref="chartRef"/>
|
|
|
- <template>
|
|
|
- <div class="range-cont left" v-if="leftIndex !== -1">
|
|
|
- <el-input
|
|
|
- style="width: 60px; display: block"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="上限"
|
|
|
- v-model="chartLimit.max"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- <el-input
|
|
|
- class="min-data-input"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="下限"
|
|
|
- v-model="chartLimit.min"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- </div>
|
|
|
- <div class="range-cont right" v-if="rightIndex !== -1">
|
|
|
- <el-input
|
|
|
- style="width: 60px; display: block"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="上限"
|
|
|
- v-model="chartLimit.rightMax"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- <el-input
|
|
|
- class="min-data-input"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="下限"
|
|
|
- v-model="chartLimit.rightMin"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- </div>
|
|
|
- <!-- 右2上下限设置 -->
|
|
|
- <div class="range-cont rightTwo" v-if="rightTwoIndex !== -1">
|
|
|
- <el-input
|
|
|
- style="width: 60px; display: block"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="上限"
|
|
|
- v-model="chartLimit.rightTwoMax"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- <el-input
|
|
|
- class="min-data-input"
|
|
|
- size="mini"
|
|
|
- type="number"
|
|
|
- placeholder="下限"
|
|
|
- v-model="chartLimit.rightTwoMin"
|
|
|
- @change="changeLimit"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </template>
|
|
|
-
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="chart-bottom-insruction-info" v-if="false">
|
|
|
-
|
|
|
- <div class="chart-source">
|
|
|
- <span
|
|
|
- v-if="chartInfo.SourcesFrom"
|
|
|
- :style="`
|
|
|
- color: ${JSON.parse(chartInfo.SourcesFrom).isShow ? JSON.parse(chartInfo.SourcesFrom).color : '#999'};
|
|
|
- fontSize: ${ JSON.parse(chartInfo.SourcesFrom).fontSize }px;
|
|
|
- `"
|
|
|
- ><!-- 来源 -->{{$t('Chart.Detail.source')}}:{{ 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>
|
|
|
-
|
|
|
- <!-- 图表说明 -->
|
|
|
- <div
|
|
|
- class="chart-instruction"
|
|
|
- v-if="chartInfo.Instructions&&JSON.parse(chartInfo.Instructions).isShow"
|
|
|
- v-text="JSON.parse(chartInfo.Instructions).text"
|
|
|
- :style="`
|
|
|
+ ><!-- 来源 -->{{ $t("Chart.Detail.source") }}:{{
|
|
|
+ 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>
|
|
|
+
|
|
|
+ <!-- 图表说明 -->
|
|
|
+ <div
|
|
|
+ class="chart-instruction"
|
|
|
+ v-if="
|
|
|
+ chartInfo.Instructions &&
|
|
|
+ JSON.parse(chartInfo.Instructions).isShow
|
|
|
+ "
|
|
|
+ v-text="JSON.parse(chartInfo.Instructions).text"
|
|
|
+ :style="`
|
|
|
color: ${JSON.parse(chartInfo.Instructions).color};
|
|
|
- fontSize: ${ JSON.parse(chartInfo.Instructions).fontSize }px
|
|
|
+ fontSize: ${JSON.parse(chartInfo.Instructions).fontSize}px
|
|
|
`"
|
|
|
- ></div>
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- <span class="chart-author"
|
|
|
- ><!-- 作者 -->{{$t('Chart.Detail.author')}}:{{ chartInfo.SysUserRealName || roleName }}</span
|
|
|
- >
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- 关联指标 -->
|
|
|
- <edbTableSection :tableData="tableData"/>
|
|
|
- </div>
|
|
|
-
|
|
|
+ ></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <span class="chart-author"
|
|
|
+ ><!-- 作者 -->{{ $t("Chart.Detail.author") }}:{{
|
|
|
+ chartInfo.SysUserRealName || roleName
|
|
|
+ }}</span
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 关联指标 -->
|
|
|
+ <edbTableSection :tableData="tableData" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="nodata" v-else>
|
|
|
- <tableNoData :text="$t('Common.no_info_msg')"/>
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
+ <tableNoData :text="$t('Common.no_info_msg')" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
- <!-- 日期端选择弹窗 -->
|
|
|
+ <!-- 日期端选择弹窗 -->
|
|
|
<DateChooseDia
|
|
|
:isDateDia="isDateDia"
|
|
|
:dateForm="dateForm"
|
|
|
- :earliestDate="earliestDate"
|
|
|
+ :earliestDate="earliestDate"
|
|
|
@cancel="isDateDia = false"
|
|
|
@dateBack="dataChangeBack"
|
|
|
/>
|
|
|
|
|
|
- <!-- 保存图表 -->
|
|
|
- <saveChart
|
|
|
- :isShow="showSaveChart"
|
|
|
- :edbType="type"
|
|
|
+ <!-- 保存图表 -->
|
|
|
+ <saveChart
|
|
|
+ :isShow="showSaveChart"
|
|
|
+ :computedType="computedType"
|
|
|
+ :chartName="chartName"
|
|
|
+ @saveChart="handleSaveChart"
|
|
|
+ @close="showSaveChart = false"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 单指标计算保存指标 -->
|
|
|
+ <saveSingleEdb
|
|
|
+ :isShow="showSingleEdbSave"
|
|
|
+ :singleEdbData="intervalAnalysisChartData"
|
|
|
+ :tableData="tableData"
|
|
|
+ @close="showSingleEdbSave = false"
|
|
|
+ />
|
|
|
|
|
|
- @saveChart="handleSaveChart"
|
|
|
- @close="showSaveChart=false"
|
|
|
- />
|
|
|
+ <!-- 图表设置 -->
|
|
|
+ <chartSetWrap
|
|
|
+ :isShow="showChartSet"
|
|
|
+ :chartName="chartName"
|
|
|
+ :chartInfo="chartInfo"
|
|
|
+ :tableData="tableData"
|
|
|
+ @close="showChartSet = false"
|
|
|
+ />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -228,14 +288,18 @@ import { chartSetMixin } from '@/views/dataEntry_manage/mixins/chartPublic';
|
|
|
import edbTableSection from '@/views/chartRelevance_manage/crossVarietyAnalysis/components/edbTableSection.vue';
|
|
|
import DateChooseDia from '@/views/dataEntry_manage/components/DateChooseDia';
|
|
|
import saveChart from './components/saveChart.vue'
|
|
|
+import saveSingleEdb from './components/saveSingleEdb.vue';
|
|
|
+import chartSetWrap from './components/chartSetWrap.vue'
|
|
|
export default {
|
|
|
- components:{
|
|
|
- singleEdbWrap,
|
|
|
- Chart,
|
|
|
- edbTableSection,
|
|
|
- DateChooseDia,
|
|
|
- saveChart
|
|
|
- },
|
|
|
+ components: {
|
|
|
+ singleEdbWrap,
|
|
|
+ Chart,
|
|
|
+ edbTableSection,
|
|
|
+ DateChooseDia,
|
|
|
+ saveChart,
|
|
|
+ saveSingleEdb,
|
|
|
+ chartSetWrap
|
|
|
+ },
|
|
|
directives: {
|
|
|
drag(el, bindings) {
|
|
|
el.onmousedown = function (e) {
|
|
@@ -262,135 +326,179 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
},
|
|
|
- mixins: [ chartSetMixin ],
|
|
|
- computed:{
|
|
|
- roleName() {
|
|
|
- return localStorage.getItem('userName');
|
|
|
- },
|
|
|
- },
|
|
|
+ mixins: [chartSetMixin],
|
|
|
+ computed: {
|
|
|
+ roleName() {
|
|
|
+ return localStorage.getItem('userName');
|
|
|
+ },
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
+ chartInfo:null,
|
|
|
+
|
|
|
isSlideLeft: false,
|
|
|
- type: 0,//类型 0单指标 1多指标
|
|
|
+ computedType: 0,//类型 0单指标 1多指标
|
|
|
|
|
|
+ chartName: '',
|
|
|
+ showSaveChart: false,//保存图
|
|
|
|
|
|
- showSaveChart:false,//保存图
|
|
|
+ showSingleEdbSave:false,//单指标计算保存指标
|
|
|
+ singleEdbData:null,
|
|
|
|
|
|
+ showChartSet:false,//图表设置
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- // 保存图
|
|
|
- handleSaveChart(e){
|
|
|
- console.log(e);
|
|
|
- const edbParams=this.$refs.singleEdbWrap.getParams()
|
|
|
- const params={
|
|
|
- ChartEdbInfoList:edbParams.ChartEdbInfoList,
|
|
|
- ExtraConfig:JSON.stringify(edbParams.ExtraConfig),
|
|
|
- ChartClassifyId:e.classify,
|
|
|
- ChartName:e.name,
|
|
|
- ChartType:1,
|
|
|
- DateType:this.year_select,
|
|
|
- }
|
|
|
- apiIntervalAnalysis.chartAdd(params).then(res=>{
|
|
|
- if(res.Ret===200){
|
|
|
- this.showSaveChart=false
|
|
|
- // {
|
|
|
- // "Ret": 200,
|
|
|
- // "Msg": "保存成功",
|
|
|
- // "ErrMsg": "",
|
|
|
- // "ErrCode": "",
|
|
|
- // "Data": {
|
|
|
- // "ChartInfoId": 2581,
|
|
|
- // "UniqueCode": "96984be7b1681a6f9f5aa762191c3ed6",
|
|
|
- // "ChartType": 9,
|
|
|
- // "ClassifyId": 0
|
|
|
- // },
|
|
|
- // "Success": true
|
|
|
- // }
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
+ // 保存指标
|
|
|
+ handleShowSaveEdb(){
|
|
|
+ if(this.computedType===0){
|
|
|
+ this.singleEdbData=this.$refs.singleEdbWrap.getParams()
|
|
|
+ this.showSingleEdbSave=true
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ handleShowChartSet(){
|
|
|
+ this.showChartSet=true
|
|
|
+ },
|
|
|
+
|
|
|
+ // 保存图
|
|
|
+ handleSaveChart(e) {
|
|
|
+ console.log(e);
|
|
|
+ const edbParams = this.$refs.singleEdbWrap.getParams()
|
|
|
+ const params = {
|
|
|
+ ChartEdbInfoList: edbParams.ChartEdbInfoList,
|
|
|
+ ExtraConfig: JSON.stringify(edbParams.ExtraConfig),
|
|
|
+ ChartClassifyId: e.classify,
|
|
|
+ ChartName: e.name,
|
|
|
+ ChartType: 1,
|
|
|
+ DateType: this.year_select,
|
|
|
+ }
|
|
|
+ apiIntervalAnalysis.chartAdd(params).then(res => {
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ this.$message.success('MsgPrompt.saved_msg')
|
|
|
+ this.showSaveChart = false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
//计算绘图
|
|
|
- async handleComputed(){
|
|
|
-
|
|
|
- const edbParams=this.$refs.singleEdbWrap.getParams()
|
|
|
- const params={
|
|
|
- ...edbParams,
|
|
|
- DateType: this.year_select,
|
|
|
- StartDate: [5 , 6].includes(this.year_select)
|
|
|
- ? dateArray[0]
|
|
|
- : '',
|
|
|
- EndDate: this.year_select === 5 ? dateArray[1]: '',
|
|
|
- StartYear:this.count_year || 0,
|
|
|
- }
|
|
|
+ async handleComputed() {
|
|
|
+
|
|
|
+ const edbParams = this.$refs.singleEdbWrap.getParams()
|
|
|
+ const params = {
|
|
|
+ ...edbParams,
|
|
|
+ DateType: this.year_select,
|
|
|
+ StartDate: [5, 6].includes(this.year_select)
|
|
|
+ ? dateArray[0]
|
|
|
+ : '',
|
|
|
+ EndDate: this.year_select === 5 ? dateArray[1] : '',
|
|
|
+ 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('请选择指标')
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- const res=await apiIntervalAnalysis.chartPreview(params)
|
|
|
- if(res.Ret===200){
|
|
|
+ const res = await apiIntervalAnalysis.chartPreview(params)
|
|
|
+ if (res.Ret === 200) {
|
|
|
+ this.initChartName(res.Data)
|
|
|
this.initIntervalAnalysisChartData(res.Data)
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- /* 年份改变 重新刷新图表接口 保存当前的图表配置和上下限 只改变图表 */
|
|
|
- changeYear(item) {
|
|
|
- this.year_select = item.value;
|
|
|
- this.select_date = '';
|
|
|
- this.dateTip =/* '请选择时间段' */ this.$t('Chart.choose_time');
|
|
|
+ initChartName(data) {
|
|
|
+ if (this.computedType === 0) {//单指标计算
|
|
|
+ const calculateTypeMap={
|
|
|
+ 0:'Average()',
|
|
|
+ 1:'Sum()',
|
|
|
+ 2:'Growth Rate()',
|
|
|
+ 3:'Annualized Growth Rate()',
|
|
|
+ 4:'Max()',
|
|
|
+ 5:'Min()'
|
|
|
+ }
|
|
|
+ const edbName=this.$i18nt.locale==='zh'?data.EdbInfoList[0].EdbName:data.EdbInfoList[0].EdbNameEn||data.EdbInfoList[0].EdbName
|
|
|
+ this.chartName=`${edbName}${calculateTypeMap[data.DataResp.CalculateType]}`
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 年份改变 重新刷新图表接口 保存当前的图表配置和上下限 只改变图表 */
|
|
|
+ changeYear(item) {
|
|
|
+ this.year_select = item.value;
|
|
|
+ this.select_date = '';
|
|
|
+ this.dateTip =/* '请选择时间段' */ this.$t('Chart.choose_time');
|
|
|
|
|
|
- this.handleComputed();
|
|
|
- },
|
|
|
+ this.handleComputed();
|
|
|
+ },
|
|
|
|
|
|
- /* 打开时间段弹窗 */
|
|
|
- openDateDia() {
|
|
|
- // 自定义时间段回显
|
|
|
- let selectDateStart = this.chartInfo.ChartType === 2?this.season_year[0]:this.select_date[0]
|
|
|
- let selectDateEnd = this.chartInfo.ChartType === 2?this.season_year[1]:this.select_date[1]
|
|
|
-
|
|
|
- this.dateForm = {
|
|
|
- date_type: this.year_select,
|
|
|
- start_date:
|
|
|
- this.year_select === 5 || this.year_select === 6
|
|
|
- ? selectDateStart
|
|
|
- : '',
|
|
|
- end_date: this.year_select === 5 ? selectDateEnd : '',
|
|
|
- count_year: this.year_select === 20 ? this.count_year : ''
|
|
|
- };
|
|
|
- this.isDateDia = true;
|
|
|
- },
|
|
|
- /* 保存完自定义日期 刷新数据 保存当前的图表配置和上下限 只改变图表*/
|
|
|
- dataChangeBack(data) {
|
|
|
- this.year_select = data.dateType;
|
|
|
- this.isDateDia = false;
|
|
|
+ /* 打开时间段弹窗 */
|
|
|
+ openDateDia() {
|
|
|
+ // 自定义时间段回显
|
|
|
+ let selectDateStart = this.chartInfo.ChartType === 2 ? this.season_year[0] : this.select_date[0]
|
|
|
+ let selectDateEnd = this.chartInfo.ChartType === 2 ? this.season_year[1] : this.select_date[1]
|
|
|
+
|
|
|
+ this.dateForm = {
|
|
|
+ date_type: this.year_select,
|
|
|
+ start_date:
|
|
|
+ this.year_select === 5 || this.year_select === 6
|
|
|
+ ? selectDateStart
|
|
|
+ : '',
|
|
|
+ end_date: this.year_select === 5 ? selectDateEnd : '',
|
|
|
+ count_year: this.year_select === 20 ? this.count_year : ''
|
|
|
+ };
|
|
|
+ this.isDateDia = true;
|
|
|
+ },
|
|
|
+ /* 保存完自定义日期 刷新数据 保存当前的图表配置和上下限 只改变图表*/
|
|
|
+ dataChangeBack(data) {
|
|
|
+ this.year_select = data.dateType;
|
|
|
+ this.isDateDia = false;
|
|
|
this.count_year = data.count_year
|
|
|
|
|
|
- let dateStart = data.start_date
|
|
|
- let dateEnd = data.end_date
|
|
|
- let latestYear = parseInt(this.latestDate.substring(0,4))
|
|
|
- if(data.dateType==20){
|
|
|
- dateStart = `${latestYear-data.count_year+1}-01-01`
|
|
|
- dateEnd = `${latestYear}-12-31`
|
|
|
- }
|
|
|
+ let dateStart = data.start_date
|
|
|
+ let dateEnd = data.end_date
|
|
|
+ let latestYear = parseInt(this.latestDate.substring(0, 4))
|
|
|
+ if (data.dateType == 20) {
|
|
|
+ dateStart = `${latestYear - data.count_year + 1}-01-01`
|
|
|
+ dateEnd = `${latestYear}-12-31`
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- // 因为原本季节性图不支持 DateType为5和6的 所以季节性也将StartDate和EndDate传过去
|
|
|
- this.select_date = [dateStart, dateEnd];
|
|
|
+ // 因为原本季节性图不支持 DateType为5和6的 所以季节性也将StartDate和EndDate传过去
|
|
|
+ this.select_date = [dateStart, dateEnd];
|
|
|
|
|
|
- if(data.dateType==20){
|
|
|
- this.dateTip = /* `最近${data.count_year}年` */ this.$t('Chart.date_tip_count',{year:data.count_year})
|
|
|
- }else if (data.dateType === 5) {
|
|
|
- this.dateTip = `${data.start_date}~${data.end_date}`;
|
|
|
- } else {
|
|
|
- this.dateTip = /* `${data.start_date}~至今` */ this.$t('Chart.data_tip_since',{date:data.start_date});
|
|
|
- }
|
|
|
+ if (data.dateType == 20) {
|
|
|
+ this.dateTip = /* `最近${data.count_year}年` */ this.$t('Chart.date_tip_count', { year: data.count_year })
|
|
|
+ } else if (data.dateType === 5) {
|
|
|
+ this.dateTip = `${data.start_date}~${data.end_date}`;
|
|
|
+ } else {
|
|
|
+ this.dateTip = /* `${data.start_date}~至今` */ this.$t('Chart.data_tip_since', { date: data.start_date });
|
|
|
+ }
|
|
|
|
|
|
- this.handleComputed();
|
|
|
+ this.handleComputed();
|
|
|
+ },
|
|
|
+
|
|
|
+ // 获取图表详情
|
|
|
+ getChartInfo(){
|
|
|
+ apiIntervalAnalysis.chartInfo({
|
|
|
+ ChartInfoId: Number(this.$route.query.id)
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret===200){
|
|
|
+ this.initEditData(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
|
|
|
+ if(DataResp.EdbInfoMode===0){
|
|
|
+ this.$refs.singleEdbWrap.initData(data)
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
|
|
|
reloadRightWid() {
|
|
|
let total_wid = $('#box')[0].offsetWidth;
|
|
@@ -401,6 +509,9 @@ export default {
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
+ if(this.$route.query.id){
|
|
|
+ this.getChartInfo()
|
|
|
+ }
|
|
|
window.addEventListener('resize', this.reloadRightWid);
|
|
|
},
|
|
|
destroyed() {
|
|
@@ -474,14 +585,14 @@ export default {
|
|
|
display: inline-block;
|
|
|
}
|
|
|
.active {
|
|
|
- color: #409eff;
|
|
|
- border-bottom: 2px solid #409eff;
|
|
|
+ color: #0052D9;
|
|
|
+ border-bottom: 2px solid #0052D9;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
.right-wrap {
|
|
|
- $font-small: 12px;
|
|
|
+ $font-small: 12px;
|
|
|
$font-normal: 14px;
|
|
|
flex: 1;
|
|
|
background: #fff;
|
|
@@ -494,199 +605,199 @@ export default {
|
|
|
.mx-datepicker {
|
|
|
width: 220px !important;
|
|
|
}
|
|
|
- /* =================== */
|
|
|
- .chart-min-cont {
|
|
|
- background: #fff;
|
|
|
- border: 1px solid #ececec;
|
|
|
- height: calc(100vh - 118px);
|
|
|
- overflow: auto;
|
|
|
- /* overflow: hidden; */
|
|
|
- border-radius: 4px;
|
|
|
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
|
|
|
- .cont-top {
|
|
|
- padding: 12px 30px;
|
|
|
- border-bottom: 1px solid #ececec;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
- box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
|
|
|
- .top-left {
|
|
|
- .year-btn {
|
|
|
- margin-right: 5px;
|
|
|
- margin-bottom: 5px;
|
|
|
- }
|
|
|
- .btn-sty {
|
|
|
- border: 1px solid #409eff;
|
|
|
- }
|
|
|
- .date-setting{
|
|
|
- border: 1px solid #DCDFE6;
|
|
|
- border-radius: 4px;
|
|
|
- cursor: pointer;
|
|
|
- color: #333333;
|
|
|
- line-height: 16px;
|
|
|
- }
|
|
|
- }
|
|
|
- .top-right {
|
|
|
- font-size: 16px;
|
|
|
- .join_txt {
|
|
|
- color: #409eff;
|
|
|
- cursor: pointer;
|
|
|
- &:hover {
|
|
|
- text-decoration: underline;
|
|
|
- }
|
|
|
- }
|
|
|
- .collected {
|
|
|
- color: #f00;
|
|
|
- cursor: pointer;
|
|
|
- &:hover {
|
|
|
- text-decoration: underline;
|
|
|
- }
|
|
|
- }
|
|
|
- .span-item {
|
|
|
- color: #409eff;
|
|
|
- cursor: pointer;
|
|
|
- &:hover {
|
|
|
- text-decoration: underline;
|
|
|
- }
|
|
|
- .el-icon-collection,
|
|
|
- .el-icon-document-copy {
|
|
|
- color: #409eff;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .cont-bottom {
|
|
|
- padding: 20px 30px;
|
|
|
- /* height: calc(100vh - 250px);
|
|
|
+ /* =================== */
|
|
|
+ .chart-min-cont {
|
|
|
+ background: #fff;
|
|
|
+ border: 1px solid #ececec;
|
|
|
+ height: calc(100vh - 118px);
|
|
|
+ overflow: auto;
|
|
|
+ /* overflow: hidden; */
|
|
|
+ border-radius: 4px;
|
|
|
+ box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
|
|
|
+ .cont-top {
|
|
|
+ padding: 12px 30px;
|
|
|
+ border-bottom: 1px solid #ececec;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
|
|
|
+ .top-left {
|
|
|
+ .year-btn {
|
|
|
+ margin-right: 5px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+ .btn-sty {
|
|
|
+ border: 1px solid #409eff;
|
|
|
+ }
|
|
|
+ .date-setting {
|
|
|
+ border: 1px solid #dcdfe6;
|
|
|
+ border-radius: 4px;
|
|
|
+ cursor: pointer;
|
|
|
+ color: #333333;
|
|
|
+ line-height: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .top-right {
|
|
|
+ font-size: 16px;
|
|
|
+ .join_txt {
|
|
|
+ color: #409eff;
|
|
|
+ cursor: pointer;
|
|
|
+ &:hover {
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .collected {
|
|
|
+ color: #f00;
|
|
|
+ cursor: pointer;
|
|
|
+ &:hover {
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .span-item {
|
|
|
+ color: #409eff;
|
|
|
+ cursor: pointer;
|
|
|
+ &:hover {
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ .el-icon-collection,
|
|
|
+ .el-icon-document-copy {
|
|
|
+ color: #409eff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .cont-bottom {
|
|
|
+ padding: 20px 30px;
|
|
|
+ /* height: calc(100vh - 250px);
|
|
|
overflow: auto; */
|
|
|
- .el-input__inner {
|
|
|
- height: 27px;
|
|
|
- line-height: 27px;
|
|
|
- padding: 0 4px;
|
|
|
- }
|
|
|
- .el-input-number .el-input__inner {
|
|
|
- padding: 0 34px 0 4px;
|
|
|
- }
|
|
|
- .highcharts-range-selector-group {
|
|
|
- display: none;
|
|
|
- .highcharts-input-group {
|
|
|
- display: none;
|
|
|
- }
|
|
|
- }
|
|
|
- .highcharts-axis-title {
|
|
|
- display: block;
|
|
|
- }
|
|
|
- /* =================== */
|
|
|
- .chart-show-cont {
|
|
|
- min-height: 300px;
|
|
|
- padding: 0 150px 60px 120px;
|
|
|
- position: relative;
|
|
|
- .chart-title {
|
|
|
- font-size: 16px;
|
|
|
- font-weight: normal;
|
|
|
- text-align: center;
|
|
|
- margin-bottom: 10px;
|
|
|
- }
|
|
|
- .chart-author {
|
|
|
- font-size: 14px;
|
|
|
- color: #333;
|
|
|
- position: absolute;
|
|
|
- bottom: 20px;
|
|
|
- right: 50px;
|
|
|
- }
|
|
|
- .chartWrapper {
|
|
|
- position: relative;
|
|
|
- .range-cont {
|
|
|
- position: absolute;
|
|
|
- top: 15%;
|
|
|
- .min-data-input {
|
|
|
- width: 60px;
|
|
|
- display: block;
|
|
|
- }
|
|
|
- &.left {
|
|
|
- left: -80px;
|
|
|
- }
|
|
|
- &.right {
|
|
|
- right: -65px;
|
|
|
- }
|
|
|
- &.rightTwo {
|
|
|
- right: -130px;
|
|
|
- }
|
|
|
- &.bottom {
|
|
|
- width: 100%;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- top: auto;
|
|
|
- right: 0;
|
|
|
- bottom: -2%;
|
|
|
- .left {
|
|
|
- width: 60px;
|
|
|
- display: block;
|
|
|
- flex-shrink: 0;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .options-cont {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- justify-content: space-between;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
+ .el-input__inner {
|
|
|
+ height: 27px;
|
|
|
+ line-height: 27px;
|
|
|
+ padding: 0 4px;
|
|
|
+ }
|
|
|
+ .el-input-number .el-input__inner {
|
|
|
+ padding: 0 34px 0 4px;
|
|
|
+ }
|
|
|
+ .highcharts-range-selector-group {
|
|
|
+ display: none;
|
|
|
+ .highcharts-input-group {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .highcharts-axis-title {
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ /* =================== */
|
|
|
+ .chart-show-cont {
|
|
|
+ min-height: 300px;
|
|
|
+ padding: 0 150px 60px 120px;
|
|
|
+ position: relative;
|
|
|
+ .chart-title {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: normal;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .chart-author {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #333;
|
|
|
+ position: absolute;
|
|
|
+ bottom: 20px;
|
|
|
+ right: 50px;
|
|
|
+ }
|
|
|
+ .chartWrapper {
|
|
|
+ position: relative;
|
|
|
+ .range-cont {
|
|
|
+ position: absolute;
|
|
|
+ top: 15%;
|
|
|
+ .min-data-input {
|
|
|
+ width: 60px;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ &.left {
|
|
|
+ left: -80px;
|
|
|
+ }
|
|
|
+ &.right {
|
|
|
+ right: -65px;
|
|
|
+ }
|
|
|
+ &.rightTwo {
|
|
|
+ right: -130px;
|
|
|
+ }
|
|
|
+ &.bottom {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ top: auto;
|
|
|
+ right: 0;
|
|
|
+ bottom: -2%;
|
|
|
+ .left {
|
|
|
+ width: 60px;
|
|
|
+ display: block;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .options-cont {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.nodata {
|
|
|
height: calc(100vh - 120px);
|
|
|
- background-color: #fff;
|
|
|
+ background-color: #fff;
|
|
|
text-align: center;
|
|
|
font-size: 16px;
|
|
|
color: #666;
|
|
|
- padding: 100px 0;
|
|
|
+ padding: 100px 0;
|
|
|
}
|
|
|
-
|
|
|
- @media screen and (min-width: 1711px){
|
|
|
- .min-data-input {
|
|
|
- margin-top: 310px;
|
|
|
- }
|
|
|
- .btn-sty {
|
|
|
- padding: 10px;
|
|
|
- }
|
|
|
- .year-btn,.btn-sty {
|
|
|
- font-size: $font-normal;
|
|
|
- }
|
|
|
- .date-setting{
|
|
|
- width: 210px;
|
|
|
- height: 40px;
|
|
|
- padding: 12px;
|
|
|
- font-size: $font-normal;
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- @media screen and (max-width: 1710px){
|
|
|
- .min-data-input {
|
|
|
- margin-top: 230px;
|
|
|
- }
|
|
|
- .year-btn {
|
|
|
- font-size: $font-small;
|
|
|
- margin-left: 5px;
|
|
|
- margin-right: 5px;
|
|
|
- margin-bottom: 5px;
|
|
|
- padding: 6px 12px;
|
|
|
- }
|
|
|
- .btn-sty {
|
|
|
- font-size: $font-small;
|
|
|
- margin-left: 5px;
|
|
|
- padding: 6px;
|
|
|
- border: 1px solid #409eff;
|
|
|
- }
|
|
|
- .date-setting{
|
|
|
- width: 180px;
|
|
|
- height: 36px;
|
|
|
- padding: 10px;
|
|
|
- font-size: $font-small;
|
|
|
- }
|
|
|
- }
|
|
|
+ @media screen and (min-width: 1711px) {
|
|
|
+ .min-data-input {
|
|
|
+ margin-top: 310px;
|
|
|
+ }
|
|
|
+ .btn-sty {
|
|
|
+ padding: 10px;
|
|
|
+ }
|
|
|
+ .year-btn,
|
|
|
+ .btn-sty {
|
|
|
+ font-size: $font-normal;
|
|
|
+ }
|
|
|
+ .date-setting {
|
|
|
+ width: 210px;
|
|
|
+ height: 40px;
|
|
|
+ padding: 12px;
|
|
|
+ font-size: $font-normal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @media screen and (max-width: 1710px) {
|
|
|
+ .min-data-input {
|
|
|
+ margin-top: 230px;
|
|
|
+ }
|
|
|
+ .year-btn {
|
|
|
+ font-size: $font-small;
|
|
|
+ margin-left: 5px;
|
|
|
+ margin-right: 5px;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ padding: 6px 12px;
|
|
|
+ }
|
|
|
+ .btn-sty {
|
|
|
+ font-size: $font-small;
|
|
|
+ margin-left: 5px;
|
|
|
+ padding: 6px;
|
|
|
+ border: 1px solid #409eff;
|
|
|
+ }
|
|
|
+ .date-setting {
|
|
|
+ width: 180px;
|
|
|
+ height: 36px;
|
|
|
+ padding: 10px;
|
|
|
+ font-size: $font-small;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|