diff --git a/src/components/SearchForm/index.vue b/src/components/SearchForm/index.vue
index d374ea0..ec64d9b 100644
--- a/src/components/SearchForm/index.vue
+++ b/src/components/SearchForm/index.vue
@@ -12,11 +12,11 @@
+ type="datetime" class="!w-[160px]" :placeholder="`请选择${item.label}`" format="YYYY-MM-DD HH:mm:ss"
+ value-format="YYYY-MM-DD HH:mm:ss" />
diff --git a/src/components/exportDialog/index.vue b/src/components/exportDialog/index.vue
index 9894ad1..8d6bbeb 100644
--- a/src/components/exportDialog/index.vue
+++ b/src/components/exportDialog/index.vue
@@ -25,8 +25,9 @@ defineExpose({ getRef });
-
+
diff --git a/src/views/Financial/Recharge/hook.tsx b/src/views/Financial/Recharge/hook.tsx
index 0c4931d..934c40e 100644
--- a/src/views/Financial/Recharge/hook.tsx
+++ b/src/views/Financial/Recharge/hook.tsx
@@ -51,7 +51,7 @@ export function useData() {
// { label: "总收入(¥)", prop: "total_money" },
{ label: "未支付(¥)", prop: "unpaid_money" },
{
- label: "zongs(¥)", prop: "paid_money"
+ label: "总收入(¥)", prop: "paid_money"
},
{ label: "微信支付(¥)", prop: "wx_money" },
{ label: "支付宝支付(¥)", prop: "ali_money" },
diff --git a/src/views/Statistical/giftRecord/hook.tsx b/src/views/Statistical/giftRecord/hook.tsx
index 83968dc..a4e349c 100644
--- a/src/views/Statistical/giftRecord/hook.tsx
+++ b/src/views/Statistical/giftRecord/hook.tsx
@@ -159,6 +159,11 @@ export function useData() {
const exportData = async (formData) => {
const { data, code } = await queryGiftGiveList({
...formData,
+ send_user: searchForm.value.send_user,
+ gift_user: searchForm.value.gift_user,
+ from_id: searchForm.value.from_id,
+ gift_id: searchForm.value.gift_id,
+ from: searchForm.value.from,
page: 1,
page_limit: 20000
});