|
@@ -7,6 +7,7 @@
|
|
|
<title>企业评估</title>
|
|
|
|
|
|
<script src="/js/qfwtable.js"></script>
|
|
|
+ <script src="/loan/js/common.js"></script>
|
|
|
<style type="text/css">
|
|
|
|
|
|
|
|
@@ -25,19 +26,19 @@
|
|
|
}
|
|
|
|
|
|
.table > thead > tr > th:nth-child(2) {
|
|
|
- width: 10%;
|
|
|
+ width: 5%;
|
|
|
}
|
|
|
|
|
|
.table > thead > tr > th:nth-child(3) {
|
|
|
- width: 10%;
|
|
|
+ width: 5%;
|
|
|
}
|
|
|
|
|
|
.table > thead > tr > th:nth-child(4) {
|
|
|
- width: 10%;
|
|
|
+ width: 8%;
|
|
|
}
|
|
|
|
|
|
.table > thead > tr > th:nth-child(5) {
|
|
|
- width: 10%;
|
|
|
+ width: 5%;
|
|
|
}
|
|
|
|
|
|
.table > thead > tr > th:nth-child(6) {
|
|
@@ -49,6 +50,10 @@
|
|
|
/*text-align: center;*/
|
|
|
}
|
|
|
.table > thead > tr > th:nth-child(8) {
|
|
|
+ width: 15%;
|
|
|
+ /*text-align: center;*/
|
|
|
+ }
|
|
|
+ .table > thead > tr > th:nth-child(9) {
|
|
|
width: 5%;
|
|
|
display: none;
|
|
|
/*text-align: center;*/
|
|
@@ -67,7 +72,7 @@
|
|
|
border: 0px;
|
|
|
border-bottom: 1px dashed #999999;
|
|
|
}
|
|
|
- .table > tbody > tr > td:nth-child(8) {
|
|
|
+ .table > tbody > tr > td:nth-child(9) {
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
@@ -179,6 +184,12 @@
|
|
|
return d.price
|
|
|
}
|
|
|
},
|
|
|
+ {
|
|
|
+ title: "贷款时间", field: "price", callback: function (d) {
|
|
|
+ return timestampToTime(d.application_time)
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title:"贷款期限",field:"term",callback:function (d) {
|
|
|
return d.term
|
|
@@ -191,7 +202,7 @@
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- title:"uid",field:"remark",callback:function (d) {
|
|
|
+ title:"uid",field:"uid",callback:function (d) {
|
|
|
return d.uid
|
|
|
|
|
|
}
|
|
@@ -215,7 +226,7 @@
|
|
|
|
|
|
//双击事件
|
|
|
$("#content").on("dblclick","#audit>.dt-table-wrapper>.table>tbody>tr",function(){
|
|
|
- uid = $(this).find("td").eq(7).text();
|
|
|
+ uid = $(this).find("td").eq(8).text();
|
|
|
$(this).css("background","rgb(202, 198, 133)");
|
|
|
$(this).siblings().css("background","rgb(255,255,255)");
|
|
|
$.ajax({
|
|
@@ -237,7 +248,7 @@
|
|
|
});
|
|
|
//单击事件
|
|
|
$("#content").on("click","#audit>.dt-table-wrapper>.table>tbody>tr",function(){
|
|
|
- var t = $(this).find("td").eq(7).text();
|
|
|
+ var t = $(this).find("td").eq(8).text();
|
|
|
if ($(this).hasClass("selected")){
|
|
|
window.location.href = "/manage/jy_loan/evaluationdetail?uid="+t
|
|
|
}else{
|