12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <custom-scroll-list :hasSearcBar="false" :refreshFn="getZhengshuList" :hasTab="false" >
- <template #default="{list}">
- <scroll-list-card-zhengshu v-for="(item,index) in list" :key="item.ksId"
- :data="item"></scroll-list-card-zhengshu>
- </template>
- </custom-scroll-list>
- </template>
- <script setup>
- import {
- getZhengshuList
- } from "@/api/zhengshu.js";
- import {
- onLoad,
- onReady,
- } from "@dcloudio/uni-app"
- import {
- reactive,
- ref
- } from "vue";
- function onBackPress(options) {
- uni.redirectTo({
- url: '/pages/my/index'
- });
- return true;
- }
- </script>
- <style lang="scss">
- </style>
|