|
@@ -108,9 +108,9 @@
|
|
|
横坐标显示范围
|
|
|
<el-tooltip>
|
|
|
<div slot="content">
|
|
|
- <p class="hint-message">该配置项用于横坐标显示时间刻度</p>
|
|
|
- <p class="hint-message">1、若开始日期<结束日期,则默认不跨年,允许勾选跨年</p>
|
|
|
- <p class="hint-message">2、若开始日期 ≥ 结束日期,则跨年,不允许取消勾选</p>
|
|
|
+ <p class="hint-message">配置横坐标显示的时间刻度</p>
|
|
|
+ <p class="hint-message">1、若开始日期小于结束日期,则默认不跨年,允许勾选跨年</p>
|
|
|
+ <p class="hint-message">2、若开始日期大于等于结束日期,则跨年,不允许取消勾选</p>
|
|
|
</div>
|
|
|
<img src="~@/assets/img/icons/question_mark_black.png" style="height: 16px;cursor: pointer;margin-left: 6px;" />
|
|
|
</el-tooltip>
|
|
@@ -121,9 +121,11 @@
|
|
|
type="daterange"
|
|
|
value-format="MM-dd"
|
|
|
format="MM-dd"
|
|
|
+ popper-class="x-range-picker-date"
|
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
|
@change="xAxisRangeChange"
|
|
|
+ :clearable="false"
|
|
|
></el-date-picker>
|
|
|
<el-checkbox label="跨年" v-model="isSpanYear" :disabled="isSpanYearDisable"
|
|
|
style="margin-top: 12px;" @change="changeIsSpanYear"></el-checkbox>
|
|
@@ -622,6 +624,12 @@ export default {
|
|
|
|
|
|
if(this.chartInfo.ChartType === 10 && !this.$refs.SectionScatterOptRef.seriesArr[0].edbs) return this.$message.warning('请添加系列指标');
|
|
|
|
|
|
+ if(this.chartInfo.ChartType === 2){
|
|
|
+ if(this.SeasonExtraConfig.XStartDate || this.SeasonExtraConfig.XEndDate){
|
|
|
+ return this.$message.warning('横坐标显示范围不能为空');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
let db_arr = this.tableData.map(item => ({
|
|
|
ChartColor: item.ChartColor,
|
|
|
PredictChartColor: item.PredictChartColor,
|
|
@@ -1080,4 +1088,8 @@ export default {
|
|
|
.edb-item-style .el-input__icon {
|
|
|
line-height: 27px;
|
|
|
}
|
|
|
+/*他不要下拉选择框 QAQ */
|
|
|
+.x-range-picker-date {
|
|
|
+ display: none;
|
|
|
+}
|
|
|
</style>
|