Files
dvcp_v2_wechat_app/src/mods/conv/AppLegalLearning/components/OnlineClass.vue

35 lines
398 B
Vue
Raw Normal View History

2023-01-30 14:57:39 +08:00
<template>
2023-01-31 09:49:26 +08:00
<div class="OnlineClass">
2023-01-30 14:57:39 +08:00
在线课堂
</div>
</template>
<script>
export default {
data() {
return {
current: 1,
}
},
onLoad() {
},
methods: {
getList() {
2023-01-31 09:49:26 +08:00
console.log('在线课堂列表');
2023-01-30 14:57:39 +08:00
}
},
2023-01-31 09:49:26 +08:00
onReachBottom() {
this.current ++;
this.getList()
},
2023-01-30 14:57:39 +08:00
}
</script>
<style lang="scss" socped>
2023-01-31 09:49:26 +08:00
.OnlineClass {
2023-01-30 14:57:39 +08:00
}
</style>