日历对接

This commit is contained in:
renzhijun
2026-01-28 14:23:25 +08:00
parent dc82f4a57c
commit 95441d649f
5 changed files with 633 additions and 249 deletions

View File

@@ -228,7 +228,7 @@
import {
inject
} from 'vue'
import { conceptsDailyTop,marketHeatmap,marketStatistics,marketHotspotOverview } from '@/request/api'
export default {
data() {
return {
@@ -310,8 +310,40 @@
onLoad(e) {
this.activeIndex = e.index
this.contentTop = this.navH + (20 + 70 + 25) / 750 * inject('windowWidth')
this.conceptsDailyTop()
this.marketHeatmap()
this.marketStatistics()
this.marketHotspotOverview()
},
methods: {
conceptsDailyTop(){
conceptsDailyTop().then(res=>{
}).catch(error=>{
})
},
marketHeatmap(){
marketHeatmap().then(res=>{
}).catch(error=>{
})
},
marketStatistics(){
marketStatistics().then(res=>{
}).catch(error=>{
})
},
marketHotspotOverview(){
marketHotspotOverview().then(res=>{
}).catch(error=>{
})
},
moreAction() {
uni.navigateTo({
url: '/pages/geGuCenter/detail'