You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
7.1 KiB
133 lines
7.1 KiB
5 years ago
|
<?php
|
||
|
use \common\libs\MyLib;
|
||
|
?>
|
||
|
<script type="text/javascript" language="javascript" src="/js/jquery-1.8.3.js"></script>
|
||
|
<script type="text/javascript" language="javascript" src="/js/datepicker/WdatePicker.js"></script>
|
||
|
<script type="text/javascript" language="javascript" src="/js/ajax.js"></script>
|
||
|
<script type="text/javascript" language="javascript" src="/js/func.js"></script>
|
||
|
<script type="text/javascript" language="javascript">
|
||
|
//详情
|
||
|
function info(id) {
|
||
|
window.open('/insurer/info?id=' + id);
|
||
|
}
|
||
|
function infos(id,oid) {
|
||
|
window.open('/non-auto-insurance/bd-info-search?id=' + id +'&oid=' + oid);
|
||
|
// window.location.href = ;
|
||
|
}
|
||
|
$(function(){
|
||
|
$("#search-btn").click(function(){
|
||
|
$('#page').val(0);
|
||
|
var params = $('#searchForm').serialize();
|
||
|
window.location.href = "/insurer/search?" + params;
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="1" class="table">
|
||
|
<form id="searchForm">
|
||
|
<input type="hidden" id="page" name="page" value="<?=$page?>">
|
||
|
<tr>
|
||
|
<td class="td_bg">
|
||
|
车主:<input name="car_man" type="text" value="<?=$car_man?>">
|
||
|
被保险人:<input name="id_man" type="text" value="<?=$id_man?>">
|
||
|
电话:<input name="phone" type="text" value="<?=$phone?>">
|
||
|
车牌:<input name="car_no" type="text" value="<?=$car_no?>">
|
||
|
提单日期:从<input name="date_begin" type="text" value="<?=$date_begin?>" style="width:100px;" onclick="WdatePicker()">到<input name="date_end" type="text" value="<?=$date_end?>" style="width:100px;" onclick="WdatePicker()">截止
|
||
|
正本日期:从<input name="date2_begin" type="text" value="<?=$date2_begin?>" style="width:100px;" onclick="WdatePicker()">到<input name="date2_end" type="text" value="<?=$date2_end?>" style="width:100px;" onclick="WdatePicker()">截止
|
||
|
起保日期:从<input name="date3_begin" type="text" value="<?=$date3_begin?>" style="width:100px;" onclick="WdatePicker()">到<input name="date3_end" type="text" value="<?=$date3_end?>" style="width:100px;" onclick="WdatePicker()">截止
|
||
|
<!--
|
||
|
级别:<select name="group_id">
|
||
|
<option value="0">全部</option>
|
||
|
<?php
|
||
|
foreach($group_items as $item) {
|
||
|
echo '<option value="'.$item->id.'"';
|
||
|
if($item->id == $group_id)
|
||
|
echo ' selected ';
|
||
|
echo '>'.$item->name.'</option>';
|
||
|
}
|
||
|
?>
|
||
|
</select>
|
||
|
//-->
|
||
|
保险公司:<select name="company_id">
|
||
|
<option value="">全部</option>
|
||
|
<?php
|
||
|
foreach($company_items as $item) {
|
||
|
echo '<option value="'.$item->id.'"';
|
||
|
if($item->id == $company_id)
|
||
|
echo ' selected ';
|
||
|
echo '>'.$item->name.'</option>';
|
||
|
}
|
||
|
?>
|
||
|
</select>
|
||
|
险种类型:<select name="insurance_status">
|
||
|
<option value="">全部</option>
|
||
|
<option value="1" <?php if($insurance_status==1) echo ' selected ';?>>车险</option>
|
||
|
<option value="2" <?php if($insurance_status==2) echo ' selected ';?>>非车险</option>
|
||
|
<option value="3" <?php if($insurance_status==3) echo ' selected ';?>>车险和非车险</option>
|
||
|
</select>
|
||
|
<input type="button" class="act_btn" id="search-btn" name="search-btn" value="搜索"> </td>
|
||
|
</tr>
|
||
|
</form>
|
||
|
</table>
|
||
|
<table width="98%" border="0" align="center" cellpadding="2" cellspacing="1" class="table">
|
||
|
<tr>
|
||
|
<td width="30" align="center" class="bg_tr" nowrap>序号</td>
|
||
|
<td width="50" align="center" class="bg_tr" nowrap>车主</td>
|
||
|
<td width="50" align="center" class="bg_tr" nowrap>被保险人</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>提单日期</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>送单日期</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>车牌号</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>品牌</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>共计签单</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>应收</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>状态</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>业务员</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>保险公司</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>上传状态</td>
|
||
|
<td width="60" align="center" class="bg_tr" nowrap>当前操作</td>
|
||
|
<td width="30" align="center" class="bg_tr" nowrap>操作</td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
foreach($items as $index => $item) {
|
||
|
$start_index = ($page - 1) * 20 + $index;
|
||
|
?>
|
||
|
<tr onMouseOver=overColor(this) onMouseOut=outColor(this)>
|
||
|
<td align="center" class="td_bg"n owrap ><?=$start_index + 1?></td>
|
||
|
<td class="td_bg" nowrap><?=MyLib::substr_cut($item->car_man,15)?></td>
|
||
|
<td class="td_bg" nowrap><?=MyLib::substr_cut($item->id_man,15)?></td>
|
||
|
<td class="td_bg" nowrap><?=$item->submit_date?></td>
|
||
|
<td class="td_bg" nowrap><?=$item->send_date?></td>
|
||
|
<td class="td_bg" nowrap><?=$item->car_no?></td>
|
||
|
<td class="td_bg" nowrap><?=$item->car?MyLib::substr_cut($item->car->factory_model,15):''?></td>
|
||
|
<td class="td_bg" nowrap><?=$item->total_all?></td>
|
||
|
<td class="td_bg" ><?=$item->total_real?> </td>
|
||
|
<td class="td_bg" ><?=$item->status->name?></td>
|
||
|
<td class="td_bg" ><?=$item->user?$item->user->getShowName():''?></td>
|
||
|
<td class="td_bg" ><?=$item->company_id?$item->company->name:''?></td>
|
||
|
<td class="td_bg" >
|
||
|
<?php if($item->shangye_src || $item->jiaoqiang_src):?>
|
||
|
保单已上传
|
||
|
<?php else:?>
|
||
|
未上传
|
||
|
<?php endif;?>
|
||
|
</td>
|
||
|
<td class="td_bg" ><?=$item->lock?$item->lock->getShowName():''?></td>
|
||
|
<td align="center" class="td_bg" nowrap>
|
||
|
<?php if($item->insurance_status==1 || $item->insurance_status==3):?>
|
||
|
[<a href="javascript:void(0);" onclick="info(<?=$item->id?>)">详情</a>]
|
||
|
<?php elseif($item->insurance_status==2):?>
|
||
|
[<a href="javascript:void(0);" onclick="infos(<?=$item->non_id?>,<?= $item->id ?>)">非车险详情</a>]
|
||
|
<?php endif;?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php
|
||
|
}
|
||
|
?>
|
||
|
<tr>
|
||
|
<td class="td_bg" align="right" colspan="7">净保费总和</td>
|
||
|
<td class="td_bg" align="left" colspan="7"><?=$sum?></td>
|
||
|
</tr>
|
||
|
<tr >
|
||
|
<td height="25" colspan="15" align="center" class="td_bg"><?=$page_info?></td>
|
||
|
</tr>
|
||
|
</table>
|