Commit 68eafe48 authored by agping's avatar agping

555

parent ea0d6a9e
...@@ -139,6 +139,17 @@ define(['doT', 'text!temp/remark_follow_template_tpl.html', 'css!style/home.css' ...@@ -139,6 +139,17 @@ define(['doT', 'text!temp/remark_follow_template_tpl.html', 'css!style/home.css'
_doc.on('input', '#user_area_choose', function() { _doc.on('input', '#user_area_choose', function() {
user.getList(1); user.getList(1);
}); });
_doc.on('click', '#is_taday', function() {
$('#start_date').val('');
$('#end_date').val('');
user.isTaday=1;
$(this).removeClass('btn-default').addClass('btn-info');
// user.getList(1);
});
_doc.on('input', '#end_date', function() {
$('#is_taday').removeClass('btn-info').addClass('btn-default');
user.isTaday=0;
});
//客户详情跟进 取消收藏 //客户详情跟进 取消收藏
_doc.on('click', '#user_is_collect', function() { _doc.on('click', '#user_is_collect', function() {
if(!confirm('是否继续?')) { if(!confirm('是否继续?')) {
......
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