|
@@ -563,7 +563,7 @@
|
|
|
align="center"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <div v-if="item.key === 'EdbName' && [1,4,6,7].includes(chartInfo.ChartType)">
|
|
|
+ <div v-if="item.key === 'EdbName' && [1,4,6,7,11].includes(chartInfo.ChartType)">
|
|
|
<!-- 奇怪柱状图用别名 -->
|
|
|
<el-input
|
|
|
v-model="scope.row.EdbAliasName"
|
|
@@ -682,9 +682,12 @@ export default {
|
|
|
tableData: {
|
|
|
handler(newval, oldval) {
|
|
|
if(newval) {
|
|
|
- if([7,10].includes(this.chartInfo.ChartType)) {
|
|
|
+ if([7,10,11].includes(this.chartInfo.ChartType)) {
|
|
|
// 奇怪柱形图
|
|
|
this.chartInfo.ChartType === 7 && this.barDateList.length && this.$refs.BarOptRef && this.$refs.BarOptRef.getBarData();
|
|
|
+
|
|
|
+ //雷达图
|
|
|
+ this.chartInfo.ChartType === 11 && this.$refs.BarOptRef && this.$refs.BarOptRef.getBarData();
|
|
|
}else {
|
|
|
this.setAddChartDefault();
|
|
|
newval.length && !this.chartInfo.WarnMsg && this.setChartOptionHandle(newval);
|