diff --git a/components/data/DataTimesTop.vue b/components/data/DataTimesTop.vue index 8761693..ec411ba 100644 --- a/components/data/DataTimesTop.vue +++ b/components/data/DataTimesTop.vue @@ -17,14 +17,23 @@ interface TopHots{ searchUrl: string } } -const rawData:TopHots[] = await $fetch(`https://data.zziyu.cn/hot/top/${props.fromWeb}?limit=${props.limit}&hours=${props.hours}`) -const data:TopHots[] = [] -rawData.forEach(d=>{ - let newD= d; - let aDate = new Date(Date.parse(d.lastTime)) - newD.lastTime=aDate.toLocaleString() - data.push(newD) -}) + +const rawData = reactive([]) +const loading = ref(true) + +$fetch(`https://data.zziyu.cn/hot/top/${props.fromWeb}?limit=${props.limit}&hours=${props.hours}`) + .then((dataRaw)=>{ + let data = dataRaw as unknown as TopHots[] + data.forEach(d=>{ + let newD= d; + let aDate = new Date(Date.parse(d.lastTime)) + newD.lastTime=aDate.toLocaleString() + rawData.push(newD) + }) + loading.value = false + }) + + const router = useRouter() const gotoWeb = (row, column, cell, event)=>{ // console.log(row.fromWeb.searchUrl+row.word) @@ -34,7 +43,7 @@ const gotoWeb = (row, column, cell, event)=>{