Commit fccd4bcd authored by agping's avatar agping

客户编辑 新增邀请人修改记录

parent 5297f22d
......@@ -2,7 +2,7 @@
<input type="hidden" class="page-load" id="callPhoneIndex" />
<style>
.modal-body1 {
height: 600px;
height: 720px;
overflow-y: auto;
padding-bottom: 60px;
}
......
......@@ -2,7 +2,7 @@
<input type="hidden" class="page-load" id="user" />
<style>
.modal-body1 {
height: 686px;
height: 716px;
overflow-y: auto;
padding-bottom: 60px;
}
......@@ -257,7 +257,7 @@
}
#caozuo_table_scroll {
height: 258px;
height: 188px;
overflow-y: scroll;
}
/*查看过的 客户详情 按钮变色*/
......@@ -1315,14 +1315,13 @@
</table>
<div id="caozuo_table_scroll">
<table class="table table-striped table-bordered table-hover table-condensed">
<!--<thead>
<tr class="ld-Marheight">
<td class="text-left">客方修改记录:</td>
</tr>
</thead>-->
<tbody class="text-center" id="caozuo_table_edit"></tbody>
</table>
</div>
<div><label>邀请人(介绍人)修改记录:</label></div>
<div id="caozuo_table_scroll">
<table class="table table-striped table-bordered table-hover table-condensed">
<tbody class="text-center" id="caozuo_table_edit_introduce"></tbody>
</table>
</div>
......
......@@ -3,7 +3,7 @@
<input type="hidden" class="page-load" id="myCollectionUserList" />
<style>
.modal-body1 {
height: 600px;
height: 716px;
overflow-y: auto;
padding-bottom: 60px;
}
......@@ -259,7 +259,7 @@
text-align: center;
}
#caozuo_table_scroll{
height: 268px;
height: 188px;
overflow-y: scroll;
}
......@@ -1012,15 +1012,14 @@
</table>
<div id="caozuo_table_scroll">
<table class="table table-striped table-bordered table-hover table-condensed">
<!--<thead>
<tr class="ld-Marheight">
<td class="text-left">客方修改记录:</td>
</tr>
</thead>-->
<tbody class="text-center" id="caozuo_table_edit"></tbody>
</table>
<tbody class="text-center" id="caozuo_table_edit"></tbody>
</table>
</div>
<div><label>邀请人(介绍人)修改记录:</label></div>
<div id="caozuo_table_scroll">
<table class="table table-striped table-bordered table-hover table-condensed">
<tbody class="text-center" id="caozuo_table_edit_introduce"></tbody>
</table>
</div>
<!--客户详情保存-->
......
......@@ -2,7 +2,7 @@
<input type="hidden" class="page-load" id="RemarkFollowIndex" />
<style>
.modal-body1 {
height: 686px;
height: 716px;
overflow-y: auto;
padding-bottom: 60px;
}
......@@ -252,7 +252,7 @@
}
#caozuo_table_scroll {
height: 258px;
height: 188px;
overflow-y: scroll;
}
/*查看过的 客户详情 按钮变色*/
......@@ -695,8 +695,8 @@
<!--客户编辑-->
<div class="modal fade" id="modal-record-edit" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content modal-body-details">
<div class="modal-dialog modal-body-details">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
......@@ -848,6 +848,12 @@
<tbody class="text-center" id="caozuo_table_edit"></tbody>
</table>
</div>
<div><label>邀请人(介绍人)修改记录:</label></div>
<div id="caozuo_table_scroll">
<table class="table table-striped table-bordered table-hover table-condensed">
<tbody class="text-center" id="caozuo_table_edit_introduce"></tbody>
</table>
</div>
<!--客户详情保存-->
<div class="center-btn">
......
......@@ -1337,6 +1337,16 @@ define(['doT', 'text!temp/remark_follow_template_tpl.html', 'css!style/home.css'
$("#caozuo_table_edit").html(caozuo_table);
}else{
$("#caozuo_table_edit").html('暂无数据(*^_^*)');
};
//转介绍然人 记录
var caozuo_table_introduce = "";
$.each(data['data']['user_invite_history'], function(i, item) {
caozuo_table += '<tr><td>' + item.remark + '</td><td>' + item.name + '</td><td>' + item.create_time + '</td></tr>';
});
if(caozuo_table_introduce){
$("#caozuo_table_edit_introduce").html(caozuo_table);
}else{
$("#caozuo_table_edit_introduce").html('暂无数据(*^_^*)');
}
}
......
......@@ -1332,6 +1332,16 @@ define(['doT', 'text!temp/my_collection_user_template_tpl.html', 'css!style/home
$("#caozuo_table_edit").html(caozuo_table);
}else{
$("#caozuo_table_edit").html('暂无数据(*^_^*)');
};
//转介绍然人 记录
var caozuo_table_introduce = "";
$.each(data['data']['user_invite_history'], function(i, item) {
caozuo_table += '<tr><td>' + item.remark + '</td><td>' + item.name + '</td><td>' + item.create_time + '</td></tr>';
});
if(caozuo_table_introduce){
$("#caozuo_table_edit_introduce").html(caozuo_table);
}else{
$("#caozuo_table_edit_introduce").html('暂无数据(*^_^*)');
}
}
......
......@@ -1522,6 +1522,16 @@ define(['doT', 'text!temp/user_template_tpl.html', 'css!style/home.css', 'ckfind
$("#caozuo_table_edit").html(caozuo_table);
}else{
$("#caozuo_table_edit").html('暂无数据(*^_^*)');
};
//转介绍然人 记录
var caozuo_table_introduce = "";
$.each(data['data']['user_invite_history'], function(i, item) {
caozuo_table += '<tr><td>' + item.remark + '</td><td>' + item.name + '</td><td>' + item.create_time + '</td></tr>';
});
if(caozuo_table_introduce){
$("#caozuo_table_edit_introduce").html(caozuo_table);
}else{
$("#caozuo_table_edit_introduce").html('暂无数据(*^_^*)');
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment