fix: 🐛 修复日期筛选组件小程序回显问题和调整banner

This commit is contained in:
Ray.Hao
2024-11-30 01:26:43 +08:00
parent 6c3464a01b
commit adcdf4f03e
8 changed files with 32 additions and 31 deletions

View File

@@ -37,7 +37,7 @@
</view>
<!-- 用户卡片 -->
<wd-card v-for="item in pageData">
<wd-card v-for="item in pageData" :key="item.id">
<template #title>
<view class="flex-between">
<view class="flex-center">
@@ -128,6 +128,8 @@
</template>
<script lang="ts" setup>
import { onLoad, onReachBottom } from "@dcloudio/uni-app";
import { LoadMoreState } from "wot-design-uni/components/wd-loadmore/types";
import { FormRules } from "wot-design-uni/components/wd-form/types";
import { useMessage } from "wot-design-uni";
@@ -242,6 +244,7 @@ const handleQuery = () => {
filterDropMenu.value?.close();
queryParams.pageNum = 1;
loadmore();
console.log("queryParams", queryParams);
};
/**