| xqd
@@ -22,21 +22,25 @@
|
|
|
margin-right: 20px;
|
|
|
color: #111
|
|
|
}
|
|
|
- .ibox-content{
|
|
|
+
|
|
|
+ .ibox-content {
|
|
|
background-color: #f5f9fc;
|
|
|
}
|
|
|
- #company-list{
|
|
|
+
|
|
|
+ #company-list {
|
|
|
background-color: #ffffff;
|
|
|
}
|
|
|
|
|
|
- #filter_table{
|
|
|
+ #filter_table {
|
|
|
background-color: #ffffff;
|
|
|
margin: 0 auto 20px auto;
|
|
|
padding: 30px 5px;
|
|
|
border-radius: 5px
|
|
|
|
|
|
}
|
|
|
-
|
|
|
+ .bootstrap-tagsinput{
|
|
|
+ width: 90%;
|
|
|
+ }
|
|
|
</style>
|
|
|
@endsection
|
|
|
|
| xqd
@@ -57,6 +61,18 @@
|
|
|
<div class="col-xl-7 col-lg-10" id="filter_table">
|
|
|
<form method="GET" action="" accept-charset="UTF-8" id="filter_company">
|
|
|
{{ csrf_field() }}
|
|
|
+ <div class="row" style="margin-bottom: 20px">
|
|
|
+ <div class="col-sm-10 col-sm-offset-2" style="margin: auto">
|
|
|
+ <input class="tagsinput form-control" type="text"
|
|
|
+ name="companyName" style="display: none;width: 100%"
|
|
|
+ placeholder="请输入企业名称关键字" value="{{Request::get('companyName')}}">
|
|
|
+
|
|
|
+ <span class="btn btn-default" style="margin: 5px 6px" onclick="filter_company()">搜索</span>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
<div class="row">
|
|
|
<div class="col-sm-2">
|
|
|
<select name="district" class="form-control" onchange="filter_company()">
|
| xqd
@@ -119,7 +135,7 @@
|
|
|
|
|
|
</div>
|
|
|
|
|
|
- <div id="company-list" class="col-xl-7 col-lg-10" style="margin: auto">
|
|
|
+ <div id="company-list" class="col-xl-7 col-lg-10" style="margin: auto">
|
|
|
@include('admin.company.info.data')
|
|
|
</div>
|
|
|
|