|
|
|
@ -22,11 +22,11 @@ use \common\libs\MyLib; |
|
|
|
|
<input type="text" id="car_no" name="car_no" class="form-control"> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label for="car_man">车主</label> |
|
|
|
|
<label for="car_man" style="margin-left: 20px;">车主</label> |
|
|
|
|
<input type="text" id="car_man" name="car_man" class="form-control"> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label for="phone">联系电话</label> |
|
|
|
|
<label for="phone" style="margin-left: 20px;">联系电话</label> |
|
|
|
|
<input type="text" id="phone" name="phone" class="form-control"> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
@ -38,7 +38,7 @@ use \common\libs\MyLib; |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label for="datepicker2">保险日期</label> |
|
|
|
|
<label for="datepicker2" style="margin-left: 20px;">保险日期</label> |
|
|
|
|
<div class="input-daterange input-group" id="datepicker2"> |
|
|
|
|
<input type="text" class="input-sm form-control" id="insurer1_begin" name="insurer1_begin" value="" autocomplete="off" /> |
|
|
|
|
<span class="input-group-addon">到</span> |
|
|
|
@ -50,7 +50,7 @@ use \common\libs\MyLib; |
|
|
|
|
<input type="text" id="company" name="company" class="form-control"> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label for="status">状态</label> |
|
|
|
|
<label for="status" style="margin-left: 20px;">状态</label> |
|
|
|
|
<select id="status" name="status" class="form-control"> |
|
|
|
|
<option value="0">全部</option> |
|
|
|
|
<option value="1">未分配</option> |
|
|
|
@ -58,12 +58,12 @@ use \common\libs\MyLib; |
|
|
|
|
</select> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label for="username">业务员</label> |
|
|
|
|
<label for="username" style="margin-left: 20px;">业务员</label> |
|
|
|
|
<input type="text" id="username" name="username" class="form-control"> |
|
|
|
|
</div> |
|
|
|
|
<button type="submit" class="btn btn-primary mb-8">搜索</button> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<select class="form-control" id="user_id" name="user_id"> |
|
|
|
|
<select class="form-control" id="user_id" name="user_id" style="margin-left: 20px;"> |
|
|
|
|
<option value="0">请选择业务员</option> |
|
|
|
|
<?php foreach($user_items as $item) { |
|
|
|
|
echo '<option value="'.$item->id.'">'.$item->getShowName().'</option>'; |
|
|
|
@ -78,14 +78,14 @@ use \common\libs\MyLib; |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<label class="form-control-static">分配给业务员</label> |
|
|
|
|
<input type="text" name="assign_users" id="assign_users" class="form-control"> |
|
|
|
|
<label class="form-control-static">每个业务员分配</label> |
|
|
|
|
<label class="form-control-static" style="margin-left: 20px;">每个业务员分配</label> |
|
|
|
|
<input type="text" name="assign_count" id="assign_count" class="form-control"> |
|
|
|
|
<label class="form-control-static">条记录</label> |
|
|
|
|
<button type="button" class="btn btn-primary btn-assign-all">批量分配</button> |
|
|
|
|
<button type="button" class="btn btn-primary btn-assign-all-return">批量收回</button> |
|
|
|
|
</div> |
|
|
|
|
<div class="form-group" style="margin-bottom: 8px;"> |
|
|
|
|
<select class="form-control" id="invalid_id" name="invalid_id" style="width:200px;"> |
|
|
|
|
<select class="form-control" id="invalid_id" name="invalid_id" style="width:200px;margin-left:20px;"> |
|
|
|
|
<option value="0">请选择无效理由</option> |
|
|
|
|
<?php foreach($invalid_items as $item) { |
|
|
|
|
echo '<option value="'.$item->id.'">'.$item->name.'</option>'; |
|
|
|
@ -95,7 +95,7 @@ use \common\libs\MyLib; |
|
|
|
|
<button type="button" class="btn btn-primary btn-a-invalid">勾选无效数据</button> |
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="row" style="margin-top:30px;"> |
|
|
|
|
<div class="col-md-12"> |
|
|
|
|
<table id="listTable"> |
|
|
|
|
<thead class="bg-warning"> |
|
|
|
|