index.blade.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @extends('layouts.admin')
  2. @section('content')
  3. <div class="row">
  4. <div class="col-lg-12">
  5. <h1 class="page-header">课程导入</h1>
  6. </div>
  7. <!-- /.col-lg-12 -->
  8. </div>
  9. <div class="panel">
  10. <form action=''>
  11. <div class="form-group">
  12. <label>选择时间:</label>
  13. <input name="start" onClick="WdatePicker()" value=""> -
  14. <input name="end" onClick="WdatePicker()" value="">
  15. </div>
  16. <div class="form-group">
  17. <label>手机号码(多个请换行)</label>
  18. <textarea name="mobile" style="width:200px;height:200px"></textarea>
  19. </div>
  20. <button type="submit" class="btn btn-success">查询</button>
  21. <!-- <button type="button" class="btn btn-success" onclick="order_export()">导出</button> -->
  22. </form>
  23. <br>
  24. <form action="books_import" method="post" enctype="multipart/form-data">
  25. <label for="msg" style='color:red'></label><br>
  26. <label for="file" >1、书本Excel导入:</label>
  27. <input type="file" name="file" id="file" /> <br><br>
  28. <button type="submit" name="submit" class="btn btn-success">导入</button>
  29. </form>
  30. <br><br><br>
  31. <form action="chapters_import" method="post" enctype="multipart/form-data">
  32. <label for="msg" style='color:red'></label><br>
  33. <label for="file" >1、章节Excel导入:</label>
  34. <input type="file" name="file" id="file" /> <br><br>
  35. <button type="submit" name="submit" class="btn btn-success">导入</button>
  36. </form>
  37. </div>
  38. <div class="panel panel-default">
  39. <div class="panel-heading">
  40. 列表
  41. </div>
  42. <!-- /.panel-heading -->
  43. <div class="panel-body">
  44. <div class="dataTable_wrapper">
  45. <table class="table table-striped table-bordered table-hover" id="dataTables-example" style="text-align: center">
  46. <tr>
  47. <th>手机号</th>
  48. <th>省份</th>
  49. <th>导入时间</th>
  50. </tr>
  51. </table>
  52. </div>
  53. </div>
  54. </div>
  55. <!-- Modal -->
  56. <script type="text/javascript" src="{{ asset('admin/js/My97DatePicker/WdatePicker.js') }}"></script>
  57. <script>
  58. </script>
  59. @endsection