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.
83 lines
4.1 KiB
83 lines
4.1 KiB
<?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/ajax.js"></script>
|
|
<script type="text/javascript" language="javascript" src="/js/func.js"></script>
|
|
<script type="text/javascript" language="javascript">
|
|
//详情
|
|
function info(id) {
|
|
window.location.href = '/insurer/my-list-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/my-list?" + 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="phone" type="text" value="<?=$phone?>">
|
|
车牌:<input name="car_no" type="text" value="<?=$car_no?>">
|
|
被保险人:<input name="id_man" type="text" value="<?=$id_man?>">
|
|
<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="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" nowrap ><?=$start_index + 1?></td>
|
|
<td class="td_bg" nowrap><?=MyLib::substr_cut($item->car_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->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 height="25" colspan="14" align="center" class="td_bg"><?=$page_info?></td>
|
|
</tr>
|
|
</table>
|
|
|