|
@@ -63,9 +63,11 @@ const chartRenderUrl = computed(() => {
|
|
|
let changeChartList=ref([])
|
|
|
async function getChangeChartList(){
|
|
|
// if(route.query.fromPage!=='myCollect') return
|
|
|
- let res=await apiReport.myChartLocate()
|
|
|
+ let res=await apiReport.myChartLocate({
|
|
|
+ key: route.query.searchKey,
|
|
|
+ })
|
|
|
if(res.Ret===200){
|
|
|
- changeChartList.value=res.data.Data||[]
|
|
|
+ changeChartList.value=res.data||[]
|
|
|
}
|
|
|
}
|
|
|
getChangeChartList()
|