修复bug,添加我的积分页面

This commit is contained in:
zhouyanli
2026-08-05 10:55:30 +08:00
parent 466f710b33
commit 81e0ccf574
10 changed files with 1063 additions and 29 deletions

View File

@@ -48,7 +48,8 @@
</template>
<script setup>
import { ref, computed, onMounted } from 'vue'
import { ref, computed } from 'vue'
import { onShow } from '@dcloudio/uni-app'
import {getQuestionnaireList} from '../api/apiSub.js'
// 状态栏高度
@@ -130,8 +131,8 @@
})
}
// 生命周期:页面挂载完成
onMounted(() => {
// 生命周期:每次显示时刷新数据
onShow(() => {
getDataList()
})
</script>