|
@@ -338,7 +338,7 @@
|
|
|
`"
|
|
|
>数据来源:{{JSON.parse(chartInfo.SourcesFrom).text}}</span>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<!-- 公历农历切换 只用于季节性图 -->
|
|
|
<el-radio-group
|
|
|
v-if="chartInfo.ChartType === 2 && !chartInfo.WarnMsg"
|
|
@@ -360,6 +360,7 @@
|
|
|
fontSize: ${ JSON.parse(chartInfo.Instructions).fontSize }px
|
|
|
`"
|
|
|
></div>
|
|
|
+ <div class="chart-author">作者:{{chartInfo.SysUserRealName}}</div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -374,16 +375,16 @@
|
|
|
border
|
|
|
>
|
|
|
<!-- 可配置展开 只用于默认图 季节性隐藏-->
|
|
|
- <el-table-column type="expand" v-if="sameOptionType.includes(chartInfo.ChartType) && chartInfo.ChartType!==5 && chartInfo.Source===1">
|
|
|
+ <!-- <el-table-column type="expand" v-if="sameOptionType.includes(chartInfo.ChartType) && chartInfo.ChartType!==5 && chartInfo.Source===1">
|
|
|
<template slot-scope="props">
|
|
|
<div class="options-cont">
|
|
|
- <!-- 堆叠图 或组合图中的堆叠类型 非第一项隐藏配置 -->
|
|
|
+ //堆叠图 或组合图中的堆叠类型 非第一项隐藏配置
|
|
|
<template v-if="showYOptionsHandle(props.row,props.$index)">
|
|
|
<el-checkbox v-model="props.row.IsOrder">逆序</el-checkbox>
|
|
|
<el-radio-group v-model="props.row.IsAxis" size="mini">
|
|
|
<el-radio-button :label="1">左轴</el-radio-button>
|
|
|
<el-radio-button :label="0">右轴</el-radio-button>
|
|
|
- <!-- 指标有右轴时才可以选右2轴 不然没有右2这个概念的意义 -->
|
|
|
+ //指标有右轴时才可以选右2轴 不然没有右2这个概念的意义
|
|
|
<el-radio-button
|
|
|
v-if="[1,6].includes(chartInfo.ChartType)"
|
|
|
:label="2"
|
|
@@ -491,7 +492,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column
|
|
|
v-for="item in tableColums"
|
|
|
:key="item.label"
|
|
@@ -517,7 +518,6 @@
|
|
|
label="操作"
|
|
|
key="Copy"
|
|
|
align="center"
|
|
|
- v-if="[2,5,7].includes(chartInfo.ChartType)"
|
|
|
width="110"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
@@ -1605,7 +1605,7 @@ export default {
|
|
|
.chart-author {
|
|
|
color: #333;
|
|
|
position: absolute;
|
|
|
- bottom: 20px;
|
|
|
+ bottom: 10px;
|
|
|
right: 38px;
|
|
|
}
|
|
|
.chartWrapper {
|