|
@@ -17,6 +17,7 @@
|
|
|
<el-button type="primary" plain @click="$router.back()">取消</el-button>
|
|
|
</div>
|
|
|
<div class="left-min">
|
|
|
+
|
|
|
<el-form
|
|
|
ref="diaForm"
|
|
|
label-position="top"
|
|
@@ -24,7 +25,7 @@
|
|
|
:model="chartInfo"
|
|
|
:rules="chartRules"
|
|
|
>
|
|
|
- <el-form-item label="图表生成样式" prop="ChartType">
|
|
|
+ <el-form-item label="生成图表类型" prop="ChartType">
|
|
|
<el-select
|
|
|
v-model="chartInfo.ChartType"
|
|
|
placeholder="请选择生成样式"
|
|
@@ -39,6 +40,60 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="图表主题" prop="Theme">
|
|
|
+ <el-select
|
|
|
+ v-model="chartInfo.Theme"
|
|
|
+ placeholder="请选择图表主题"
|
|
|
+ style="width: 90%"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in chartThemeArr"
|
|
|
+ :key="item.key"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.key"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="">
|
|
|
+ <div class="search-cont" v-if="chartInfo.ChartType!==10">
|
|
|
+ <div>
|
|
|
+ <label>选择指标:</label>
|
|
|
+ <el-radio-group v-model="edbFromType">
|
|
|
+ <el-radio :label="0" style="margin-right: 15px">ETA指标</el-radio>
|
|
|
+ <el-radio :label="1">ETA预测指标</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </div>
|
|
|
+ <el-select
|
|
|
+ v-model="search_txt"
|
|
|
+ v-loadMore="searchLoad"
|
|
|
+ ref="searchRef"
|
|
|
+ :filterable="!search_txt"
|
|
|
+ remote
|
|
|
+ clearable
|
|
|
+ placeholder="指标ID/指标名称"
|
|
|
+ style="width:90%;margin-top: 10px;display: block;"
|
|
|
+ :remote-method="searchHandle"
|
|
|
+ @click.native="inputFocusHandle"
|
|
|
+ @change="selectTarget($event && searchOptions.find(_ => _.EdbInfoId === $event))"
|
|
|
+ >
|
|
|
+ <i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
|
+ <el-option
|
|
|
+ v-for="item in searchOptions"
|
|
|
+ :key="item.EdbInfoId"
|
|
|
+ :label="chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName"
|
|
|
+ :value="item.EdbInfoId"
|
|
|
+ >
|
|
|
+ <edbDetailPopover :info="item">
|
|
|
+ <div slot="reference">{{chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName }}</div>
|
|
|
+ </edbDetailPopover>
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
<el-form-item label="图表名称" prop="ChartName">
|
|
|
<el-input
|
|
|
v-model="chartInfo.ChartName"
|
|
@@ -82,41 +137,6 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
|
|
|
- <div class="search-cont" v-if="chartInfo.ChartType!==10">
|
|
|
- <div>
|
|
|
- <label>选择指标:</label>
|
|
|
- <el-radio-group v-model="edbFromType">
|
|
|
- <el-radio :label="0" style="margin-right: 15px">ETA指标</el-radio>
|
|
|
- <el-radio :label="1">ETA预测指标</el-radio>
|
|
|
- </el-radio-group>
|
|
|
- </div>
|
|
|
- <el-select
|
|
|
- v-model="search_txt"
|
|
|
- v-loadMore="searchLoad"
|
|
|
- ref="searchRef"
|
|
|
- :filterable="!search_txt"
|
|
|
- remote
|
|
|
- clearable
|
|
|
- placeholder="指标ID/指标名称"
|
|
|
- style="width:90%;margin-top: 10px;display: block;"
|
|
|
- :remote-method="searchHandle"
|
|
|
- @click.native="inputFocusHandle"
|
|
|
- @change="selectTarget($event && searchOptions.find(_ => _.EdbInfoId === $event))"
|
|
|
- >
|
|
|
- <i slot="prefix" class="el-input__icon el-icon-search"></i>
|
|
|
- <el-option
|
|
|
- v-for="item in searchOptions"
|
|
|
- :key="item.EdbInfoId"
|
|
|
- :label="chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName"
|
|
|
- :value="item.EdbInfoId"
|
|
|
- >
|
|
|
- <edbDetailPopover :info="item">
|
|
|
- <div slot="reference">{{chart_lang==='en'?(item.EdbNameEn||item.EdbName):item.EdbName }}</div>
|
|
|
- </edbDetailPopover>
|
|
|
- </el-option>
|
|
|
- </el-select>
|
|
|
- </div>
|
|
|
-
|
|
|
<div class="xaxis-range-cont" v-if="chartInfo.ChartType===2 && tableData && tableData.length>0">
|
|
|
<!-- 仅用于季节性图配置 -->
|
|
|
<div style="margin-bottom: 12px;" class="xaxis-range-tip">
|
|
@@ -320,7 +340,15 @@
|
|
|
@getData="getSectionScatterData"
|
|
|
@modifySeriesName="IsNameDefault = false"
|
|
|
/>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 标识区 标记线 图表说明 -->
|
|
|
+ <markersSection
|
|
|
+ v-if="tableData.length"
|
|
|
+ :chartType="chartInfo.ChartType"
|
|
|
+ />
|
|
|
</div>
|
|
|
+
|
|
|
</div>
|
|
|
<span
|
|
|
class="move-btn resize"
|
|
@@ -462,20 +490,39 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div class="chart-bottom-info">
|
|
|
+
|
|
|
+ <div class="chart-source">
|
|
|
+ <span>数据来源:{{chartInfo.SourcesFrom}}</span>
|
|
|
+ <el-switch
|
|
|
+ v-model="chartInfo.SourcesFromDisabled"
|
|
|
+ :active-value="1"
|
|
|
+ :inactive-value="0"
|
|
|
+ style="margin:0 15px;"
|
|
|
+ />
|
|
|
+ <span class="editsty">编辑</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 公历农历切换 只用于季节性图 -->
|
|
|
+ <el-radio-group
|
|
|
+ v-model="calendar_type"
|
|
|
+ class="calendar-cont"
|
|
|
+ v-if="chartInfo.ChartType === 2"
|
|
|
+ @change="getPreviewSplineInfo"
|
|
|
+ >
|
|
|
+ <el-radio-button label="公历" />
|
|
|
+ <el-radio-button label="农历" />
|
|
|
+ </el-radio-group>
|
|
|
+
|
|
|
+ <!-- 图表说明 -->
|
|
|
+ <div class="chart-instruction" v-text="chartInfo.Instructions"></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
<span class="chart-author"
|
|
|
>作者:{{ chartInfo.SysUserRealName || roleName }}</span
|
|
|
>
|
|
|
-
|
|
|
- <!-- 公历农历切换 只用于季节性图 -->
|
|
|
- <el-radio-group
|
|
|
- v-model="calendar_type"
|
|
|
- class="calendar-cont"
|
|
|
- v-if="chartInfo.ChartType === 2"
|
|
|
- @change="getPreviewSplineInfo"
|
|
|
- >
|
|
|
- <el-radio-button label="公历" />
|
|
|
- <el-radio-button label="农历" />
|
|
|
- </el-radio-group>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
@@ -492,7 +539,7 @@
|
|
|
align="center"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <div v-if="item.key === 'EdbName' && chartInfo.ChartType === 7">
|
|
|
+ <div v-if="item.key === 'EdbName' && [1,4,6].includes(chartInfo.ChartType)">
|
|
|
<!-- 奇怪柱状图用别名 -->
|
|
|
<el-input
|
|
|
v-model="scope.row.EdbAliasName"
|
|
@@ -562,8 +609,9 @@ import DateChooseDia from './components/DateChooseDia';
|
|
|
import barOption from './components/barOptionSection.vue';
|
|
|
import sectionalScatterOption from './components/sectionalScatterOption.vue';
|
|
|
import LegendEditDia from './components/LegendEditDia.vue';
|
|
|
+import markersSection from './components/markersSection.vue';
|
|
|
export default {
|
|
|
- components: { Chart,DateChooseDia,barOption,sectionalScatterOption,LegendEditDia},
|
|
|
+ components: { Chart,DateChooseDia,barOption,sectionalScatterOption,LegendEditDia,markersSection},
|
|
|
directives: {
|
|
|
drag(el, bindings) {
|
|
|
el.onmousedown = function (e) {
|
|
@@ -696,7 +744,6 @@ export default {
|
|
|
EndDate: this.year_select === 5 ? this.select_date[1] : '',
|
|
|
}
|
|
|
: typePrams
|
|
|
- // console.log(params);
|
|
|
dataBaseInterface.chartAdd(params).then(res => {
|
|
|
if(res.Ret !== 200) return;
|
|
|
this.setChartImage(res.Data);
|
|
@@ -818,7 +865,6 @@ export default {
|
|
|
overflow-y: auto;
|
|
|
.search-cont {
|
|
|
color: #606266;
|
|
|
- margin-top: 20px;
|
|
|
}
|
|
|
.xaxis-range-cont{
|
|
|
color: #606266;
|
|
@@ -994,11 +1040,6 @@ export default {
|
|
|
.highcharts-axis-title {
|
|
|
display: block;
|
|
|
}
|
|
|
- .calendar-cont {
|
|
|
- display: block;
|
|
|
- margin: 10px auto 0;
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
/* =================== */
|
|
|
.chart-show-cont {
|
|
|
min-height: 300px;
|
|
@@ -1067,6 +1108,26 @@ export default {
|
|
|
color: #666;
|
|
|
padding: 100px 0;
|
|
|
}
|
|
|
+
|
|
|
+ .chart-bottom-info {
|
|
|
+ margin-top: 10px;
|
|
|
+ display: flex;
|
|
|
+ gap: 0 20px;
|
|
|
+ .chart-source {
|
|
|
+ width: 30%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .calendar-cont {
|
|
|
+ display: block;
|
|
|
+ margin: 0 auto;
|
|
|
+ text-align: center;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .chart-instruction {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
@media screen and (min-width: 1711px){
|
|
|
.min-data-input {
|
|
|
margin-top: 310px;
|