Commit 227c49ec authored by duxinyuan's avatar duxinyuan

1

parent a2cb5b86
......@@ -251,6 +251,30 @@ define(['doT', 'text!temp/receivables_template_tpl.html', 'css!style/home.css',
that.back_agent_id = agent_id;
$('#back_into_type').text(type);
$('#back_shop_addr').text(address);
if ( type == "意向金" ){
$('.type_baoguan').hide();
$('.type_zhongjie').hide();
$('.type_anchang').hide();
$('.type_yixiang').show();
} else if ( type == "保管金" ){
$('.type_yixiang').hide();
$('.type_zhongjie').hide();
$('.type_anchang').hide();
$('.type_baoguan').show();
} else if ( type == "中介费" ){
$('.type_yixiang').hide();
$('.type_baoguan').hide();
$('.type_anchang').hide();
$('.type_zhongjie').show();
} else if ( type == "案场费" ){
$('.type_yixiang').hide();
$('.type_baoguan').hide();
$('.type_zhongjie').hide();
$('.type_anchang').show();
} else {
}
// that.getBack(id);
});
......
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