普法考试

This commit is contained in:
shijingjing
2023-01-31 09:49:26 +08:00
parent 4617698596
commit b0f5da59f1
6 changed files with 93 additions and 78 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div class="OnlineClass">
在线课堂
</div>
</template>
<script>
export default {
data() {
return {
current: 1,
}
},
onLoad() {
},
methods: {
getList() {
console.log('在线课堂列表');
}
},
onReachBottom() {
this.current ++;
this.getList()
},
}
</script>
<style lang="scss" socped>
.OnlineClass {
}
</style>