123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @extends('layouts.admin')
- @section('content')
- <div class="row">
- <div class="col-lg-12">
- <h1 class="page-header">课程导入</h1>
- </div>
- <!-- /.col-lg-12 -->
- </div>
- <div class="panel">
- <form action=''>
- <div class="form-group">
- <label>选择时间:</label>
- <input name="start" onClick="WdatePicker()" value=""> -
- <input name="end" onClick="WdatePicker()" value="">
- </div>
- <div class="form-group">
- <label>手机号码(多个请换行)</label>
- <textarea name="mobile" style="width:200px;height:200px"></textarea>
- </div>
- <button type="submit" class="btn btn-success">查询</button>
- <!-- <button type="button" class="btn btn-success" onclick="order_export()">导出</button> -->
-
- </form>
- <br>
- <form action="books_import" method="post" enctype="multipart/form-data">
- <label for="msg" style='color:red'></label><br>
- <label for="file" >1、书本Excel导入:</label>
- <input type="file" name="file" id="file" /> <br><br>
- <button type="submit" name="submit" class="btn btn-success">导入</button>
- </form>
- <br><br><br>
- <form action="chapters_import" method="post" enctype="multipart/form-data">
- <label for="msg" style='color:red'></label><br>
- <label for="file" >1、章节Excel导入:</label>
- <input type="file" name="file" id="file" /> <br><br>
- <button type="submit" name="submit" class="btn btn-success">导入</button>
- </form>
- </div>
- <div class="panel panel-default">
-
- <div class="panel-heading">
- 列表
- </div>
- <!-- /.panel-heading -->
- <div class="panel-body">
- <div class="dataTable_wrapper">
- <table class="table table-striped table-bordered table-hover" id="dataTables-example" style="text-align: center">
- <tr>
- <th>手机号</th>
- <th>省份</th>
- <th>导入时间</th>
- </tr>
- </table>
- </div>
- </div>
- </div>
- <!-- Modal -->
- <script type="text/javascript" src="{{ asset('admin/js/My97DatePicker/WdatePicker.js') }}"></script>
- <script>
- </script>
- @endsection
|