|
@@ -455,10 +455,11 @@ async function handleSwitchChart(type){
|
|
|
item=index===chartSortListData.value.length-1?chartSortListData.value[0]:chartSortListData.value[index+1]
|
|
|
}
|
|
|
//切换前重置chartState
|
|
|
- initChartState(item)
|
|
|
+
|
|
|
routeQueryData.id=item.ChartInfoId
|
|
|
routeQueryData.chartType=item.ChartType
|
|
|
routeQueryData.chartClassifyId=item.ChartClassifyId
|
|
|
+ initChartState({...item,...routeQueryData})
|
|
|
getChartDetail('init')
|
|
|
}
|
|
|
function initChartState(data){
|
|
@@ -502,7 +503,9 @@ function initChartState(data){
|
|
|
class="time-box"
|
|
|
v-if="sameOptionType.includes(chartInfo.ChartType)||chartInfo.ChartType===2"
|
|
|
@click="chartState.showTimePop=true"
|
|
|
- >{{chartState.startTime?chartState.startTime+'~'+chartState.endTime:'请选择时间段'}}</span>
|
|
|
+ >
|
|
|
+ {{chartState.startTime?`${chartState.startTime} ~ ${chartState.endTime||'至今'}`:'请选择时间段'}}
|
|
|
+ </span>
|
|
|
</div>
|
|
|
<div class="right-action-box">
|
|
|
<div class="item" @click="showMoreAction=true" >
|
|
@@ -1149,7 +1152,7 @@ function initChartState(data){
|
|
|
margin-bottom: 14px;
|
|
|
}
|
|
|
.list-box{
|
|
|
- border: 1px solid $border-color;
|
|
|
+ //border: 1px solid $border-color;
|
|
|
.list-item{
|
|
|
padding: 18px;
|
|
|
}
|