Commit 0b90de16 authored by xishifeng's avatar xishifeng

客户列表隐藏手机号码中间四位

parent efe11b61
...@@ -331,7 +331,7 @@ define (['doT', 'text!temp/user_template_tpl.html','ckfinder','ckfinderStart', ' ...@@ -331,7 +331,7 @@ define (['doT', 'text!temp/user_template_tpl.html','ckfinder','ckfinderStart', '
$("#cus_id").html(data.data.user_info.user_id);//客户编号 $("#cus_id").html(data.data.user_info.user_id);//客户编号
$("#cus_name").val(data.data.user_info.user_nick);//姓名 $("#cus_name").val(data.data.user_info.user_nick);//姓名
$("#sex").val(data.data.user_info.sex);//性别 $("#sex").val(data.data.user_info.sex);//性别
$("#cus_phone").html(data.data.user_info.user_phone);//电话 $("#cus_phone").html(hideTel(data.data.user_info.user_phone));//电话
$("#cus_date").html(data.data.user_info.create_time);//上传时间 $("#cus_date").html(data.data.user_info.create_time);//上传时间
$("#cus_fang").val(data.data.user_info.agentinfo);//客方 $("#cus_fang").val(data.data.user_info.agentinfo);//客方
var caozuo_table=""; var caozuo_table="";
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
[%= it[item]["user_nick"] %] [%= it[item]["user_nick"] %]
[% } %] [% } %]
</td> </td>
<td>[%= it[item]["user_phone"] %]</td> <td>[%= hideTel(it[item]["user_phone"]) %]</td>
<td>[%= it[item]["create_time"] %]</td> <td>[%= it[item]["create_time"] %]</td>
<td> <td>
[% if(it[item]["follow_time"] != null) { %] [% if(it[item]["follow_time"] != null) { %]
......
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