|
@@ -135,38 +135,26 @@
|
|
|
|
|
|
<div id="content">
|
|
|
<div id="audit" style="margin-top: 20px"></div>
|
|
|
- </div>
|
|
|
- <div class="record" style="display: none">
|
|
|
- <div>
|
|
|
- <span style="
|
|
|
- float: left;
|
|
|
- position: relative;
|
|
|
- margin-left: 202px;
|
|
|
- margin-top: -600px;
|
|
|
- width:200px;
|
|
|
- height:200px;
|
|
|
- font-size: 24px;
|
|
|
-">1 回访记录:</span>
|
|
|
- <div id="visit_record"></div>
|
|
|
- </div>
|
|
|
- <div style="
|
|
|
- position: relative;
|
|
|
- float: left;
|
|
|
- margin-left: 464px;
|
|
|
- margin-top: -600px;
|
|
|
- width:200px;
|
|
|
- height:200px;
|
|
|
- font-size: 24px;
|
|
|
-">
|
|
|
- <span >2 评估意见:</span>
|
|
|
- <div id="evaluation"></div>
|
|
|
+ <div class="record" style="display: none">
|
|
|
+ <div style="height: 300px;width: 200px;overflow-y: auto;float: left;overflow-x: hidden">
|
|
|
+ <span style="font-size: 24px;">1 回访记录:</span>
|
|
|
+ <div id="visit_record"></div>
|
|
|
+ </div>
|
|
|
+ <div style="float: left;margin-left: 100px;width: 200px;height: 300px;overflow-y: auto;overflow-x: hidden">
|
|
|
+ <span style="font-size: 24px;">2 评估意见:</span>
|
|
|
+ <div id="evaluation"></div>
|
|
|
+ </div>
|
|
|
+ <div style="width:200px;height: 300px;overflow-y: auto;float: left;margin-left: 100px;overflow-x: hidden">
|
|
|
+ <span style="font-size: 24px;">3 分类意见:</span>
|
|
|
+ <div id="classify"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div style="position: relative; width:200px;height:200px;float: left;margin-left: 760px;margin-top: -600px;font-size: 24px;">
|
|
|
- <span >3 分类意见:</span>
|
|
|
- <div id="classify"></div>
|
|
|
+ <div id="back">
|
|
|
+ <input type="button" style="width: 90px; height: 33px; z-index: 22; background-color: rgb(202, 198, 133); border-color: rgb(187, 187, 187); border-width: 1px; border-style: solid; border-radius: 4px; font-size: 14px; text-align: center; font-weight: normal; font-style: normal; opacity: 1; float: right;margin-right: 315px;margin-top: 10px" value="返回" onclick="backup()">
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+
|
|
|
</div>
|
|
|
{{include "/common/bottom.html"}}
|
|
|
|
|
@@ -192,8 +180,7 @@
|
|
|
,
|
|
|
classname: "table-hover"
|
|
|
,
|
|
|
- css: {"height": "300px"}
|
|
|
- //,post:{"name":"ee"}
|
|
|
+ css: {"height": "100px"}
|
|
|
,
|
|
|
url: '/manage/jy_loan/clueshow?uid='+uid
|
|
|
,
|
|
@@ -277,12 +264,15 @@
|
|
|
data:{"uid":uid},
|
|
|
async:false,
|
|
|
success:function (d) {
|
|
|
- $("#visit_record").html(d.data[0].visit_msg);
|
|
|
- $("#evaluation").html(d.data[0].opinion_msg);
|
|
|
- $("#classify").html(d.data[0].classify_msg);
|
|
|
+ $("#visit_record").append(d.data[0].visit_msg);
|
|
|
+ $("#evaluation").append(d.data[0].opinion_msg);
|
|
|
+ $("#classify").append(d.data[0].classify_msg);
|
|
|
$(".record").show();
|
|
|
}
|
|
|
})
|
|
|
})
|
|
|
+ function backup() {
|
|
|
+ window.location.href = "/manage/loan/cluelist"
|
|
|
+ }
|
|
|
</script>
|
|
|
</html>
|