This commit is contained in:
shijingjing
2023-01-30 17:09:15 +08:00
parent 445c615477
commit 4617698596
3 changed files with 37 additions and 5 deletions

View File

@@ -21,7 +21,7 @@
</div>
<div class="grade">98</div>
</div>
<div class="card_bottom col_blue">参加考试</div>
<div class="card_bottom col_blue" @click="toTest">参加考试</div>
</div>
</div>
</div>
@@ -41,12 +41,18 @@ export default {
methods: {
getList() {
console.log('111');
},
toTest() {
console.log('tiaozhuan');
uni.navigateTo({
url: './test'
})
}
},
// onReachBottom() {
// this.current++;
// this.getList()
// },
onReachBottom() {
this.current++;
this.getList()
},
}
</script>

View File

@@ -0,0 +1,26 @@
<template>
<div class="test">
哈哈
<!-- <Question></Question> -->
</div>
</template>
<script>
import Question from "./question.vue";
export default {
data() {
return {
}
},
components: {
Question
}
}
</script>
<style lang="scss" scoped>
.test {
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB