Commit 2c49a7c9 authored by agping's avatar agping

商铺 根进权限

parent a61e758d
......@@ -2,8 +2,8 @@ body {
/*width: 1335px !important;*/
/*min-width: 1335px !important;*/
width: 1080px !important;
min-width:1080px !important;
width: 1160px !important;
min-width:1160px !important;
margin: 0;
margin: 0 auto;
background-color: #F2F2F2;
......
......@@ -236,6 +236,13 @@ define(['doT', 'text!temp/followHouseUp_template_tpl.html', 'css!style/home.css'
}else{
$('#modal_followup_table_list').html('<tr><td>暂无数据</td></tr>');
}
//判断用户是否有权限跟进
if(check_auth('broker/addShopFollowUp')){
$('#modal_followup_submit_btn').show();
}else{
$('#modal_followup_submit_btn').hide();
}
} else {
alert('请登录!');
}
......
......@@ -802,6 +802,12 @@ define(['doT', 'text!temp/house_template_tpl.html', 'css!style/home.css', 'ckfin
}else{
$('#modal_followup_table_list').html('<tr><td>暂无数据</td></tr>');
}
//判断用户是否有权限跟进
if(check_auth('broker/addShopFollowUp')){
$('#modal_followup_submit_btn').show();
}else{
$('#modal_followup_submit_btn').hide();
}
} else {
alert('请登录!');
}
......
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