| xqd
@@ -16,14 +16,23 @@
|
|
|
<div class="row">
|
|
|
<form method="GET" action="" accept-charset="UTF-8">
|
|
|
|
|
|
- <div class="col-sm-4">
|
|
|
- <div class="input-group">
|
|
|
- <input type="text" value="{{Request::get('keyword')}}" placeholder="请输入关键词" name="keyword"class="input-sm form-control">
|
|
|
- <span class="input-group-btn">
|
|
|
- <button type="submit" class="btn btn-sm btn-primary">搜索</button>
|
|
|
- </span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ <div class="col-sm-4">
|
|
|
+ <div class="input-group">
|
|
|
+ <input type="text" value="{{Request::get('keyword')}}" placeholder="请输入关键词" name="keyword"class="input-sm form-control">
|
|
|
+ <span class="input-group-btn">
|
|
|
+ <button type="submit" class="btn btn-sm btn-primary">搜索</button>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-sm-3">
|
|
|
+ <select id="data_parent_id" class="form-control" onchange="getLevelSecondCategory()">
|
|
|
+ @if(isset($cat))
|
|
|
+ @foreach($cat as $key=>$val)
|
|
|
+ <option value="{{$val->id}}" >{{$val->name}}</option>
|
|
|
+ @endforeach
|
|
|
+ @endif
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
</form>
|
|
|
@if(role('Album/Product/Price/create'))
|
|
|
<div class="col-sm-3 pull-right">
|