zhengshu.vue 640 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <custom-scroll-list :hasSearcBar="false" :refreshFn="getZhengshuList" :hasTab="false" >
  3. <template #default="{list}">
  4. <scroll-list-card-zhengshu v-for="(item,index) in list" :key="item.ksId"
  5. :data="item"></scroll-list-card-zhengshu>
  6. </template>
  7. </custom-scroll-list>
  8. </template>
  9. <script setup>
  10. import {
  11. getZhengshuList
  12. } from "@/api/zhengshu.js";
  13. import {
  14. onLoad,
  15. onReady,
  16. } from "@dcloudio/uni-app"
  17. import {
  18. reactive,
  19. ref
  20. } from "vue";
  21. function onBackPress(options) {
  22. uni.redirectTo({
  23. url: '/pages/my/index'
  24. });
  25. return true;
  26. }
  27. </script>
  28. <style lang="scss">
  29. </style>