常熟
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
567 B

7 months ago
<template>
<view class="content">
</view>
</template>
<script>
export default {
data() {
return {
7 months ago
topBanner: [],
7 months ago
}
},
onLoad() {
7 months ago
},
onShow() {
},
onReady() {
this.getTopBanner()
7 months ago
},
methods: {
7 months ago
// 获取顶部banner
getTopBanner() {
this.Post({
apiType: 'jdsz',
type_id: 5,
position: 0,
}, '/api/adv/getAdv').then(res => {
console.log(res)
})
}
7 months ago
}
}
</script>
<style>
.content {
7 months ago
width: 100vw;
min-height: 100vh;
overflow-x: hidden;
background: #F2FFFE;
7 months ago
}
</style>