创建版本

This commit is contained in:
2021-02-22 12:17:00 +08:00
commit af555f49c3
2332 changed files with 369202 additions and 0 deletions
@@ -0,0 +1,17 @@
<form id="search-form" class="form-inline" name="mysearch" action="{{url()}}" method="get">
@include('searchForm')
</form>
<script type="text/javascript">
$(function() {
$('#search-form').searchForm({
data: {{json_encode($search['forms'])}},
init: function(e) {
var self = this;
e.category = function(i) {
self._select({{search_select($categorys)}}, i);
}
}
});
});
</script>
@@ -0,0 +1,42 @@
<div class="panel">
<div class="wrapper">
@include('monitor/query')
</div>
<form method="post" id="myform" name="myform">
<div class="table-responsive">
<table class="table m-b-none table-striped b-t table-hover">
<thead>
<tr>
<th align="left">姓名</th>
<th align="right">待办数量</th>
<th align="right">超过一天</th>
<th align="right">超过三天</th>
<th align="right">超过三十天</th>
</tr>
</thead>
<tbody>
@foreach($rows as $row)
<tr>
<td align="left">{{$row['name']}}</td>
<td align="right">{{$row['total']}}</td>
<td align="right">{{$row['a']}}</td>
<td align="right">{{$row['b']}}</td>
<td align="right">{{$row['c']}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</form>
<footer class="panel-footer">
<div class="row">
<div class="col-sm-1 hidden-xs">
</div>
<div class="col-sm-11 text-right text-center-xs">
</div>
</div>
</footer>
</div>