日历对接
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user