Browse Source

20220920 fix 後台匯出功能

LuluFJ.Ho 2 years ago
parent
commit
14c2326314
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      resources/views/admin/DataManagement/SignupManagement.blade.php

+ 3
- 1
resources/views/admin/DataManagement/SignupManagement.blade.php View File

@@ -149,7 +149,9 @@
149 149
 
150 150
         // 匯出報告
151 151
         $("#export").click(function () {
152
-            
152
+            $('input[name=createDateStart]').val($('#createDateStart').val());
153
+            $('input[name=createDateFinal]').val($('#createDateFinal').val());
154
+
153 155
             $('#searchForm').submit();
154 156
         });
155 157