lilishop-uniapp/pages/tabbar/home/index.vue

44 lines
698 B
Vue
Raw Normal View History

2021-05-13 11:03:32 +08:00
<template>
<div class="wrapper">
2021-05-24 15:49:22 +08:00
<!-- 楼层装修组件 -->
<tpl ref="tpl" />
2021-05-13 11:03:32 +08:00
</div>
</template>
<script>
import tpl from "@/pages/tabbar/home/views.vue";
2021-06-04 18:11:34 +08:00
2021-05-13 11:03:32 +08:00
export default {
data() {
return {
background: {
backgroundColor: "#fff",
},
};
2023-01-13 07:35:51 +08:00
},
onShow(){
setTimeout(()=>{
2023-03-29 16:17:46 +08:00
this.$refs.tpl.fetchCoupon();
2023-01-13 07:35:51 +08:00
},1000)
},
methods: {
2021-05-13 11:03:32 +08:00
},
onReachBottom(){
// 给子级监听触底加载
uni.$emit('onReachBottom',true)
},
onPullDownRefresh() {
this.$refs.tpl.init();
uni.stopPullDownRefresh();
},
2021-05-13 11:03:32 +08:00
components: {
tpl,
},
};
</script>
<style lang="scss" scoped>
</style>