添加牌位-3

This commit is contained in:
WindowBird 2025-10-17 09:31:23 +08:00
parent fcc8c6c81d
commit a5ad4056be

View File

@ -97,7 +97,26 @@
</template> </template>
<script> <script>
import { createPagination } from "../../composables/winB_Pagination";
export default { export default {
mixins: [
createPagination({
fetchData: this.$request.get("/bst/memorial/list", {
orderByColumn: "order_num",
isAsc: "ascending",
searchId: "42",
type: "3",
}),
mode: "loadMore", // "pager"
pageSize: 5,
autoLoad: false, // false
}),
],
created() {
//
this.winB_UpdateParams();
},
data() { data() {
return { return {
// //
@ -133,6 +152,9 @@ export default {
); );
}, },
}, },
onReachBottom() {
this.winB_LoadMore();
},
async onLoad() { async onLoad() {
// //
await this.loadRegionData(); await this.loadRegionData();