浏览代码

20220920 fix 後台匯出功能

LuluFJ.Ho 2 年前
父节点
当前提交
57229f4702
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      resources/views/admin/DataManagement/SignupManagement.blade.php

+ 3
- 3
resources/views/admin/DataManagement/SignupManagement.blade.php 查看文件

38
                                 <!-- 起 -->
38
                                 <!-- 起 -->
39
                                 <div class="form-group _form-group col-sm-12 col-md-6 col-xl-2">
39
                                 <div class="form-group _form-group col-sm-12 col-md-6 col-xl-2">
40
                                     <label for="createDateStart">建立時間(起)(eg. 2022-09-14)</label>
40
                                     <label for="createDateStart">建立時間(起)(eg. 2022-09-14)</label>
41
-                                    <input type="text" class="form-control input-sm" id="createDateStart"
41
+                                    <input type="text" class="form-control input-sm" id="createDateStart" name="createDateStart"
42
                                            maxlength="10">
42
                                            maxlength="10">
43
                                 </div>
43
                                 </div>
44
                                 <!-- 訖 -->
44
                                 <!-- 訖 -->
45
                                 <div class="form-group _form-group col-sm-12 col-md-6 col-xl-2">
45
                                 <div class="form-group _form-group col-sm-12 col-md-6 col-xl-2">
46
                                     <label for="createDateFinal">建立時間(迄)(eg. 2022-09-14)</label>
46
                                     <label for="createDateFinal">建立時間(迄)(eg. 2022-09-14)</label>
47
-                                    <input type="text" class="form-control input-sm" id="createDateFinal"
47
+                                    <input type="text" class="form-control input-sm" id="createDateFinal" name="createDateFinal"
48
                                            maxlength="10">
48
                                            maxlength="10">
49
                                 </div>
49
                                 </div>
50
                                 
50
                                 
149
 
149
 
150
         // 匯出報告
150
         // 匯出報告
151
         $("#export").click(function () {
151
         $("#export").click(function () {
152
-
152
+            
153
             $('#searchForm').submit();
153
             $('#searchForm').submit();
154
         });
154
         });
155
         
155