|
@@ -22,6 +22,12 @@ const cachedViewsStore=useCachedViewsStore()
|
|
|
const route=useRoute()
|
|
|
const router=useRouter()
|
|
|
|
|
|
+let routeQueryData=reactive({
|
|
|
+ chartType:route.query.chartType,
|
|
|
+ id:route.query.id,
|
|
|
+ chartClassifyId:route.query.chartClassifyId,
|
|
|
+})
|
|
|
+
|
|
|
//获取图详情
|
|
|
let chartInfoData=null
|
|
|
let chartInfo=ref(null)
|
|
@@ -29,13 +35,13 @@ let chartInfo=ref(null)
|
|
|
let highChart = ref(null)
|
|
|
let edbList=ref([])//指标数据
|
|
|
async function getChartDetail(e){
|
|
|
- const params=sameOptionType.includes(Number(route.query.chartType))?{
|
|
|
- ChartInfoId:Number(route.query.id),
|
|
|
+ const params=sameOptionType.includes(Number(routeQueryData.chartType))?{
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
DateType: chartState.yearVal,
|
|
|
StartDate: chartState.startTime,
|
|
|
EndDate: chartState.endTime,
|
|
|
}:{
|
|
|
- ChartInfoId:Number(route.query.id),
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
Calendar: chartState.calendarType,//this.calendar_type
|
|
|
SeasonStartDate: chartState.startTime,
|
|
|
SeasonEndDate:chartState.endTime ,
|
|
@@ -387,8 +393,8 @@ function deleteChart(){
|
|
|
showCancelButton:true
|
|
|
}).then(() => {
|
|
|
apiChart.deleteClassify({
|
|
|
- ChartClassifyId:Number(route.query.chartClassifyId),
|
|
|
- ChartInfoId:Number(route.query.id),
|
|
|
+ ChartClassifyId:Number(routeQueryData.chartClassifyId),
|
|
|
+ ChartInfoId:Number(routeQueryData.id),
|
|
|
}).then(res=>{
|
|
|
if(res.Ret===200){
|
|
|
cachedViewsStore.removeCaches('ChartETAList')
|
|
@@ -404,6 +410,35 @@ function deleteChart(){
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+//获取图排序列表数据
|
|
|
+const chartSortListData=ref([])
|
|
|
+async function getChartSortList(){
|
|
|
+ const res=await apiChart.chartLocate({
|
|
|
+ KeyWord:route.query.keyword||'',
|
|
|
+ ChartClassifyId:Number(route.query.chartClassifyId),
|
|
|
+ IsShowMe:route.query.IsShowMe=='true'?true:false
|
|
|
+ })
|
|
|
+ if(res.Ret===200){
|
|
|
+ chartSortListData.value=res.Data||[]
|
|
|
+ }
|
|
|
+}
|
|
|
+getChartSortList()
|
|
|
+
|
|
|
+// 切换图
|
|
|
+async function handleSwitchChart(type){
|
|
|
+ const index=chartSortListData.value.findIndex((item)=>item.ChartInfoId==routeQueryData.id)
|
|
|
+ let item=null
|
|
|
+ if(type==='prev'){
|
|
|
+ item=index===0?chartSortListData.value[chartSortListData.value.length-1]:chartSortListData.value[index-1]
|
|
|
+ }else{
|
|
|
+ item=index===chartSortListData.value.length-1?chartSortListData.value[0]:chartSortListData.value[index+1]
|
|
|
+ }
|
|
|
+ routeQueryData.id=item.ChartInfoId
|
|
|
+ routeQueryData.chartType=item.ChartType
|
|
|
+ routeQueryData.chartClassifyId=item.ChartClassifyId
|
|
|
+ getChartDetail('init')
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
</script>
|
|
|
|
|
@@ -489,11 +524,11 @@ function deleteChart(){
|
|
|
</div>
|
|
|
<!-- 底部悬浮操作模块 -->
|
|
|
<div class="fix-bot-action-box">
|
|
|
- <div class="item" @click="">
|
|
|
+ <div class="item" @click="handleSwitchChart('prev')" v-if="chartSortListData.length>0">
|
|
|
<img class="icon" src="@/assets/imgs/icon_arrow.png" alt="">
|
|
|
<div>上一张</div>
|
|
|
</div>
|
|
|
- <div class="item" @click="">
|
|
|
+ <div class="item" @click="handleSwitchChart('next')" v-if="chartSortListData.length>0">
|
|
|
<img class="icon" style="transform: rotate(180deg);" src="@/assets/imgs/icon_arrow.png" alt="">
|
|
|
<div>下一张</div>
|
|
|
</div>
|